.header img,
.header svg {
    display: block;
}

.lock {
    overflow: hidden !important;
}

.button-reset {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.header {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    font-family: 'Raleway', sans-serif;
    background-color: #FFFFFF;
}

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

.header__left {
    display: flex;
    align-items: center;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__logo {
    margin: 0 14px 0 0;
    width: 170px;
    height: 60px;
}

.header__switch-lang {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #444444;
    transition: .3s ease-in-out;
}

.header__switch-lang:hover {
    color: #247CA4;
}

.menu {
    display: flex;
    align-items: center;
}

.menu__list {
    display: flex;
    align-items: center;
    margin: 0 6px 0 0;
    padding: 0;
    list-style-type: none;
}

.menu__item {
    margin: 0 15px 0 0;
}

.menu__item:last-child {
    margin: 0;

}

.menu__link {
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #444444;
    transition: .3s ease-in-out;
}

.menu__link:hover {
    color: #247CA4;
}

.header__serach {
    margin: 0 0 0 25px;
}

.header__serach-button span {
    display: none;
}

.header__serach-button-icon {
    width: 16px;
    height: 16px;
    fill: #444444;
    transition: .3s ease-in-out;
}

.header__serach-button:hover .header__serach-button-icon {
    fill: #247CA4;
}

.header__burger-icon {
    width: 18px;
    height: 20px;
    stroke: #444444;
}

.header__lk:hover .header__lk-icon {
    stroke: #247CA4;
}

.header__lk-icon {
    width: 16px;
    height: 16px;
    stroke: #444444;
    transition: .3s ease-in-out;
}

.header-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.header__burger {
    display: none;
}

.header__switch-lang--mobil {
    display: none;
}

.header__close:hover .header__close-icon {
    fill: #247CA4;
}

.header__close-icon {
    width: 16px;
    height: 16px;
    fill: #444444;
    transition: .3s ease-in-out;
}

.header__close--menu-mobil {
    display: none;
}

.header__serach {
    position: relative;
}

.header__serach-content {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    background-color: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease-in-out;
    max-height: 50px;
    min-width: 300px;
}

.header__serach-content.active {
    opacity: 1;
    pointer-events: unset;
}

.header__serach-content .header__close {
    margin: 0 0 0 10px;
}

.search-form {
    display: flex;
}

.search-form__input {
    margin: 0 20px 0 0;
    border: 2px solid #AAAAAA;
    padding: 11px 17px;
    width: 500px;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    background: #FFFFFF;
    font-family: inherit;
}

.search-form__input:focus {
    outline: none;
}

.search-form__input:focus-visible {
    outline: none;
}

.search-form__input::placeholder {
    color: #444444;
}

.search-form__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    width: 200px;
    height: 42px;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #247CA4;
    box-shadow: inset 0px -2px 0px #1F6A8C;
    transition: .3s ease-in-out;
}

.js-search-content-close {
    height: 36px;
}

.search-form__button:hover {
    background-color: #1f6a8c;
}

@media screen and (max-width: 1200px) {
    .header__logo {
        margin: 0;
    }

    .menu__list {
        margin: 0;
    }

    .menu__item {
        margin: 0px 15px 0 0;
    }

    .header__serach {
        margin: 0;
    }

    .search-form__input {
        width: 410px;
    }
}

@media screen and (max-width: 991px) {
    .header {
        height: 50px;
    }

    .header__logo {
        width: 142px;
        height: 50px;
    }

    .header__burger {
        display: block;
        padding: 20px 16px;
    }

    .header__left {
        width: 100%;
        justify-content: space-between;
    }

    .header__right {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 20px 20px 20px;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        opacity: 0;
        pointer-events: none;
        overflow: auto;
    }

    .header__search {
        order: 1;
    }

    .header__menu {
        order: 2;
        margin: 20px 0 0 0;
    }

    .menu {
        width: 100%;
    }

    .menu__list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .menu__item {
        border-bottom: 1px solid #DDDDDD;
        width: 100%;
        height: 50px;
    }

    .menu__link {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .header__right.active {
        opacity: 1;
        pointer-events: unset;
        transition: .3s ease-in-out;
    }

    .menu__item:last-child {
        border-bottom: none;
    }

    .header__lk {
        position: absolute;
        left: 0;
        top: 0;
    }

    .header__switch-lang--mobil {
        position: absolute;
        left: 50px;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }

    .header__close--menu-mobil {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }

    .header__serach-button span {
        display: block;
    }

    .header__serach-button .header__serach-button-icon {
        margin: 0 10px 0 0;
        fill: #247CA4;
    }

    .header__serach-button {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #1F6A8C;
        border-radius: 3px;
        width: 100%;
        height: 42px;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #247CA4;
    }

    .header__serach {
        width: 100%;
    }

    .header__serach-content {
        left: 0;
        top: 0;
        right: auto;
        height: 42px;
        width: 100%;
    }

    .search-form {
        width: 100%;
    }

    .search-form__input {
        width: 67%;
        height: 42px;
    }

    .search-form__button {
        width: 33%;
    }

    .header__serach-content .header__close {
        display: none;
    }

    .header__switch-lang {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
    }

    .header__inner {
        margin: 0 -15px;
    }
}