:root {
    --primary-color: #0b2714;
    --text-color: #0b2b17;

    --white-color: #ffffff;

    --dark-color: #056839;

    --accent-color: #9bdd57;
    --accent-hover-color: #8ed149;

    --light-bg-color: #f5f7ef;
    --border-color: #ececec;

    --body-font: "DM Sans", sans-serif;
    --heading-font: "Questrial", sans-serif;

    --container-width: 1400px;

    --hero-radius: 24px;
    --card-radius: 24px;
    --button-radius: 999px;

    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;

    font-family: var(--body-font);
    color: var(--text-color);
}

.container {
    max-width: var(--container-width);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}


.site-header {
    position: relative;
    z-index: 9999;
    padding-top: 8px;
    background-color: var(--white-color);
}

.main-header {
    position: relative;

    display: flex;
    align-items: center;
}


.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 100px;
}


.main-nav {
    margin-left: auto;
}

.nav-list {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;

    gap: 34px;

    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--text-color);

    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 400;

    white-space: nowrap;

    text-decoration: none;

    transition: color var(--transition);
}

.nav-item>a:hover {
    color: var(--accent-color);
}


.nav-item>a i {
    margin: 0;

    font-size: 11px;
    line-height: 1;

    color: currentColor;

    transition: transform var(--transition);
}

.nav-item>a i::before {
    width: auto;
    margin: 0;
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    flex-shrink: 0;
}


.header-phone {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text-color);

    white-space: nowrap;

    text-decoration: none;
}

.phone-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--light-bg-color);

    border-radius: 50%;

    transition: background-color var(--transition);
}

.phone-icon i {
    margin: 0;

    font-size: 20px;
    line-height: 1;

    color: var(--primary-color);

    transform: rotate(-10deg);
}

.phone-icon i::before {
    width: auto;
    margin: 0;
}

.phone-number {
    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;

    /* text-decoration: underline; */
    text-underline-offset: 3px;

    transition: color var(--transition);
}

.header-phone:hover .phone-number {
    color: var(--accent-hover-color);
}

.header-phone:hover .phone-icon {
    background-color: var(--accent-hover-color);
}


.quote-btn {
    padding: 16px 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    border-radius: var(--button-radius);

    color: var(--text-color);

    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.quote-btn:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}


.mobile-menu-btn {
    width: 46px;
    height: 46px;

    padding: 0;

    display: none;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    right: 0;

    transform: translateY(-50%);

    background-color: var(--accent-color);

    border: 0;
    border-radius: 8px;

    color: var(--primary-color);

    cursor: pointer;

    z-index: 1001;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--accent-hover-color);
}

.mobile-menu-btn:focus {
    outline: none;
}

.mobile-menu-btn i {
    margin: 0;

    font-size: 24px;
    line-height: 1;

    color: var(--primary-color);
}

.mobile-menu-btn i::before {
    width: auto;
    margin: 0;
}


.mobile-navigation {
    display: none;
}


@media (max-width: 1199px) {

    .main-header {
        gap: 22px;
    }

    .header-logo img {
        width: 175px;
    }

    .nav-list {
        gap: 22px;
    }

    .nav-item>a {
        font-size: 15px;
    }

    .header-actions {
        gap: 15px;
    }

    .phone-number {
        font-size: 15px;
    }

    .quote-btn {
        padding: 14px 20px;
    }
}


@media (max-width: 991px) {

    .site-header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header {
        min-height: 82px;

        justify-content: space-between;

        gap: 0;
    }

    .header-logo img {
        width: 180px;
    }

    .main-header .main-nav,
    .main-header .header-actions {
        display: none;
    }


    .mobile-menu-btn {
        display: flex;
    }

    .mobile-navigation {
        width: 100%;

        display: none;

        position: absolute;
        top: calc(100% + 12px);
        left: 0;

        padding: 18px 20px 20px;

        background-color: var(--white-color);

        border: 1px solid var(--border-color);
        border-radius: 12px;

        z-index: 1000;
    }

    .mobile-navigation.active {
        display: block;
    }


    .mobile-nav-list {
        width: 100%;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .mobile-nav-list li {
        margin: 0;
        padding: 0;

        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-list li:first-child {
        border-top: 1px solid var(--border-color);
    }

    .mobile-nav-list li>a {
        width: 100%;
        min-height: 52px;

        padding: 10px 2px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        color: var(--text-color);

        font-family: var(--body-font);
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;

        text-decoration: none;

        transition: color var(--transition);
    }

    .mobile-nav-list li>a:hover {
        color: var(--primary-color);
    }


    .mobile-nav-list li>a i {
        flex-shrink: 0;

        margin: 0;

        font-size: 13px;
        line-height: 1;

        color: var(--primary-color);
    }

    .mobile-nav-list li>a i::before {
        width: auto;
        margin: 0;
    }


    .mobile-nav-actions {
        padding-top: 20px;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }

    .mobile-nav-phone {
        min-height: 44px;

        display: flex;
        align-items: center;

        gap: 10px;

        color: var(--text-color);

        font-family: var(--body-font);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;

        text-decoration: none;
    }

    .mobile-nav-phone:hover {
        color: var(--primary-color);
    }

    .mobile-nav-phone i {
        margin: 0;

        font-size: 19px;
        line-height: 1;

        color: var(--primary-color);
    }

    .mobile-nav-phone i::before {
        width: auto;
        margin: 0;
    }


    .mobile-nav-actions .quote-btn {
        width: 100%;
        min-height: 50px;

        padding: 12px 20px;

        font-family: var(--body-font);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.3;
    }

    .mobile-nav-actions .quote-btn:hover {
        background-color: var(--accent-hover-color);
        color: var(--text-color);
    }
}


@media (max-width: 767px) {

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }

    .mobile-menu-btn i {
        font-size: 22px;
    }

    .mobile-navigation {
        top: calc(100% + 10px);

        padding: 16px 18px 18px;

        border-radius: 10px;
    }

    .mobile-nav-list li>a {
        min-height: 50px;
    }
}


@media (max-width: 575px) {

    .mobile-menu-btn {
        width: 42px;
        height: 42px;

        border-radius: 7px;
    }

    .mobile-menu-btn i {
        font-size: 21px;
    }

    .mobile-navigation {
        margin-top: 8px;
        padding: 0 16px 16px;
    }

    .mobile-nav-list li>a {
        min-height: 48px;

        font-size: 14px;
    }

    .mobile-nav-phone {
        font-size: 14px;
    }

    .mobile-nav-actions .quote-btn {
        min-height: 48px;

        font-size: 14px;
    }
}


#back-to-top {
    position: fixed;

    right: 4px;
    bottom: 45px;

    z-index: 999;

    color: var(--accent-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: rotate(-90deg);

    transition:
        bottom var(--transition),
        color var(--transition),
        opacity var(--transition),
        visibility var(--transition);
}


#back-to-top.show {
    bottom: 60px;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


#back-to-top:hover {
    color: var(--text-color);
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -0.72px;
}

.main-btn {
    padding: 16px 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);
    color: var(--text-color);

    border-radius: var(--button-radius);

    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;

    transition: background-color var(--transition);
}

.main-btn:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.section-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.section-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 400;

    white-space: nowrap;

    transition: color var(--transition);
}

.service-quote {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;

    white-space: nowrap;

    transition: color var(--transition);
}

.section-phone i {
    color: var(--text-color);

    font-size: 24px;
    line-height: 1;

    transition: color var(--transition);
}

.service-quote i {
    color: var(--text-color);

    font-size: 20px;
    line-height: 1;

    transition: color var(--transition);
}

.section-phone i::before {
    width: auto;
    margin: 0;
}
.service-quote i::before {
    width: auto;
    margin: 0;
}
.service-quote:hover,
.service-quote:hover i {
    color: var(--accent-hover-color);
}





@media (max-width: 1199px) {

    .section-title {
        font-size: 40px;
    }
}


@media (max-width: 991px) {

    .section-title {
        font-size: 36px;
    }
}


@media (max-width: 767px) {

    .section-label {
        margin-bottom: 8px;
        font-size: 14px;
        color: var(--dark-color);
    }

    .section-title {
        font-size: 31px;
    }

    .section-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .section-actions>.main-btn,
    .section-actions>.section-phone {
        width: 100%;
        justify-content: center;
    }

    .section-actions>.main-btn {
        min-width: 0;
    }
}


@media (max-width: 575px) {

    .section-title {
        font-size: 28px;
    }

    .section-phone {
        font-size: 24px;
    }

    .section-phone i {
        font-size: 28px;
    }
        .service-quote {
        font-size: 18px;
    }
    .service-quote i {
        font-size: 20px;
    }
}


.grass-hero {
    padding-top: 10px;
    background-color: var(--white-color);
}

.grass-hero-wrapper {
    padding: 120px 30px;

    display: flex;
    align-items: center;

    background-image:
        url("../img/hero-bg.webp");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    border-radius: var(--hero-radius);
    overflow: hidden;
}


.grass-hero-wrapper>.row {
    width: 100%;
}


.grass-hero-card {
    padding: 42px 45px 40px;

    background-color: var(--white-color);

    border-radius: var(--card-radius);
}


.grass-hero-label {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.grass-hero-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -0.9156px;
}

.grass-hero-description {
    /* max-width: 470px; */
    margin: 24px 0 0;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.36px;
}


.grass-hero-actions {
    margin-top: 22px;
}

.grass-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    transition: color var(--transition);
}


.grass-phone-link i {
    color: var(--primary-color);
    font-size: 18px;
    transition: color var(--transition);
}


.grass-phone-link:hover {
    color: var(--accent-hover-color);
}

.grass-phone-link:hover i {
    color: var(--accent-hover-color);
}


.grass-hero-features {
    margin-top: 27px;
}


.grass-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}


.grass-feature-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}


.grass-feature-icon i {
    position: relative;
    top: 0;

    color: var(--primary-color);

    font-size: 8px;
    line-height: 1;
}


.grass-phone-link i::before,
.grass-feature-icon i::before {
    margin-left: 0;
    margin-right: 0;
    font-size: 153%;
}


.grass-feature sup {
    position: relative;
    top: -0.2em;

    font-size: 8px;
}



@media (max-width: 1199.98px) {

    .grass-hero-wrapper {
        min-height: 590px;
    }

    .grass-hero-card {
        max-width: 550px;
        padding: 38px 36px;
    }

    .grass-hero-title {
        font-size: 48px;
    }

    .grass-hero-description {
        font-size: 17px;
    }

}


@media (max-width: 991.98px) {

    .grass-hero {
        padding-bottom: 35px;
    }

    .grass-hero-wrapper {
        min-height: auto;

        padding: 50px 25px;

        background-position: center center;
    }

    .grass-hero-card {
        max-width: 100%;
    }

}


@media (max-width: 767.98px) {

    .grass-hero-wrapper {
        padding: 20px;

        border-radius: 18px;
    }

    .grass-hero-card {
        padding: 30px 24px;

        border-radius: 18px;
    }

    .grass-hero-label {
        margin-bottom: 15px;
        font-size: 13px;
        letter-spacing: 0;
        font-weight: 500;
        color: var(--dark-color);
    }

    .grass-hero-title {
        /* font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1px; */
    }

    .grass-hero-description {
        margin-top: 15px;
        font-size: 18px;
        line-height: 1.65;
    }

    .grass-feature {
        font-size: 18px;
    }

    .grass-hero-actions {
        margin-top: 22px;
    }

    .grass-hero-actions .main-btn,
    .grass-hero-actions .grass-phone-link {
        width: 100%;
        justify-content: center;
    }

    .grass-hero-actions .main-btn {
        min-width: 0;
    }

    .grass-hero-features {
        margin-top: 30px;
    }

}


@media (max-width: 575.98px) {

    .grass-hero-wrapper {
        padding: 22px 20px;
    }

    .grass-hero-card {
        padding: 28px 20px;
    }

    .grass-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .grass-phone-link {
        font-size: 24px;
    }

    .grass-phone-link i {
        font-size: 18px;
    }

    .grass-hero-features .col-auto {
        margin-top: 5px;
        width: 100%;
    }

}


.why-choose-section {
    /* padding: 70px 0; */
    background-color: var(--white-color);
}


.section-heading {
    max-width: 900px;
    margin: 0 auto;
}

.section-heading h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.73248px;
}

.section-heading p {
    max-width: 840px;
    margin: 14px auto 0;
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.36px;
}


.why-choose-cards {
    margin-top: 20px;
}

.why-card {
    padding: 30px 30px 20px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
}


.why-card-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    background-color: var(--accent-color);

    border-radius: 17px;
}

.why-card-icon i {
    color: var(--primary-color);

    font-size: 29px;
    line-height: 1;
}

.why-card-icon i::before {
    width: auto;
    margin: 0;
}


.why-card h3 {
    /* margin: 0 0 15px; */
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
    line-height: 37.4976px;
    letter-spacing: -0.46872px;
}

.why-card p {
    margin: 0 0 20px;
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.36px;
}

.why-card p a {
    color: var(--text-color);

    text-decoration: underline;
    text-underline-offset: 2px;

    transition: color var(--transition);
}

.why-card p a:hover {
    color: var(--accent-hover-color);
}


.why-choose-section .section-actions {
    margin-top: 40px;
}



@media (max-width: 1199px) {

    .section-heading h2 {
        font-size: 38px;
    }

    .why-card {
        padding: 26px 24px;
    }

    .why-card h3 {
        font-size: 24px;
    }
}


@media (max-width: 991px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .why-choose-cards {
        margin-top: 40px;
    }

    .why-card {
        min-height: 100%;
    }
}


@media (max-width: 767px) {

    .why-choose-section {
        padding: 35px 0;
    }

    .why-choose-section .section-actions {
        margin-top: 38px;
    }

    .section-heading h2 {
        font-size: 31px;
        line-height: 1.2;
    }

    .section-heading p {
        margin-top: 16px;

        font-size: 15px;
        line-height: 1.7;
    }

    .why-choose-cards {
        margin-top: 34px;
    }

    .why-card {
        padding: 24px;

        border-radius: var(--card-radius);
    }

    .why-card-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 22px;

        border-radius: 15px;
    }

    .why-card-icon i {
        font-size: 26px;
    }

    .why-card h3 {
        margin-bottom: 12px;

        font-size: 23px;
    }

    .why-card p {
        font-size: 18px;
    }

}


@media (max-width: 575px) {

    .section-heading h2 {
        font-size: 23px;
    }

    .why-card {
        padding: 22px 20px;
    }

    .why-card h3 {
        font-size: 22px;
    }

}


.grass-range-section {
    padding: 70px 0;
    background-color: var(--white-color);
}


.grass-range-wrapper {
    padding: 70px 35px;

    background-color: var(--light-bg-color);

    border-radius: var(--card-radius);
}


.grass-range-cards {
    row-gap: 40px;
    margin-top: 40px;
}

.grass-range-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background-color: var(--white-color);

    border-radius: calc(var(--card-radius) + 8px);
}


.grass-range-image {
    width: 100%;
    aspect-ratio: 16 / 9;

    display: block;

    overflow: hidden;
}

.grass-range-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform var(--transition);
}

.grass-range-image:hover img {
    transform: scale(1.02);
}


.grass-range-content {
    flex: 1;

    padding: 12px 36px 34px;
}

.grass-range-content h3 {
    margin: 0 0 17px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}


.grass-range-content>p {
    margin: 0 0 17px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.grass-range-content p a,
.grass-range-list a {
    color: var(--text-color);

    text-decoration: underline;
    text-underline-offset: 2px;

    transition: color var(--transition);
}

.grass-range-content p a:hover,
.grass-range-list a:hover {
    color: var(--accent-hover-color);
}


.grass-range-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.grass-range-list li {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 14px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.grass-range-list li:last-child {
    margin-bottom: 0;
}


.range-check {
    width: 18px;
    height: 18px;

    margin-top: 4px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.range-check i {
    color: var(--primary-color);

    font-size: 11px;
    line-height: 1;
}

.range-check i::before {
    width: auto;

    margin: 0;
}


.grass-range-actions {
    margin-top: 40px;
}


@media (max-width: 1199px) {

    .grass-range-wrapper {
        padding: 70px 24px;
    }

    .grass-range-heading {
        margin-bottom: 55px;
    }

    .grass-range-content {
        padding: 27px 28px 32px;
    }

    .grass-range-content h3 {
        font-size: 29px;
    }

    .grass-range-content>p,
    .grass-range-list li {
        font-size: 15px;
    }
}


@media (max-width: 991px) {

    .grass-range-section {
        padding: 50px 0;
    }

    .grass-range-actions {
        margin-top: 50px;
    }

    .grass-range-wrapper {
        padding: 55px 25px;
    }

    .grass-range-heading {
        margin-bottom: 42px;
    }

    .grass-range-cards {
        row-gap: 35px;
    }

}


@media (max-width: 767px) {

    .grass-range-section {
        padding: 35px 0;
    }

    .grass-range-heading .section-label {
        margin-bottom: 14px;
    }

    .grass-range-actions {
        margin-top: 42px;
    }

    .grass-range-wrapper {
        padding: 45px 16px;

        border-radius: var(--card-radius);
    }

    .grass-range-heading {
        margin-bottom: 34px;
    }

    .grass-range-card {
        border-radius: var(--card-radius);
    }

    .grass-range-content {
        padding: 24px 22px 28px;
    }

    .grass-range-content h3 {
        margin-bottom: 14px;

        font-size: 26px;
    }

    .grass-range-content>p,
    .grass-range-list li {
        font-size: 18px;
    }

}


@media (max-width: 575px) {

    .grass-range-wrapper {
        padding: 30px 13px;
    }

    .grass-range-content {
        padding: 22px 18px 26px;
        padding-top: 2px;
    }

    .grass-range-content h3 {
        font-size: 22px;
    }

    .grass-range-list li {
        gap: 11px;
    }
}

.science-section {
    /* padding: 70px 0; */
    background-color: var(--white-color);
}


/* ========================================
   Row
======================================== */

.science-row {
    --bs-gutter-x: 80px;
}


/* ========================================
   Image
======================================== */

.science-image {
    width: 100%;
    height: 100%;

    margin: 0;

    overflow: hidden;

    border-radius: calc(var(--card-radius) + 12px);
}

.science-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: inherit;
}


/* ========================================
   Content
======================================== */

.science-content {
    padding-top: 8px;
}


.science-content h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.73248px;
}


/* ========================================
   About Paragraphs
======================================== */

.science-description {
    margin-top: 22px;
    margin-bottom: 34px;
}

.science-description p {
    margin: 0 0 14px;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.science-description p:last-child {
    margin-bottom: 0;
}


/* ========================================
   Items Grid
======================================== */

.science-items-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 28px;
}


/* ========================================
   Item
======================================== */

.science-item {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin: 0;
}


/* ========================================
   Icon
======================================== */

.science-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    border-radius: 12px;
}

.science-icon i {
    color: var(--primary-color);

    font-size: 25px;
    line-height: 1;
}

.science-icon i::before {
    width: auto;
    margin: 0;
}


/* ========================================
   Item Content
======================================== */

.science-item-content {
    flex: 1;

    padding-top: 2px;
}

.science-item-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.science-item-content p {
    margin: 0;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


/* ========================================
   Actions
======================================== */

.science-actions {
    margin-top: 40px;

    justify-content: flex-start;
}


/* ========================================
   Large Screens
======================================== */

@media (max-width: 1199px) {

    .science-row {
        --bs-gutter-x: 50px;
    }

    .science-content>h2 {
        font-size: 40px;
    }

    .science-description {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .science-description p {
        font-size: 15px;
        line-height: 1.7;
    }

    .science-items-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 24px;
    }

    .science-item {
        gap: 13px;
    }

    .science-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .science-icon i {
        font-size: 23px;
    }

    .science-item-content h3 {
        font-size: 20px;
    }

    .science-item-content p {
        font-size: 13px;
    }

    .science-image img {
        min-height: 700px;
    }

}


/* ========================================
   Tablet
======================================== */

@media (max-width: 991px) {

    .science-section {
        padding: 70px 0;
    }

    .science-row {
        --bs-gutter-x: 24px;
    }


    /* Content Above Image */

    .science-row>.col-lg-6:first-child {
        order: 2;
    }

    .science-row>.col-lg-6:last-child {
        order: 1;
    }


    .science-content {
        padding-top: 0;

        margin-bottom: 45px;
    }

    .science-content>h2 {
        max-width: 700px;

        font-size: 40px;
    }

    .science-description {
        max-width: 750px;
    }

    .science-description p {
        font-size: 16px;
    }


    .science-items-row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 28px;
    }

    .science-item {
        max-width: 100%;
    }

    .science-icon {
        width: 56px;
        height: 56px;

        flex-basis: 56px;
    }

    .science-icon i {
        font-size: 25px;
    }

    .science-item-content h3 {
        font-size: 22px;
    }

    .science-item-content p {
        font-size: 14px;
    }


    .science-image img {
        min-height: auto;

        aspect-ratio: 4 / 3;
    }

}


/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {

    .science-section {
        padding: 35px 0;
    }

    .science-content {
        margin-bottom: 38px;
    }

    .science-content>h2 {
        font-size: 32px;
        line-height: 1.2;
    }


    .science-description {
        margin-top: 18px;
        margin-bottom: 30px;
    }

    .science-description p {
        margin-bottom: 12px;

        font-size: 15px;
        line-height: 1.7;
    }


    /*
     * col-md-6 becomes full width here,
     * so the items appear one per row.
     */

    .science-items-row {
        --bs-gutter-y: 24px;
    }


    .science-item {
        gap: 16px;
    }

    .science-icon {
        width: 54px;
        height: 54px;

        flex-basis: 54px;
    }

    .science-icon i {
        font-size: 25px;
    }

    .science-item-content {
        padding-top: 2px;
    }

    .science-item-content h3 {
        margin-bottom: 6px;

        font-size: 22px;
    }

    .science-item-content p {
        max-width: 500px;

        font-size: 15px;
        line-height: 1.65;
    }


    .science-actions {
        margin-top: 34px;
    }


    .science-image {
        border-radius: var(--card-radius);
    }

}


/* ========================================
   Small Mobile
======================================== */

@media (max-width: 575px) {

    .science-content>h2 {
        font-size: 29px;
    }

    .science-description p {
        font-size: 18px;
    }


    .science-item {
        gap: 14px;
    }

    .science-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        border-radius: 10px;
    }

    .science-icon i {
        font-size: 23px;
    }

    .science-item-content h3 {
        font-size: 21px;
    }

    .science-item-content p {
        font-size: 18px;
    }


    .science-actions {
        margin-top: 30px;
    }

}

/* ===================================
   Testimonials Section
=================================== */

.testimonials-section {
    padding: 70px 0;
    background-color: var(--white-color);
}


/* ===================================
   Testimonials Wrapper
=================================== */

.testimonials-wrapper {
    padding: 70px 35px;

    background-color: var(--light-bg-color);

    border-radius: var(--card-radius);
}


/* ===================================
   Testimonials Carousel
=================================== */

.testimonials-cards {
    margin-top: 20px;
}


/* Make all carousel cards equal height */
.testimonials-carousel .owl-stage {
    display: flex;
}

.testimonials-carousel .owl-item {
    display: flex;
}

.testimonials-carousel .testimonial-card {
    width: 100%;
    height: 100%;
}


/* ===================================
   Testimonial Card
=================================== */

.testimonial-card {
    padding: 31px 28px 28px;

    display: flex;
    flex-direction: column;

    background-color: var(--white-color);

    border-radius: calc(var(--card-radius) + 8px);
}


/* ===================================
   Testimonial Rating
=================================== */

.testimonial-quote {
    margin-bottom: 22px;
}

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-carousel.owl-carousel .owl-item .testimonial-google {
    width: auto;
    max-width: 40px;
}

.testimonials-carousel.owl-carousel .owl-item .testimonial-stars {
    width: auto;
    max-width: 110px;
}


/* ===================================
   Testimonial Text
=================================== */

.testimonial-text {
    margin: 0 0 22px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    max-height: 140px;
    overflow: auto;
}


/* ===================================
   Testimonial Author
=================================== */

.testimonial-author {
    margin-top: auto;

    display: flex;
    align-items: center;

    gap: 14px;
}

.testimonial-author-image {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    overflow: hidden;

    border-radius: 50%;
}

.testimonials-carousel.owl-carousel .owl-item .testimonial-author-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-author-info h3 {
    margin: 0;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author-info p {
    margin: 0;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}


/* ===================================
   Owl Carousel Navigation
=================================== */

.testimonials-carousel .owl-nav {
    margin-top: 30px;

    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; */

    display: none;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;

    margin: 0;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    background-color: var(--dark-color);

    color: var(--white-color);

    border-radius: 50%;

    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;

    transition: var(--transition);
}

.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
    background-color: var(--accent-color);

    color: var(--text-color);
}

.testimonials-carousel .owl-nav button.owl-prev span,
.testimonials-carousel .owl-nav button.owl-next span {
    position: relative;
    top: -2px;

    line-height: 1;
}


/* ===================================
   Owl Carousel Dots
=================================== */

.testimonials-carousel .owl-dots {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
}

.testimonials-carousel .owl-dots .owl-dot {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.testimonials-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;

    margin: 0;

    display: block;

    background-color: rgba(11, 43, 23, 0.25);

    border-radius: 50%;

    transition: var(--transition);
}

.testimonials-carousel .owl-dots .owl-dot:hover span,
.testimonials-carousel .owl-dots .owl-dot.active span {
    background-color: var(--dark-color);
}

.testimonials-carousel .owl-dots .owl-dot.active span {
    width: 22px;

    border-radius: var(--button-radius);
}


/* ===================================
   Testimonials Actions
=================================== */

.testimonials-actions {
    margin-top: 40px;
}


/* ===================================
   Responsive - 1199px
=================================== */

@media (max-width: 1199px) {

    .testimonials-wrapper {
        padding: 70px 24px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }

}


/* ===================================
   Responsive - 991px
=================================== */

@media (max-width: 991px) {

    .testimonials-section {
        padding: 55px 0;
    }

    .testimonials-wrapper {
        padding: 55px 24px;
    }

    .testimonials-actions {
        margin-top: 50px;
    }

    .testimonials-carousel .owl-nav {
        margin-top: 24px;
    }

}


/* ===================================
   Responsive - 767px
=================================== */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 35px 0;
    }

    .testimonials-wrapper {
        padding: 45px 16px;

        border-radius: var(--card-radius);
    }

    .testimonial-card {
        padding: 25px 22px;

        border-radius: var(--card-radius);
    }

    .testimonial-quote {
        margin-bottom: 18px;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .testimonials-actions {
        margin-top: 42px;
    }

    .testimonials-carousel .owl-nav button.owl-prev,
    .testimonials-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;

        font-size: 28px;
    }

}


/* ===================================
   Responsive - 575px
=================================== */

@media (max-width: 575px) {

    .testimonials-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-author-image {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .testimonial-author-info h3 {
        font-size: 17px;
    }

    .testimonial-author-info p {
        font-size: 14px;
    }

    .testimonials-carousel .owl-nav {
        margin-top: 22px;
    }

    .testimonials-carousel .owl-dots {
        margin-top: 15px;
    }

}

.reasons-section {
    /* padding: 70px 0; */
    background-color: var(--white-color);
}


.reasons-cards {
    /* row-gap: 30px; */
    margin-top: 20px;
}

.reason-card {
    height: 100%;
    min-height: 286px;

    padding: 27px 28px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background-color: var(--white-color);

    border: 1px solid var(--border-color);
    border-radius: calc(var(--card-radius) + 8px);

    text-align: center;
}


.reason-number {
    width: 54px;
    height: 54px;

    margin-bottom: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    border-radius: 11px;

    color: var(--primary-color);

    font-family: var(--body-font);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}


.reason-card h3 {
    margin: 0 0 15px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
}

.reason-card p {
    max-width: 330px;

    margin: 0;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


.reasons-actions {
    margin-top: 40px;
}

@media (max-width: 1199px) {

    .reason-card {
        padding: 26px 23px 28px;
    }

    .reason-card h3 {
        font-size: 24px;
    }

    .reason-card p {
        font-size: 15px;
    }
}


@media (max-width: 991px) {

    .reasons-section {
        padding: 60px 0;
    }

    .reasons-actions {
        margin-top: 50px;
    }

    .reasons-heading {
        margin-bottom: 45px;
    }

    .reasons-cards {
        row-gap: 30px;
    }

    .reason-card {
        min-height: 270px;
    }

}


@media (max-width: 767px) {

    .reasons-section {
        padding: 50px 0;
    }



    .reasons-actions {
        margin-top: 42px;
    }

    .reasons-heading {
        margin-bottom: 35px;
    }

    .reason-card {
        min-height: auto;

        padding: 25px 22px;

        border-radius: var(--card-radius);
    }

    .reason-number {
        width: 50px;
        height: 50px;

        margin-bottom: 22px;

        font-size: 26px;
    }

    .reason-card h3 {
        margin-bottom: 12px;

        font-size: 23px;
    }

    .reason-card p {
        font-size: 15px;
    }

}


@media (max-width: 575px) {

    .reason-card {
        padding: 23px 18px;
    }

    .reason-card h3 {
        font-size: 22px;
    }
}

/* ===================================
   Project CTA Section
=================================== */

.project-cta-section {
    padding: 70px 0;

    background-color: var(--white-color);
}


.project-cta-wrapper {
    padding: 55px;

    overflow: hidden;

    background-color: var(--dark-color);

    border-radius: calc(var(--card-radius) + 8px);
}


/* ===================================
   CTA Content
=================================== */

.project-cta-content {
    max-width: 720px;
}


.project-cta-label {
    display: block;

    margin-bottom: 14px;

    color: var(--accent-color);

    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.project-cta-content h2 {
    max-width: 700px;

    margin: 0;

    color: var(--white-color);

    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;

    letter-spacing: -0.7px;
}


.project-cta-content>p {
    /* max-width: 630px; */

    margin: 20px 0 0;

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;

    opacity: 0.85;
}


/* ===================================
   CTA Features
=================================== */

.project-cta-features {
    margin-top: 28px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px 24px;
}


.project-cta-feature {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}


.project-cta-check {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    border-radius: 50%;
}


.project-cta-check i {
    margin: 0;

    color: var(--primary-color);

    font-size: 10px;
    line-height: 1;
}


.project-cta-check i::before {
    width: auto;

    margin: 0;
}


/* ===================================
   CTA Actions
=================================== */

.project-cta-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;
}


.project-cta-btn {
    flex-shrink: 0;
}


.project-cta-btn:hover {
    background-color: var(--white-color);

    color: var(--text-color);
}


.project-cta-phone {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;

    white-space: nowrap;

    transition: color var(--transition);
}


.project-cta-phone-icon {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    background-color: var(--white-color);

    border-radius: 50%;

    transition: background-color var(--transition);
}


.project-cta-phone-icon i {
    margin: 0;

    color: var(--primary-color);

    font-size: 24px;
    line-height: 1;
}


.project-cta-phone-icon i::before {
    width: auto;

    margin: 0;
}


.project-cta-phone:hover {
    color: var(--accent-color);
}


.project-cta-phone:hover .project-cta-phone-icon {
    background-color: var(--accent-color);
}


/* ===================================
   CTA Image
=================================== */

.project-cta-image {
    width: 100%;
    height: 430px;

    position: relative;

    overflow: hidden;

    border-radius: var(--card-radius);
}


.project-cta-image>img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ===================================
   Image Badge
=================================== */

.project-cta-image-badge {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 15px 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    background-color: var(--white-color);

    border-radius: 16px;
}


.project-cta-badge-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    border-radius: 50%;
}


.project-cta-badge-icon i {
    margin: 0;

    color: var(--primary-color);

    font-size: 15px;
    line-height: 1;
}


.project-cta-badge-icon i::before {
    width: auto;

    margin: 0;
}


.project-cta-badge-text {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.project-cta-badge-text span {
    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}


.project-cta-badge-text strong {
    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
}


/* ===================================
   Responsive - 1199
=================================== */

@media (max-width: 1199px) {

    .project-cta-wrapper {
        padding: 45px;
    }

    .project-cta-content h2 {
        font-size: 40px;
    }

    .project-cta-content>p {
        font-size: 16px;
    }

    .project-cta-image {
        height: 400px;
    }

}


/* ===================================
   Responsive - 991
=================================== */

@media (max-width: 991px) {

    .project-cta-section {
        padding: 60px 0;
    }

    .project-cta-wrapper {
        padding: 45px 30px;
    }

    .project-cta-content {
        max-width: 100%;
    }

    .project-cta-content h2 {
        max-width: 700px;

        font-size: 38px;
    }

    .project-cta-image {
        height: 420px;

        margin-top: 10px;
    }

}


/* ===================================
   Responsive - 767
=================================== */

@media (max-width: 767px) {

    .project-cta-section {
        padding: 50px 0;
    }

    .project-cta-wrapper {
        padding: 38px 22px;

        border-radius: var(--card-radius);
    }

    .project-cta-label {
        font-size: 13px;
    }

    .project-cta-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .project-cta-content>p {
        margin-top: 18px;

        font-size: 18px;
        line-height: 1.7;
    }

    .project-cta-features {
        margin-top: 24px;

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }

    .project-cta-actions {
        margin-top: 30px;

        flex-direction: column;
        align-items: stretch;

        gap: 16px;
    }

    .project-cta-actions .main-btn,
    .project-cta-phone {
        width: 100%;

        justify-content: center;
    }

    .project-cta-image {
        height: 330px;

        border-radius: 20px;
    }

}


/* ===================================
   Responsive - 575
=================================== */

@media (max-width: 575px) {

    .project-cta-section {
        padding: 35px 0;
    }

    .project-cta-wrapper {
        padding: 32px 18px;
    }

    .project-cta-content h2 {
        font-size: 28px;
    }

    /*.project-cta-phone {*/
    /*    font-size: 15px;*/
    /*}*/

    .project-cta-image {
        height: 280px;
    }

    .project-cta-image-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 12px;
    }

    .project-cta-badge-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .project-cta-badge-text strong {
        font-size: 15px;
    }

}


.contact-quote-section {
    padding: 70px 0 0;
    background:
        linear-gradient(to bottom,
            var(--white-color) 0%,
            var(--white-color) 58%,
            var(--dark-color) 58%,
            var(--dark-color) 100%);
}

.contact-quote-wrapper {
    padding: 70px 35px;

    overflow: hidden;

    background-color: var(--accent-color);

    border-radius: calc(var(--card-radius) + 8px);
}


.contact-quote-content {
    max-width: 520px;
}

.contact-quote-content>h2 {
    margin: 0 0 20px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 43px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: -1px;
}

.contact-quote-text {
    max-width: 500px;

    margin: 0 0 30px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


.contact-info-list {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;

    gap: 16px;
}


.contact-info-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--white-color);

    border-radius: 12px;
}

.contact-info-icon i {
    color: var(--primary-color);

    font-size: 25px;
    line-height: 1;
}

.contact-info-icon i::before {
    width: auto;
    margin: 0;
}


.contact-info-content {
    padding-top: 6px;
}

.contact-info-content h3 {
    margin: 0 0 7px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-info-content a,
.contact-info-content p {
    margin: 0;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-info-content a {
    text-decoration: underline;
    text-underline-offset: 2px;

    transition: color var(--transition);
}

.contact-info-content a:hover {
    color: var(--white-color);
}


.contact-form-wrapper {
    padding-left: 30px;
}


#contact_form .form-group {
    margin-bottom: 22px;
}

#contact_form .form-label {
    display: block;

    margin: 0 0 8px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

#contact_form .required-mark {
    margin-left: 2px;

    color: #b42318;

    font-size: 15px;
    font-weight: 700;
}


#contact_form .optional-text {
    margin-left: 5px;

    color: rgba(7, 27, 15, 0.55);

    font-size: 12px;
    font-weight: 500;
}


#contact_form .form-control {
    width: 100%;
    height: 55px;

    padding: 0 16px;

    background-color: var(--white-color);

    border: 1px solid rgba(11, 43, 23, 0.12);
    border-radius: 8px;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    outline: none;
    box-shadow: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}


#contact_form .form-control::placeholder {
    color: rgba(7, 27, 15, 0.45);
    opacity: 1;
}


#contact_form .form-control::-webkit-input-placeholder {
    color: rgba(7, 27, 15, 0.45);
}


#contact_form .form-control::-moz-placeholder {
    color: rgba(7, 27, 15, 0.45);
    opacity: 1;
}


#contact_form .form-control:hover {
    border-color: rgba(11, 43, 23, 0.25);
}


#contact_form .form-control:focus {
    background-color: var(--white-color);

    border-color: var(--primary-color);

    box-shadow: 0 0 0 3px rgba(11, 43, 23, 0.08);

    color: var(--text-color);
}


#contact_form select.form-control {
    cursor: pointer;

    appearance: auto;

    padding-right: 38px;
}


#contact_form select.form-control:invalid {
    color: rgba(7, 27, 15, 0.45);
}


#contact_form select.form-control:valid {
    color: var(--text-color);
}


#contact_form select.form-control option {
    color: var(--text-color);
    background-color: var(--white-color);
}


#contact_form textarea.form-control {
    height: 155px;
    min-height: 155px;

    padding: 14px 16px;

    line-height: 1.6;

    resize: vertical;
}


#contact_form .btn-submit {
    width: 100%;
    min-height: 56px;

    padding: 13px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: var(--button-radius);

    background-color: var(--dark-color);

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;

    cursor: pointer;

    transition:
        background-color var(--transition),
        color var(--transition);
}


#contact_form .btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


#contact_form .btn-submit:focus {
    outline: none;

    box-shadow: 0 0 0 3px rgba(11, 43, 23, 0.15);
}


#contact_form .cta-sub {
    margin: 11px 0 0;

    color: var(--text-color);

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

    text-align: center;
}


#contact_form .form-control.error,
#contact_form .form-control.is-invalid {
    border-color: #b42318;

    box-shadow: none;
}


#contact_form .form-control.error:focus,
#contact_form .form-control.is-invalid:focus {
    border-color: #b42318;

    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}


#contact_form label.error {
    display: block;

    margin: 6px 0 0;

    color: #b42318;

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}


@media (max-width: 1199px) {

    .contact-quote-wrapper {
        padding: 55px 40px;
    }

    .contact-quote-content>h2 {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding-left: 15px;
    }
}


@media (max-width: 991px) {

    .contact-quote-section {
        background:
            linear-gradient(to bottom,
                var(--white-color) 0%,
                var(--white-color) 25%,
                var(--dark-color) 25%,
                var(--dark-color) 100%);
    }

    .contact-quote-wrapper {
        padding: 50px 35px;
    }

    .contact-quote-content {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .contact-quote-content>h2 {
        font-size: 36px;
    }

    .contact-quote-text {
        max-width: 650px;
    }

    .contact-form-wrapper {
        padding-left: 0;
    }
}


@media (max-width: 767px) {

    .contact-quote-wrapper {
        padding: 40px 24px;

        border-radius: var(--card-radius);
    }

    .contact-quote-content>h2 {
        font-size: 31px;
    }

    .contact-quote-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .contact-info-list {
        gap: 20px;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .contact-info-icon i {
        font-size: 22px;
    }

    .contact-info-content h3 {
        font-size: 20px;
    }

    .contact-info-content a,
    .contact-info-content p {
        font-size: 18px;
    }

    #contact_form .form-group {
        margin-bottom: 19px;
    }

    #contact_form .form-label {
        margin-bottom: 7px;

        font-size: 14px;
    }

    #contact_form .form-control {
        height: 52px;

        padding-left: 14px;
        padding-right: 14px;

        font-size: 15px;
    }

    #contact_form textarea.form-control {
        height: 145px;
        min-height: 145px;

        padding-top: 13px;
    }

    #contact_form .btn-submit {
        min-height: 52px;

        font-size: 15px;
    }
}


@media (max-width: 575px) {

    .contact-quote-wrapper {
        padding: 35px 18px;
    }

    .contact-quote-content>h2 {
        font-size: 28px;
    }

    .contact-info-item {
        gap: 13px;
    }

    .contact-info-content a {
        overflow-wrap: anywhere;
    }

    #contact_form .form-group {
        margin-bottom: 18px;
    }

    #contact_form .form-control {
        border-radius: 7px;
    }

    #contact_form .optional-text {
        font-size: 11px;
    }
}

/* ===================================
   Projects Gallery
=================================== */

.gallery-section {
    /* padding: 70px 0; */
    background-color: var(--white-color);
}


.gallery-wrapper {
    /* padding: 70px 35px; */
    /* background-color: var(--light-bg-color); */
    /* border-radius: var(--card-radius); */
}


/* ===================================
   Gallery Grid
=================================== */

.gallery-grid {
    margin-top: 40px;
}


.gallery-item {
    width: 100%;
    height: 330px;

    margin: 0;
}


.gallery-link {
    width: 100%;
    height: 100%;

    position: relative;

    display: block;

    overflow: hidden;

    background-color: var(--white-color);

    border-radius: calc(var(--card-radius) + 8px);
}


/* Gallery Image */

.gallery-link img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform var(--transition);
}


.gallery-link:hover img {
    transform: scale(1.02);
}


/* ===================================
   Gallery Overlay
=================================== */

.gallery-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(to top,
            var(--primary-color) 0%,
            transparent 62%);

    opacity: 0.75;

    pointer-events: none;

    transition: opacity var(--transition);
}


.gallery-link:hover .gallery-overlay {
    opacity: 0.9;
}


/* ===================================
   Gallery Content
=================================== */




.gallery-category {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.gallery-title {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}


/* ===================================
   Gallery Open Button
=================================== */

.gallery-view {
    width: 46px;
    height: 46px;

    position: absolute;
    right: 20px;
    bottom: 20px;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);

    color: var(--text-color);

    border-radius: 50%;

    font-family: var(--body-font);
    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    transition:
        background-color var(--transition),
        transform var(--transition);
}


.gallery-link:hover .gallery-view {
    background-color: var(--accent-hover-color);

    transform: rotate(90deg);
}


/* ===================================
   Gallery Actions
=================================== */

.gallery-actions {
    margin-top: 40px;
}


/* ===================================
   Responsive - 1199
=================================== */

@media (max-width: 1199px) {

    .gallery-wrapper {
        padding: 70px 24px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-title {
        font-size: 22px;
    }

}


/* ===================================
   Responsive - 991
=================================== */

@media (max-width: 991px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-wrapper {
        padding: 55px 24px;
    }

    .gallery-grid {
        margin-top: 35px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-actions {
        margin-top: 45px;
    }

}


/* ===================================
   Responsive - 767
=================================== */

@media (max-width: 767px) {

    .gallery-section {
        padding: 35px 0;
    }

    .gallery-wrapper {
        padding: 45px 16px;

        border-radius: var(--card-radius);
    }

    .gallery-grid {
        margin-top: 30px;
    }

    .gallery-item {
        height: 270px;
    }

    .gallery-link {
        border-radius: var(--card-radius);
    }


    .gallery-title {
        font-size: 21px;
    }

    .gallery-view {
        width: 42px;
        height: 42px;

        right: 16px;
        bottom: 16px;

        font-size: 24px;
    }

    .gallery-actions {
        margin-top: 38px;
    }

}


/* ===================================
   Responsive - 575
=================================== */

@media (max-width: 575px) {

    .gallery-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .gallery-grid {
        --bs-gutter-y: 16px;
    }

    .gallery-item {
        height: 250px;
    }


    .gallery-category {
        font-size: 11px;
    }

    .gallery-title {
        font-size: 20px;
    }

}

/* ===================================
   Before / After Gallery
=================================== */

.before-after-row {
    margin-top: 40px;
}


/* ===================================
   Card
=================================== */

.before-after-card {
    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    background: #f3f5ee;
}


/* ===================================
   Slider
=================================== */

.before-after-slider {
    width: 100% !important;

    position: relative;

    overflow: hidden !important;

    border-radius: inherit;

    line-height: 0;
}


/* ===================================
   Original Images
=================================== */

.before-after-slider>img {
    width: 100%;
    max-width: 100%;
    height: auto;

    display: block;
}


/* ===================================
   Plugin Generated Containers
=================================== */

/* Base image wrapper */

.before-after-slider>div:nth-child(1) {
    width: 100% !important;
}


/* Base image */

.before-after-slider>div:nth-child(1)>img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;

    display: block;
}


/*
   After image container

   مهم:
   عرض الـ container ده هو اللي بيتغير
   مع حركة السلايدر.
*/

.before-after-slider>div:nth-child(2) {
    overflow: hidden !important;
}


/*
   After image نفسها لازم تفضل بعرض
   الـ slider بالكامل، مش عرض الجزء الظاهر.
*/

.before-after-slider>div:nth-child(2)>img {
    max-width: none !important;
    height: auto !important;

    display: block;
}


/* ===================================
   Slider Divider
=================================== */

.before-after-slider>div:nth-child(3) {
    width: 3px !important;

    background: #ffffff !important;

    opacity: 1 !important;

    cursor: ew-resize !important;

    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}


/* ===================================
   Slider Handle
=================================== */

.before-after-slider>div:nth-child(3)>div>div {
    width: 46px !important;
    height: 46px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 !important;

    background: var(--accent-color) !important;

    border: 3px solid #ffffff;

    border-radius: 50% !important;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);

    line-height: 1 !important;
}


/* ===================================
   Slider Arrows
=================================== */

.before-after-slider>div:nth-child(3)>div>div i {
    width: 8px;
    height: 8px;

    padding: 0 !important;

    border-color: var(--primary-color) !important;
}


.before-after-slider>div:nth-child(3)>div>div i:first-child {
    margin-right: 5px;
}


.before-after-slider>div:nth-child(3)>div>div i:last-child {
    margin-left: 5px;
}


/* ===================================
   Mobile
=================================== */

@media (max-width: 767px) {

    .before-after-row {
        margin-top: 30px;
    }

    .before-after-card {
        width: 100%;
    }

    .before-after-slider {
        width: 100% !important;
    }

}

.site-footer {
    padding: 70px 0 20px;

    background-color: var(--dark-color);
}


.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    max-width: 140px;
    height: auto;
}


.footer-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-call-btn {
    min-height: 50px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background-color: var(--accent-color);

    border-radius: var(--button-radius);

    color: var(--text-color);

    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;

    white-space: nowrap;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.footer-call-btn i {
    color: var(--primary-color);

    font-size: 18px;
    line-height: 1;
}

.footer-call-btn i::before {
    width: auto;
    margin: 0;
}

.footer-call-btn:hover {
    background-color: var(--white-color);
    color: var(--text-color);
}


.footer-divider {
    width: 100%;
    height: 1px;

    margin: 28px 0 20px;

    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    text-align: center;
    text-transform: uppercase;
}


@media (max-width: 767px) {

    .site-footer {
        padding: 40px 0 18px;
        z-index: 999;
        position: relative;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-btn {
        justify-content: center;
    }

    .footer-divider {
        margin-top: 30px;
    }

    .footer-bottom p {
        font-size: 9px;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {

    .nav-phone {
        position: fixed;
        bottom: 13px;
        left: 50%;

        transform: translateX(-50%);

        width: 60%;
        padding: 10px 15px;

        text-align: center;

        border: 4px solid var(--accent-color);
        border-radius: var(--button-radius);

        background-color: var(--dark-color);
        color: var(--white-color);

        visibility: visible;

        z-index: 998;

        font-family: var(--body-font);
        font-size: 22px;

        text-decoration: none;
    }

    .site-header {
        margin-top: 50px;
    }

    .contact-quote-section {
        padding: 35px 0;
        z-index: 999;
        position: relative;
    }
}
/* ===================================
   Mobile Hero
=================================== */

.grass-hero-mobile {
    display: none;
}


@media (max-width: 991px) {

    .grass-hero-mobile {
        display: block;

        padding-bottom: 45px;

        background: var(--white-color);
    }


    /* ===================================
       Hero Image
    =================================== */

    .grass-mobile-image {
        width: 100%;

        overflow: hidden;
    }


    .grass-mobile-image img {
        width: 100%;
        height: auto;

        display: block;
    }


    /* ===================================
       Hero Card
    =================================== */

    .grass-mobile-card {
        position: relative;

        margin-top: -55px;

        padding: 28px 22px;

        background: var(--white-color);

        border-radius: 18px;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.10);

        z-index: 2;
    }


    /* ===================================
       Label
    =================================== */

    .grass-mobile-label {
        margin-bottom: 10px;

        font-size: 12px;
        font-weight: 600;

        letter-spacing: 1px;

        text-transform: uppercase;

        color: var(--primary-color);
    }


    /* ===================================
       Title
    =================================== */

    .grass-mobile-title {
        margin-bottom: 16px;

        font-family: var(--heading-font);

        font-size: 32px;
        font-weight: 400;

        line-height: 1.12;

        color: var(--text-color);
    }


    /* ===================================
       Description
    =================================== */

    .grass-mobile-description {
        margin-bottom: 22px;

        font-size: 15px;

        line-height: 1.65;

        color: var(--text-color);
    }


    /* ===================================
       Actions
    =================================== */

    .grass-mobile-actions {
        display: flex;

        flex-direction: column;

        gap: 12px;

        margin-bottom: 24px;
    }


    .grass-mobile-actions .main-btn {
        width: 100%;

        justify-content: center;

        text-align: center;
    }


    .grass-mobile-phone {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        padding: 13px 18px;

        color: var(--primary-color);

        font-weight: 600;

        text-decoration: none;

        border: 1px solid rgba(0, 0, 0, 0.10);

        border-radius: 50px;

        background: var(--white-color);
    }


    .grass-mobile-phone i {
        font-size: 17px;
    }


    /* ===================================
       Features
    =================================== */

    .grass-mobile-features {
        padding-top: 20px;

        display: grid;

        gap: 12px;

        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }


    .grass-mobile-feature {
        display: flex;

        align-items: center;

        gap: 10px;

        font-size: 14px;
        font-weight: 500;

        color: var(--text-color);
    }


    .grass-mobile-feature .grass-feature-icon {
        flex: 0 0 auto;
    }

}

/* ===================================
   Mobile Hero
=================================== */

.mobile-hero-section {
    padding: 24px 0 35px;

    background: var(--white-color);
}


/* ===================================
   Hero Card
=================================== */

.mobile-hero-card {
    width: 100%;

    overflow: hidden;

    background: #f4f5f0;

    border-radius: 16px;
}


/* ===================================
   Hero Image
=================================== */

.mobile-hero-image {
    width: 100%;

    position: relative;

    aspect-ratio: 16 / 9;

    background-image:
        url("../img/hero-bg.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* ===================================
   Google Reviews Badge
=================================== */

.google-reviews-badge {
    position: absolute;
    right: 0;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 15px 5px 5px;
    overflow: hidden;
    margin: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26) !important;
}
.google-reviews-badge .logo img {
    width: 40px;
    flex-shrink: 0;
}
.google-reviews-badge .score {
    line-height: 1;
}
.google-reviews-badge .score .rating {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.google-reviews-badge p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    color: #777777;
}
.star-rating {
    display: inline-flex;
    align-items: center;
    color: #fbba03;
}
.star-rating i:before {
    margin: 0 1px;
}
/* ===================================
   Hero Content
=================================== */

.mobile-hero-content {
    padding: 18px 18px 22px;
}


/* ===================================
   Label
=================================== */

.mobile-hero-label {
    width: fit-content;

    margin: 0 0 14px;

    padding: 10px;

    background: var(--white-color);

    border-radius: 10px;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.35;

    color: var(--dark-color);
}


/* ===================================
   Title
=================================== */

.mobile-hero-title {
    margin: 0 0 14px;

    font-family: var(--heading-font);

    font-size: 30px;
    font-weight: 400;

    line-height: 1.1;

    color: var(--primary-color);
}


/* ===================================
   Description
=================================== */

.mobile-hero-description {
    margin: 0 0 18px;

    font-size: 18px;

    line-height: 1.6;

    color: var(--text-color);
}


/* ===================================
   Features
=================================== */

.mobile-hero-features {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 20px;
}


.mobile-hero-feature {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;

    color: var(--text-color);
}


.mobile-feature-icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--accent-color);

    font-size: 14px;
}


/* ===================================
   Actions
=================================== */

.mobile-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;
}


.mobile-hero-actions .main-btn {
    padding: 13px 20px;
}


.mobile-hero-phone {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--primary-color);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


.mobile-hero-phone i {
    font-size: 16px;
}


/* ===================================
   Small Mobile
=================================== */

@media (max-width: 575px) {

    .mobile-hero-section {
        padding-top: 18px;
    }


    .mobile-hero-content {
        padding: 16px 16px 20px;
    }


    .mobile-hero-title {
        font-size: 28px;
    }

        .google-reviews-badge {
        margin: 20px 0 0 20px;
        right: auto;
        left: 0;
    }

}