/* Utils */
.navbar.navbar-marketing {
    background-color: #fff !important;
    border-bottom: 1px solid #ebebeb !important;
}

.section-header {
    margin-bottom: 42px;
    text-align: center;
}

.section-header .header-1 {
    color: var(--dark);
    font-weight: 600;
}

.section-header .header-1::before {
    content: '';
    display: block;
    width: 83px;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    background-color: var(--primary);
}

/* End Utils */

/* Header */
.header-background {
    background: url('../../../assets/img/pages/about/bg-header.jpg')no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.page-header {
    padding-top: 233px;
    padding-bottom: 133px;
}
/* End Header */

/* WhoWeAre */
#whoWeAre {
    padding-top: 56px;
}

.about-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 10px;
}

.about-line {
    width: 20%;
    border-color: var(--primary);
    margin-top: 0;
    margin-bottom: 16px;
    border-width: 3px;
}
/* End WhoWeAre */

/* Client */
#client {
    margin-top: 56px;
}

#client img {
    filter: grayscale(100%);
    transition: all 300ms ease;
}

#client img:hover {
    filter: grayscale(0);
}
/* End Client */

/* Services */
.service-section {
    margin-top: 56px;
    background: url("../../../assets/img/pages/home/service-ornament.png");
    background-repeat: no-repeat;
    background-position: center;
}

.service-section .service-card {
    display: flex;
    column-gap: 16px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.service-section .service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 10%);
}

.service-section .service-card:hover .service-name {
    color: var(--primary);
}

.service-section .service-card .service-icon {
    width: 48px;
    height: 48px;
}

.service-section .service-card .service-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    line-height: calc(18px * 1.5);
    transition: all 0.2s ease;
}

.service-section .service-card .service-desc {
    color: #666;
}

.service-section .service-row {
    row-gap: 42px;
}
/* Services - end */

/* testimonial */
.testimonial-section {
    background-color: #fafafa;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-top: 56px;
}

.testimonial-section .testimonial-carousel-wrapper .card {
    box-shadow: none;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 32px;
    width: 532px;
    margin-left: 24px;
    transition: all 0.2s ease;
}

.testimonial-section .testimonial-carousel-wrapper .card .testimoni-user-wrapper {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.testimonial-section .testimonial-carousel-wrapper .card .testimoni-user-wrapper .testimoni-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-section .testimonial-carousel-wrapper .card .testimoni-user-wrapper .testimoni-profile .testimoni-name {
    color: var(--dark);
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.testimonial-section .testimonial-carousel-wrapper .slick-slide:not(.slick-active) .card {
    opacity: 50%;
}

.testimonial-section .testimonial-carousel-wrapper .slick-slide.slick-active .card {
    border-color: var(--primary);
}

.testimonial-section .testimonial-carousel-wrapper .card .card-body { padding: 0; }

.testimonial-section .testimonial-carousel-wrapper .card .testimonial-messages {
    margin-bottom: 32px;
}

.testimonial-section .section-body .carousel-button {
    position: absolute;
    top: 45%;
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border: 1px solid #ebebeb;
    color: var(--grey-ligth);
    z-index: 1;
    border-radius: 50px;
    transition: all 0.2s ease;
    outline: none;
}

.testimonial-section .section-body .carousel-button:hover {
    background-color: var(--primary);
    border-color: transparent;
    color: var(--white);
}

.testimonial-section .section-body .carousel-button .ri-arrow-left-line,
.testimonial-section .section-body .carousel-button .ri-arrow-right-line {
    font-size: 20px;
}

.testimonial-section .section-body .carousel-button.left { left: 0 }
.testimonial-section .section-body .carousel-button.right { right: 0 }
/* testimonial - end */

/* Our team */
#ourTeam {
    margin-top: 56px;
}

.ourteam-card {
    border: 1px solid #c4c4c4;
    transition: all 200ms ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.ourteam-card:hover {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
/* End Our team */


@media (max-width: 767.98px) {
    /* Header */
    .page-header {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    /* End Header */

    /* testimonial */
    .testimonial-section .testimonial-carousel-wrapper .card {
        margin-left: 0;
        width: 100%;
    }

    .testimonial-section .carousel-button {
        display: none;
    }
    /* testimonial - end */
}

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

    /* testimonial */
    .testimonial-section .testimonial-carousel-wrapper .card {
        margin-left: 0;
        width: 100%;
    }
    /* testimonial - end */

}

@media (max-width: 997.98px) {

    /* Who We Are */
    .about-img {
        height: auto;
        margin-bottom: 32px;
    }
    /* End Who We Are */

    /* Client */
    #client img {
        margin: 0 auto 32px;
    }
    /* End Client */
}
