/* Utilities */
.title-line {
    border-color: var(--primary);
    border-width: 2px;
    width: 44px;
    margin-top: 0;
    margin-bottom: 8px;
    border-radius: 8px;
}

.title-badge {
    border-radius: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: white;
    padding: 8px 24px;
    display: inline-block;
}

.btn-page {
    border-radius: 10px;
    box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.03);
    padding: 16px 24px;
}

.btn-page.primary {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600 !important;
}

.btn-page.secondary {
    background-color: var(--white);
    color: var(--secondary);
    font-weight: 600 !important;
}
/* End Utilities */

/* navbar */
.navbar {
    background-color: transparent;
}

.navbar.navbar-scrolled .navbar-logo-white {
    display: none;
}

.navbar .navbar-logo {
    display: none;
}

.navbar.navbar-scrolled .navbar-logo {
    display: inline-block;
}

.navbar.navbar-scrolled {
    background-color: var(--secondary) !important;
}

.navbar.navbar-scrolled .nav-item .nav-link {
    color: var(--white);
}

.navbar .nav-item .nav-link {
    color: var(--white);
}
/* navbar - end */

/* Header */
header {
    background: var(--secondary);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 136px !important;
    padding-bottom: 46px !important;
}

.header-img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1;
}

.page-header .d-flex.justify-content-start {
    gap: 24px !important;
}

.frame-top{
    position: absolute;
    top: -30px;
    left: -40px;
    z-index: 0;
}

.frame-bot{
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 0;
}
/* End Header */

/* Feature */
#feature {
    margin-top: 56px;
    margin-bottom: 56px;
    background: url('../../../images/pages/home/bg-feature.png');
}

#feature .card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: none;
}

.feature-carousel .slick-slide {
    padding: 0 12px;
}

.feature-carousel .slick-slide .card-body {
    width: 300px;
}

.feature-carousel .slick-active.slick-center .card {
    border-color: var(--primary) !important;
}

.feature-carousel .slick-active.slick-center .card .font-weight-600 {
    color: var(--primary) !important;
}

.feature-carousel .slick-dots {
    bottom: -35px;
}

.feature-carousel .slick-dots li button:before {
    font-size: 18px;
}

.feature-carousel .slick-dots li.slick-active button:before {
    color: var(--primary);
    font-size: 18px;
}
/* End Feature */

/* Benefits */
#benefits {
    margin-top: 88px;
    margin-bottom: 56px;
}
/* End Benefits */

/* Testimonial */
#testimonial {
    padding-top: 56px;
    padding-bottom: 56px;
    background: #FAFAFA;
}

#testimonial .card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: none;
}

.testimonial-carousel .slick-slide {
    padding: 0 12px;
}

.testimonial-carousel .slick-slide .card {
    width: 500px;
}

.testimonial-carousel .slick-active.slick-center .card {
    border-color: var(--primary) !important;
}

.testimonial-carousel .slick-active.slick-center .card .font-weight-600 {
    color: var(--primary) !important;
}

.testimonial-carousel .slick-dots {
    bottom: -40px;
}

.testimonial-carousel .slick-dots li button:before {
    font-size: 18px;
}

.testimonial-carousel .slick-dots li.slick-active button:before {
    color: var(--primary);
    font-size: 18px;
}
/* End Testimonial */

/* Faq */
#faq {
    margin-top: 56px;
    margin-bottom: 56px;
}

.frame-left {
    position: absolute;
    top: 0;
    left: 0;
}

.frame-right {
    position: absolute;
    top: 0;
    right: 0;
}
/* End Faq */

/* Contact */
#contact {
    background: url('../../../images/pages/home/bg-contact.png');
    padding-top: 72px;
    padding-bottom: 72px;
}

#contact .d-flex.justify-content-center {
    gap: 24px !important;
}
/* End Contact */

@media (max-width: 767.98px) {

    /* Header */
    header {
        padding-top: 108px !important;
    }

    .header-img {
        margin-bottom: 32px;
    }

    .frame-top {
        display: none;
    }

    .frame-bot {
        display: none;
    }
    /* End Header */

    /* Testimoni */
    .testimonial-carousel .slick-slide .card {
        width: 100%;
    }
    /* End Testimoni */

    /* Faq */
    .frame-left {
        display: none;
    }

    .frame-right {
        display: none;
    }
    /* End Faq */
}

@media (min-width: 768px) and (max-width: 997.98px) {

    /* Header */
    header {
        padding-top: 108px !important;
    }

    .header-img {
        margin-bottom: 32px;
    }

    .frame-top {
        display: none;
    }

    .frame-bot {
        display: none;
    }
    /* End Header */

    /* Faq */
    .frame-left {
        display: none;
    }

    .frame-right {
        display: none;
    }
    /* End Faq */
}

@media (max-width: 997.98px) {

    /* Navbar */
    .navbar .navbar-logo {
        display: block;
    }

    .navbar .nav-item .nav-link {
        color: var(--white);
    }
    /* End Navbar */

}
