.header {
    height: 72px;
    z-index: 10;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.header__container {
    max-width: 1362px!important;
    padding: 17px 16px 14px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box!important;
    box-sizing: border-box!important;
    margin: 0 auto;
}

.header__left ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__left ul {
    gap: 50px;
}


.header__left ul li a {
    color: #FFF;
    font-family: Ruberoid;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.header__logo {
    position: absolute;
    top: 26px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__right nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__right nav ul {
    gap: 50px;
}

.header__right nav ul li a {
    color: #FFF;
    font-family: Ruberoid;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.header__langs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@supports (margin-left: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem)) {
    .header__langs {
        margin-left: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem);
    }
}

@supports not (margin-left: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem)) {
    .header__langs {
        margin-left: calc(1rem + 0.875 * (100vw - 64rem) / 26);
    }
}

@supports (margin-right: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem)) {
    .header__langs {
        margin-right: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem);
    }
}

@supports not (margin-right: clamp(1rem, -1.1538461538rem + 3.3653846154vw, 1.875rem)) {
    .header__langs {
        margin-right: calc(1rem + 0.875 * (100vw - 64rem) / 26);
    }
}

.header__langs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
}

.header__langs ul li a {
    color: #FFF;
    font-family: Ruberoid;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.header__langs ul li.active a {
    font-weight: 400;
    color: #B0B0B0;
}

.header__search {
    display: none !important;
}

.header.fill {
    background: #fff;
}

.header.fill nav ul li a {
    color: #0C0C24;
}

.header.fill .header__langs ul li a {
    color: #0C0C24;
}

.header.fill .header__langs ul li.active a {
    color: #B0B0B0;
}

.header.fill .header__logo svg path {
    fill: #0C0C24;
}

.header.fill .header__search svg path {
    fill: #0C0C24;
}

.header.fill .header__hamburger svg rect {
    fill: #0C0C24;
}

.header__container-mobile {
    display: none;
    max-width: 100%;
    padding: 17px 16px 14px 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box!important;
    box-sizing: border-box!important;
}

.header__mobmenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    max-width: 530px;
    width: 100%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #fff;
    padding: 28px 26px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 15;
    box-sizing: border-box;
}

.header__mobmenu.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.header__mobmenu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
}

.header__mobmenu nav ul li a {
    color: #0C0C26;
    font-family: Circe;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.header__socials {
    position: absolute;
    bottom: 25px;
}

.header__socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.header__close {
    position: absolute;
    top: 24px;
    right: 16px;
}

@media (max-width: 1200px) {
    .header__left ul {
        gap: 30px;
    }
    .header__right nav ul {
        gap: 30px;
    }
}
@media (max-width: 1024px) {
    .header {
        height: 50px;
    }

    .header__container {
        display: none;
    }

    .header__logo {
        top: 17px;
    }

    .header__container-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 530px) {
    .header__langs {
        margin: 0 20px 0 0;
    }
}