body.admin-bar {
    position: relative;
}

@keyframes load {
    100% {
        opacity: 0.08;
        filter: blur(5px);
        letter-spacing: 3px;
    }
}

.preloader {
    display:flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 18px;
    animation: load 1.2s infinite 0s ease-in-out;
    animation-direction: alternate;
    text-shadow: 0 0 1px white;
}

.service__image img {
    height: auto;
}

@media screen and (max-width: 782px) {
    html #wpadminbar {
        top: -46px;
    }
}

.key-areas__button {
    display: block;
    position: relative;
}

.key-areas__button img.key-areas__button-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    object-position: center;
}

.key-areas__button span {
    display: block;
}

.key-areas__button.active {
    color: #bfbfbf;
}

.key-areas__button.active:hover {
    color: #ee7a04;
}

.key-areas__images {
    height: auto;
    background: transparent;
    align-self: flex-start;
}

.key-areas {
    align-items: flex-start;
}

.key-areas__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.key-areas__image.active {
    display: block;
}

.key-areas__controll {
    padding-top: 0;
    align-self: flex-start;
}

.key-areas-section {
    background: #030303;
    padding-top: 48px;
}

@media only screen and (max-width: 1024px) {
    .key-areas-section {
        padding-top: 32px;
    }
}

table {
    border-collapse: collapse;
    margin-bottom: 35px;
}

td {
    border: 1px solid #585858;
}

.project__subtitle {
    color: white;
}

.project__text {
    font-size: 16px;
}

.jobs {
    margin-bottom: 30px;
}

.job {
    background: #1a1a1a;
    margin-bottom: 20px;
    display: block;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-out;
}

.job:hover {
    background-color: #343434;
}

.job__title {
    font-weight: 700;
    font-size: 24px;
    line-height: initial;
    color: #ffffff;
    margin-bottom: 10px;
}

.job__group {
    display: flex;
    color: #bfbfbf;
}

.job__label {
    font-weight: 700;
    margin-right: 15px;
}

.jobs-form__group {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.jobs-form__group input[type="submit"] {
    padding: 17px 73px;
    font-size: 14px;
    color: #ffffff;
}

.page_title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: block;
    vertical-align: top;
    line-height: 60px;
    margin-right: 33px;
}

.face-section {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.face-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(140px, 22vh, 260px);
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.75) 60%, #030303 100%);
    opacity: 0;
    transition: opacity 0.25s ease-out;
    pointer-events: none;
    z-index: 1;
}

.face-section.is-scrolled::after {
    opacity: 1;
}

.face-section__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.face-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.45);
}

.face-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}

@media screen and (max-aspect-ratio: 16/9) {
    .face-section__video {
        object-fit: contain;
    }
}

.face-section .container {
    z-index: 2;
}

.services__title {
    text-align: center;
}

.mission-section {
    margin-bottom: 100px;
}

.mission {
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.mission__title {
    text-align: center;
    margin-bottom: 24px;
}

.mission__text {
    color: #bfbfbf;
    font-size: 16px;
    line-height: 22px;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .mission-section {
        margin-bottom: 60px;
    }

    .mission {
        padding: 0;
    }

    .mission__text {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .mission {
        padding: 0;
    }

    .mission__text {
        font-size: 16px;
        line-height: 22px;
    }
}

.subscribe__action {
    display: none;
    text-align: center;
}

.subscribe__open-modal {
    min-width: 240px;
}

body.home .subscribe__note,
body.home .subscribe__form,
body.post-type-archive-project .subscribe__note,
body.post-type-archive-project .subscribe__form {
    display: none;
}

body.home .subscribe__action,
body.post-type-archive-project .subscribe__action {
    display: block;
}

.callback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 12;
}

.callback-modal__background {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.callback-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 560px;
    background: #1a1a1a;
    border-radius: 5px;
    padding: 44px 32px 32px;
}

.callback-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: #323233 url('../images/icons/close.svg') no-repeat center;
    background-size: 22px;
    cursor: pointer;
}

.callback-modal__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.callback-modal__form input[type="text"],
.callback-modal__form input[type="email"],
.callback-modal__form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0 0 16px;
}

.callback-modal__form textarea {
    min-height: 140px;
    resize: vertical;
    font-size: 14px;
    color: #bfbfbf;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 17px 19px;
    font-family: inherit;
}

.callback-modal__form textarea.error {
    border-color: red;
}

.callback-modal__submit {
    display: block;
    width: 100%;
    margin-top: 8px;
}

.field-error-message {
    margin: -8px 0 12px;
    color: #ff6b6b;
    font-size: 13px;
    line-height: 1.4;
}

.form-policy {
    margin: 0 0 16px;
}

.form-policy__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bfbfbf;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.form-policy__checkbox {
    -webkit-appearance: checkbox;
    appearance: auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: #f58200;
    cursor: pointer;
}

.form-policy__label a {
    color: #fff;
    text-decoration: underline;
}

.form-policy.error {
    padding: 10px 12px;
    border: 1px solid rgba(255, 107, 107, 0.65);
    border-radius: 5px;
    background: rgba(255, 107, 107, 0.08);
}

.form-policy .field-error-message {
    margin-top: 6px;
}

body.form-is-submitting,
body.form-is-submitting * {
    cursor: wait !important;
}

form.is-submitting input[type="submit"],
form.is-submitting button[type="submit"] {
    opacity: 0.8;
}

.privacy-policy-content-section {
    padding-bottom: 60px;
}

.page.privacy-policy-page .page__title {
    text-align: center;
}

.privacy-policy-content {
    color: #fff;
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
    text-justify: inter-word;
}

.privacy-policy-content h1,
.privacy-policy-content h2,
.privacy-policy-content h3,
.privacy-policy-content h4 {
    color: #fff;
    margin: 0 0 18px;
}

.privacy-policy-content p,
.privacy-policy-content ul,
.privacy-policy-content ol {
    color: #fff !important;
    margin: 0 0 16px;
}

.privacy-policy-content li,
.privacy-policy-content div,
.privacy-policy-content span,
.privacy-policy-content strong,
.privacy-policy-content b,
.privacy-policy-content em {
    color: #fff !important;
}

.privacy-policy-content a {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    .callback-modal__panel {
        padding: 40px 18px 20px;
    }

    .callback-modal__title {
        font-size: 24px;
    }
}

.contacts-tour-section {
    margin-bottom: 70px;
}

.contacts-tour {
    background: #1a1a1a;
    border-radius: 5px;
    padding: 40px;
}

.contacts-tour__title {
    margin-bottom: 18px;
}

.contacts-tour__text {
    color: #bfbfbf;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contacts-tour__frame {
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    margin-bottom: 24px;
}

.contacts-tour__frame iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: 0;
}

.contacts-tour__link {
    display: table;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

@media only screen and (max-width: 1024px) {
    .contacts-tour {
        padding: 28px 20px;
    }

    .contacts-tour__frame iframe {
        min-height: 480px;
    }
}

@media only screen and (max-width: 768px) {
    .contacts-tour-section {
        margin-bottom: 50px;
    }

    .contacts-tour {
        padding: 22px 16px;
    }

    .contacts-tour__frame iframe {
        min-height: 360px;
    }

    .contacts-tour__link {
        display: block;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.cooperation__head {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 30px;
}

.cooperation__wrapper {
    width: 100%;
    display: block;
}

@media only screen and (max-width: 1024px) {
    .cooperation__list img {
        -o-object-position: center;
        object-position: center;
    }
}

.footer {
    padding-top: 37px;
    padding-bottom: 24px;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer__left {
    width: 30%;
    float: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__right {
    width: 70%;
    float: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 0;
}

.footer__contacts {
    width: auto;
    margin-left: auto;
}

.footer__logo {
    margin-bottom: 30px;
    flex-shrink: 0;
}

.footer__copyright {
    display: block;
    width: 100%;
    margin-top: auto;
    padding-bottom: 14px;
}

.copyright {
    line-height: 24px;
}

.footer-section {
    padding: 0 0 50px;
}

@media only screen and (max-width: 1024px) {
    .footer__left {
        width: 40%;
    }
    .footer__right {
        width: 60%;
    }
}

@media only screen and (max-width: 768px) {
    .footer__left {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .footer__right {
        width: 100%;
    }
    .footer__row {
        display: block;
    }
    .footer__copyright {
        text-align: center;
    }
    .footer__logo {
        margin-bottom: 10px;
    }
}

.news-item {
    display: flex;
    width: 100%;
    height: 230px;
    background: #000000;
    margin-bottom: 30px;
}
.news-item__image {
    display: block;
    height: 230px;
}
.news-item__info {
    display: block;
    height: 230px;
}
.news-item__image {
    flex-basis: 30%;
}
.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item__info {
    flex-basis: 70%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-item__title {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}
.hashtag::before {
    content: '#';
    margin-right: 2px;
    color: #ee7a04;
}
.news__wrapper {
    display: flex;
}
.news__sidebar {
    flex-basis: 200px;
    flex-shrink: 0;
}
.news__list {
    width: 100%;
}
.news__sidebar {
    display: flex;
}
.news__sidebar-column {
    flex-basis: 50%;
}
.news__tags {
    position: relative;
    margin-bottom: 30px;
    padding-right: 200px;
}
.news__sidebar-link {
    margin-bottom: 15px;
}
.news__sidebar-link a {
    border-bottom: 1px solid transparent;
}
.news__sidebar-link.active a {
    border-bottom: 1px solid #ee7a04;
}
.hashtag {
    border-bottom: 1px solid transparent;
}
.hashtag.active {
    border-bottom: 1px solid #ee7a04;
}
.news__tag {
    margin-right: 15px;
    margin-bottom: 5px;
    display: inline-block;
    vertical-align: top;
}
.news__clear {
    padding: 6px 35px;
    font-size: 14px;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
}
.news__empty {
    color: #FFFFFF;
}
@media (max-width: 1024px) {
    .news__list {
        width: 400px;
    }
    .news-item {
        display: block;
        height: auto;
    }
    .service__lead {
        flex-direction: column;
        gap: 24px;
    }
    .service__lead-media {
        flex-basis: auto;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 580px) {
    .news__wrapper {
        display: block;
    }
    .news__list {
        width: 100%;
    }
    .news-item__info {
        padding: 30px 20px;
    }
}

.news__sidebar-column {
    display: block;
}

.news__filters {
    display: none;
    width: 100%;
    margin-bottom: 30px;
}

.dropdown {
    position: relative;
    width: 50%;
    padding: 0 5px;
}

.dropdown__link {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #606060;
    border-radius: 4px;
    cursor: pointer;
}

.dropdown__selected {
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #2f2f2f;
    background-color: transparent;
    text-align: center;
    border-radius: 5px;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}

.dropdown__list {
    display: none;
    position: absolute;
    top: 34px;
    left: 5px;
    right: 5px;
    width: calc(100% - 10px);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 580px) {
    .news__sidebar-column {
        display: none;
    }
    .news__filters {
        display: flex;
    }
}

.our-projects {
    margin-bottom: 65px;
    text-align: center;
}

.our-projects__title {
    font-size: 30px;
    margin-bottom: 25px;
}

.our-projects__note {
    color: #999;
    line-height: 22px;
    margin-bottom: 47px;
}

.our-projects__note--compact {
    margin-bottom: 20px;
}

.prompower-logo {
    display: block;
    width: 100%;
    max-width: 415px;
    height: auto;
    max-height: 197px;
    margin: 0 auto 15px;
}

.prompower-logo.reglab-logo {
    max-width: 320px;
}

.service__lead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.service__lead-text {
    flex: 1 1 auto;
    min-width: 0;
}

.service__lead-media {
    flex: 0 0 575px;
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.service__lead-image {
    display: block;
    width: 100%;
    max-width: 575px;
    height: auto;
}

.service__catalog {
    clear: both;
}

.service__download {
    text-align: center;
    margin-bottom: 75px;
}

.service__download-link {
    color: #ee7a04;
}

.service__download-link:hover {
    color: #ee7a04;
}

.vacancy__subtitle {
    font-size: 25px;
    margin-bottom: 10px;
}

.vacancy__zp {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vacancy__address {
    font-size: 20px;
    margin-bottom: 20px;
}

.vacancy__text {
    font-size: 20px;
    margin-bottom: 20px;
}

.vacancy__list {
    margin-bottom: 30px;
}

.vacancy__list li {
    margin-bottom: 5px;
}

.vacancy__control {
    text-align: center;
    margin-bottom: 30px;
}

.vacancy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 777;
}

.vacancy-modal__bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.vacancy-modal__wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    background-color: black;
    padding: 10px;
    box-shadow: 0px 0px 5px 3px #000000;
    z-index: 10;
    max-height: calc(100% - 30px);
    overflow-y: auto;
    position: absolute;
    text-align: center;
    z-index: 3;
}

.vacancy-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: #323233;
    border-radius: 5px;
    background-image: url('../images/icons/close.svg');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    cursor: pointer;
    z-index: 4;
}

.ovh {
    overflow: hidden;
}

.tiles {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
}

.tile {
    width: 250px;
    height: auto;
    text-align: center;
}

.tile img {
    width: 100%;
    justify-content: cover;
}

.frow {
    display: flex;
    width: 100%;
}

.fcol {
    display: block;
    width: 50%;
    flex-shrink: 0;
}

.geography {
    margin-bottom: 50px;
}

.geography__title {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.site-title {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.geography__map img {
    width: 100%;
    height: auto;
    object-position: contain;
}

.industry__text {
    font-size: 16px;
    line-height: 23px;
    color: #999;
}

.lispan li::before {
    content: none;
}

.lispan li span {
    position: relative;
}

.lispan li span::before {
    position: absolute;
    left: -10px;
    top: 3px;
}

.lispan li span::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background-image: url(../images/icons/point.png);
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: left center;
}

.industry {
    margin-bottom: 50px;
}

li {
    position: relative;
    padding-left: 12px;
    line-height: 25px;
}

ul li::before {
    position: absolute;
    left: 0;
    top: 7px;
}

.page.vacancy-page {
    padding: 106px 0 23px;
}

.jobs-text {
    margin-bottom: 30px;
}

.site-title--highlight {
    color: #ee7a04;
}

.word-seo {
    margin-bottom: 30px;
}

.word-seo__content {
    position: relative;
    overflow: hidden;
}

.word-seo__text {
    padding-right: 30%;
    line-height: 24px;
}

.word-seo__signature {
    padding-top: 20px;
    text-align: left;
    line-height: 24px;
}

.word-seo__photo {
    position: absolute;
    top: 0px;
    bottom: 68px;
    right: 0px;
    width: 25%;
}

.about-video {
    position: relative;
    z-index: 2;
    margin: 40px 0 60px;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}

.about-video__player {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 720px;
    pointer-events: auto;
}

.word-seo__photo-image {
    display: block;
    width: 100%;
    height: auto;
}

.industry__title--center {
    text-align: center;
}

.cert-carousel {
    overflow: hidden;
}

.cert-carousel__track {
    display: flex;
    gap: 24px;
    margin: 0;
    transition: transform 0.35s ease;
    will-change: transform;
}

.cert-carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    margin: 0 0 24px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    padding: 16px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}

.cert-carousel__slide img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #fff;
}

.cert-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cert-carousel__counter {
    min-width: 84px;
    text-align: center;
}

.cert-carousel.is-static .cert-carousel__track {
    flex-wrap: wrap;
    transform: none !important;
}

.cert-carousel.is-static .cert-carousel__slide {
    flex-basis: calc((100% - 24px) / 2);
}

.industry__content {
    height: 100%;
}

.frow {
    display: flex;
}

.fcol {
    width: 50%;
    flex-shrink: 0;
}

.industry__list {
    text-align: right;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    row-gap: 5px;
    height: 100%;
    justify-content: center;
}

.industry {
    width: 31%;
}

.geography {
    width: 69%;
}

.page-about:not(body) {
    padding: 106px 0 20px;
}

.word-seo__title {
    text-align: left;
}

.geography__map {
    padding-left: 50px;
}

@media (max-width: 1024px) {
    .cooperation__list {
        text-align: center;
    }

    .cert-carousel__slide {
        flex-basis: calc((100% - 24px) / 2);
    }

    .cert-carousel__slide img {
        height: 320px;
    }
}
@media (max-width: 768px) {
    .cooperation__list {
        text-align: center;
    }
    .page-template-template-about .frow {
        display: flex;
        flex-direction: column-reverse;
    }
    .industry {
        width: 100%;
    }
    .geography {
        width: 100%;
    }
    .geography__map {
        padding-left: 0px;
    }
    .mt-today .tiles {
        justify-content: center;
    }
    .word-seo__text {
        padding-right: 0px;
    }
    .about-video {
        margin: 30px 0 45px;
    }
}
@media (max-width: 480px) {
    .word-seo__photo {
        position: initial;
        width: 300px;
        height: 300px;
    }

    .cert-carousel__slide {
        flex-basis: 100%;
    }

    .cert-carousel__slide img {
        height: 260px;
    }

    .word-seo__signature {
        margin-bottom: 30px;
    }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.red-menu-item {
    color: red; /* Замените "red" на желаемый цвет для вашего пункта меню */
}

.page {
    &:not(body) {
        padding: 90px 0 24px;
        @include medium {
            padding: 95px 0 24px;
        }
        .container {
            @include small {
                padding: 0 20px;
            }
        }
    }
    &__title {
        font-weight: 700;
        font-size: 35.62px;
        line-height: 42px;
        &.sub {
            max-width: 66%;
            @include medium {
                max-width: 100%;
            }
        }
    }
    &.projects {
        padding: 106px 0 31px;
        @include medium {
            padding: 94px 0 16px;
        }
    }
    &.single-project {
        padding: 106px 0 44px;
        @include medium {
            padding: 92px 0 17px;
        }
    }
    &.contacts-page {
        padding: 106px 0 23px;
        @include medium {
            padding: 95px 0 23px;
        }
    }
}

.header__wrapper > .logo {
    flex-shrink: 0;
    background-size: contain;
    background-position: left center;
}

@media only screen and (min-width: 1025px) {
    .header .container {
        max-width: 1280px;
    }

    .header__wrapper {
        align-items: center;
        gap: 32px;
    }

    .menu {
        flex: 1 1 auto;
        min-width: 0;
    }

    .menu__list {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 24px;
    }

    .menu__item {
        margin: 0;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .menu__item.lang {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .lang__item {
        margin: 0;
        flex: 0 0 auto;
    }
}
