.container {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100%;
    margin: 0 auto;
}

.hero {
    background-color: #FFF;
    color: #2E2E2E;
    /*padding: 0 0 5vw;*/
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom 0.78125vw;
    background-size: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.5625vw;
    padding: 0;
    border-bottom: 0.052083333333333336vw solid #B4B4B4;
    overflow: hidden;
}

.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.8333333333333334vw;
}

.menu a {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.8333333333333334vw;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #2E2E2E;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.5625vw;
    padding: 2.864583333333333vw 1.6666666666666667vw;
    box-shadow: inset 0 -4px 0 0 transparent;
    transition: box-shadow 0.25s ease;
    position: relative;
}

.menu a:hover {
    color: #1E8F7F;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.20833333333333334vw;
    background: #1E8F7F;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.menu a:hover::after {
    opacity: 1;
}

.header-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 9.84375vw;
    height: 3.229166666666667vw;
    background: #1E8F7F;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.8333333333333334vw;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0.625vw;
    gap: 0.8333333333333334vw;
    position: relative;
    overflow: hidden;
    padding: 0.4166666666666667vw 0.4166666666666667vw 0.4166666666666667vw 0;
}

.header-button:hover {
    background: #2E2E2E;
}

.header-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3958333333333335vw;
    height: 2.3958333333333335vw;
    background: #FFF;
    border-radius: 0.4166666666666667vw;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header-button__icon img {
    width: 1.25vw;
    height: 1.25vw;
    color: #2E2E2E;
}

.header-button__icon--right {
    opacity: 1;
    transform: translateX(0);
}

.header-button__icon--left {
    position: absolute;
    left: 0.4166666666666667vw;
    opacity: 0;
    transform: translateX(-8px);
    width: 0;
    height: 0;
    background: #FFF;
    border-radius: 0.4166666666666667vw;
}

.header-button:hover .header-button__icon--right {
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
}

.header-button:hover .header-button__icon--left {
    width: 2.3958333333333335vw;
    height: 2.3958333333333335vw;
    opacity: 1;
    transform: translateX(0);
}

.header-button:hover .header-button__text {
    transform: translateX(6px);
}

.header__button {
    display: flex;
    align-items: center;
    gap: 1.6666666666666667vw;
}

.burger-menu {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    /*.hero {*/
    /*    padding: 0 0 64px;*/
    /*}*/

    .hero-content {
        padding: 0 0 64px;
    }

    .site-header {
        min-height: 96px;
    }

    .site-logo img {
        display: flex;
    }

    .burger-menu {
        display: block;
        border: 1px solid #B4B4B4 !important;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 0 48px;
    }
}


.desktop-services-menu a[href="#"] {
    pointer-events: none;
    cursor: default;
}

.desktop-services-menu a[href="#"]:focus {
    outline: none;
}