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

.section-header {
    margin-bottom: 0;
    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 */
.page-header {
    padding-top: 24px;
    margin-top: 156px;
    padding-bottom: 0;
}
/* end header */

/* Services */
.service-section {
    margin-bottom: 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 */

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

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

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

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

    /* service */
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card .service-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
    /* service - end */
}

@media (min-width: 768px) and (max-width: 997.98px) {
    /* service */
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card .service-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
    /* service - end */
}

@media (max-width: 997.98px) {
    /* Client */
    #client img {
        margin: 0 auto 32px;
    }
    /* End Client */
}
