@font-face {
  font-family: 'TikTokSans24Expanded';
  src: url('/local/templates/bftnew/fonts/TikTokSans_24pt_Expanded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  
}
.page {
    margin-right: 0;
}

.white-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-content);
    border-radius: 1.5rem;
    color: var(--black);
    box-shadow: var(--shadow);

    &.--blue {
        background: var(--blue-dark-2);
        color: #fff;
    }

    @media (width >=1000px) {
        padding: 2rem;
    }

    .text-content {
        color: var(--gray-second);
    }

    &.--blue {
        .text-content {
            color: #fff;
        }
    }
}

.white-block__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    & ~ & {
        margin-top: 0.5rem;
    }
}

.white-block__title {
    font-family: var(--tts-font);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.1428;
    letter-spacing: 0;

    @media (width >=1000px) {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

.white-block__subtitle {
    font-family: var(--tts-font);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
    &.--center {
        text-align: center;
    }

    @media (width >=1000px) {
        font-size: 1.875rem;
        line-height: 1.2;
    }
}

.white-block__description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-second);

    .--blue & {
        color: #fff;
    }

    @media (width >=1000px) {
        font-size: 1.25rem;
        line-height: 1.2;
    }
}

.white-block__info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1rem;
    .white-block__info-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .white-block__info-ico {
        width: 1.5rem;
        height: 1.5rem;
        flex-shrink: 0;
        fill: none;
    }
    .white-block__info-text {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    @media (width < 768px) {
        gap: 1rem;
        padding-top: 0.5rem;
        .white-block__info-text {
            font-size: 1rem;
        }
    }
}

.white-block__btn {
    margin-top: auto;
}

.drop-zone-container {
    padding: 20px;
    border: 1px dashed var(--gray-content);
    border-radius: 10px;
    transition: border-color 0.2s ease;

    &.--filled {
        border: 1px solid var(--gray-content);
    }

    &:hover,
    &.--highlighted {
        border: 2px dashed var(--blue);
        padding: 19px;
    }

    .drop-zone {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.75rem;

        &.hidden {
            display: none;
        }

        .drop-zone__input {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: -1;
        }

        .drop-zone__ico {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 0.675rem;
            background: var(--blue-light);
            color: var(--blue-dark-2);
            flex-shrink: 0;
        }

        .drop-zone__ext {
            color: var(--gray-second);
        }
    }

    .file-list {
        .file-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.75rem;

            .file-ico {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 3rem;
                height: 3rem;
                border-radius: 0.675rem;
                background: var(--gray-content);
                color: var(--black);
                flex-shrink: 0;
            }

            .file-text {
                .file-size {
                    color: var(--gray-second);
                }
            }

            .remove-btn {
                margin-left: auto;
                flex-shrink: 0;
                color: #a4a7ae;

                &:hover {
                    color: var(--red);
                }
            }
        }
    }
}

.red-text {
    color: var(--red);
}

.gray-text {
    color: var(--gray-second);
}

.text-content {
    font-size: 16px;
    line-height: 24px;
    a {
        color: inherit;
        text-decoration: 1px solid underline;
        transition: color 0.2s ease;
        transition-property: text-decoration-color, color;
        &:hover,
        &:active {
            color: var(--red);
            text-decoration-color: transparent;
        }
    }

    & > * {
        &:first-child {
            margin-top: 0;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    p,
    ol,
    ul {
        margin: 1rem 0;

        @media (width >=1000px) {
            font-size: 20px;
            line-height: 28px;
        }
    }

    ul {
        list-style: none;
        padding: 0;

        li {
            position: relative;
            padding-left: 30px;

            &::before {
                content: "";
                position: absolute;
                top: 12px;
                left: 12px;
                width: 6px;
                height: 6px;
                border-radius: 6px;
                background: currentColor;
            }
        }
    }

    ol {
    }

    .h5,
    h5 {
        font-size: 1.5rem;

        @media (width >=1200px) {
            font-size: 1.75rem;
        }
    }
}

.btn-rounded,
.vacanciesHeader-sections .btn-rounded {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--red);
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--inter-font);
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease;

    &:hover {
        background-color: var(--red-dark);
    }

    &:active {
        background-color: var(--red-dark);
    }

    &[disabled] {
        opacity: 0.33;
    }

    &.--gray {
        color: var(--black);
        background: var(--gray-content);

        &:hover {
            background-color: var(--gray-border);
        }

        &:active {
            background-color: var(--gray-second);
        }
    }
    &.--blue {
        background: var(--blue);

        &:hover,
        &:active {
            background-color: var(--blue-dark);
        }
    }
}

.input-row {
    display: flex;
    margin: 0 0 0.625rem;
    position: relative;
    z-index: 1;
}

.input-row__field {
    height: 2.1875rem;
    width: 100%;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    outline: 0;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 0.875rem;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    border-radius: 0;
}

label.input-row__label {
    width: 100%;
    display: inline-block;
    font-family: var(--tts-font);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 120%;
    color: #b3b3b3;
    margin: 0 0 0.375rem;
    box-sizing: border-box;
}

/* input-checkbox */
.input-checkbox {
    position: relative;
    display: flex;
    gap: 0.75rem;
    cursor: pointer;

    input {
        position: absolute;
        opacity: 0;
        top: 2px;
        left: 0;
        width: 20px;
        height: 20px;
        z-index: -10;
    }

    .input-checkbox__ico {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        margin: 2px 0;
        flex-shrink: 0;
        border: 1px solid var(--gray-border);
        border-radius: 6px;
        transition: border-color 0.2s ease;
        transition-property: border-color, background-color;

        svg {
            transform: scale(0);
            transition: transform 0.2s ease;
        }
    }

    &:hover .input-checkbox__ico {
        border-color: #a4a7ae;
    }

    .field-error & .input-checkbox__ico {
        border-color: var(--red);

        &:hover {
            border-color: var(--red-dark);
        }
    }

    input:checked ~ .input-checkbox__ico {
        border-color: var(--blue);
        background-color: var(--blue);

        &:hover {
            border-color: var(--blue-dark);
            background-color: var(--blue-dark);
        }

        svg {
            transform: scale(1);
        }
    }
}

/* input-text */
.input-text__block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: none;
    padding: 0;
}

.input-text__label {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.375;
    color: var(--black);

    .req-star {
        color: var(--blue);
    }
}

.input-text__field {
    display: block;
    padding: 0.75rem 1.25rem;
    height: 3rem;
    border: 1px solid var(--gray-content);
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--tts-font);

    &:focus-within {
        outline: 2px solid var(--blue);
    }

    &.is-error {
        border-color: var(--red);
        outline: 2px solid var(--red);
    }
}

textarea.input-text__field {
    resize: horizontal;
    height: 6rem;
}

.--hidden-breadcrumbs .breadcrumbs {
    display: none;
}

.--vacancies-breadcrumbs {
    display: flex;
    flex-direction: column;

    .breadcrumbs {
        padding-top: 0;
        padding-bottom: 2rem;
        order: 2;

        @media (width >=1000px) {
            padding-bottom: 3rem;
        }
    }

    .breadcrumbs-list {
        overflow: auto;

        @media (width >=1000px) {
            overflow: visible;
        }
    }

    .breadcrumbs-list__item:first-of-type .breadcrumbs-list__link {
        font-size: 1rem;
        width: auto;
        height: auto;
        text-indent: 0;
        background: none;
    }

    .breadcrumbs-list__item::after {
        transform: rotate(20deg);
    }

    .breadcrumbs-list__item:last-child {
        color: #fff;
    }

    .breadcrumbs-list__link:hover {
        color: #fff;
    }
}

.header.--vacancies {
    position: relative;
    background: #fff;

    .header-top {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        padding: 12px 0.9375rem;

        @media (width >=1000px) {
            flex-direction: row;
            align-items: center;
            padding: 12px 4.375rem;
        }

        @media (width >=1770px) {
            padding: 12px 6.25rem;
        }
    }

    .header-top__descr {
        font-weight: 600;
        line-height: 1.2;
        width: auto;
        color: var(--black);
        font-family: var(--tts-font);
    }

    .header-panel {
        gap: 1rem 1.5rem;
    }

    .header-menu-item {
        position: relative;
        display: block;
        line-height: 100%;
        color: #ed302f;
        text-decoration: none;
        transition: 0.4s ease;
    }

    /* @media (width >=1000px) {
        .header-menu-item:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 30px;
            background: #1a1a1a;
            position: absolute;
            right: -0.75rem;
            top: calc(50% - 15px);
        }
    } */
}

.article-content .btn {
    display: inline-flex;
    &.btn--transparent {
        background-color: var(--gray-btn);
    }
}

.article__topInfo {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    @media (width < 900px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1rem;
    }
}
.article__topData,
.article__topTags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    .article__topData-item {
        display: flex;
        align-items: center;
        gap: 10px;
        svg {
            fill: none;
        }
        span {
            font-size: 18px;
            line-height: 1.6;
            color: #696969;
        }
    }
    .btn {
        color: #000;
        text-align: center;
        margin: 0;
        &:hover {
            color: #fff;
        }
    }
}

.article-content__headings {
    margin: 2rem 0;
    &.--hidden {
        display: none;
    }
    .article-content__headings-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .--sublink {
        position: relative;
        padding-left: 1.2rem;
        &::before {
            content: "";
            position: absolute;
            top: 0.5em;
            left: 0.3125rem;
            width: 0.3125em;
            height: 0.3125em;
            border-radius: 0.3125rem;
            background-color: currentColor;
        }
    }
}

.warning-quote {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    padding-bottom: 25px;
    margin-bottom: 25px;
    box-sizing: border-box;
    border-bottom: 1px solid #ed302f;
    @media (min-width: 1770px) {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .warning-quote-content {
        position: relative;
        padding: 0 0 0 70px;
        margin: 0;
        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 44px;
            height: 44px;
            background-image: url(../img/warining-icon.svg);
            background-repeat: no-repeat;
            background-size: 100%;
        }
    }
}

.article__form-trigger {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 50px;
    margin: 50px 0;
    border-radius: 0.625rem;
    transition: background-color 0.2s ease;
    overflow: clip;
    &::before {
        position: absolute;
        content: '';
        top: 50%;
        translate: 0 -50%;
        left: 0%;
        height: auto;
        width: 50%;
        aspect-ratio: 1;
        background: url("../img/glass-pattern-1.png");
        background-size: contain;
        background-position: 60% 60%;
        background-repeat: no-repeat;
        filter: blur(50px);
        opacity: 1;
        z-index: -2;
    }
    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0%;
        left: 0%;
        background-color: #eef1f780;
        backdrop-filter: blur(50px);
        z-index: -1;
    }
    border-radius: 0.625rem;
    .h4 {
        margin-bottom: 0.5rem;
    }
    .btn {
        margin: 0;
        background-color: var(--gray-btn);
        &.btn--transparent {
            &:hover {
                background-color: #fff;
            }
        }
    }
    @media (width <= 1000px) {
        padding: 24px;
        margin: 24px 0;
    }
}

.contactUs-wrap.contactUs-wrap__ext {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.5rem;
    padding: 0;
    background: none;
}

.contactUs-wrap__ext .contactUs-wrap__info,
.contactUs-wrap__ext .contactUs-wrap__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    height: 100%;
    padding: 52px 67px;
    font-size: 20px;
    line-height: 1.2;
}

.contactUs-wrap__ext .contactUs-wrap__info {
    background: var(--red);
    color: #fff;
}

.contactUs-wrap__ext .contactUs-wrap__body {
    background: #f7f7f7;
}

.contactUs-wrap__ext .contactUs-wrap__info .contactUs__content ul {
    padding: 0;
    list-style: none;
}

.contactUs-wrap__ext .contactUs-wrap__info .contactUs__content ul li {
    position: relative;
    padding-left: 1rem;
}

.contactUs-wrap__ext .contactUs-wrap__info .contactUs__content ul li::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 6px;
    height: 6px;
    background: #fff;
}

.contactUs-wrap__ext .contactUs-wrap__info .btn {
    display: inline-flex;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
}

.contactUs-wrap__ext .contactUs-wrap__info .btn::after {
    background: #fff;
    height: 0;
    top: auto;
    bottom: 0;
}

.contactUs-wrap__ext .contactUs-wrap__info .btn:active,
.contactUs-wrap__ext .contactUs-wrap__info .btn:hover {
    color: #031845;
}

.contactUs-wrap__ext .contactUs-wrap__info .btn:active::after,
.contactUs-wrap__ext .contactUs-wrap__info .btn:hover::after {
    height: 100%;
}

.contactUs-wrap__ext .contactUs-wrap__info .btn,
.contactUs-wrap__ext .contactUs-wrap__body .btn {
    margin-top: auto;
}

.contactUs-wrap__ext .contactUs__title,
.contactUs-wrap__ext .contactUs-wrap__info--title {
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.contactUs-wrap__ext .contactUs-wrap__info--title {
    color: #fff;
}

@media (width < 1450px) {
    .contactUs-wrap__ext .contactUs-wrap__info,
    .contactUs-wrap__ext .contactUs-wrap__body {
        padding: 2rem 3rem;
    }

    .contactUs-wrap__ext .contactUs__title,
    .contactUs-wrap__ext .contactUs-wrap__info--title {
        font-size: 3rem;
    }
}

@media (width < 1200px) {
    .contactUs-wrap.contactUs-wrap__ext {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contactUs-wrap__ext .contactUs-wrap__info,
    .contactUs-wrap__ext .contactUs-wrap__body {
        padding: 1.5rem 2rem;
        font-size: 1.25rem;
    }

    .contactUs-wrap__ext .contactUs__descr {
        font-size: 1.25rem;
    }

    .contactUs-wrap__ext .contactUs__title,
    .contactUs-wrap__ext .contactUs-wrap__info--title {
        font-size: 2rem;
    }
}

@media (width < 900px) {
    .contactUs-wrap.contactUs-wrap__ext {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .contactUs-wrap__ext .contactUs-wrap__info,
    .contactUs-wrap__ext .contactUs-wrap__body {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
        height: auto;
    }

    .contactUs-wrap__ext .contactUs__descr {
        font-size: 1.125rem;
        margin: 1rem 0;
    }

    .contactUs-wrap__ext .contactUs__title,
    .contactUs-wrap__ext .contactUs-wrap__info--title {
        font-size: 1.5rem;
    }
}

@media (width < 500px) {
    .contactUs-wrap__ext .contactUs-wrap__info .btn,
    .contactUs-wrap__ext .contactUs-wrap__body .btn {
        width: 100%;
    }
}

.linkedMenu__item.hide_link,
.footerTop-column__list .hide_link {
    display: none;
}

@media (width < 1170px) {
    .linkedMenu__item.hide_link,
    .footerTop-column__list .hide_link {
        display: block;
    }
}

.frontPage .h1.front-slide__title--small,
.productPage .h1.front-slide__title--small {
    font-size: 1.75rem;
}

@media (min-width: 600px) {
    .frontPage .h1.front-slide__title--small,
    .productPage .h1.front-slide__title--small {
        font-size: 2.5rem;
    }
}

@media (min-width: 1000px) {
    .frontPage .h1.front-slide__title--small,
    .productPage .h1.front-slide__title--small {
        font-size: 3rem;
    }
}

@media (min-width: 1770px) {
    .frontPage .h1.front-slide__title--small,
    .productPage .h1.front-slide__title--small {
        font-size: 4.5rem;
        margin: 1.375rem 0 0;
    }
}


/* ARTICLE */
.article-content .img-zoom {
    position: relative;
    img {
        display: block;
    }
}
.article-content figure:not(.figure-large) {
    position: relative;
    padding-bottom: 100%;
}

.article-content figure.figure-large {
    position: relative;
    padding-bottom: 50%;
}

.article-content figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.article-content .img-zoom:hover,
.article-content figure:hover {
    .zoom {
        opacity: 1;
    }
}
.article-content .img-zoom .zoom,
.article-content figure .zoom {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: 3.25rem;
    height: 3.25rem;
    background: var(--red);
    border: none;
    padding: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transition:
        background-color 0.2s ease,
        opacity 0.2s ease;
    svg {
        margin: auto;
    }
    &:hover {
        background-color: var(--red-dark);
    }
}

@media (min-width: 1000px) {
    .article-content figure:not(.figure-large) {
        padding-bottom: 55%;
    }
}

@media (min-width: 1000px) {
    .product-desc-inner.article-content {
        margin: 2.5rem 0 0;
    }
}
@media (min-width: 1770px) {
    .product-desc-inner.article-content {
        margin: 3.75rem 0 0;
    }
}

.article-content {
    @media (min-width: 1770px) {
        width: calc(100% - 16.25rem - 11.375rem - 1rem);
    }
}

[data-color="light"] .front-slide__el,
[data-color="light"] .front-slide__sub,
[data-color="light"] .front-slide__title,
[data-color="light"] .front-slider__slogan {
    color: #1a1a1a;
}

.frontVideos-panel {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
}

.frontVideos__btn {
    margin: 0 0 0 auto;
    display: none;
}

@media (min-width: 768px) {
    .frontVideos__btn {
        display: flex;
    }
}

.frontVideos-carousel {
    margin: 60px 0 0 0;
    width: 100%;
}

.frontVideos-carousel__item {
    padding-bottom: 1rem;
    height: auto;
}

.frontVideos-carousel__img {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: clip;
    border-radius: 0.625rem;
}

.frontVideos-carousel__img picture,
.frontVideos-carousel__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frontVideos-carousel__play {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: var(--red);
    border-radius: 80px;
    opacity: 0;
    transition: opacity 0.2s ease;

    .frontVideos-carousel__img:hover & {
        opacity: 1;
    }

    svg {
        margin-left: 4px;
    }
}

.frontVideos-carousel__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.125;
    height: 2.25em;
    overflow: hidden;
    margin-top: 1rem;
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s ease;
}

.frontVideos-carousel__name:hover {
    color: var(--red);
}

.frontVideos-carousel__date {
    color: #696969;
    font-size: 0.825rem;
    line-height: 1.2;
    margin-top: 1rem;
}

.frontVideos-more-mobile {
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .frontVideos-carousel__name {
        font-size: 1.75rem;
    }

    .frontVideos-more-mobile {
        display: none;
    }
}

/*  */
/* frontSubscribe */
/*  */
.frontSubscribe {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5rem;
    padding-bottom: 3.125rem;

    @media (width <=768px) {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        padding-bottom: 2.5rem;
    }
}
.frontSubscribe__title {
    max-width: 526px;
    text-wrap: balance;
}

.frontSubscribe__description {
    margin-top: 1em;
    font-weight: 400;
    line-height: 1;
    max-width: 485px;
    text-wrap: balance;
}

.frontSubscribe__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin: auto 0;

    @media (width <=768px) {
        gap: 1.5rem;
    }
}

.frontSubscribe__form .input-row {
    width: 100%;
}

.frontSubscribe__btn {
    margin-top: 1rem;
}

.frontSubscribe__success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(0);
    background: #fff;
    z-index: 2;
    transition: transform 0.2s ease;
}

.--sended .frontSubscribe__success {
    transform: scale(1);
}

.status.error {
    color: #f44336;
}

.bottom_products_description {
    margin-top: 40px;
}

/*  */
/* vacancies */
/*  */
.vacanciesHeader {
    position: relative;
    background: url("/img/vacancies/neon-lights-bg.jpg") center / cover;
    border-image: fill 0 linear-gradient(#0112487a, #0112487a);
    padding: 0;

    &::before {
        display: none;
    }
}

.vacanciesHeader-contnet {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    gap: 2rem;
    width: 100%;
    height: auto;
    padding: 0.9375rem;
    color: #fff;
    /* margin: 140px 0 0; */

    @media (width >=640px) {
        gap: 3rem;
        /* margin: 110px 0 0; */
    }

    @media (width >=1000px) {
        /* margin: 60px 0 0; */
        /* min-height: calc(100vh - 189px); */
        padding: 4.375rem;
    }

    @media (width >=1770px) {
        /* min-height: calc(100vh - 160px); */
        padding: 6.25rem;
    }

    .vacanciesHeader.--slim & {
        padding-block: 2rem;

        @media (width >=1000px) {
            padding-block: 3rem;
        }

        & ~ & {
            padding-top: 0;
        }
    }

    & ~ & {
        padding-top: 0;
        order: 3;
    }

    h1,
    .h1,
    h2,
    .h2 {
        color: #fff;
    }
}

.vacanciesHeader-contnet__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin-right: auto;
    margin-bottom: auto;
    text-decoration: none;
    color: #fff;

    img {
        flex-shrink: 0;
    }
}

.vacanciesHeader-contnet__slogan {
    font-size: 14px;
    line-height: 18px;
    font-family: var(--tts-font);
    font-weight: 600;
    max-width: 500px;
}

.vacanciesHeader-contnet__title {
    font-family: var(--tts-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    text-indent: 0.15em;

    @media (width >=1000px) {
        text-indent: 0.15em;
        font-size: 64px;
    }

    @media (width >=1280px) {
        text-indent: 0.15em;
        font-size: 98px;
    }

    img {
        height: 1em;
        vertical-align: middle;
    }
}

.vacanciesHeader-contnet__sub {
    font-family: var(--inter-font);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-wrap: balance;

    @media (width >=1000px) {
        text-align: right;
    }
}

.vacanciesHeader-contnet__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    align-items: flex-end;
    width: 100%;
    justify-content: space-between;

    @media (width >=1000px) {
        text-indent: 0.9em;
        grid-template-columns: 640fr 370fr;
    }
}

.vacanciesHeader-contnet__middle {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    max-width: 100%;
}

.vacanciesHeader-contnet__bottom {
    @media (width <=768px) {
        .btn,
        .btn-rounded {
            justify-content: center;
            width: 100%;
            text-align: center;
        }
    }
}

.vacanciesHeader-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-right: 0;

    @media (width < 1000px) {
        overflow: auto;
        flex-wrap: nowrap;
        width: calc(100% + 0.9375rem + 0.9375rem);
        margin-inline: -0.9375rem;
        padding-inline: 0.9375rem;
    }

    a {
        display: inline-flex;
        padding: 12px 20px;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.5;
        color: #fff;
        background-color: #ffffff1a;
        border: 1px solid #ffffff1a;
        backdrop-filter: blur(100px);
        border-radius: 10px;
        flex-shrink: 0;
        text-decoration: none;
        transition: background-color 0.2s ease;

        &:hover,
        &:active {
            background-color: #ffffff33;
        }
    }
}

/* vacancies classes */
.vacancies-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: auto;
    max-width: 100%;
    flex-grow: 1;

    @media (width >=1000px) {
        gap: 3rem;
    }

    [data-tab-content].active {
        display: block;
    }
}

.vacancies-section {
    padding: 2rem 0.9375rem;

    @media (width >=1000px) {
        padding: 3rem 4.375rem;
    }

    @media (width >=1770px) {
        padding: 3rem 6.25rem;
    }
}

.vacancies-title {
    font-size: 1.875rem;
    line-height: 1.275;
    font-family: var(--tts-font);
    font-weight: 600;

    @media (width >=1000px) {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    @media (width >=1300px) {
        font-size: 3rem;
    }
}

.vacancies-smalltitle {
    font-size: 1.25rem;
    line-height: 1.2;
    font-family: var(--tts-font);
    font-weight: 600;

    @media (width >=1000px) {
        font-size: 1.5rem;
    }

    @media (width >=1770px) {
        font-size: 1.875rem;
    }
}

.vacancies-tabs {
    display: inline-flex;
    overflow: auto;
    gap: 0.5rem;
    background: var(--gray-back);
    border: 1px solid var(--gray-content);
    border-radius: 10px;
    padding: 0.5rem;
    margin-right: auto;
    overflow: auto;
    flex-shrink: 0;
    max-width: 100%;
}

.vacancies-tabs__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: var(--tts-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    flex-shrink: 0;
    color: var(--gray-second);
    border-radius: 10px;
    transition: background-color 0.2s ease;

    &.active {
        background-color: var(--red);
        color: #fff;

        &:hover {
            background-color: var(--red-dark);
        }
    }

    &:hover {
        background-color: var(--gray-content);
    }
}

.vacancies-tabs__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vacancies-container:has(.vacancies-tabs__item.allResult.active) .vacancies-show-more {
    display: none;
}

/* vacancies-search */
.vacancies-search {
    position: relative;
    width: 100%;

    &.--on-white-page {
        border-radius: 16px;
        border: 1px solid var(--gray-border);
    }
}

.vacancies-search__form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 1rem;
}

.vacancies-search__loupe {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 24px;
    height: 24px;
    color: var(--gray-second);

    @media (width < 600px) {
        left: 16px;
        top: 16px;
    }
}

.vacancies-search__input {
    display: block;
    width: 100%;
    padding: 20px 0px 20px 64px;
    border-radius: 1rem;
    font-size: 1.5rem;
    line-height: 1.25;
    background: #fff;
    border: none;
    text-overflow: ellipsis;

    &:focus-visible {
        outline: none;
    }

    @media (width < 600px) {
        padding: 10px 0px 10px 52px;
        font-size: 1.25rem;
    }
}

.vacancies-search__btn {
    display: inline-flex;
    margin: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--blue);
    font-size: 1.25rem;
    line-height: 1.25;
    font-family: var(--inter-font);
    border: none;
    transition: background-color 0.2s ease;

    &:not([disabled]):hover {
        background-color: var(--blue-dark);
    }

    &:not([disabled]):active {
        background-color: var(--blue-dark-2);
    }

    &[disabled] {
        cursor: default;
        opacity: 0.33;
    }

    svg {
        display: none;
    }

    @media (width < 600px) {
        svg {
            display: block;
        }

        span {
            display: none;
        }
    }
}

.vacancies-search__reset {
    transition: transform 0.2s ease;
    color: #a4a7ae;

    &:hover {
        color: #717680;
        transform: rotate(90deg);
    }

    &:disabled {
        display: none;
    }

    svg {
        display: block;
    }
}

.vacancies-search__result {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 50dvh;
    margin-top: 0.25rem;
    padding: 0.25rem;
    border-radius: 1rem;
    background-color: #fff;
    z-index: 2;
    overflow: auto;
    box-shadow: var(--shadow);

    &.--hidden {
        display: none;
    }

    .vacancies-search__item {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 1.25rem;
        line-height: 1.2;
        color: var(--black);
        background-color: #fff;
        border-radius: 0.75rem;
        transition: background-color 0.2s ease;
        text-decoration: none;

        &:hover {
            background-color: var(--gray-content);
        }

        &.--hidden {
            display: none;
        }

        &:not(.--hidden) ~ & {
            margin-top: 0.25rem;
        }
    }
}

/* vacancies-about */
.vacancies-about__grid {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 1fr;

    @media (width > 1000px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vacancies-about__item {
    --padding: 2rem;
    --padding-ico: 10rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--padding);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    overflow: clip;

    &.--full {
        @media (width > 1000px) {
            grid-column: 1 / 4;
        }
    }

    &:has(.vacancies-about__ico) {
        padding-bottom: var(--padding-ico);
    }

    &.--reverse {
        justify-content: end;

        &:has(.vacancies-about__ico) {
            padding-top: var(--padding-ico);
            padding-bottom: var(--padding);
        }
    }

    &.--blue {
        color: #fff;
        background: var(--blue-dark-2);
    }

    @media (width < 1000px) {
        --padding: 1.5rem;
    }
}

.vacancies-about__title {
    font-weight: 600;
    font-family: var(--tts-font);
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-wrap: balance;

    .--full & {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    @media (width < 1000px) {
        font-size: 1.25rem;
        line-height: 1.45;

        .--full & {
            font-size: 1.75rem;
            line-height: 2rem;
        }
    }
}

.vacancies-about__description {
    font-size: 1.25rem;
    color: var(--gray-second);

    .--blue & {
        color: #fff;
    }

    @media (width < 1000px) {
        font-size: 1rem;
    }
}

.vacancies-about__ico {
    position: absolute;
    bottom: -1rem;
    display: flex;
    width: 9rem;
    height: 9rem;
    border-radius: 2.25rem;
    background: var(--blue);
    rotate: -5deg;

    &.--top {
        top: -1rem;
        bottom: auto;
    }

    &.--right {
        right: var(--padding);
    }

    &.--angle-left {
        rotate: 5deg;
    }

    .--blue & {
        background: #fff;
    }

    img {
        display: block;
        margin: auto;
    }
}

/* vacancies-list */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vacancies-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--gray-content);
    border-radius: 1.5rem;
    color: var(--black);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: box-shadow 0.2s ease;

    &:hover {
        box-shadow: var(--shadow-hover);
    }

    &.--hidden {
        display: none;
    }

    &.--order-2 {
        order: 2;
    }

    @media (width <=1000px) {
        padding: 1.5rem;
    }
}

.vacancies-item__header {
    display: flex;
    justify-content: space-between;
}

.vacancies-item__section {
    font-weight: 500;
    color: var(--blue);
}

.vacancies-item__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--red);
    transition: color 0.2s ease;

    svg {
        transition: transform 0.2s ease;
    }

    a.vacancies-item:hover & {
        svg {
            transform: rotate(45deg);
        }
    }

    a.vacancies-item:active & {
        color: var(--red-dark);
    }

    @media (width <=1000px) {
        span {
            display: none;
        }
    }
}

.vacancies-item__title {
    font-family: var(--tts-font);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;

    a.vacancies-item:hover & {
        color: var(--red);
    }

    a.vacancies-item:active & {
        color: var(--red-dark);
    }

    @media (width <=1000px) {
        font-size: 1.25rem;
    }
}

.vacancies-item__description {
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--gray-second);
    margin-top: 1rem;

    @media (width <=1000px) {
        font-size: 1rem;
    }
}

.vacancies-item__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vacancies-item__param {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-second);

    svg {
        fill: none;
        flex-shrink: 0;
    }
}

.vacancies-show-more {
    margin-top: 1rem;
    order: 4;
}

/* vacancies-products */
.vacancies-products {
    display: flex;
    gap: 1.5rem;

    & > * {
        flex: 1 1 0;
    }

    @media (width <=992px) {
        flex-direction: column;
    }
}

/* vacancies-form */
.vacancies-form__container {
    position: relative;
    flex-grow: 1;

    &.--sended {
        height: 400px;

        .vacancies-form {
            height: 400px;
            overflow: clip;
            height: 0;
        }
    }
}

.vacancies-form__inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;

    &.--columns {
        @media (width >=640px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (width >=1000px) {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

.vacancies-form__btn {
    @media (width <=768px) {
        .btn,
        .btn-rounded {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }
}

.vacancies-form__success {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
    background: #fff;
    border-radius: 1.5rem;
    transition: opacity 0.2s ease;
    opacity: 0;
    box-shadow: var(--shadow);
    z-index: -10;

    .--sended & {
        opacity: 1;
        z-index: 2;
    }
}

.vacancies-form__success-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--blue-light);

    svg {
        fill: transparent;
    }
}

.vacancies-form__success-title {
    font-family: var(--tts-font);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.3px;

    @media (width >=768px) {
        font-size: 1.875rem;
    }
}

.vacancies-form__success-text {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--gray-second);

    @media (width >=768px) {
        font-size: 1.25rem;
    }
}

.vacancies-form__success-btn {
    margin-top: 2rem;
    width: 100%;

    .btn,
    .btn-rounded {
        width: 100%;

        @media (width >=768px) {
            width: auto;
        }
    }
}

/* photo-bank */
.photo-bank {
    position: relative;
    width: 100%;
}

.photo-bank__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.photo-bank__btns {
    display: none;
    gap: 8px;

    @media (width >=768px) {
        display: flex;
    }
}

.photo-bank__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background-color: var(--gray-content);
    transition:
        background-color 0.2s ease,
        opacity 0.2s ease;

    &.swiper-button-disabled {
        opacity: 0.33;

        &:hover {
            cursor: default;
        }
    }

    &:not(.swiper-button-disabled):hover {
        background-color: var(--gray-border);
    }
}

.photo-bank__prev {
    svg {
        transform: rotate(-180deg);
    }
}

.photo-bank-slider {
    position: relative;
    width: 100%;

    .swiper-wrapper {
        height: auto;
    }

    .swiper-pagination {
        display: flex;
        justify-content: center;
        position: relative;
        height: var(--swiper-pagination-bullet-size);
        margin-top: 12px;
        --swiper-pagination-bottom: 0;
        --swiper-pagination-bullet-size: 12px;
        --swiper-pagination-color: var(--red);

        @media (width >=768px) {
            display: none;
        }
    }
}

.photo-bank-slide {
    picture {
        display: block;

        img {
            display: block;
            border-radius: 2rem;
            overflow: clip;
        }
    }
}

/* top-btn */
.top-btn {
    position: fixed;
    bottom: 0.8rem;
    right: 0;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    background: var(--red);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    translate: 100% 0;
    transition: 0.2s ease;
    transition-property: translate, transform, color, border-color, background-color;
    z-index: 100;
    &:hover {
        background-color: #fff;
        color: #000;
    }
    &.--visible {
        translate: 0 0;
    }
    svg {
        margin: auto;
        width: 1.5rem;
        height: 1.5rem;
        rotate: -90deg;
    }
    @media (width <= 768px) {
        bottom: 0.75rem;
        right: 0.75rem;
        width: 2.75rem;
        height: 2.75rem;
        translate: 200% 0;
    }
}

/* footer */
.footer.--vacancies {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: #fff;
    background: url("/img/vacancies/neon-lights-bg.jpg") center / cover;
    border-image: fill 0 linear-gradient(#0112487a, #0112487a);
    padding: 2rem 0.9375rem;

    @media (width >=1000px) {
        padding: 3rem 4.375rem;
    }

    @media (width >=1770px) {
        padding: 3rem 6.25rem;
    }

    .footerTop {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }

    .footerMidle {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
        padding: 0;

        &::before {
            display: none;
        }

        @media (width >=1000px) {
            grid-template-columns: 640fr 370fr;
        }
    }

    .footerBottom {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
    }

    .footerTop__logo {
        flex-shrink: 0;
    }

    .footerTop__slogan {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
    }

    .footer-title {
        font-family: var(--tts-font);
        font-weight: 600;
        font-size: 44px;
        line-height: 1;
        letter-spacing: 0;
        color: #fff;
        max-width: 490px;

        @media (width >=1000px) {
            font-size: 64px;
            padding-bottom: 44px;
        }

        img {
            height: 1em;
        }
    }

    .footer-subtitle {
        font-family: var(--firs-inter);
        font-size: 16px;
        line-height: 1.2;
        letter-spacing: 0.3px;
        max-width: 480px;

        @media (width >=1000px) {
            font-size: 38px;
            text-align: right;
            margin-left: auto;
            padding-bottom: 12px;
        }
    }
}

/*  */
/* /vacancies */
/*  */

/*  */
/* subscribe */
/*  */
.subscribe__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0 0 0;
    margin: auto 0;
    @media (min-width: 992px) {
        width: 50%;
        padding: 0;
    }

    .subscribe__row {
        position: relative;
        margin: 0;
        width: 100%;
        z-index: 1;
    }

    .subscribe__input {
        width: 100%;
        background: 0 0;
        border: 1px solid #fff;
        outline: 0;
        font-weight: 400;
        color: #fff;
        font-size: 0.875rem;
        padding: 1.25rem;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
        border-radius: 0.625rem;
        &::placeholder {
            color: #eee;
        }
    }
    .custom-checkbox > input,
    .custom-checkbox > span::before {
        filter: invert(1);
    }
    .custom-checkbox > span a {
        color: #fff;
    }
}

/*  */
/* mediatsentr-item */
/*  */
.mediatsentr-container:not(:has(.mediatsentr-row + .mediatsentr-wrap)) .mediatsentr-wrap {
    padding-top: 0;
}

@media (min-width: 1000px) {
    .mediatsentr-panel {
        flex-wrap: nowrap;
    }
}
@media (min-width: 992px) {
    .mediatsentr-menu {
        li {
            flex-shrink: 0;
        }
    }
}

.mediatsentr-categories {
    display: flex;
    align-items: center;
    a {
        padding: 1rem 0;
        padding-right: 1.5rem;
        margin-right: 1.5rem;
        font-weight: 500;
        font-size: 1.25rem;
        line-height: 1.6;
        color: var(--black);
        text-decoration: none;
        &:hover,
        &.active {
            color: var(--red);
        }
        &:not(:last-child) {
            border-right: 1px solid var(--red);
        }
        @media (width < 768px) {
            padding: 0.25rem 0;
            padding-right: 1rem;
            margin-right: 1rem;
            font-size: 1rem;
        }
    }
}
.mediatsentr-year {
    flex-shrink: 0;
}
.mediatsentr-filter-select {
    margin: auto;
    margin-right: 0;
    width: auto;
}
.mediatsentr-item.mediatsentr-item--hasimg {
    padding: 0;
    min-height: 0;
    overflow: hidden;
    .mediatsentr-img {
        display: block;
        width: 100%;
        aspect-ratio: 527 / 224;
        object-fit: cover;
    }
    .mediatsentr-content__title {
        transition: color 0.2s ease;
    }
    .mediatsentr-content {
        width: 100%;
        padding: 2.5rem 3.125rem;
    }
    .mediatsentr-content__date {
        margin: 0;
    }
    .mediatsentr-item__row {
        padding: 1.5rem 3.125rem;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
        width: 100%;
    }
    .mediatsentr-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
        .mediatsentr-tag {
            font-size: 1rem;
            line-height: 1.2;
            font-family: var(--tts-ext-font);
            padding: 0.75rem 1.25rem;
            border-radius: 0.625rem;
            color: #000;
            background: #fff;
            transition: background-color 0.2s ease;
        }
    }
    .mediatsentr-read {
        font-size: 1rem;
        line-height: 1.2;
        padding: 0.5rem 1rem;
        color: #fff;
        font-family: var(--tts-ext-font);
        background-color: var(--red);
        border: 1px solid var(--red);
        border-radius: 0.625rem;
        transition: opacity 0.2s ease;
        opacity: 0;
    }
    &:hover {
        background-color: transparent;
        border-bottom-color: #1a1a1a;
        .mediatsentr-tags {
            .mediatsentr-tag {
                background: var(--gray-btn);                
            }
        }
        .mediatsentr-read {
            opacity: 1;
        }
    }
    @media (width <= 991px) {
        .mediatsentr-read {
            display: none;
        }        
        .mediatsentr-content {
            padding: 1rem;
            padding-bottom: 0;
        }
        .mediatsentr-item__row {
            padding: 1rem;
        }
    }
}
.mediatsentr-itemData {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 0.25rem 2.5rem;
    text-align: right;
    .mediatsentr-itemData__item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--red);
        transition: color 0.2s ease;
        svg {
            fill: none;
        }
        span {
            font-size: 18px;
            line-height: 1.6;
            color: #696969;
        }
    }
    @media (width < 1200px) {
        gap: 0.25rem 1rem;
    }
    @media (width < 991px) {
        .mediatsentr-itemData__item {
            span {
                font-size: 14px;
                line-height: 1.2;
            }
        }
    }
}

.products-page__after-text {
    color: var(--black);
    @media (min-width: 1770px) {
        padding: 5.625rem 6.25rem 0;
    }
    @media (min-width: 1000px) {
        padding: 3.75rem 4.375rem 0;
        .text-content {
            font-size: 1.25rem;
            line-height: 1.4;
        }
    }
}

/*  */
/* graph-modal-galley */
/*  */
.graph-modal:has([data-graph-target="gallery"].graph-modal-open) {
    .graph-modal__container,
    .graph-modal__content,
    .graph-modal__content img {
        width: auto;
        height: auto;
        max-width: 90dvw;
        max-height: 90dvh;
        margin: auto;
    }
    .btn-reset:has(svg) {
        position: fixed;
        background: none;
        color: #fff;
        &:hover {
            color: var(--red);
        }
    }
    .graph-modal__content {
        img {
            display: block;
        }
    }
}

/*  */
/* glass grid */
/*  */
.glass-grid {
    background: url(../img/glass-pattern.png);
    background-size: contain;
    background-position: 60% 60%;
    background-repeat: no-repeat;
    overflow: clip;
    .glass-grid__item {
        background-color: #eef1f780;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        border-radius: 0.625rem;
        box-shadow: 0 0 0 1rem #fff;
        transition: background-color 0.2s ease;
        &:hover {
            background-color: #fff;
        }
    }
}
.glass-grid-contrast {
    position: relative;  
    overflow: clip;
    .glass-grid__paint {
        position: absolute;
        content: '';
        width: auto;
        height: 120%;
        top: 10%;
        left: 40%;
        aspect-ratio: 1;
        background: url("../img/glass-pattern-1.png");
        background-size: contain;
        background-position: 60% 60%;
        background-repeat: no-repeat;
        filter: blur(50px);
        opacity: 0.7;
        z-index: -2;
        &.--left-paint {
            left: -40%;
        }
    }
    .glass-grid__item {
        background-color: #eef1f780;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        border-radius: 0.625rem;
        box-shadow: 0 0 0 1rem #fff;
        transition: background-color 0.2s ease;
        &:hover {
            background-color: #fff;
        }
    }
}

.glass-grid,
.glass-grid-contrast {
    .glass-grid__item {
        .glass-grid__arrow {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            color: var(--red);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        &:hover {
            .glass-grid__arrow {
                opacity: 1;
            }
        }
    }
}

.single-glass-item {
    position: relative;
    border-radius: 0.625rem;
    background: transparent !important;
    transition: background-color 0.2s ease;
    overflow: clip;
    &::before {
        position: absolute;
        content: '';
        width: auto;
        height: 120%;
        top: 10%;
        left: 40%;
        aspect-ratio: 1;
        background: url("../img/glass-pattern-1.png");
        background-size: contain;
        background-position: 60% 60%;
        background-repeat: no-repeat;
        filter: blur(50px);
        opacity: 0.7;
        z-index: -2;
    }
    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0%;
        left: 0%;
        background-color: #eef1f780;
        backdrop-filter: blur(50px);
        z-index: -1;
    }
    &.--wide-glass {
        &::before {
            top: 66%;
            translate: 0 -50%;
            left: 60%;
            height: auto;
            width: 50%;
        }
    }
    &.--big-glass {
        &::before {
            top: 30%;
            left: 30%;
            height: auto;
            width: 100%;
        }
        &::after {
            background-color: #eef1f780;
        }
    }
    &.--small-glass {
        &::before {
            top: 20%;
            left: -20%;
            height: auto;
            width: 50%;
            filter: blur(150px);
            opacity: 0.5;
        }
        &::after {
            display: none;
        }
    }
}

/*  */
/* gray-bg */
/*  */
.gray-blur-bg {
    height: auto;
    background: linear-gradient(180deg, #eef0f7cc 80%, #ffffffcc 100%);
    backdrop-filter: blur(50px);
}

.header-top__descr{
font-family:'TikTokSans24Expanded';
font-size:12px;
font-weight:400;
line-height:130%;
color:#1A1A1A!important;
}
.header-top__descr:nth-of-type(1){
flex:0 0 15%;
margin-top:2px;
}
header .header-top__descr:nth-of-type(1){
	margin-top:2px;
}
.header-top__descr:nth-of-type(2){
flex:0 0 26%;
}

.footerTop .slogan{
	display:inline-block;
	vertical-align:middle;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
	color:#1A1A1A!important;
	font-family:'TikTokSans24Expanded';	
	color:#fff!important;	
	margin-left:10px;
}
.footerTop__logo img{
	vertical-align:middle;
}
.header-bottom__logo{
	margin-right:15px;
}

.header:not(.header-fixed) .header-bottom .header-top__descr {
    display: none;
}
@media (width <767px) {
.frontSubscribe {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}
.header:not(.header-fixed) .header-bottom .header-top__descr {
    display: block;
}
.header:not(.header-fixed) .header-bottom__logo{
	display: block;
}
}