@font-face {
    font-family: "Play";
    src: url("../fonts/Play/Play-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Play";
    src: url("../fonts/Play/Play-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "TT_Bricks";
    src: url("../fonts/TT_Bricks/TT_Bricks_Medium_Italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "TT_Bricks";
    src: url("../fonts/TT_Bricks/TT_Bricks_Regular.ttf") format("truetype");
    font-weight: 400;
}


@font-face {
    font-family: "TT_Bricks";
    src: url("../fonts/TT_Bricks/TT_Bricks_Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
text-decoration:none;
}

a.grey-link, a.grey-link:hover {
    text-decoration: underline;
}

a.grey-link, a.grey-link:hover {
    color: #a7a7a7;
}

:root {
    --main-color: #fff;
    --contrast-color: #F40C1A;
    --contrast-color-20: #f40c1b1e;
    --sub-color: #707487;
    --red-color: #F40C1A;
    --background: #212228;
    --main-mask-color: rgba(33, 34, 40, .6);
    --sub-mask-color: rgba(0, 0, 0, .6);
    --button-background-color: rgba(255, 255, 255, .2);
    --button-background-color-hover: rgba(255, 255, 255, .5);
    --button-color: var(var(--main-color));
    --button-color-hover: var(var(--contrast-color));
}


body{
    background-color: var(--background);
    font-family: 'Play';
    font-weight: 500;
    overflow-x: hidden;
}

section{
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

p.section-title{
    color: var(--main-color);
    font-size: 48px;
    font-family: 'TT_Bricks';
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

p.section-title.left-line:before{
    content: "";
    position: absolute;
    bottom: 10px;
    right: 105%;
    width: 100vw;
    height: 2px;
    background-color: var(--contrast-color);
}

p.section-title.right-line:before{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 105%;
    width: 100vw;
    height: 2px;
    background-color: var(--contrast-color);
}


/* sub styles */

.row {
    display: flex;
    flex-wrap: wrap;
}

.no-wrap{
    flex-wrap: nowrap;
}

.col {
    display: flex;
    flex-direction: column;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.justify-between {
    justify-content: space-between;
}

.mt-20{
    margin-top: 20px;
}
/* site styles */

.main-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-mask-color);
}

.main-mask-bg-black {
    background-color: var(--sub-mask-color);
}

.main-page-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    padding-top: 80px;
    padding-bottom: 0;
}

.main-page-hero a.phone-link{
    color: var(--contrast-color);
    font-size: 40px;
    font-family: 'TT_Bricks';
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.bgvideo {
    position: absolute;
    z-index: -1!important;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bgvideo { display: none; }
}

*:not(.main-mask) {
    z-index: 2;
}

.main-page-hero div {
    font-family: 'TT_Bricks';
    font-weight: 400;
    font-style: italic;
    font-size: 32px;
    color: var(--main-color);
}

.main-page-hero nav {
    width: 100%;
    background-color: var(--sub-mask-color);
}

.main-page-hero nav ul {
    list-style: none;
}

.main-page-hero nav>ul {
    height: 80px;
    transition: .3s all ease;
}

.main-page-hero nav ul li+li {
    margin-left: 40px;
}

.main-page-hero nav ul li ul li+li {
    margin-left: 15px;
}

.main-page-hero nav ul li a {
    font-size: 20px;
    color: var(--main-color);
    display: flex;
}


@media (max-width: 1023px) {
    .main-page-hero nav>ul {
        position: absolute;
        left: -100%;
        height: calc(100% - 75px);
        width: 100%;
        top: 0;
        flex-direction: column;
        background-color: var(--sub-mask-color);
        justify-content: flex-end;
        padding-bottom: 10px;
    }

    .main-page-hero nav ul.active {
        left: 0;
    }

    .main-page-hero nav>ul>li+li {
        margin-left: 0;
        margin-top: 20px;
    }

    .main-page-hero p.section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .mobile-burger {
        display: none;
    }
}



.mobile-burger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: 25px auto;
}

.mobile-burger i {
    background-color: #fff;
    border-radius: 2px;
    content: "";
    display: block;
    width: 100%;
    height: 4px;
}

.mobile-burger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.mobile-burger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.mobile-burger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.mobile-burger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.mobile-burger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.mobile-burger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.mobile-app-section{
    padding: 80px 20px;
}

.mobile-app-text {
    padding: 30px 0px 30px 40px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobile-app-text>*:not(.main-mask) {
    z-index: 2;
}

.mobile-app-text>* {
    margin-bottom: 20px;
}

.mobile-app-text p.section-title {
    font-family: 'TT_Bricks';
    font-weight: 400;
    font-style: italic;
    font-size: 38px;
    transform: translateX(-100px);
    color: var(--contrast-color);
    text-align: left;
    line-height: normal;
}

.mobile-app-image{
    max-width: 300px;
    min-width: 300px
}
.mobile-app-text p {
    color: var(--main-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.mobile-app-links .row > *{
    margin-bottom: 20px;
}

.mobile-app-links  a {
    margin-right: 20px;
}

.mobile-app-links  p {
    color: var(--red-color);
    font-weight: 500;
    font-family: 'TT_Bricks';
    font-weight: 400;
    font-style: italic;
}

.mobile-app-links  p.code-hint {
    max-width: 200px;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    margin-right: 20px;
}


.mobile-app-links p.code-num {
    max-width: 200px;
    font-size: 38px;
}

@media(max-width: 1250px){
    .mobile-app-text p.section-title {
        transform: translateX(0px);
    }
}


@media(max-width: 1250px){
    .mobile-app-section {
        align-items: center;
    }
}

@media(max-width: 768px){
    .mobile-app-section {
        flex-direction: column-reverse;
    }
}

@media(max-width: 500px){
    .mobile-app-section {
        padding: 60px 20px;
    }

    .mobile-app-text {
        padding: 0px;
    }
}

.gallery-description{
    display: block;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: var(--main-color);
    line-height: normal;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
}

.gallery-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1600px;
    margin: auto;
}

.gallery-grid img{
    height: 300px;
    padding: 15px;
    width: 430px;
    object-fit: cover;
}

.gallery-grid img:nth-child(9n+3), .gallery-grid img:nth-child(9n+4){
    width: 350px;
}

.gallery-grid img:nth-child(9n+2), .gallery-grid img:nth-child(9n+6){
    width: 500px;
}

@media (max-width: 1023px){
    .gallery-grid img{
        height: auto;
        width: 50%!important;
    }
}

@media (max-width: 767px){
    .gallery-grid img{
        width: 100%!important;
    }
}

#fullscreenSwiperPopup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}


#fullscreenSwiperPopupMask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--main-mask-color);
}

#fullscreenSwiperPopup .swiper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 80%;
}

#fullscreenSwiperPopup .swiper .swiper-slide img{
    object-fit: contain;
    height: 100%;
    margin: auto;
    display: flex;
}


#fullscreenSwiperPopupCross{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    z-index: 2;
    background-image: url('/assets/images/icons/cross.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.subscriptions-section{
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subscriptions-section__message{
    color: var(--main-color);
    font-family: "Play";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.subscriptions-grid{
    color: #fff;
}

.subscriptions-grid > div:nth-child(1){
    width: 300px;
    margin-right: 20px;
}

.subscriptions-grid > div:nth-child(2){
    width: 700px;
    margin-right: 20px;
}

.subscriptions-grid > div:nth-child(3){
    width: 300px;
}

.subscriptions-types-list p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
    transition: .3s all ease;
    cursor: pointer;
}

.subscriptions-types-list p:hover, .subscriptions-types-list p.active {
    color: var(--contrast-color);
}

.subscriptions-grid .subscriptions-items{
    width: 100%;
    justify-content: space-around;
}

.subscriptions-grid .subscription-item{
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    color: var(--main-color);
    border: 1px solid var(--contrast-color);
    background: rgba(0, 0, 0, 0.40);
    max-width: 300px;
    display: none;
    transition: .3s all ease;
    min-width: 300px;
}

.subscriptions-grid .subscription-item:hover{
    background: rgba(0, 0, 0, 0.70);
    box-shadow: 0px 0px 25px 0px rgba(0, 245, 245, 0.50);
}

.subscriptions-grid .subscription-item:hover > *{
    color: var(--contrast-color);
    filter: drop-shadow(0px 0px 25px 0px rgba(0, 245, 245, 0.50));
}

/* .subscriptions-grid .subscription-item:nth-child(odd){
    margin-right: 20px;
} */

[data-type-id]{
    display: none;
}

[data-type-id].active{
    display: block;
}

.subscription-item__name{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 40px;
}


.subscription-item__price{
    font-size: 136px;
    font-family: 'TT_Bricks';
    font-style: normal;
    font-weight: 500;
    line-height: 120px;
}


.subscription-item__price-description{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}


.subscription-item__price-total{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}

.subscriptions-type-description__title{
    color: var(--contrast-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.subscription-item__buy-button{
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.20);
    color: var(--main-color);
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s all ease;
}


.subscription-item__buy-button:hover{
    padding: 8px 24px;
    background: var(--contrast-color);
    color: var(--background)!important;
    text-transform: uppercase;
    cursor: pointer;
}

.subscriptions-type-description ul{
    padding-inline-start: 20px;
}

.subscriptions-type-description ul li{
    margin-bottom: 10px;
}

@media(max-width: 1350px){
    .subscriptions-grid .subscription-item{
        width: fit-content;
    }
}


@media(max-width: 1300px){
    .subscriptions-grid{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .subscriptions-grid > div:nth-child(1){
        width: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .subscriptions-grid > div:nth-child(2){
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .subscriptions-grid > div:nth-child(3){
        width: auto;
        max-width: 250px;
    }

    .subscriptions-types-list{
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .subscriptions-types-list p{
        margin-right: 20px;
    }

    .subscriptions-grid .subscriptions-items{
        justify-content: space-evenly;
    }
}

@media(max-width: 680px){
    .subscriptions-items{
        /* justify-content: center!important; */
        width: 100%!important;
    }

    .subscriptions-grid .subscription-item{
        padding: 20px 10px;
        text-align: center;
        color: var(--main-color);
        border: 0.3px solid var(--contrast-color);
        background: rgba(0, 0, 0, 0.40);
        width: calc(50% - 30px);
        min-width: auto;
    }

    .subscription-item__name{
        font-size: 20px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .subscription-item__price{
        font-size: 60px;
        line-height: normal;
    }

    .subscription-item__price-description{
        font-size: 16px;
        margin-bottom: 15px;
    }

    .subscription-item__price-total{
        font-size: 14px;
        line-height: normal;
        margin-bottom: 25px;
    }

    .subscription-item__buy-button{
        font-size: 14px;
    }
}


@media(max-width: 450px){
    /* .subscriptions-grid .subscription-item:nth-child(odd) {
        margin-right: 10px;
    } */

    .subscriptions-grid .subscription-item{
        width: calc(50% - 10px);
    }

    .subscription-item__name{
        font-size: 18px;
    }

    .subscription-item__price{
        font-size: 50px;
    }

    .subscription-item__price-description{
        font-size: 14px;
    }

    .subscription-item__price-total{
        font-size: 12px;
    }
}


.zones-section  {
    padding: 0;
}

.zones-section .swiper {
    width: 100%;
    height: 100%;
}

.zones-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 180px 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}

.zones-section .swiper-slide .zones-slider__content-container {
    max-width: 1400px;
}

.zones-section .zones-slider__actions-container{
    max-width: 1600px;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.zones-section .swiper-button-next, .zones-section .swiper-button-prev{
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center;
}

.zones-section .swiper-button-next::after, .zones-section .swiper-button-prev::after{
    display: none;
}

.zones-section .swiper-button-next{
    background-image: url("/assets/images/icons/arrow.svg");
    transform: rotate(180deg);
}

.zones-section .swiper-button-prev{
    background-image: url("/assets/images/icons/arrow.svg");
}

.zones-section .zones-slider__content-container p.zone-title{
    color: var(--main-color);
    font-size: 32px;
    font-family: "Play";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}


.zones-section .zones-slider__content-container div.zone-description{
    color: var(--main-color);
    text-align: center;
    font-size: 20px;
    font-family: "Play";
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.zones-section .zones-slider__content-container div.zone-description{
    color: var(--main-color);
    text-align: center;
    font-size: 20px;
    font-family: "Play";
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.zones-section div.zone-background{
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.faq-section, .certificate-section{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.faq-items{
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.faq-item{
    color: var(--main-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
}

.faq-question{
    justify-content: space-between;
    margin-bottom: 10px;
}

.faq-question > p{
    color: var(--main-color);
    font-size: 20px;
    font-family: "Play";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 10px;
}

.faq-question span{
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.faq-question span i:nth-child(1){
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: var(--contrast-color);
}

.faq-question span i:nth-child(2){
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 100%;
    height: 2px;
    background-color: var(--contrast-color);
    transition: .3s all ease;
}

.faq-question span.active i:nth-child(2){
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 100%;
    height: 2px;
    background-color: var(--contrast-color);
    transition: .3s all ease;
}

.faq-answer{
    /* display: none; */
    opacity: 0;
    transition: .5s all ease;
    max-height: 0;
}

.faq-item.active .faq-answer{
    /* display: block; */
    opacity: 1;
    transition: .5s all ease;
    max-height: 600px;
}

.faq-answer > p{
    color: var(--main-color);
    font-size: 16px;
    font-family: "Play";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.social-section{
    padding: 15px 0;
}

.social-list{
    max-width: 1600px;
    margin: auto;
    padding: 20px;
}

.social-list > *{
    margin-right: 10px;
}

.social-list span{
    color: var(--contrast-color);
    font-family: "TT_Bricks";
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
}

.contacts-section{
    padding: 0;
}

.contacts-container{
    max-width: 1600px;
    margin: auto;
    padding: 0 20px;
}

.contacts-block{
    max-width: 550px;
    padding: 100px 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contacts-block p{
    color: var(--contrast-color );
    font-family: "Play";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.contacts-block .row{
    margin-bottom: 20px;
}

.contacts-block .row img{
    margin-right: 10px;
}

.contacts-block .row a {
    color: var(--main-color);
    font-family: "Play";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
text-decoration: none;
}

@media (max-width: 767px){
    .contacts-container{
        padding: 0px;
    }

    .contacts-block{
        max-width: 100%;
        width: 100%;
        padding: 100px 20px;
    }
}

.footer{
    padding: 40px 0;
}

.footer-container{
    max-width: 1600px;
    margin: auto;
    padding: 0 20px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-props a.logo{
    display: block;
    margin-bottom: 30px;
}

.footer-title{
    color: var(--contrast-color);
    font-family: "Play";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.footer-description{
    color: var(--main-color);
    font-family: "Play";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
}

a.footer-description{
    text-decoration: underline;
}

.footer-info img{
    max-width: 300px;
}

input[type="text"], input[type="email"], textarea{
    background-color: transparent;
    padding: 16px;
    width: 100%;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    outline: none;
    font-family: "Play";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

.footer-form form span, .footer-form form a{
    color: var(--main-color);
    font-family: "Play";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-form form span{
    margin-bottom: 10px;
}

.footer-form form a{
    text-decoration: underline;
}

.footer-form button{
    background-color: transparent;
    color: var(--contrast-color);
    border: 2px solid var(--contrast-color);
    padding: 8px 16px;
    cursor: pointer;
    transition: .3s all ease;
}

.footer-form button:disabled{
    cursor: not-allowed;
    pointer-events: all !important;
}

.footer-form button:hover{
    background-color: var(--contrast-color);
    color: var(--background);
}

@media(max-width: 1100px){
    .footer-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media(max-width: 767px){
    .footer-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    color: var(--background)
}

.scr-img-wrap {
	display: block;
	max-width:1920px;
	width: 100%;
	margin: 20px auto 0;
    padding: 20px 0;
	cursor: pointer;
	position: relative;
	background-repeat: no-repeat;
    background-position: top center;
	background-size: cover;
	height: 281px;
    max-width: 1260px;
    text-align: center;
}

.icn-play-3d,
.play-3d-text {
	display: block;
	position: absolute;
}

.icn-play-3d {
    max-width: 137px;
    width: 100%;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
	width: 100%;
	margin:  auto;
}

.icn-play-3d img{
	display: block;
	width: 100%;

}

.play-3d-text {
	color: #fff;
	font-size: 40px;
	line-height: 48px;
    text-align: center;
    margin: auto;
    width: 100%;

}

@media (max-width: 767px)  {
	.play-3d-text {
		font-size: 30px;
		line-height: 38px;
	}

	.icn-play-3d {
		max-width: 60px;
		bottom: 50%;
		margin: 0 auto -70px;
	}

}

.tabs-container{
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.tabs__content{
    margin-top: -1px;
    width: 100%;
    position: relative;
    padding-top: 40px;
    color: #fff;
}
/* Tabs */
.tabs{
    margin-top: 50px;
    margin-bottom: min(50px, 10vh);
  }
  .tabs ul{
    list-style: none;
  }
  .tabs__nav{
    display: flex;
    flex-wrap: wrap;
  }
  .tabs__nav li{
    font-size: 1rem;
    padding: .5em 0;
    margin-right: 20px;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-bottom: 2px solid transparent;
  }
  .tabs__nav li:hover{
    border-bottom: 2px solid var(--contrast-color);
  }
  .tabs__nav-btn.active{
    border-bottom: 2px solid var(--contrast-color);
  }
  .tabs__item{
    display: none;
    /* background-color: aquamarine; */
    line-height: 25px;
  }
  .tabs__item.active{
    display: block;
  }

  @media (max-width: 767px) {
    .tabs__nav{
        flex-direction: column;
        align-items: center;
      }
  }
  /* End Tabs */
  .mbr-section {
    padding: 24px;
    position: relative;
    overflow: hidden;
    background-color:var(--sub-mask-color);

}
  .mbr-section__container {
    padding: 0;
    position: relative;
    z-index: 3;
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
    padding: 0 20px;
    text-align: center;

}
  .mbr-footer {
    color: #9c9c9c;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.5em;
    padding: 37px 0 39px;
    word-spacing: 1px;
}

ol{
padding-left: 15px;
margin: 20px 0;
}

.cookie-check-banner{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--background);
    padding: 20px;
    z-index: 9999;
    border: 2px solid var(--contrast-color);
    color: var(--main-color);
    font-size: 15px;
}

.cookie-check-banner p:nth-last-child(1){
    width: 100%;
    margin-top: 5px;
}

.cookie-check-banner-title{
    margin-bottom: 10px;
}

.cookie-check-banner-settings{
    max-height: 0px;
    transition: .3s all ease;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
}

.cookie-check-banner-settings .row{
    margin-bottom: 15px;
}

.cookie-check-banner-settings.active{
    max-height: 1000px;
    transition: .3s all ease;
    opacity: 1;
    visibility: visible;
    /* display: block; */
}

.cookie-check-banner a{
   color: #fff;
  text-decoration: underline;
}

.cookie-check-buttons{
    display: grid;
    grid-template-columns: 155px 155px 155px;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 767px){
    .cookie-check-buttons{
        grid-template-columns: 155px 155px;
    }

    .cookie-check-buttons button:nth-child(1){
        grid-area: 1 / 1 / 2 / 2;
    }

    .cookie-check-buttons button:nth-child(2){
        grid-area: 1 / 2 / 2 / 3;
    }

    .cookie-check-buttons button:nth-child(3){
        grid-area: 2 / 1 / 3 / 3;
    }
}

.cookie-check-button-no, .cookie-check-button-yes, .cookie-check-button-change{
    padding: 12px 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s all ease;
    border: none;
}

.cookie-check-button-no, .cookie-check-button-change{
    background: var(--main-color);
    color: var(--contrast-color);
}

.cookie-check-button-yes{
    background: var(--contrast-color);
    color: var(--main-color);
}


.cookie-check-button-no:hover, .cookie-check-button-yes:hover, .cookie-check-button-change:hover{
    background: var(--background);
    color: var(--main-color)!important;
}


.cookie-check-banner .column .row{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-check-banner input[type=checkbox],
.cookie-check-banner input[type=radio] {
    --active: var(--contrast-color);
    --active-inner: #fff;
    --focus: 1px var(--contrast-color);
    --border: var(--sub-color);
    --border-hover: var(--contrast-color);
    --background: #fff;
    --disabled: var(--sub-color);
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    margin-left: 20px;
  }
  .cookie-check-banner input[type=checkbox]:after,
.cookie-check-banner input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .cookie-check-banner input[type=checkbox]:checked,
.cookie-check-banner input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .cookie-check-banner input[type=checkbox]:disabled,
.cookie-check-banner input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .cookie-check-banner input[type=checkbox]:disabled:checked,
.cookie-check-banner input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .cookie-check-banner input[type=checkbox]:disabled + label,
.cookie-check-banner input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  .cookie-check-banner input[type=checkbox]:hover:not(:checked):not(:disabled),
.cookie-check-banner input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .cookie-check-banner input[type=checkbox]:focus,
.cookie-check-banner input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .cookie-check-banner input[type=checkbox]:not(.switch),
.cookie-check-banner input[type=radio]:not(.switch) {
    width: 21px;
  }
  .cookie-check-banner input[type=checkbox]:not(.switch):after,
.cookie-check-banner input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .cookie-check-banner input[type=checkbox]:not(.switch):checked,
.cookie-check-banner input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  .cookie-check-banner input[type=checkbox] + label,
.cookie-check-banner input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  .cookie-check-banner input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  .cookie-check-banner input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .cookie-check-banner input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  .cookie-check-banner input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  .cookie-check-banner input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  .cookie-check-banner input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .cookie-check-banner input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }

  .cookie-check-banner input[type=radio] {
    border-radius: 50%;
  }
  .cookie-check-banner input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  .cookie-check-banner input[type=radio]:checked {
    --s: .5;
  }