﻿.site-header {
    background: #fff;
    position: relative;
    z-index: 10000;
}
.site-header__top {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__top__logo {
    height: 150px;
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.site-header__top__logo img {
    max-width: 100%;
    height: auto;
     height: 60px;
     width: auto;
     display: block;
}
.hamburger__button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 62px;
    height: 82px;
    background: #fff;
    cursor: pointer;
    padding: 0px;
}

.hamburger__button__close {
    display: none;
    font-size: 25px;
}

.hamburger__button__close span {
     font-size: 25px;
     font-weight: 900;
}

.hamburger__button.active .hamburger__button__lines {
    display: none;
}

.hamburger__button.active .hamburger__button__close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger__button__lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
}

.hamburger__button__line {
    width: 100%;
    height: 3px;
    background: #333;
    margin: 0;
    border-radius: 4px;
}
.language-notice {
    background: #fffbed;
    color: #333;
    padding: 15px 20px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid #f7f3e6;
    border-top: 1px solid #f7f3e6;
}
.language-switch {
    display: flex;
    gap: 8px;
    margin-right: 40px;
}
.language-switch-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 80px;
    text-decoration: none;
    flex-direction: column;
    color: inherit;
    font-weight: 500;
    font-size: 18px;
}
    .language-switch-link span {
        text-decoration: none;
    }

    .language-switch-link:hover span {
        text-decoration: underline;
    }

    .language-switch a {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        text-decoration: none;
    }

        .language-switch a:hover {
            text-decoration: underline;
        }
        .language-switch a.active {
            text-decoration: underline;
            font-weight: 700;
        }
.language-switch--desktop {
    display: none;
}

.language-switch--mobile {
    margin: 0;
    flex-direction: row;
}


@media (min-width: 1024px) {
    .hamburger__button {
        display: none;
    }

    .language-switch--desktop {
        display: flex;
    }

    .language-switch--mobile {
        display: none;
    }

    .site-header__top__logo img {
        height: 65px;
    }
}