.header {
    padding: 42px 0 32px;
    position: sticky;
    top: 0px;
    z-index: 100;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    height: 168px;
}
.header.sticky {
    background-color: rgba(255, 255, 255, 0.96);
}

.header__wrapper {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.header__top-end {
    display: flex;
    align-items: center;
    margin-right: 32px;
    gap: 72px;
}

.header__top-end .select--city--lg {
    margin-right: 0;
    display: none;
}

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

.header__contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__contacts--onMobile {
    display: none;
}

.header__contacts--burger {
    padding: 14px;
}

.header__phone {
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
}

.header__phone--desktop {
    display: block;
}

.header__logo {
    width: 214px;
    margin-right: 40px;
}
.header__logo--onMobile {
    display: none;
}

.header__logo-img {
    max-width: 100%;
}

.header__lang {
    cursor: pointer;
    justify-self: end;
}

.header__lang-select {
    background-color: transparent;
    border: none;
    font-size: 28px;
    font-weight: 700;
}

.header__lang-option {
    font-size: 16px;
}

.header__bottom.sticky {
    display: none;
}

.header__nav-list {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav-item {
    display: flex;
    justify-content: center;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.header__nav-link {
    padding: 7px 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

.header__nav-item:hover {
    text-decoration: underline;
    font-size: 700;
}

.header__nav-item--active {
    background-color: #fce500;
    border-radius: 20px;
}

.header__nav-item--active.header__nav-item:hover {
    text-decoration: none;
}

.header__city-select {
    min-width: 104px;
    padding: 8px 23px;
    background-color: transparent;
    border: 1px solid #121212;
    border-radius: 80px;
}

.header__login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 48px;
    padding: 8px 23px;
    background-color: #121212;
    color: #fff;
    border: 1px solid var(--main-dark);
    border-radius: 80px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}
.header__login-btn:hover {
    background-color: var(--main-dark);
    color: var(--accent);
    border-color: transparent;
}

.no-scroll {
    overflow: hidden;
}

.burger {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    transition: all 0.4s ease;
    width: 100%;
    background: #fce500;
    min-height: 100vh;
    z-index: 10;
}

.burger__nav {
    padding: 0px 80px 160px;
    position: fixed;
    top: 76px;
    height: 100vh;
    width: 100%;
    overflow: auto;
}

.burger__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #121212;
    margin-bottom: 32px;
}

.burger__list-item {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
    border-radius: 14px;
    letter-spacing: -0.015em;
}

body {
    overflow-x: hidden;
}

.burger--show {
    transform: translate(0, 0);
    opacity: 1;
    overflow: hidden;
    min-width: 50vw;
    min-height: 100vh;
    z-index: 20;
}

.burger__menu {
    display: none;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 20px;
    height: 20px;
    z-index: 100;
    position: relative;
    cursor: pointer;
}

.burger__menu-line {
    width: 100%;
    height: 2px;
    background-color: #121212;
    transition: all 0.4s ease;
}

.burger__menu-line::before,
.burger__menu-line::after {
    content: "";
    position: absolute;
    background-color: #121212;
    height: 2px;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
}

.burger__menu-line::before {
    transform: translateY(-5px);
}

.burger__menu-line::after {
    transform: translateY(5px);
}

.burger__menu--show .burger__menu-line::before {
    transform: rotate(45deg);
}

.burger__menu--show .burger__menu-line::after {
    transform: rotate(-45deg);
}

.burger__menu--show .burger__menu-line {
    background: transparent;
}

@media screen and (max-width: 1240px) {
    .header__top-end .select--city--lg {
        display: block;
    }
    .select--city.select--city--xl {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .header__top-end {
        display: none;
    }
    .header {
        padding: 25px 0;
        height: auto;
        position: fixed;
        z-index: 10;
        left: 0;
        right: 0;
    }

    .header__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        margin-bottom: 0;
    }
    .header__contacts {
        justify-content: center;
    }

    .header__logo--onMobile {
        display: block !important;
        position: relative;
        z-index: 200;
    }
    .header__contacts--onMobile {
        display: block !important;
        position: relative;
        z-index: 200;
    }

    .header__contacts--desktop {
        display: none !important;
    }

    .header__bottom {
        display: none;
    }

    .header__lang--d-none {
        display: none !important;
    }
    .header__lang--burger {
        display: block;
    }
    .header__lang--onDesktop {
        display: none;
    }

    .burger__menu {
        display: flex;
    }

    .header__phone {
        display: block;
        font-size: 24px;
    }

    .header__logo {
        width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding: 25px 0;
    }

    .header__logo {
        width: 160px;
    }

    .header__phone {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        padding: 25px 0;
    }

    .burger__nav {
        top: 70px;
    }

    .header__top {
        column-gap: 15px;
    }

    .header__logo {
        width: 120px;
    }

    .header__phone {
        font-size: 16px;
    }

    .burger__menu {
        width: 26px;
        height: 14px;
    }

    .burger__menu:before {
        top: 6px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 20px 0;
    }

    .burger__nav {
        top: 65px;
    }

    .header__phone {
        font-size: 14px;
    }

    .burger__menu {
        width: 22px;
        height: 12px;
    }

    .burger__menu:before {
        top: 5px;
    }

    .header__logo {
        width: 95px;
    }
}

@media screen and (max-width: 374px) {
    .header__wrapper {
        padding: 0 10px;
    }

    .header__logo {
        width: 85px;
    }

    .header__phone {
        font-size: 12px;
    }
}
