@font-face {
    font-family: "Franklin-Book";
    src: url("../fonts/FranklinGothicITC-Book.woff2") format("woff");
}

@font-face {
    font-family: "Franklin-Heavy";
    src: url("../fonts/FranklinGothicITC-Heavy.woff2") format("woff");
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 10px;
    scrollbar-gutter: stable;
}

.html-fixed {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
}

body {
    margin: 0;
    font-family: "Franklin-Book";
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: var(--primary-color);
}

html {
    overflow-x: hidden;
}

body.no-overflow {
    overflow: hidden;
}

:root {
    --light-text: #ffffff;
    --primary-color: #001432;
    --secondary-color: #f5f5f5;
    --btn-color: #28436d;
    --btn-bg-secondary: #00467d;
    --button-active: #0ab4dc;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4 {
    font-family: "Franklin-Heavy";
}

.layout-wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0rem auto;
}

img {
    border-style: none;
}

.centered-header {
    margin: 3.4rem 0 3.2rem;
    font-size: 3.2rem !important;
    line-height: 4rem !important;
    text-align: center;
}

.centered-description {
    text-align: center;
    margin: 1.6rem 0;
}

.d-flex {
    display: flex;
}

.spacer_130 {
    height: 13rem;
}

/* стили для блока отступа */
.layout-margin-block {
    margin-bottom: var(--margin-value);
}

@media (max-width: 991.9px) {
    .spacer-mob_100 {
        height: 10rem;
    }

    /* стили для блока отступа */
    .layout-margin-block.margin-adaptive {
        margin-bottom: calc(var(--margin-value) / 2);
    }

    .d-desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .d-mob {
        display: none;
    }
}

/* кнопки */

.button {
    align-self: flex-start;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    position: relative;
    height: 42px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 3rem;
    text-decoration: none;
    overflow: hidden;
    border: none;
}

.button::before {
    content: "";
    display: block;
    position: absolute;
    width: 500%;
    height: 0px;
    padding-top: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background: #0ab4dc;
    z-index: 1;
    border-radius: 50%;
    -webkit-transition:
        max-width 1.5s,
        padding-top 1.5s;
    -o-transition:
        max-width 1.5s,
        padding-top 1.5s;
    transition:
        max-width 1.5s,
        padding-top 1.5s;
    -webkit-transition-timing-function: ease, ease;
    -o-transition-timing-function: ease, ease;
    transition-timing-function: ease, ease;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    max-width: 0;
    max-height: 0;
}

.button:hover:before {
    max-width: 300%;
    max-height: 300%;
    padding-top: 300%;
}

.button span {
    z-index: 2;
    position: relative;
}

.primary-btn {
    background-color: #fff;
}

.secondary-btn {
    background-color: var(--btn-bg-secondary);
    color: var(--light-text);
}

.block-wrapper {
    position: relative;
}

.button-copy {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 4.1rem;
    width: 4rem;
    height: 4rem;
    border: none;
    padding: 0;
    background-color: var(--light-text);
    border-radius: 50%;
    background-image: url("../img/copy.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    z-index: 20;
    transition-duration: 0.5s;
    opacity: 0;
}

.block-wrapper:hover .button-copy {
    opacity: 0.8;
}

.button-copy:hover {
    background-color: var(--button-active);
}

@media (max-width: 1023px) {
    .button-copy {
        right: 3rem;
    }
}

@media (max-width: 767.9px) {
    .button-copy {
        right: 2rem;
    }
}

@media (min-width: 1440px) {
    .button-copy {
        right: calc(50% - 635px);
    }
}

/* стили для компонентов grid */
.layout-row {
    --x-gutter: 2.8rem;
    --y-gutter: 2.8rem;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--y-gutter));
    margin-right: calc(-0.5 * var(--x-gutter));
    margin-left: calc(-0.5 * var(--x-gutter));
}

.col-3-xl,
.col-5-md,
.col-3-xxl,
.col-6-md,
.col-12,
.col-4-xl,
.col-4-xxl {
    flex-grow: 1;
    padding: 0 calc(var(--x-gutter) * 0.5);
    margin-top: var(--y-gutter);
    overflow: hidden;
}

.col-12 {
    width: 100%;
    max-width: 100%;
}

/* md >= 768px */
@media (min-width: 768px) {
    .col-5-md {
        width: 41.53686396%;
        max-width: 41.53686396%;
    }
    .col-6-md {
        width: 50%;
        max-width: 50%;
    }
    .col-can-card-md {
        width: 50%;
        max-width: 50%;
    }
}

@media (min-width: 889px) {
    .col-can-card-md {
        max-width: 428px;
    }
}

/* xl >= 1024px */
@media (min-width: 1024px) {
    .col-3-xl {
        width: 25%;
        max-width: 25%;
    }
    .col-4-xl {
        width: 33.333333%;
        max-width: 33.333333%;
    }
}

/* xxl >= 1280px */
@media (min-width: 1280px) {
    .col-3-xxl {
        width: 25%;
        max-width: 25%;
    }
    .col-4-xxl {
        width: 33.333333%;
        max-width: 33.333333%;
    }
}

/* стили контейнера для блока */
.layout-block-wrap {
    clear: both;
    margin: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .layout-block-wrap {
        margin: 0 3rem;
    }
}
@media (min-width: 1024px) {
    .layout-block-wrap {
        margin: 0 4.1rem;
    }
}
@media (min-width: 1440px) {
    .layout-block-wrap {
        margin: 0 8.5rem;
    }
}

.layout-block-wrap h2 {
    font-size: 3.2rem;
    line-height: 4rem;
}

/* стили баннера с картинкой, текстом и кнопкой*/

.banner-hr__header {
    margin: 3.4rem 0 3.2rem;
}

.banner-hr__content {
    position: relative;
    overflow: hidden;
}
.banner-hr__text {
    padding: 1.8rem 2rem;
}
.banner-hr__text .tag {
    margin: 0 0 1.1rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-family: "Franklin-Heavy";
    color: #b4b4b4;
}
.banner-hr__text h2 {
    margin: 0.1rem 0;
    font-size: 2.4rem;
    line-height: 3rem;
    text-align: left;
    text-transform: uppercase;
}
.banner-hr__text p {
    margin: 0rem 0 0;
    font-size: 1.65rem;
}
.banner-hr__text ul,
.banner-hr__text ol {
    margin-bottom: 0;
    padding-left: 4rem;
}

.banner-hr__text ul li {
    margin-bottom: 0.7rem;
    list-style: none;
    position: relative;
    font-size: 1.65rem;
}
.banner-hr__text ul li:last-child {
    margin-bottom: 0;
}
.banner-hr__text ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: -3.7rem;
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/check.svg") no-repeat center;
}
.banner-hr__wysiwyg a {
    margin-top: 1.8rem;
    width: 100%;
    text-align: center;
    color: #0ab4dc;
    text-decoration: none;
    position: relative;
    text-decoration: underline;
}

.banner-hr__img {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-hr__img picture {
    width: 100%;
    height: 100%;
}

.banner-hr__img img {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.banner-hr.block-theme-3 {
    background: #001432;
    color: #fff;
}

.banner-hr__scale-container {
    overflow: hidden;
}
.scale-container .banner-hr__img {
    transition: transform 0.2s ease-out;
    transform-origin: center;
}
.scale-container:hover .banner-hr__img {
    transform: scale(1.1);
}
.wp-block.wp-block-spacer {
    margin-top: -2rem;
}
.point-banner__scale-container {
    overflow: hidden;
}

.align-right .banner-hr__scale-container {
    order: 1;
}

.align-right .banner-hr__content {
    order: 2;
}

.align-left .banner-hr__scale-container {
    order: 2;
}

.align-left .banner-hr__content {
    order: 1;
}

.banner-hr.block-theme-3 {
    background: #001432;
    color: #fff;
}

.block-theme-3 .banner-hr__text ul li:before {
    background-image: url("../img/check_white.png");
    background-size: contain;
}
.banner-hr__cta {
    background: #fff;
    color: #00467d;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    padding: 1rem 3rem;
    margin: 0;
}

.banner-hr__text h2 {
    margin: 0.1rem 0;
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: left;
    text-transform: uppercase;
}

.banner-hr__cta {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 1rem 3rem;
    margin-top: 1.8rem;
    color: #fff;
    background: #00467d;
    text-decoration: none;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.banner-hr__cta:before {
    content: "";
    display: block;
    position: absolute;
    width: 500%;
    height: 0px;
    padding-top: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transform-origin: center;
    background: #0ab4dc;
    z-index: 1;
    border-radius: 50%;
    transition:
        max-width 1.5s,
        padding-top 1.5s;
    transition-timing-function: ease-out;
    max-width: 0;
    max-height: 0;
}
.banner-hr__cta.inverted {
    color: #001432;
    background: #fff;
}
.banner-hr__cta span {
    position: relative;
    z-index: 2;
}
.banner-hr__cta:hover,
.banner-hr__cta:active {
    color: #00467d;
    cursor: pointer;
}
.banner-hr__cta:hover:before,
.banner-hr__cta:active:before {
    max-width: 300%;
    max-height: 300%;
    padding-top: 300%;
}
@media (min-width: 768px) {
    .banner-hr__cta {
        min-width: 21.7rem;
        max-width: 33.5rem;
    }
}

.block-theme-3 .banner-hr__cta {
    background: #fff;
    color: #00467d;
}

@media (min-width: 768px) {
    .banner-hr__text {
        padding: 4rem 2.6rem;
    }
    .banner-hr__text .tag {
        margin: 0 0 0.7rem;
    }
    .banner-hr__text h2 {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    .banner-hr__wysiwyg a,
    .banner-hr__cta {
        width: auto;
    }
}

@media (min-width: 1280px) {
    .banner-hr {
        display: flex;
        min-height: 435px;
    }
    .banner-hr__content {
        flex-grow: 1;
    }

    .banner-hr__scale-container {
        width: 432px;
        max-width: 50%;
        padding: 32px;
    }

    .banner-hr__content {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .banner-hr__text {
        padding: 0 2.6rem;
    }
}

@media (min-width: 1440px) {
    .banner-hr__content {
        overflow-y: auto;
    }
    .banner-hr__text {
        padding: 1rem 5rem;
    }
    .banner-hr__text .tag {
        margin: 0;
    }
    .banner-hr__text a,
    .banner-hr__cta {
        margin-top: 2.2rem;
    }
}

@media (max-width: 1279.9px) {
    .banner-hr__img {
        
    }
    .banner-hr__scale-container{
        margin-left: auto;
        margin-right: auto;
        padding: 28px 24px;
    }
}

@media (max-width: 768.9px) {
    .banner-hr__scale-container{
        max-width: calc(100% - 48px);
    }
}

/* стили баннера с текстом по всей области */
.image-banner {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 0;
    justify-content: center;
    align-items: center;
    padding-top: 100%;
}

.image-banner-auto-height .image-banner {
    padding: 3.2rem 0;
    height: auto;
}

.alternative-description {
    display: flex;
    justify-content: center;
}

.alternative-description > * {
    max-width: 80rem;
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.8rem;
}

.image-banner:before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    z-index: 1;
}
.image-banner__content {
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
}

.image-banner-auto-height .image-banner__content {
    position: static;
    transform: unset;
}

.image-banner__picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: block;
    width: 100%;
    min-height: 375px;
}

.image-banner-auto-height .image-banner__picture {
    min-height: unset;
}
.image-banner__img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    position: relative;
    width: auto;
}

.image-banner-auto-height .image-banner__img {
    object-fit: cover;
    object-position: top center;
    height: 100% !important;
    width: 100%;
}

.image-banner__header {
    max-width: 800px;
    margin: 0 auto 1.2rem auto;
    text-transform: uppercase;
    color: #fff;
    font-size: 3.4rem;
    line-height: 4rem;
}

.image-banner__text {
    font-family: "Franklin-Heavy";
    max-width: 680px;
    margin: 0 auto 3.2rem auto;
    color: #fff;
    font-size: 1.8rem;
    line-height: 2.4rem;
}

.image-banner-auto-height .image-banner__text {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .image-banner__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        left: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .image-banner__header {
        font-size: 4.2rem;
        line-height: 4.8rem;
    }
}

@media (min-width: 650px) {
    .image-banner {
        padding-top: 55%;
    }
}
@media (min-width: 1024px) {
    .image-banner {
        padding-top: 28.1666%;
    }
}

/* стили баннера с текстом снизу  */
.point-banner {
    min-height: 0;
    overflow: hidden;
}

.point-banner__scale-container {
    overflow: hidden;
}

.point-banner__img {
    padding-bottom: 132.84%;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 2s ease-out;
    transform-origin: center;
}

.point-banner__img:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}

/* Правки CNPK-92 */
.point-banner__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    display: block;
    border-style: none;
}

.point-banner__content {
    color: #fff;
    position: absolute;
    bottom: 0;
    max-width: 40.2rem;
    padding: 2rem;
}

.point-banner__header {
    margin: 0 0 3.2rem;
    margin-bottom: 0.8rem;
    font-size: 2.4rem !important;
    line-height: 3rem !important;
    text-transform: uppercase;
}

.point-banner__header,
.point-banner__text {
    font-family: "Franklin-Heavy";
    color: #fff;
}

.point-banner__scale-container {
    overflow: hidden;
}

.point-banner__text {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.point-banner__action {
    margin-top: 0.8rem;
    color: #001432;
    background: #fff;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 1rem 3rem;
    font-family: "Franklin-Book";
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.point-banner__action:hover,
.point-banner__action:active {
    color: #00467d;
    cursor: pointer;
}

.point-banner__action:before {
    content: "";
    display: block;
    position: absolute;
    width: 500%;
    height: 0px;
    padding-top: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transform-origin: center;
    background: #0ab4dc;
    z-index: 1;
    border-radius: 50%;
    transition:
        max-width 1.5s,
        padding-top 1.5s;
    transition-timing-function: ease-out;
    max-width: 0;
    max-height: 0;
}

.point-banner__action:hover:before,
.point-banner__action:active:before {
    max-width: 300%;
    max-height: 300%;
    padding-top: 300%;
}

.point-banner__action-text {
    position: relative;
    z-index: 2;
}

.point-banner__scale-container:hover .point-banner__img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .point-banner__action {
        min-width: 21.7rem;
        max-width: 33.5rem;
        width: auto;
        display: inline-block;
    }
    .point-banner__content {
        left: auto;
        width: 100%;
    }
    .right-align .point-banner__content {
        right: 0;
    }
    .left-align .point-banner__content {
        left: 0;
    }
    .point-banner__header {
        text-align: left;
        margin-bottom: 0.8rem;
        font-size: 3rem !important;
    }
    .point-banner__image {
        width: 100%;
        height: auto;
    }
    .point-banner__img {
        padding-bottom: 49.14%;
    }
}

@media (min-width: 1024px) {
    .point-banner__content {
        bottom: 4.4rem;
        width: 100%;
        padding: 0;
        max-width: 50.2rem;
    }
    .right-align .point-banner__content {
        right: 4.9rem;
    }
    .left-align .point-banner__content {
        left: 4.9rem;
    }
    .point-banner__header {
        margin-bottom: 1.2rem;
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
}

/* стили баннера с фоновым изображением */
.bg-banner {
    position: relative;
    display: flex;
    width: 100%;
    height: 420px;
    padding: 60px 11% 65px;
}

.bg-banner.layout-text-left {
    flex-direction: row;
}

.bg-banner.layout-text-right {
    flex-direction: row-reverse;
}

.bg-banner__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-style: none;
}

.bg-banner__showcase {
    width: 39%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.bg-banner__header {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.bg-banner__text {
    color: #627479;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 22px;
}

.bg-banner__text strong {
    font-family: "Franklin-Heavy";
}

.bg-banner__action {
    color: #627479;
    max-width: 215px;
}

@media (min-width: 1024px) {
    .bg-banner__header {
        line-height: 3.8rem !important;
    }
}

@media (max-width: 1280px) {
    .bg-banner {
        padding: 30px 11% 30px;
    }
}

@media (max-width: 1024px) {
    .bg-banner__img {
        display: none;
    }

    .bg-banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        background-color: #c6cdd3;
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    .bg-banner__showcase {
        width: 100%;
    }

    .bg-banner__header {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 25px;
    }
}

/* стили блока карточек с описанием */
.can-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    height: 100%;
}

.can-card__scale-container {
    overflow: hidden;
}

.can-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
    overflow: hidden;
    transition: transform 2s ease-out;
    transform-origin: center;
}

.can-card__scale-container:hover .can-card__image {
    transform: scale(1.1);
}

.can-card__img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.can-card__content {
    padding: 1.7rem 1rem 2.3rem;
    flex-grow: 1;
}

.can-card__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.can-card__header {
    margin: 0.4rem 0 0;
    padding-bottom: 1rem;
    font-size: 2.25rem !important;
    line-height: 2.8rem !important;
    color: var(--primary-color);
}

.can-card__text {
    color: var(--primary-color);
}

.can-card__content-inner {
    min-height: 158px;
    flex-grow: 1;
}

.can-card__action {
    font-family: "Franklin-Heavy";
    text-decoration: none;
    position: relative;
    color: var(--primary-color);
    display: inline-block;
    width: fit-content;
}

.can-card__action:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1rem;
    height: 1rem;
    background: url("../img/arrow_navy_right.svg") no-repeat center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

@media (max-width: 1131.9px) {
    .can-card__content-inner {
        min-height: 180px;
    }
}

@media (max-width: 1023.9px) {
    .can-card__content-inner {
        min-height: 136px;
    }
}

@media (max-width: 767.9px) {
    .can-card__content-inner {
        min-height: unset;
    }

    .can-cards {
        --y-gutter: 1.5rem;
    }
}

.open-cards,
.can-cards {
    justify-content: center !important;
}

/* стили блока карточек с названием */

@media screen and (min-width: 1024px) {
    .named-cards {
        justify-content: center !important;
    }
}

.dynamic-col-3-4 {
    max-width: 33.3333333%;
    flex: 4 0 25%;
    padding: 0 calc(var(--x-gutter) * 0.5);
    margin-top: var(--y-gutter);
}

.named-card {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.named-card__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.named-card__scale-container {
    overflow: hidden;
}

.named-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
    overflow: hidden;
    transition: transform 2s ease-out;
    transform-origin: center;
}

.named-card__scale-container:hover .named-card__image {
    transform: scale(1.1);
}

.named-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.named-card__content {
    padding: 1.7rem 1rem 2.3rem;
    flex-grow: 1;
}

.named-card__content-inner {
    flex-grow: 1;
    min-height: 76px;
}

.named-card__header {
    margin: 0.4rem 0 0;
    padding-bottom: 1rem;
    font-size: 2.25rem !important;
    line-height: 2.8rem !important;
    text-align: center;
}

.named-card__action {
    width: 83.75%;
    margin: 1.7rem auto 0;
    height: fit-content;
}

@media (max-width: 1023.9px) {
    .dynamic-col-3-4 {
        flex: 2 0 50%;
        max-width: 50%;
    }
    .named-cards {
        justify-content: space-between;
    }
}

@media ((min-width: 889px) and (max-width: 1023.9px)) {
    .dynamic-col-3-4 {
        max-width: 428px;
    }
}

@media (max-width: 767.9px) {
    .dynamic-col-3-4 {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .named-card__content-inner {
        min-height: unset;
    }
    .named-card__action-text {
        font-size: 1.45rem !important;
        line-height: 1.45rem !important;
    }
    .named-cards {
        --y-gutter: 1.5rem;
    }
}

/* стили карточек с открывающимся описанием */
.open-card {
    position: relative;
    padding-bottom: 11rem;
}

.open-card__scale-container {
    overflow: hidden;
}

.open-card__image {
    padding-bottom: 100% !important;
    position: relative;
    margin: 0;
    display: block;
    transition: transform 2s ease-out;
    transform-origin: center;
}

.open-card__scale-container:hover .open-card__image {
    transform: scale(1.1);
}

.open-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.open-card__info {
    position: absolute;
    width: 100%;
    bottom: 0;
    min-height: 11rem;
    overflow: hidden;
    background: #f5f5f5;
    padding: 1.8rem;
    color: #001432;
    transition:
        max-height 0.5s,
        padding 0s;
}

.open-card__header-wrap {
    padding-bottom: 2.15rem;
    color: inherit;
    text-align: left;
}

.open-card__header {
    font-size: 2.05rem !important;
    line-height: 2.8rem !important;
    padding-right: 4rem;
}

.open-card__subheader {
    padding-top: 0.9rem;
    font-size: 1.4rem;
    line-height: 2rem;
    font-family: "Franklin-Book";
    font-weight: 400;
}

.open-card__toggle {
    cursor: pointer;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    position: absolute;
    right: 1.8rem;
    top: 1.9rem;
    background: var(--btn-bg-secondary);
    border: none;
}

.open-card__toggle::before {
    width: 1.8rem;
    height: 2px;
}

.open-card__toggle::after {
    height: 1.8rem;
    width: 2px;
}

.open-card__toggle::before,
.open-card__toggle::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--light-text);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.open-card__header {
    padding-bottom: 0.9rem;
    color: inherit;
    text-align: left;
    font-size: 2.05rem !important;
    line-height: 2.8rem !important;
}

.open-card__expand-container {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.5s;
}

.open-card--opened .open-card__info {
    height: auto !important;
}

.open-card--opened .open-card__toggle {
    background: var(--button-active);
}

.open-card--opened .open-card__toggle::after {
    display: none;
}

.open-card--opened .open-card__info {
    overflow: auto;
}

@media (min-width: 768px) {
    .open-card__info {
        padding: 1.9rem;
    }
    .open-card__header {
        padding-right: 4.5rem;
        font-size: 2.1rem !important;
        line-height: 2.6rem !important;
    }
    .open-card__text {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 1024px) {
    .open-card__info {
        min-height: 11rem;
        transition:
            max-height 0.5s,
            padding 0s;
    }
    .open-card__header {
        padding-right: 5.5rem;
        font-size: 2.25rem !important;
        line-height: 2.8rem !important;
    }
    .open-card__expand-container {
        transition: all 1s;
    }
    .open-card__text {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}

@media (max-width: 1023.9px) {
    .open-cards {
        --x-gutter: 2rem;
        --y-gutter: 2rem;
    }
}

@media (max-width: 767.9px) {
    .open-cards {
        --x-gutter: 1.7rem;
        --y-gutter: 1.7rem;
    }
}

/* стили блока с кликабельными карточками */
.link-cards {
    --x-gutter: 2rem;
    --y-gutter: 2rem;
}

.link-card {
    height: 100%;
    text-align: center;
}

.link-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 35px;
}

.link-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-card__header {
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.link-card__text {
    line-height: 22px;
    padding: 0 20px;
    margin-bottom: 1.6rem;
}

@media (max-width: 1023.9px) {
    .link-cards {
        --y-gutter: 5rem;
    }
    .link-card__image {
        margin-bottom: 23px;
    }
}

/* стили блока с карточками с подписью */

.tag-card__scale-container {
    overflow: hidden;
}

.tag-card__scale-container:hover .tag-card__image {
    transform: scale(1.1);
}

.tag-card__image {
    padding-bottom: 67%;
    position: relative;
    margin: 0;
    display: block;
    transition: transform 2s ease-out;
    transform-origin: center;
}

.tag-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.tag-card__tag {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #b4b4b4;
    text-align: center;
    text-transform: uppercase;
    font-family: "Franklin-Heavy";
}

.tag-card__header {
    margin: 0.4rem 0 0;
    padding-bottom: 1rem;
    font-size: 2.25rem !important;
    line-height: 2.8rem !important;
    text-align: center;
}

.tag-card__wysiwyg {
    text-align: center;
}

.tag-card__wysiwyg ul,
.tag-card__wysiwyg ol {
    text-align: left;
    padding-left: 4rem;
    margin: 1.6rem 0;
}

.tag-card__content-inner {
    min-height: 312px;
}

.tag-card__content {
    padding: 1.7rem 1rem 2.3rem;
}

@media screen and (min-width: 1024px) {
    .tag-cards {
        justify-content: center !important;
    }
}

@media (max-width: 1023.9px) {
    .tag-card__content-inner {
        min-height: 224px;
    }

    .tag-cards {
        justify-content: space-between;
        --y-gutter: 2rem;
    }
}

@media ((min-width: 889px) and (max-width: 1023.9px)) {
    .tag-card-col {
        max-width: 428px;
    }
}

@media (max-width: 767.9px) {
    .tag-card__content-inner {
        min-height: unset;
    }
    .tag-cards {
        --y-gutter: 1.5rem;
    }
}

/* стили блока табов (с текстом и табами + с карточками и выпадающим списком в адаптиве) */
.layout-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.layout-tab {
    font-size: 2rem;
    line-height: 2.6rem;
    text-transform: uppercase;
    padding: 1.35rem 3.25rem;
    cursor: pointer;
}

.layout-tab:hover {
    background: #55bee6;
    color: var(--light-text);
}

.tab-selected.layout-tab {
    color: #fff;
    background: #001432;
}

.tabs-content-wrapper {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--light-text);
    padding: 1.6rem 0 4.8rem;
}

.tabs-content__body {
    display: none;
}

.tabs-content__body.layout-tab-selected {
    display: block;
}

.tabs-content__info {
    color: var(--light-text);
}

.tabs-content__header {
    font-size: 2.2rem !important;
    line-height: 2.8rem !important;
    margin-bottom: 2.2rem;
    padding-top: 2.2rem;
}
.tabs-content__wysiwyg h3 {
    margin-top: 25px;
}
.tabs-content__wysiwyg p {
    margin: 1.6rem 0;
}

.tabs-content__info.layout-row {
    --x-gutter: 2rem;
    --y-gutter: 2rem;
    justify-content: center;
    padding: 5.1rem 0 2.4rem;
}

.tab-card {
    height: 100%;
    padding: 3.1rem 4.4rem 2.6rem 6.6rem;
    background: var(--light-text);
    position: relative;
    color: var(--primary-color);
}

.tab-card:before {
    content: "";
    position: absolute;
    top: 3rem;
    left: 3.5rem;
    width: 3px;
    height: 70%;
    background: #001432;
}

.tab-card a {
    text-decoration: underline;
    color: #00467d;
}

.tab-card__header {
    font-size: 2.1rem !important;
    line-height: 2.6rem !important;
}

.mobile-wrap-tabs .layout-tab {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.mobile-wrap-tabs .tabs-content-wrapper {
    border-bottom: 3px solid var(--light-text);
}

@media (min-width: 1024px) {
    .tab-card__header {
        font-size: 2.2rem !important;
        line-height: 2.8rem !important;
    }
}

@media (max-width: 767.9px) {
    .tabs-content__info.layout-row {
        padding-bottom: 0;
    }
}

@media (max-width: 1023.9px) {
    .mobile-wrap-tabs {
        position: relative;
    }
    .mobile-dropdown.layout-tabs-wrapper {
        position: absolute;
        left: 50%;
        top: 1rem;
        color: var(--light-text);
        z-index: 2;
        transform: translateX(-50%);
        width: 100%;
        max-width: 37.5rem;
        background-color: var(--primary-color);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        height: 5.2rem;
        overflow: hidden;
    }

    .mobile-dropdown--opened.mobile-dropdown {
        height: auto;
    }

    .mobile-dropdown .layout-tabs {
        justify-content: left;
    }

    .mobile-dropdown .layout-tab {
        width: 100%;
        padding: 1rem 1rem 1rem 1.5rem;
        order: 2;
    }

    .mobile-dropdown .tab-selected {
        order: 1;
        width: 94.9%;
        padding-right: 2rem;
        position: relative;
    }

    .mobile-dropdown .tab-selected:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0.4rem;
        width: 8px;
        height: 8px;
        transform: rotate(45deg) translate(-50%, -50%);
        border: 2px solid var(--light-text);
        border-left: 2px solid transparent;
        border-top: 2px solid transparent;
    }

    .mobile-dropdown .layout-tab:hover {
        background: var(--light-text);
        color: var(--primary-color);
    }

    .mobile-dropdown .layout-tab.tab-selected:hover {
        background: var(--primary-color);
        color: var(--light-text);
    }
}

/* стили блока полноразмерные карточки */
.fullsize-cards {
    --x-gutter: 1.6rem;
    --y-gutter: 2rem;
}

.fullsize-card {
    position: relative;
}

.fullsize-card__scale-container {
    overflow: hidden;
}

.fullsize-card__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 2s ease-out;
    transform-origin: center;
    padding-bottom: 133%;
}

.fullsize-card__scale-container:hover .fullsize-card__image {
    transform: scale(1.1);
}

.fullsize-card__img {
    display: block;
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
}

.fullsize-card__content {
    color: var(--light-text);
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    max-width: 40rem;
    width: 100%;
    padding: 0 2rem;
}

.fullsize-card__header {
    margin: 0 0 0.9rem;
    font-size: 2rem !important;
    line-height: 2.6rem !important;
    text-transform: uppercase;
}

.fullsize-card__description {
    margin: 0;
    font-family: "Franklin-Heavy";
    letter-spacing: 0.24px;
}

.fullsize-card__action {
    color: var(--primary-color);
    margin-top: 1.3rem;
}

@media (min-width: 768px) {
    .fullsize-card__image {
        padding-bottom: 100%;
    }

    .fullsize-card__content {
        bottom: 4.4rem;
    }

    .fullsize-card__header {
        font-size: 2.4rem !important;
        line-height: 2.6rem !important;
    }

    .fullsize-card__action {
        min-width: 21.7rem;
        max-width: 33.5rem;
        width: fit-content;
    }
}

@media (min-width: 1440px) {
    .fullsize-card__content {
        padding: 0 4.2rem;
    }

    .fullsize-card__header {
        font-size: 3.2rem !important;
        line-height: 2.8rem !important;
    }
}

/* стили блока файлы (слайдер) */
.files-slider__slide {
    display: flex;
    justify-content: space-between;
    gap: 2.4rem;
    cursor: grab;
}

.files-slider__image {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.files-slider__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.files-slider__pagination {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

.files-slider__pagination .swiper-pagination-bullet {
    border: 1px solid var(--primary-color);
    background-color: var(--light-text) !important;
    width: 1rem;
    height: 1rem;
    opacity: 1 !important;
}
.files-slider__pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

@media (max-width: 1023.9px) {
    .files-slider__pagination {
        margin-top: 3rem;
    }
}

/* стили блока файлы (видео) */

.layout-video {
    width: 100%;
    aspect-ratio: 1268 / 712;
}

/* стили блока список с подпунктами */

.layout-countries {
    background-color: var(--primary-color);
    padding: 3.4rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.selected-country,
.layout-country {
    background-color: var(--light-text);
    color: var(--primary-color);
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
}

.selected-country {
    border: 3px solid var(--button-active);
    height: 6rem;
}

.layout-country {
    border: 3px solid var(--light-text);
    height: 6.6rem;
}

.selected-country__wrap,
.layout-country__container {
    position: relative;
}

.layout-country__container {
    line-height: 6rem;
}

.selected-country__wrap {
    line-height: 5.4rem;
}

.selected-country__wrap {
    font-weight: bold;
}

.selected-country__wrap:after,
.layout-country__container:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    right: 15px;
    top: 24px;
    transition: 0.5s;
}

.opened .selected-country__wrap:after {
    transform: rotate(135deg);
}

.selected-country__flag,
.layout-country__flag {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    background-size: auto 100%;
    background-position: center;
    box-shadow: inset 0 0 6px #000000;
}

.country-list {
    margin-top: 3rem;
}

.sub-careers-list {
    display: none;
}

.sub-career {
    border: 3px solid var(--light-text);
    background-color: var(--light-text);
    color: var(--primary-color);
    height: auto;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
}

.sub-career__location {
    width: 45%;
    font-weight: bold;
}

.sub-careers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 1.5rem;
}

.sub-career-col,
.countries-col {
    width: 49%;
    max-width: 49%;
    margin-bottom: 1.5rem;
}

.sub-career {
    display: flex;
    align-items: center;
}

.sub-career__location:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    right: 15px;
    top: 24px;
    transition: 0.5s;
}

.selected-country-wrap {
    transition-duration: 0.5s;
    overflow: hidden;
}

.layout-countries__info {
    flex-grow: 1;
    color: var(--light-text);
}

.layout-countries__title {
    margin-bottom: 3.2rem;
    font-size: 3.2rem !important;
    line-height: 4rem !important;
}

.layout-countries__content p {
    margin: 1.6rem 0;
}

.layout-countries__content ol,
.layout-countries__block ol {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.layout-countries__content ol {
    margin-top: 3.4rem;
}

.layout-countries__content ol li,
.layout-countries__block ol li {
    counter-increment: customlistcounter;
    margin-bottom: 1.5rem;
    line-height: 3rem;
    font-weight: bold;
    color: var(--light-text);
}

.layout-countries__content ol li::before,
.layout-countries__block ol li::before {
    content: counter(customlistcounter) " ";
    background-color: #0ab4dc;
    margin-right: 10px;
    font-weight: bold;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #001432;
    font-size: 2rem;
}

@media screen and (min-width: 1024px) {
    .layout-countries__block {
        width: 50%;
        max-width: 50%;
        min-width: 50%;
    }
    .layout-countries {
        flex-direction: row;
        gap: 4rem;
    }
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.countries-show-more {
    position: relative;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: "Franklin-Book";
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.countries-show-more__text {
    position: relative;
    color: var(--light-text);
    text-decoration: underline;
}

.countries-show-more__text::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: -20px;
    top: 4px;
    transform: rotate(135deg);
}

.countries-show-more.opened .countries-show-more__text::after {
    transform: rotate(225deg) scale(1, -1);
    top: 6px;
}

.countries-show-more-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 767.9px) {
    .sub-career-col,
    .countries-col {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1023.9px) {
    .layout-countries__duplicate-step {
        display: none;
    }

    .layout-countries {
        gap: 0;
    }
}

/* Стили слайдера с контентом */

.content-banner__swiper {
    height: 734px;
    position: relative;
}

.content-banner__progress {
    position: absolute;
    bottom: 2.8rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    z-index: 2;
}

.content-banner__pagination {
    width: fit-content !important;
}

.content-banner__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1 !important;
    background-color: transparent !important;
    border: 1px solid var(--light-text);
}

.content-banner__pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--light-text) !important;
}

.content-banner__prev,
.content-banner__next {
    position: absolute;
    top: 50%;
    width: 4.2rem;
    height: 4.2rem;
    z-index: 2;
    background-image: url("../img/carousel-arrow.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.content-banner__prev {
    left: 2.5rem;
    transform: translateY(-50%);
}

.content-banner__next {
    right: 2.5rem;
    transform: translateY(-50%) rotate(180deg);
}

.content-banner__pause {
    width: 1rem;
    height: 1.4rem;
    cursor: pointer;
    background-color: transparent;
    margin: 0 4px;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-top: unset;
    border-bottom: unset;
}

.content-banner__pause.play {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
    border-right: 0;
}

.content-banner__down-arrow {
    position: absolute;
    left: 2.9rem;
    bottom: 2.9rem;
    width: 5.6rem;
    height: 5.6rem;
    z-index: 2;
    display: flex;
    background-color: transparent;
    border: unset;
}

.content-banner__slide {
    position: relative;
}

.content-banner__slide:not(.layout-video):before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    z-index: 2;
}

.content-banner__pictures {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.content-banner__image {
    display: block;
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    margin: auto;
    width: unset;
    height: unset;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(0);
}

.content-banner__content {
    position: absolute;
    z-index: 2;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-banner__header {
    max-width: 800px;
    margin: 0 auto 2.8rem auto;
    color: var(--light-text);
    text-transform: uppercase;
    font-size: 3.2rem !important;
    line-height: 3.8rem !important;
    text-align: center;
}

.content-banner__action {
    min-width: 21.7rem;
    max-width: 33.5rem;
    display: block;
    align-self: center;
    cursor: pointer;
}

.content-banner__action.layout-play-video span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.4rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #001432;
    border-style: solid;
}

@media (max-width: 1023.9px) {
    .content-banner__next,
    .content-banner__prev,
    .content-banner__down-arrow {
        display: none;
    }

    .content-banner__header {
        max-width: 800px;
        font-size: 2.4rem !important;
        line-height: 3rem !important;
    }
}

.content-banner__preview {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-position: center center;
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
}

.content-banner__looped-video {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    opacity: 1;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
}

.layout-video-modal {
    background-color: #000000;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    display: none;
}

.layout-video-modal.opened {
    display: block;
}

.layout-video-modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-video-modal__close {
    width: 4rem;
    height: 4rem;
    top: 5rem;
    right: 3rem;
    position: absolute;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.layout-video-modal__close::before,
.layout-video-modal__close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    z-index: 2;
}

.layout-video-modal__close::after {
    transform: translateX(-50%) rotate(45deg);
}

.layout-video-modal__video {
    width: 83%;
    height: 50%;
    border: unset;
}

@media (max-width: 767.9px) {
    .content-banner__action {
        max-width: 100%;
        width: 99.4%;
    }

    .content-banner__swiper {
        height: 550px;
    }

    .content-banner__content {
        bottom: 6.2rem;
    }

    .content-banner__header {
        margin-bottom: 1.6rem;
    }
}

@media (max-width: 550.9px) {
    .content-banner__image {
        height: 100%;
        width: auto;
        transform: translateX(-50%);
        top: 0;
        right: unset;
        bottom: 0;
        left: 50%;
    }
}

/* стили баннера cookie */
.cookie-banner-modal,
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 100;
    opacity: 0;
    transition-duration: 0.3s;
    pointer-events: none;
}

.cookie-modal {
    align-items: center;
}

.cookie-banner-modal.active,
.cookie-modal.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-banner {
    margin-top: auto;
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1.3rem 3.2rem;
    display: flex;
    align-items: center;
    color: var(--light-text);
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
    transition-duration: 0.7s;
    transition-delay: 0.3s;
    transition-property: transform;
    transform: translate(0, 100%);
}

.active .cookie-banner {
    transform: translate(0, 0);
}

.cookie-banner:focus {
    outline-color: #0ab4dc;
    outline-width: 1px;
}

.cookie-banner__text {
    width: 55.259%;
    max-width: 55.259%;
    font-size: 1.3rem;
    line-height: 1.5;
}

.cookie-banner__link {
    color: var(--button-active);
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 5px;
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 2%;
    flex-grow: 1;
    gap: 1.3rem;
}

.cookie-banner__close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    padding: 0;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    display: block;
    background-color: transparent;
    cursor: pointer;
}

.cookie-banner__button-blue {
    color: var(--light-text);
    border-color: var(--light-text);
    border-radius: 2px;
    border: 1px solid #bbbbbb;
    background-color: var(--button-active);
    outline-offset: 1px;
    box-shadow: none;
    display: inline-block;
    text-align: center;
}

.cookie-banner__button {
    background-color: var(--btn-bg-secondary);
    border-color: var(--btn-bg-secondary);
    color: #ffffff;
}

.cookie-banner__button,
.cookie-banner__button-blue {
    padding: 12px 10px;
    line-height: 1.2;
    font-size: 1.3rem;
    font-weight: 600;
    height: 41px;
    min-width: 125px;
    font-family: "Franklin-Book";
    cursor: pointer;
}

.cookie-banner__button-blue:hover,
.cookie-banner__button:hover {
    opacity: 0.7;
}

@media (max-width: 1048.9px) {
    .cookie-banner {
        align-items: flex-start;
    }
    .cookie-banner__buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 991.9px) {
    .cookie-banner {
        display: block;
        padding: 2rem 1.6rem 1.3rem;
    }

    .cookie-banner__buttons {
        padding: 0;
        margin-top: 10px;
    }

    .cookie-banner__text {
        width: calc(100% - 44px);
        max-width: unset;
    }

    .cookie-banner__close {
        top: 32px;
    }

    .cookie-banner__button-blue {
        margin-right: auto;
    }
}

@media (max-width: 549.9px) {
    .cookie-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner__text,
    .cookie-banner__buttons {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .cookie-banner__text {
        padding-right: 1.6rem;
    }

    .cookie-banner__buttons {
        justify-content: flex-end;
        gap: 1rem;
    }
}

@media (max-width: 425.9px) {
    .cookie-banner__button-blue,
    .cookie-banner__button {
        width: 100%;
    }

    .cookie-banner {
        padding: 4.8rem 2rem 1.3rem;
    }

    .cookie-banner__text,
    .cookie-banner__buttons {
        width: 100%;
    }

    .cookie-banner__close {
        right: 0;
        top: 30px;
    }

    .cookie-banner__text {
        padding-right: 0;
    }
}

/* стили кнопки для открытия Cookie Settings в левом нижнем углу */

.cookie-button {
    position: fixed;
    z-index: 100;
    bottom: 10px;
    left: -75px;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border-color: var(--light-text);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: transparent;
    transition: all 300ms ease;
}

.cookie-button.show {
    animation: otFloatingBtnIntro 800ms ease 0ms 1 forwards;
}

.cookie-button::before {
    position: absolute;
    content: "";
    left: calc(100% + 5px);
    z-index: 1001;
    top: 50%;
    transform: translate(10px, -50%);
    text-transform: none;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: all 300ms ease;
    display: block;
    height: auto;
    font-size: 7.5px;
    color: var(--light-text);
    padding: 5px;
    background: #333;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 1.35px;
    min-width: 22.5px;
    max-width: 157.5px;
    content: attr(data-title);
}

.cookie-button:hover::before {
    transform: translate(0.5em, -50%) scale(1);
    opacity: 1;
}

@keyframes otFloatingBtnIntro {
    0% {
        opacity: 0;
        left: -75px;
    }
    100% {
        opacity: 1;
        left: 1%;
    }
}

.cookie-button__front {
    transform: rotateY(0);
}

.cookie-button__back {
    transform: rotateY(-180deg);
}

.cookie-button__front,
.cookie-button__back {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    border-radius: 50%;
    background-color: #6aaae4;
}

.active-cookies .cookie-button__front {
    transform: rotateY(-180deg);
}

.active-cookies .cookie-button__back {
    transform: rotateY(0);
}

.cookie-button__open {
    background-image: url("../img/persistent_cookie.png");
}

.cookie-button__open,
.cookie-button__close {
    border: none;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #6aaae4;
}

.cookie-button__close svg {
    width: 24px;
    height: 24px;
    outline: none;
}

/* стили модального окна Cookie Settings */
.cookie-modal__modal {
    margin: 4.99vh 0 15vh;
    overflow: hidden;
    top: 5%;
    width: 40%;
    max-width: 575px;
    min-width: 575px;
    border-radius: 2.5px;
    z-index: 1002;
    background-color: var(--light-text);
    -webkit-box-shadow: 0px 2px 10px -3px #999;
    -moz-box-shadow: 0px 2px 10px -3px #999;
    box-shadow: 0px 2px 10px -3px #999;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-height: 689px;
}

.cookie-modal__top {
    height: 6rem;
    padding: 1rem 0 1rem 3rem;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
}

.cookie-modal__image {
    height: 4rem;
    width: 12rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookie-modal__img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cookie-modal__close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    display: block;
    cursor: pointer;
}

.cookie-modal__content {
    flex-grow: 1;
    padding-right: 3rem;
    margin: 1px 3px 0 3rem;
    overflow: scroll;
}

.cookie-modal__content::-webkit-scrollbar {
    width: 11px;
}

.cookie-modal__content::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #d8d8d8;
}

.cookie-modal__content::-webkit-scrollbar-track {
    margin-right: 2rem;
}

.cookie-modal__header {
    font-weight: bold;
    color: var(--primary-color);
    font-family: "Franklin-Book";
    margin: 1rem 0;
}

.cookie-modal__text {
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    line-height: 1.5;
}

.cookie-modal__text a {
    color: var(--button-active);
    text-decoration: underline;
}

.cookie-modal__text a:hover {
    text-decoration: none;
}

.cookie-modal__allow-all {
    margin-bottom: 2.5rem;
}

.cookie-modal__allow-all.hide {
    display: none;
}

.cookie-modal__settings {
    margin-top: 2rem;
}

.cookie-modal__option {
    border: 1px solid #d8d8d8;
}

.cookie-modal__option:not(:first-child) {
    border-top: unset;
}

.cookie-modal__option-top {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 7px 0;
    min-height: 4rem;
}

.cookie-modal__option:focus-within {
    border: 1px solid var(--primary-color);
}

.cookie-modal__option:focus-within + .cookie-modal__option {
    border-top: unset;
}

.cookie-modal__option:has(+ .cookie-modal__option:focus-within) {
    border-bottom: unset;
}

.cookie-modal__plus-minus {
    position: relative;
    width: 2rem;
    height: 2rem;
    margin: 0 5px;
}

.cookie-modal__plus-minus::before,
.cookie-modal__plus-minus::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cookie-modal__plus-minus::before {
    width: 2px;
    height: 10px;
}

.cookie-modal__plus-minus::after {
    height: 2px;
    width: 10px;
}

.dropdown-opened .cookie-modal__plus-minus::before {
    width: 0;
    overflow: hidden;
}

.cookie-modal__option-header {
    flex: 1;
    margin: 0 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 90%;
}

.cookie-modal__switch {
    background-color: #767676;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 4.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    position: relative;
    cursor: pointer;
}

.active-switch.cookie-modal__switch {
    background-color: #468254;
    border: 1px solid var(--light-text);
    -webkit-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.cookie-modal__switch::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 3px;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #ffffff;
    border-radius: 50%;
    transition: 0.4s;
}

.active-switch.cookie-modal__switch::before {
    left: 22px;
}

.cookie-modal__always-active {
    color: #3860be;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: bold;
    margin: 0 0.5rem;
}

.cookie-modal__description {
    padding: 0 2rem 1rem;
    display: none;
}

.dropdown-opened .cookie-modal__description {
    display: block;
}

.cookie-modal__description-text {
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.cookie-modal__see-details {
    border: none;
    background-color: transparent;
    color: var(--button-active);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    cursor: pointer;
    font-family: "Franklin-Book";
}

.cookie-modal__see-details:hover {
    text-decoration: underline;
}

.cookie-modal__buttons {
    border-top: 1px solid #d8d8d8;
    padding: 1.9rem 2rem 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
}

.cookie-form-button {
    background-color: #001432;
    border-color: #001432;
    color: #ffffff;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0.96px;
    max-width: 394px;
    padding: 1.2rem 3rem;
    line-height: 1;
    word-break: break-word;
    word-wrap: break-word;
    white-space: normal;
    font-weight: bold;
    height: auto;
    font-family: "Franklin-Book";
}

.cookie-form-button:hover {
    opacity: 0.7;
}

.cookie-modal__footer-logo {
    height: 3rem;
    width: 100%;
    text-align: right;
    background: #f4f4f4;
}

.cookie-modal__link {
    display: inline-block;
    margin-top: 5px;
    margin-right: 2rem;
}

.cookie-modal__footer-img {
    width: 13.6rem;
    height: 1.6rem;
}

@media (max-width: 600.9px) {
    .cookie-modal__modal {
        width: 100%;
        max-width: unset;
        margin: 0;
        height: 100%;
        max-height: unset;
        min-width: unset;
    }

    .cookie-modal__content {
        margin: 1px 3px 0 1rem;
        padding-right: 1rem;
    }

    .active-cookies {
        opacity: 0 !important;
        pointer-events: none;
    }
}

@media (max-width: 476.9px) {
    .cookie-form-button {
        width: 100%;
        max-width: unset;
    }

    .cookie-modal__buttons {
        flex-wrap: wrap;
        gap: 1.9rem;
        padding: 1.9rem 1.3rem 1rem 1rem;
    }
}
