/********** Template CSS **********/
:root {
    --primary: #484dac;
    --secondary: #ff693a;
    --light: #f6f4f9;
    --dark: #04000b;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

/* custom css for user */
.nav-link {
    color: #fff;
    font-weight: 500;
}

.sticky-top .nav-link {
    color: var(--dark) !important;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--secondary) !important;
}

/* end custom css for user */

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #ffffff;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
    filter: brightness(400%);
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 55px;
    filter: brightness(100%);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #ffffff;
    }

    .navbar-light .navbar-brand img {
        filter: brightness(100%);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #ffffff;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}

/*** Hero Header ***/
.hero-header {
    margin-bottom: 2rem;
    padding: 18rem 0;
    background: url(../../img/front/blob-top-left.png),
        url(../../img/front/blob-top-right.png),
        url(../../img/front/blob-bottom-left.png),
        url(../../img/front/blob-bottom-right.png),
        url(../../img/front/blob-center.png), url(../../img/front/bg-bottom.png);
    background-position: left 0px top 0px, right 0px top 0px,
        left 0px bottom 0px, right 0px bottom 0px, center center, center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #ffffff;
}

/*** Feature ***/
.feature-item {
    transition: 0.5s;
}

.feature-item:hover {
    margin-top: -15px;
}

/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

/*** Fact ***/
.fact {
    margin: 6rem 0;
    background: url(../../img/front/blob-top-left.png),
        url(../../img/front/blob-top-right.png),
        url(../../img/front/blob-bottom-left.png),
        url(../../img/front/blob-bottom-right.png),
        url(../../img/front/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px,
        left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
}

/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: 0.5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../../img/front/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: 0.5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../../img/front/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #ffffff;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #ffffff;
    border-radius: 40px 40px 0 0;
    transition: 0.5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, 0.9);
    transition: 0.5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background: url(../../img/front/blob-top-left.png),
        url(../../img/front/blob-top-right.png),
        url(../../img/front/blob-bottom-left.png),
        url(../../img/front/blob-bottom-right.png),
        url(../../img/front/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px,
        left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
}

/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #ffffff;
}

.team-item .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

.team-carousel .team-item {
    padding: 0 30px 30px 30px;
}

.team-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Articles ***/
.article-item .btn {
    color: var(--primary);
    background: #ffffff;
}

.article-item .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

.article-carousel .article-item {
    padding: 0;
}

.article-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.article-carousel .owl-nav .owl-prev,
.article-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: 0.5s;
}

.article-carousel .owl-nav .owl-prev:hover,
.article-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background: url(../../img/front/bg-top.png), url(../../img/front/map.png);
    background-position: center top, center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, 0.1);
    border-radius: 40px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

.heading-small {
    font-size: 0.75rem;

    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ff693a;
}

.form-control-label {
    font-size: 0.875rem;
    color: #525f7f;
}

.btn-icon-clipboard {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;

    display: inline-block;

    width: 100%;
    margin: 0;
    margin: 0.5rem 0;
    padding: 1.5rem;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;

    color: #32325d;
    border: 0;
    border-radius: 0.375rem;
    background-color: #edeeff;

    -moz-appearance: none;
}

.btn-icon-clipboard:hover {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.1) 0 4px 16px;
}

.btn-icon-clipboard > div {
    display: flex;

    align-items: center;
}

.btn-icon-clipboard i {
    font-size: 1.5rem;

    box-sizing: content-box;

    vertical-align: middle;

    color: #484dac;
}
.btn-icon-clipboard span {
    font-size: 0.875rem;
    line-height: 1.5;

    display: inline-block;
    overflow: hidden;

    margin-left: 16px;

    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.table {
    font-size: 11pt;
}

.chart {
    position: relative;

    /* height: 350px; */
}

.chart-sm {
    height: 200px;
}

.chart-legend {
    font-size: 0.875rem;

    display: flex;

    margin-top: 2.5rem;

    text-align: center;

    color: #8898aa;

    justify-content: center;
}

.chart-legend-item {
    display: inline-flex;

    align-items: center;
}
.chart-legend-item + .chart-legend-item {
    margin-left: 1rem;
}

.chart-legend-indicator {
    display: inline-block;

    width: 0.5rem;
    height: 0.5rem;
    margin-right: 0.375rem;

    border-radius: 50%;
}

#chart-tooltip {
    z-index: 0;
}
#chart-tooltip .arrow {
    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateX(-0.5rem);
}

.chart-info-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 5%;

    max-width: 350px;
    padding: 20px;
}

.avatar.rounded-circle img,
.rounded-circle {
    border-radius: 50% !important;
}
.avatar {
    font-size: 1rem;
    display: inline-flex;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 0.375rem;
    background-color: #adb5bd;
    align-items: center;
    justify-content: center;
}
.avatar img {
    width: 100%;
    border-radius: 0.375rem;
}
.avatar + .avatar-content {
    display: inline-block;
    margin-left: 0.75rem;
}
.avatar-lg {
    font-size: 0.875rem;
    width: 58px;
    height: 58px;
}
.avatar-sm {
    font-size: 0.875rem;
    width: 36px;
    height: 36px;
}
.avatar-lg {
    font-size: 1rem;
    width: 175px;
    height: 175px;
}
.avatar-group .avatar {
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
}
.avatar-group .avatar:hover {
    z-index: 3;
}
.avatar-group .avatar + .avatar {
    margin-left: -1rem;
}

.dropdown-menu a.media > div:first-child {
    line-height: 1;
}
.dropdown-menu a.media p {
    color: #8898aa;
}
.dropdown-menu a.media:hover .heading,
.dropdown-menu a.media:hover p {
    color: #172b4d !important;
}

.selected {
    outline: 0;
    box-shadow: 0 0 0 0.25rem #ff683ab0;
}
