/*
 * Theme Name: Starter Theme
 * Description: Starter Theme to use with Timber
 * Author: Timber Team and D4G!
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary-font: "Lato";
    --secondary-font: "DM Sans";

    --primary-color: #8dc63f;
    --secondary-color: #002614;

    --primary-text-color: #2d2e33;
    --secondary-text-color: #002614;

    --background-color-green: #8dc63f;
    --background-color-dark: #002614;
    --background-color-white: white;
    --bg-muted: rgba(0, 38, 20, .05);

}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-size: var(--secondary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    color: var(--secondary-text-color);
}

p,
ul,
ol {
    font-family: var(--secondary-font);
    color: var(--primary-text-color);
}

a {
    color: #414042;
    text-decoration: none;
    font-family: var(--secondary-font);
}

a:hover {
    color: var(--secondary-color);
}

/* General Responsive Typography */
h1 {
    font-size: clamp(28px, 4vw, 52px);
    /* Min: 32px, Pref: 5vw, Max: 64px */
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(24px, 3.5vw, 48px);
    /* Min: 28px, Pref: 4vw, Max: 56px */
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 3vw, 40px);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 15px;
}

h4 {
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 15px;
}

h5 {
    font-size: clamp(16px, 2vw, 28px);
    line-height: 1.6;
    font-weight: 500;
}

h6 {
    font-size: clamp(14px, 2vw, 24px);
    line-height: 1.7;
    font-weight: 500;
}

/* Paragraph Styling */
p {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.5;
    font-weight: 400;
}

/* Unordered List Styling */
ul {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.8;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: inline-block;
}

.only-phone {
    display: none;
}


.btn {
    border: none;
    cursor: pointer;
    min-height: 56px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    background-origin: border-box;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: 700;
    column-gap: 10px;
    font-family: var(--primary-font);
}

.btn svg {
    width: 20px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 36px;
    transition: 0.3s ease-in;

}

.primary-btn:hover {
    opacity: 0.7;
    transition: ease-in-out 0.3s;
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 36px;
    transition: ease-in-out 0.3s;
}

.secondary-btn:hover {
    color: #fff;
    opacity: 0.7;
    transition: ease-in-out 0.3s;

}

.white-btn {
    background-color: #fff;
    color: var(--secondary-text-color);
    padding: 12px 36px;
    transition: ease-in-out 0.3s;
}

.white-btn:hover {
    opacity: 0.7;
    transition: ease-in-out 0.3s;
}

.btn.call-btn {
    width: fit-content;
}


.container {
    max-width: 1380px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}


/*==================== HEADER PART CSS ====================*/
header {
    position: sticky;
    top: 0;
    z-index: 99;
}

.top-header {
    background: white;
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.top-header .logo {
    width: 150px;
}

.top-left-cover {
    display: flex;
    /*max-width: 450px;*/
    margin-left: auto;
    align-items: center;
}

.top-left-cover .service-info,
.top-left-cover .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 15px;
}
.top-left-cover .g-review-image {
    padding: 0 15px;
}
.top-left-cover .g-review-image img{
    max-width: 200px;
    max-height: 58px;
}
.top-left-cover .service-info, .top-left-cover .g-review-image {
    font-family: var(--primary-font);
    border-right: 1px solid lightgray;
}
.service-info span,
.contact-info span {
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 400;
    display: flex;
    column-gap: 10px;
    margin-bottom: 5px;
}

.service-info p,
.contact-info a {
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--secondary-color);
}

/*==================== NAVIGATION ====================*/
.nav-main {
    background: var(--secondary-color);
    width: 100%;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: black;
    height: 4px;
    width: 30px;
    margin: 0 0 5px;
    transition: 0.3s;
}

.menu-items-cover {
    list-style: none;
    display: flex;
    row-gap: 15px;
    column-gap: 32px;
    justify-content: center;
    align-items: center;
}

.menu-items-cover li {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 5px 0;
}

.menu-items-cover li a {
    color: white;
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 700;
    letter-spacing: 1.8px;
}

/* Submenu - Desktop */
.nav-main .sub-menu {
    display: none;
    position: unset;
    list-style: none;
}

.nav-main .menu-item-has-children {
    position: relative;
}

.nav-main .menu-item-has-children:hover>.sub-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
}

.nav-main .sub-menu li {
    padding: 0;
    margin: 0;
}

.nav-main .sub-menu li a {
    display: block;
    padding: 6px 10px;
    color: var(--secondary-color);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
}

.nav-main .sub-menu li a:hover {
    background-color: #f0f0f0;
    color: #000;
    border-radius: 4px;
}

/*==================== MOBILE STICKY BUTTONS ====================*/
.mobile-sticky-btns,
.review-icon {
    display: none;
}

/*==================== HERO SECTION ====================*/
/* Hero Section CSS */
.hero-section {
    position: relative;
}

.hero-content-wrapper {
    max-width: 700px;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    margin-top: 30px;
}

.hero-content-wrapper p strong {
    font-family: var(--primary-font);
    color: var(--secondary-text-color);
    font-weight: 700;
}

.hero-content-wrapper ul {
    display: flex;
    column-gap: 50px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 15px 0;
}

.hero-content-wrapper ul li {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.8;
    font-weight: 700;
    color: var(--secondary-text-color);
    list-style-image: url('data:image/svg+xml,<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.54995 9.2998L14.575 1.2748C14.8916 0.958138 15.2666 0.799805 15.7 0.799805C16.1333 0.799805 16.5083 0.958138 16.825 1.2748C17.1416 1.59147 17.3 1.96647 17.3 2.3998C17.3 2.83314 17.1416 3.20814 16.825 3.5248L7.67495 12.6748C7.35828 12.9915 6.98328 13.1498 6.54995 13.1498C6.11662 13.1498 5.74162 12.9915 5.42495 12.6748L1.17495 8.4248C0.858284 8.10814 0.699951 7.73314 0.699951 7.2998C0.699951 6.86647 0.858284 6.49147 1.17495 6.1748C1.49162 5.85814 1.86662 5.6998 2.29995 5.6998C2.73328 5.6998 3.10828 5.85814 3.42495 6.1748L6.54995 9.2998Z" fill="%2381C240"/></svg>');
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.hero-backdrop img {
    height: 100%;
}

/*==================== GOOGLE SLIDER SECTION ====================*/
.g-review-section {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.g-review-section .section-title-wrapper h2,
.section-title-wrapper span {
    color: #ffffff;
}

.g-review-section .ti-verified-by.ti-verified-by-row {
    display: none !important;
}

.g-review-section .section-title-wrapper {
    text-align: center;
    padding-bottom: 40px;
}

.g-review-section .section-title-wrapper .title-flex {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

.g-review-section .section-title-wrapper h2 {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 0;
}

.g-review-section .section-title-wrapper h2 img {
    width: 64px;
    height: 64px;
}

.g-review-section .section-title-wrapper img {
    max-width: 328px;
}

.g-review-section .section-title-wrapper span {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.5;
    letter-spacing: 1.5px;
}

.g-review-section .section-title-wrapper .title-flex .v-line {
    width: 2px;
    height: 35px;
    background: #ffffff;
}

.g-review-section .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner {
    font-family: var(--secondary-font) !important;
}

/*==================== CTA SECTION ====================*/

.cta-section .cta-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.cta-section .cta-content-wrapper .cta-text-block {
    margin: 0 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-section .cta-content-wrapper .cta-title {
    font-size: clamp(24px, 3.5vw, 48px);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .cta-content-wrapper .cta-description {
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    /*margin-bottom: 20px;*/
}

.cta-section .cta-content-wrapper .cta-text-block,
.cta-section .cta-content-wrapper .cta-image-block {
    width: 49%;
}

.cta-section .cta-content-wrapper .cta-text-block strong {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-section .cta-content-wrapper .cta-text-block p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.cta-section .cta-content-wrapper .cta-text-block p a {
    color: #fff;
    text-decoration: none;
}

.cta-section .cta-content-wrapper .cta-text-block p a:hover {
    text-decoration: underline;
}

.cta-section .cta-content-wrapper .cta-text-block .btn-wrapper {
    margin-top: 30px;
    display: flex;
    column-gap: 20px;

}

.cta-content-wrapper .cta-image-block {
    overflow: visible;
    margin-top:auto;
}

.cta-content-wrapper .cta-image-block img {
    max-width: 634px;
    max-height: 700px;
    /* max-width: 550px; */
    /* max-height: 630px; */
    object-fit: cover;
    overflow-x: visible;
    margin-bottom: -4px;
}

/* End CTA Section Block */

/* Footer Top badge */
.badge-logos-section {
    padding: 40px 0;
}

.badge-logo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.badge-logo-wrapper .logo-img img {
    max-width: 130px;
}

/*==================== FOOTER SECTION ====================*/
.footer-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.footer-section-bottom {
    background-color: var(--background-color-green);
    padding: 30px 0;
}

.copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright-wrapper p {
    color: #fff;
    font-size: 18px;
}

.copyright-wrapper ul {
    display: inline-flex;
    gap: 16px;
}

.copyright-wrapper ul li {
    list-style-type: none;
}

.copyright-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--primary-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-wrapper .address-wrapper h3,
.footer-wrapper .nav-links-wrapper h3,
.footer-wrapper .social-media-wrapper h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.5;
}

.footer-section .social-media-wrapper img {
    max-width: 280px;
}

.footer-wrapper .address-wrapper p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}

.footer-wrapper .address-wrapper p a,
.footer-wrapper .social-media-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-wrapper .address-wrapper p a:hover,
.footer-wrapper .social-media-wrapper p a:hover {
    text-decoration: underline;
}

.footer-wrapper .address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 26px;
    /*justify-content: space-between;*/
    justify-content: space-around;
}

.footer-wrapper .address-wrapper,
.footer-wrapper .nav-links-wrapper {
    border: 8px solid var(--primary-color);
    border-radius: 12px;
    padding: 28px;
}

.footer-wrapper .nav-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.footer-wrapper .social-media-text {
    margin-top: 15px;
}

.footer-wrapper .social-media-text p {
    color: #b4b5ba;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-wrapper .social-media-text span {
    color: #b4b5ba;
    font-size: 14px;
    font-family: var(--secondary-font);
}

.footer-wrapper .nav-links-wrapper .btn.primary-btn {
    width: 100%;
    justify-content: center;
}

.social-media-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-media-wrapper .social-media-icons {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 16px 0;
}

.social-media-wrapper .social-media-icons .svg-icon svg path,
.social-media-wrapper .social-media-icons .svg-icon svg circle {
    fill: #b4b5ba;
}

.social-media-wrapper .social-media-icons .svg-icon:hover svg path {
    fill: #292929;
}

.social-media-wrapper .social-media-icons .svg-icon:hover svg circle {
    fill: #292929;
}

@media(max-width: 1300px) {

    /* Start CTA Section Block */
    .cta-section {
        background: linear-gradient(120deg, #F5FFEC 70%, var(--primary-color) 70%) !important;
    }
    .cta-section.dark_bg {
        background: linear-gradient(120deg, var(--primary-color) 70%, var(--secondary-color) 70%) !important;
    }

    .cta-content-wrapper {
        align-items: flex-end;
    }

    .cta-content-wrapper .cta-image-block img {
        width: 100%;
        height: auto;
        margin-bottom: -5px;
    }

    /* End CTA Section Block */
}

@media (max-width: 1200px) {
    .hero-content-wrapper {
        max-width: 565px;
    }
}

@media (min-width: 992px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 180px;
        /* Adjust this to match your header height */
    }
}

@media (max-width: 991px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 110px;
        /* Adjust this to match your header height */
    }

    /* Google Slider */
    .g-review-section .section-title-wrapper img {
        max-width: 260px;
    }

    /* CTA section */
    .cta-content-wrapper {
        flex-direction: column;
    }

    .cta-section .cta-content-wrapper .cta-text-block,
    .cta-section .cta-content-wrapper .cta-image-block {
        width: 100%;
    }
    .cta-section .cta-content-wrapper .cta-text-block .cta-description p {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Footer Badge Logo */
    .badge-logos-section .badge-logo-wrapper .logo-img img {
        max-width: 90px;
    }

    /* Footer Code */
    .footer-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .copyright-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
    }

    .copyright-wrapper p {
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
    }

    .footer-wrapper .social-media-wrapper {
        margin: 30px 0;
    }
}

@media (max-width: 828px){
    .top-left-cover .g-review-image img {
        max-width: 150px;
        max-height: 58px;
    }
    .service-info p, .contact-info a {
        font-size: 16px;
    }
}

/* Desktop View */
@media (min-width: 769px) {
    .nav-main .menu-item-has-children .sub-menu {
        /*width:575px;*/
        width: max-content;
        height:320px;
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        background: rgba(255, 255, 255);
        min-width: 200px;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
        list-style: none;
        border-radius: 0 0 8px 8px;
    }
    .nav-main .menu-item-has-children.menu-item-52 .sub-menu,
    .nav-main .menu-item-has-children.menu-item-53 .sub-menu,
    .nav-main .menu-item-has-children.menu-item-54 .sub-menu {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .only-phone {
        display: block;
    }

    header .top-left-cover {
        display: none;
    }

    header .top-header .logo {
        width: 115px;
    }

    .top-header .container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .nav-main ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 5px;
    }

    .nav-main.show {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-main .sub-menu li a {
        color: #ffffff;
    }

    .nav-main .sub-menu {
        padding-left: 0;
        padding-top: 10px;
    }

    .nav-main .menu-item-has-children {
        width: 100%;
    }

    .nav-main .sub-menu li a:hover {
        background-color: #ffffff5c;
        color: var(--primary-color);
    }

    /*==================== MOBILE STICKY BUTTONS ====================*/
    .mobile-sticky-btns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background-color: var(--primary-color);
        border-top: 3px solid var(--primary-color);
    }

    .review-icon {
        display: block;
    }

    .mobile-sticky-btns a {
        width: 100%;
        display: flex;
        align-items: center;
        column-gap: 10px;
        justify-content: center;
        padding: 10px 0;
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-sticky-btns .ms-btn-1 {
        color: var(--secondary-color);
    }

    .mobile-sticky-btns .ms-btn-2 {
        background-color: var(--secondary-color);
        color: #fff;
    }

    /* Google Slider Css */
    .g-review-section .section-title-wrapper img {
        max-width: 200px;
    }

    .g-review-section .section-title-wrapper h2 img {
        width: 55px;
        height: 55px;
    }
    
    .why-choose-wrapper .form-wrapper{
        flex: 1;
    }

    /* Start CTA Section Block */
    .cta-section .cta-content-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .cta-section .cta-content-wrapper .cta-text-block {
        margin: 0 0 20px;
    }


    .cta-content-wrapper .cta-image-block {
        text-align: center;
    }

    .cta-content-wrapper .cta-image-block img {
        max-width: 300px;
        max-height: 350px;
        width: 100%;
    }
    .cta-section .cta-content-wrapper .cta-description {
        font-size: 20px;
        line-height: 28px;
    }

    /* End CTA Section Block */
    /* Footer Badge Logo */
    .badge-logos-section .badge-logo-wrapper .logo-img img {
        max-width: 90px;
    }

    /* Footer CSS */
    .footer-section .social-media-wrapper img {
        max-width: 180px;
        max-height: 110px;
        margin-bottom: 20px;
    }

    .footer-wrapper .address-wrapper h3,
    .footer-wrapper .nav-links-wrapper h3,
    .footer-wrapper .social-media-wrapper h3 {
        font-size: 22px !important;
    }

    .footer-wrapper .address-wrapper p {
        font-size: 16px !important;
    }

    .footer-wrapper .social-media-text p {
        font-size: 18px !important;
    }

    .address-cover h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .address-cover p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .g-review-section .section-title-wrapper .title-flex {
        flex-direction: column-reverse;
    }

    .g-review-section .section-title-wrapper .title-flex h2 {
        flex-direction: column;
        row-gap: 6px;
    }

    .g-review-section .section-title-wrapper .title-flex .v-line {
        width: 150px;
        height: 2px;
        background: #ffffff;
        margin: 15px auto;
    }

    .g-review-section .section-title-wrapper h2 img {
        width: 45px;
        height: 45px;
    }

    /* Start CTA Section Block */
    .cta-section {
        padding-bottom: 0;
        background: linear-gradient(140deg, #F5FFEC 70%, var(--primary-color) 70%) !important;
    }
    .cta-section.dark_bg {
        padding-bottom: 0;
        background: linear-gradient(140deg, var(--primary-color) 70%, var(--secondary-color) 70%) !important;
    }

    .cta-content-wrapper .cta-image-block img {
        /* max-width: 300px;
            max-height: 350px; */
        margin-bottom: -4px;
    }

    .cta-section .cta-content-wrapper .cta-text-block .cta-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-section .cta-content-wrapper .cta-text-block .cta-description p {
        font-size: 16px;
        line-height: 1.5;
    }

    /* End CTA Section Block */

}

@media (max-width: 500px) {
    .nav-main {
        top: 77px;
    }

    .top-header {
        padding: 0;
    }

    .top-header .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    .hamburger {
        margin-left: auto;
    }

    .review-icon {
        margin-right: auto;
    }

    .mobile-sticky-btns a {
        font-size: 14px;
    }

    .mobile-sticky-btns a svg {
        width: 20px;
    }

    .mobile-header {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        align-items: center;
    }

    .mobile-header .call-icon,
    .mobile-header .mobile-logo,
    .mobile-header .hamburger {
        width: clamp(5.625rem, 16.216vw + 2.432rem, 7.5rem);
    }

    .mobile-header .hamburger {
        align-items: flex-end;
    }
}

@media (max-width: 467px) {
    .hero-buttons {
        gap: 10px;
        align-items: center;
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin-top: 15px;
    }

    .hero-backdrop img {
        object-position: 30%;
    }

    .cta-section .cta-content-wrapper .cta-text-block .btn-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .cta-section .cta-content-wrapper .cta-text-block .btn-wrapper .btn {
        margin-top: 20px;
    }
}

@media (max-width: 345px) {
    .mobile-header .call-icon svg {
        width: 80px;
    }

    .mobile-header .mobile-logo img {
        width: 100px;
        height: 65px;
    }
}