/*----------FONTS----------------*/
/* @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.ttf');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Regular.ttf');
    font-weight: 400;
    font-style: normal;
} */

/*----------FONTS----------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    background-color: #000000;
}

::-webkit-scrollbar {
    width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}


/*----------DESKTOP----------------*/

header {
    height: 124px;
}

.logo {
    display: flex;
    height: 100%;
    align-items: center;
}

header .container,
header .row {
    height: 100%;
}

.menu {
    height: 100%;
}

.menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    height: 100%;
}

.menu ul a {
    color: #989898;
    text-decoration: none;
    font-size: 16px;
    font-family: Ubuntu;
    font-weight: 400;
}

/*
   ====================================================
   TYPE SCALE
   ====================================================
   Hero title  (h1)      64px desktop | 28px mobile
   Section head (h2)     52px desktop | 38px @768 | 26px mobile
   Sub-section  (h3)     28px desktop | 22px @768 | 20px mobile
   Lead / subtitle       20px | rgba(255,255,255,0.65)
   Body                  16px | rgba(255,255,255,0.55)
   Label / small         12–13px | rgba(255,255,255,0.35)
   Accent                #FF058C  |  #0ABAB5
   ====================================================
*/

h1 {
    font-size: 64px;
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: 900;
    color: #ffffff;
}

.Banner__text p {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
}

.Pink__button {
    background: #FF058C;
    padding: 21px 60px;
    border-radius: 18px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-decoration: none;
    transition-duration: .6s;
    outline: none;
    border: none;
}

.Pink__button span {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.Pink__button:hover {
    background: #0ABAB5;
    box-shadow: #0ABAB5 0px 0px 40px 15px;
}

form .Pink__button:hover {
    background: #FF058C;
    box-shadow: #FF058C 0px 0px 40px 15px;
}

section.Banner {
    padding-bottom: 44px;
}

.Banner__text {
    margin-bottom: 36px;
    margin-top: 16px;
}

.Banner__image {
    margin-bottom: 20px;
    position: relative;
    pointer-events: none;
    transition-duration: 0.4s;
    opacity: 1;
}

.Banner__image.loading {
    opacity: 0;
}

.Banner__image:before {
    content: '';
    position: absolute;
    background: #000;
    width: 150px;
    height: 70px;
    bottom: 0;
    right: -90px;
}

section.Banner .container-fluid {
    padding: 0;
}

.Banner__runtext {
    overflow: hidden;
}

.Banner__runtext p {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 54px;
    line-height: 54px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
}

.Banner__runtext .marquee {
    position: relative;
}

.Banner__runtext .marquee.left:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 224px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 16%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.Banner__runtext .marquee.right:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 224px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 64px;
    overflow-x: hidden;
}

.marquee p {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
}

.marquee.left p {
    animation: marquee2 32s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

section.Advantages {
    padding-top: 100px;
    padding-bottom: 100px;
}

.Advantages__card {
    background: #ffffff;
    border-radius: 25px;
    padding: 19px 25px;
    height: 159px;
    margin-bottom: 20px;
    cursor: default;
}

.number .Advantages__card_title {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    margin-bottom: 8px;
}

.Advantages__card_text {
    font-family: 'Ubuntu';
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin: 0;
    text-transform: uppercase;
}

.long .Advantages__card_title {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.small .Advantages__card_title {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.Advantages__card.number.pink {
    color: #FF058C;
    transition-duration: .6s;
}

.Advantages__card.number.green {
    color: #0ABAB5;
    transition-duration: .6s;
}

.Advantages__card.small.green {
    color: #0ABAB5;
    transition-duration: .6s;
}

.Advantages__card.small.pink {
    color: #FF058C;
    transition-duration: .6s;
}

.Advantages__card.long.green,
.Advantages__card.long.pink {
    transition-duration: .6s;
}



.Advantages__card.long.pink:hover img {
    filter: invert(1);
}

.Advantages__card.long.animation {
    position: relative;
}

.Advantages__card.long.animation img {
    transition-duration: .8s;
}

.Advantages__card.crown.long.animation img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Advantages__card.long.animation img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Advantages__card.long.animation.show-animation img {
    left: 85%;
}

.Advantages__card.dollar.long.animation.show-animation img {
    transform: rotate(45deg);
    left: 50%;
    opacity: 0;
}

.Advantages__card_crown {
    position: absolute;
    max-width: 339px;
    top: 42%;
    transform: translateY(-20%);
    opacity: 0;
    transition-duration: 1.5s;
}

.Advantages__card.long.animation.show-animation .Advantages__card_crown {
    opacity: 1;
    transform: translateY(-65%);
}

.long .Advantages__card_crown .Advantages__card_title {
    font-size: 32px;
}

.Advantages__card #dollar_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Advantages__card #dollar_hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.Advantages__card_dollar {
    position: absolute;
    width: 310px;
    transform: translateY(40%);
}

.long .Advantages__card_dollar .Advantages__card_title {
    font-size: 32px;
}

/* .Advantages__card.dollar.long.animation .Advantages__card_dollar img {
    opacity: 0;
    left: 110%;
    transform: rotate(0) translateY(-12%);
}

.Advantages__card.dollar.long.animation.show-animation .Advantages__card_dollar img {
    opacity: 1;
} */

/* .Advantages__card.dollar.long.animation .Advantages__card_dollar img.dollar_hover {
    opacity: 0;
}

.Advantages__card.dollar.long.animation.show-animation:hover .Advantages__card_dollar img.dollar_hover {
    opacity: 1;
} */

.Advantages__card.long.animation .Advantages__card_dollar {
    opacity: 0;
    transition-duration: 1.5s;
}

.Advantages__card.long.animation.show-animation .Advantages__card_dollar {
    opacity: 1;
    transform: translateY(0%);
}

section#Participants {
    padding-bottom: 100px;
}

h2 {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 52px;
    text-transform: uppercase;
    color: #ffffff;
}

.Participants__img {
    position: relative;
}

.Participants__img_img {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(50%, 45%);
}

.Participants__img .round {
    animation: rotate 16s linear infinite;
}

/* .slider_Partners .slick-list {
    margin-right: 1px;
} */
.slider_Partners:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 15px;
    background: #000;
    z-index: 1;
}

.slider_Partners:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;
    background: #000;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-360deg);
    }
}

.Participants__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.Participants__card {
    margin-top: 34px;
}

h3 {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
}

.Participants__card h3 {
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

.Participants__card_text {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: #ffffff;
    margin: 40px 0;
    margin-bottom: 10px;
}

.Participants__card .Pink__button {
    width: 100%;
    margin-bottom: 50px;
}

section#Directions__Sources {
    padding-top: 35px;
    padding-bottom: 100px;
}

.Directions__Sources h3 {
    border-bottom: 1px solid #5c5c5c;
    padding-bottom: 40px;
    position: relative;
}

.Directions__Sources h3:before {
    content: '';
    position: absolute;
    border-bottom: 2px solid #5c5c5c;
    border-right: 2px solid #5c5c5c;
    width: 8px;
    height: 8px;
    bottom: -5px;
    right: -1px;
    transform: rotate(-45deg);
}

.Directions__Sources p {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 64px;
    line-height: 100%;
    color: #ffffff;
    text-transform: uppercase;
}

.box-shadow {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-top: 13px;
    cursor: default;
}

.box-shadow .text {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 64px;
    line-height: 100%;
    color: black;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 1px #0ABAB5;
}

.box-shadow.pink .text {
    -webkit-text-stroke: 1px #FF058C;
}

.box-shadow .text span {
    position: absolute;
    top: -5px;
    transition-duration: .6s;
    white-space: nowrap;
    z-index: -1;
}

.box-shadow .text span:nth-child(2) {
    top: -8px;
    z-index: -2;
}

.box-shadow .text span:nth-child(3) {
    top: -11px;
    z-index: -3;
}



section.Closed_Club {
    padding-top: 60px;
    padding-bottom: 100px;
}

.slider_club {
    margin-bottom: 60px;
}

.slider_club .silder__item {
    background: #ffffff;
    border-radius: 25px;
    display: inline-block;
    overflow: hidden;
    height: 403px;
    max-width: 347px;
}

.slider_club .slider__text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    transition-duration: .6s;
}

.slider_club .slider__text span {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    text-transform: uppercase;
    pointer-events: none;
    text-decoration: none;
}

.slider_club .slider__text span a {
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}

.slider_club .silder__item img {
    transition-duration: .6s;
    height: 292px;
}



.slider_club .slick-slide {
    margin: 0 10px;
}

section#Partners {
    padding-top: 60px;
    padding-bottom: 100px;
}

.slider_Partners .slider__item {
    border-right: 1px solid #ffffff;
}

.slider_Partners .slider__item .slider__img:first-child {
    border-bottom: 1px solid #ffffff;
}

.slider_Partners .slider__item .slider__img {
    width: 100%;
}

.slider_Partners .slider__item .slider__img img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    transition-duration: .6s;
}


.slider_Partners .slider__item .slider__img:hover img {
    filter: grayscale(0);
}

.slider-arrowPrev {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    cursor: pointer;
}

.slider-arrowNext {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    cursor: pointer;
}

section#Cooperation {
    padding-top: 60px;
    padding-bottom: 90px;
}

.Cooperation .box-shadow p {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 52px;
    line-height: 100%;
    color: #ffffff;
    text-transform: uppercase;

}

.Cooperation .box-shadow .text {
    font-size: 52px;
}

.Cooperation__text {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.form__block {
    display: flex;
    align-items: center;
}

.form__block .form__row:first-child {
    margin-right: 20px;
}

.form__row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form form>.form__row {
    margin-top: 20px;
}

.form__row label {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.form__row input {
    background: transparent;
    padding: 20px 16px;
    border-radius: 18px;
    border: 1px solid #8c8c8c;
    outline: none;
    color: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form__row input:focus {
    border-color: rgba(255,5,140,0.7);
    box-shadow: 0 0 0 3px rgba(255,5,140,0.07);
}

footer {
    height: 100px;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

footer .policy {
    display: flex;
    align-items: center;
    gap: 24px;
}

footer a {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #ffffff;
}

footer .contacts {
    display: flex;
}

.contacts__item {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.contacts__label {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    color: rgba(255,255,255,0.3);
    margin-right: 6px;
    white-space: nowrap;
}

.menu ul a:hover,
.menu ul a.nav-active {
    color: #FF058C;
}

.back-to-top {
    position: relative;
}

.back-to-top span {
    position: absolute;
    height: 42px;
    width: 1px;
    bottom: 0;
    right: -10px;
    background: #ffffff;
}

.back-to-top span:before {
    content: '';
    position: absolute;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg);
    top: 0px;
    left: -3px;
}

.mobile {
    display: none;
}

footer .contacts .contacts__item i {
    display: none;
}

section#Directions__Sources .row:last-child {
    margin-top: 189px;
}

.success button.Pink__button {
    background: #0ABAB5;
}

.success button.Pink__button svg {
    margin-top: -7px;
}

form.success .Pink__button:hover {
    box-shadow: #0ABAB5 0px 0px 40px 15px;
}

.Closed_Club h2,
.Partners h2 {
    margin-bottom: 100px;
}

section.Closed_Club {
    overflow: hidden;
}

.slider_club {
    white-space: nowrap;
    overflow: hidden;
}

.slider_club .silder__item {
    margin-right: 20px;
}




/*----------DESKTOP----------------*/
@media (max-width: 1440px) {
    .slider-arrowPrev {
        left: -70px;
    }

    .slider-arrowNext {
        right: -70px;
    }
}

@media (max-width: 1400px) {
    .Cooperation .box-shadow p {
        font-size: 50px;
    }

    .Cooperation .box-shadow .text {
        font-size: 50px;
    }

    .long .Advantages__card_title {
        font-size: 36px;
    }

    .Banner__image iframe {
        margin-left: -150px;
    }

    .Banner__image:before {
        width: 300px;
    }

    .Advantages__card {
        height: 152px;
    }
}

@media (max-width: 1390px) {
    .Banner__image:before {
        width: 215px;
    }
}

@media (max-width: 1199px) {

    /* .slider_club {
        pointer-events: none;
    } */
    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -80px;
        width: 120%;
    }

    .Banner__image:before {
        width: 145px;
    }

    .logo img {
        width: 100%;
    }

    .Directions__Sources p {
        font-size: 50px;
    }

    .box-shadow .text {
        font-size: 50px;
    }

    .Cooperation .box-shadow p {
        font-size: 46px;
    }

    .Cooperation .box-shadow .text {
        font-size: 46px;
    }

    .Participants__img .round {
        width: 100%;
    }

    .Participants__img_img {
        width: 106px;
    }

    .small .Advantages__card_title {
        font-size: 24px;
    }

    .Advantages__card_dollar {
        width: 290px;
    }

    /* .Advantages__card.dollar.long.animation .Advantages__card_dollar img {
        left: 75%;
    } */

    .long .Advantages__card_dollar .Advantages__card_title {
        font-size: 24px;
    }

    .Advantages__card_text {
        font-size: 14px;
    }

    .Advantages__card_crown {
        max-width: 290px;
    }

    .long .Advantages__card_crown .Advantages__card_title {
        font-size: 24px;
    }

    .small .Advantages__card_title {
        font-size: 24px;
    }

    .Advantages__card.dollar.long.animation.show-animation>img {
        display: none;
    }

}

@media (min-width: 1025px) {
    .slider_club:hover {
        -moz-animation-play-state: paused;
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }

    .slider_club .silder__item:hover img {
        scale: 115%;
    }

    .slider_club .silder__item:hover .slider__text {
        padding-top: 21px;
    }

    .slider_club {
        margin-top: 90px;
        width: 6980px !important;
        /* gap: 20px; */
        animation: 25s infinite linear marqueeProjects;
        /* display: flex; */
    }

    @keyframes marqueeProjects {
        0% {
            margin-left: 0px;
        }

        100% {
            margin-left: -3416px;
        }
    }
}

@media (max-width: 1025px) {
    .slider_club {
        width: 100%;
        overflow: auto;
    }

    .slider_club::-webkit-scrollbar {
        display: none;
    }

    .slider_club {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .slider_club .silder__item.scale-animation img {
        scale: 115%;
    }

    .slider_club .silder__item.scale-animation .slider__text {
        padding-top: 10px;
    }

    .slider_club .silder__item.copy {
        display: none;
    }

    .Closed_Club h2,
    .Partners h2 {
        margin-bottom: 40px;
    }

    .mobile {
        display: block;
    }

    .dn-mobile {
        display: none;
    }



    .no-scroll {
        overflow: hidden;
    }

    .burger {
        display: flex;
        width: 39px;
        height: 39px;
        position: absolute;
        top: 53px;
        right: 20px;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 5px;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
    }

    .menu_wrapper {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100%;
        /* min-height: 646px; */
        /* border-radius: 35px 0 0 35px; */
        background: #000000;
        z-index: 10;
        padding: 16px 38px 55px 26px;
        transition-duration: .6s;
        /* text-align: center; */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: end;
    }

    .menu_wrapper.show {
        right: 0;
    }

    .menu_wrapper.show.show-shadow {
        box-shadow: 0 0 55px 25px #0ABAB5;
    }

    .bg-menu:before {
        content: '';
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: #00000069;
        z-index: 9;
    }

    .mobile .menu {
        height: auto;
        padding: 22px 0;
        padding-bottom: 5px;
        margin-bottom: 0px;
        margin-top: 48px;
    }

    .close {
        cursor: pointer;
        width: 40px;
        height: 40px;
        position: relative;
        /* top: 16px;
        right: 20px; */
        padding: 10px;
        margin-right: -10px;
    }

    .close:after {
        content: '';
        position: absolute;
        width: 3px;
        height: 60%;
        background: #fff;
        transform: rotate(-45deg);
        top: 7px;
        right: 50%;
        border-radius: 10px;
    }

    .close:before {
        content: '';
        width: 3px;
        height: 60%;
        background: #fff;
        position: absolute;
        transform: rotate(45deg);
        top: 7px;
        right: 50%;
        border-radius: 10px;
    }

    .close_box {
        position: fixed;
        top: 0;
        left: 0;
        width: 20%;
        height: 100%;
    }

    .mobile .menu ul {
        flex-direction: column;
        align-items: flex-end;
    }

    .mobile .menu ul li {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .mobile .menu ul li:last-child {
        margin-bottom: 0;
    }

    .mobile .menu ul a {
        font-family: 'Montserrat';
        font-weight: 700;
        display: block;
        text-transform: uppercase;
        color: #ffffff;
        font-size: 21px;
        line-height: 34px;
        padding: 5px 0;
        padding-top: 0;
    }

    .mobile .menu ul li:last-child a {
        color: #FF058C;
    }

    .dn-block {
        display: none;
    }

    .Banner__image .mobile {
        margin-top: -65px;
    }

    h1 {
        font-size: 40px;
    }

    .Banner__title {
        text-align: center;
    }

    .Banner__text {
        text-align: center;
    }

    .Banner__text p {
        font-size: 16px;
        line-height: 22px;
    }

    section.Banner .col-12 {
        text-align: center;
    }

    .Banner__image {
        margin-bottom: -40px;
        z-index: -1;
    }

    .Banner__image iframe {
        display: none;
    }

    .Banner__image:before {
        content: none;
    }

    .logo img {
        width: 100%;
    }

    .Banner__image iframe {
        margin-left: -143px;
    }

    .Banner__image .mobile iframe {
        display: block;
        margin-left: 0;
    }

    .Directions__Sources p {
        font-size: 52px;
    }

    .box-shadow .text {
        font-size: 52px;
    }

    .Cooperation .box-shadow p {
        font-size: 44px;
    }

    .Cooperation .box-shadow .text {
        font-size: 44px;
    }

    .Participants__img {
        display: none;
    }

    /* .Participants__img .round {
        width: 95%;
    }
    .Participants__img_img {
        transform: translate(30%, 25%);
        width: 130px;
    } */

    .slider_Partners {
        overflow-x: hidden;
    }

    .Banner__runtext {
        margin-top: 100px;
    }
}

@media (min-width: 769px) {

    .Advantages__card.small.green:hover,
    .Advantages__card.number.green:hover,
    .Advantages__card.long.green:hover {
        color: #000000;
        background: #0ABAB5;
        box-shadow: #0ABAB5 0px 0px 40px 15px;
    }

    .Advantages__card.small.pink:hover,
    .Advantages__card.number.pink:hover,
    .Advantages__card.long.pink:hover {
        color: #000000;
        background: #FF058C;
        box-shadow: #FF058C 0px 0px 40px 15px;
    }

    .box-shadow:hover span,
    .box-shadow:hover span:nth-child(2),
    .box-shadow:hover span:nth-child(3) {
        top: -2px;
    }



}

/*----------MOBILE---------------*/
@media (max-width: 991px) {
    section.Banner .row.align-items-center {
        height: 70vh;
    }

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .Advantages__card.small.green.show-animation2,
    .Advantages__card.number.green.show-animation2,
    .Advantages__card.long.green.show-animation2 {
        color: #000000;
        background: #0ABAB5;
        box-shadow: #0ABAB5 0px 0px 40px 15px;
    }

    .Advantages__card.small.pink.show-animation2,
    .Advantages__card.number.pink.show-animation2,
    .Advantages__card.long.pink.show-animation2 {
        color: #000000;
        background: #FF058C;
        box-shadow: #FF058C 0px 0px 40px 15px;
    }

    .slider_club.stop-animation {
        animation-play-state: paused;
    }

    .box-shadow.animation2.show-animation2 .text span {
        top: -2px;
    }

    header {
        height: 75px;
    }

    .burger {
        top: 15px;
    }

    .slider_Partners .slick-list {
        margin-right: -12px;
        margin-left: -12px;
    }

    .Pink__button {
        padding: 14px 42px;
        border-radius: 10px;
    }

    .Pink__button span {
        font-size: 16px;
        line-height: 100%;
    }

    .Banner__runtext {
        margin-top: 60px;
    }

    .Banner__runtext p {
        font-size: 28px;
        line-height: 100%;
    }

    .marquee {
        height: 32px;
    }

    section.Banner {
        padding-bottom: 71px;
    }

    section.Advantages {
        padding-top: 0;
    }

    .number .Advantages__card_title {
        font-size: 44px;
    }

    .Advantages__card_text {
        font-size: 11px;
    }

    .Advantages__card {
        height: 111px;
        pointer-events: none;
    }

    .long .Advantages__card_title {
        font-size: 32px;
    }

    .small .Advantages__card_title {
        font-size: 22px;
    }

    .long.animation .Advantages__card_crown {
        max-width: 250px;
    }

    .long.animation .Advantages__card_crown .Advantages__card_title {
        font-size: 22px;
    }

    .Advantages__card.crown.long.animation img {
        height: 70%;
    }

    .Advantages__card.long.dollar.animation img {
        height: 100%;
    }

    .Advantages__card_dollar {
        width: 250px;
    }

    .long .Advantages__card_dollar .Advantages__card_title {
        font-size: 24px;
    }

    /* .Advantages__card.long.animation.show-animation .Advantages__card_dollar img {
        height: 111px;
        left: 90%;
        top: -6px;
    } */

    h2 {
        font-size: 36px;
    }

    .Participants__img {
        display: none;
    }

    h3 {
        font-size: 31px;
    }

    .Participants__card_text {
        font-size: 18px;
    }

    .Directions__Sources p {
        font-size: 42px;
    }

    .box-shadow .text {
        font-size: 42px;
    }

    .Directions__Sources h3 {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    section#Directions__Sources .row:last-child {
        margin-top: 40px;
    }

    .slider_club .silder__item {
        height: 230px;
        max-width: 204px;
    }

    .slider_club .silder__item img {
        height: 171px;
    }

    .slider_club .slider__text {
        height: 62px;
    }

    .slider_club .slider__text span {
        font-size: 12px;
        line-height: 18px;
    }

    .Cooperation .box-shadow p {
        font-size: 38px;
    }

    .Cooperation .box-shadow .text {
        font-size: 38px;
    }

    .Cooperation__text {
        display: none;
    }

    .form__row label {
        font-size: 12px;
    }

    .form__block {
        flex-direction: column;
    }

    .form__block .form__row:first-child {
        margin-right: 0;
    }

    .form__row input {
        padding: 12px 10px;
        font-size: 12px;
    }

    .form form>.form__row {
        margin-top: 0;
    }

    .form form>.form__row:last-child {
        margin-top: 40px;
    }

    footer a {
        font-size: 8px;
    }

    footer .contacts .contacts__item:first-child {
        display: none;
    }

    footer .contacts .contacts__item i {
        display: inline-flex;
        transform: translateY(5px);
    }

    footer .contacts .contacts__item a {
        font-size: 0px;
    }

    .contacts__label {
        display: none;
    }

    .back-to-top {
        margin-right: 20px;
    }

    .slider_Partners .slider__item .slider__img img {
        filter: none;
    }

    .Advantages__card.long.pink.animation.show-animation2 {
        color: #000000;
        background: #FF058C;
        box-shadow: #FF058C 0px 0px 40px 15px;
    }

    .Advantages__card.long.pink.animation.show-animation2 img {
        filter: invert(1);
    }

    .Advantages__card.dollar.long.green.animation.show-animation2 {
        color: #000000;
        background: #0ABAB5;
        box-shadow: #0ABAB5 0px 0px 40px 15px;
    }

    /* .Advantages__card.dollar.long.green.animation.show-animation2 img {
        filter: invert(1);
    } */
    .Advantages__card.dollar.long.green.animation.show-animation2 #dollar_main {
        opacity: 0 !important;
        transition-duration: .6s;
    }

    .Advantages__card.dollar.long.green.animation.show-animation2 #dollar_hover {
        opacity: 1 !important;
        transition-duration: .6s;
    }

    section.Advantages>.container>.row>.col-lg-6:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }


}

@media (max-width: 600px) {
    .Banner__image .mobile iframe {
        display: block;
        margin-left: -30px;
    }

    section.Banner .row.align-items-center {
        height: auto;
    }

    header {
        height: 75px;
    }

    .burger {
        top: 15px;
    }

    .Banner__image {
        margin-bottom: 0;
    }

    .Banner__runtext {
        margin-top: 55px;
    }

    .Advantages__card.long.animation.show-animation .Advantages__card_crown {
        transform: translateY(-50%);
    }
}

@media (max-width: 570px) {
    .slider_Partners:before {
        /* content: none; */
        width: 2px;
    }

    .slider_Partners:after {
        /* content: none; */
        width: 2px;
    }
}

@media (max-width: 430px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -10px;
        width: 104%;
    }
}

@media (max-width: 425px) {
    .long .Advantages__card_title {
        font-size: 24px;
    }

    .small .Advantages__card_title {
        font-size: 16px;
    }

    section#Directions__Sources {
        padding-top: 0;
    }
}

@media (max-width: 420px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -20px;
        width: 108%;
    }
}

@media (max-width: 400px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -50px;
        width: 112%;
    }

    .Advantages__card {
        padding: 15px 10px;
    }

    .long.animation .Advantages__card_crown {
        max-width: 220px;
    }

    .long.animation .Advantages__card_crown .Advantages__card_title {
        font-size: 20px;
    }

    .Advantages__card_dollar {
        width: 164px;
    }

    .long .Advantages__card_dollar .Advantages__card_title {
        font-size: 19px;
    }

    /* .Advantages__card.long.animation.show-animation .Advantages__card_dollar img {
        top: -1px;
    } */

    .Cooperation .box-shadow p {
        font-size: 26px;
    }

    .Cooperation .box-shadow .text {
        font-size: 26px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .Pink__button span {
        font-size: 14px;
    }

    .Directions__Sources p {
        font-size: 39px;
    }

    .box-shadow .text {
        font-size: 39px;
    }

    .Banner__image .mobile img {
        margin-right: -60px;
    }
}

@media (max-width: 390px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -60px;
        width: 115%;
    }
}

@media (max-width: 375px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -70px;
        width: 120%;
    }
}

@media (max-width: 365px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -70px;
        width: 124%;
    }
}

@media (max-width: 340px) {

    .Advantages__card #dollar_main,
    .Advantages__card #dollar_hover {
        left: -95px;
        width: 134%;
    }
}

/* ===== COMPANY ABOUT ===== */

section.CompanyAbout {
    padding: 80px 0 70px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.CompanyAbout__stats {
    display: flex;
    align-items: flex-start;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.CompanyAbout__stat {
    flex: 1;
    padding-left: 40px;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.CompanyAbout__stat:first-child {
    padding-left: 0;
}

.CompanyAbout__stat:last-child {
    border-right: none;
    padding-right: 0;
}

.ca-num {
    display: block;
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 12px;
}

.CompanyAbout__stat:nth-child(odd) .ca-num  { color: #ffffff; }
.CompanyAbout__stat:nth-child(even) .ca-num { color: #ffffff; }

.CompanyAbout__stat:nth-child(odd) .ca-num::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #FF058C;
    margin-top: 10px;
    border-radius: 2px;
}

.CompanyAbout__stat:nth-child(even) .ca-num::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #0ABAB5;
    margin-top: 10px;
    border-radius: 2px;
}

.ca-label {
    display: block;
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ca-tagline {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.ca-sub {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ===== ECOSYSTEM ===== */

section.Ecosystem {
    padding: 0 0 80px;
}

.Ecosystem__head {
    margin-bottom: 48px;
}

.Ecosystem__intro {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.Ecosystem__grid .col-lg-6 {
    padding-bottom: 0;
}

.Ecosystem__card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 25px;
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    cursor: default;
    height: calc(100% - 24px);
}

.Ecosystem__card:not(.eco-teal):hover {
    border-color: rgba(255,5,140,0.55);
    box-shadow: 0 0 50px rgba(255,5,140,0.07);
    background: rgba(255,5,140,0.03);
}

.Ecosystem__card.eco-teal:hover {
    border-color: rgba(10,186,181,0.55);
    box-shadow: 0 0 50px rgba(10,186,181,0.07);
    background: rgba(10,186,181,0.03);
}

.Ecosystem__card:not(.eco-teal):hover .Ecosystem__icon { color: #FF058C; }
.Ecosystem__card.eco-teal:hover .Ecosystem__icon        { color: #0ABAB5; }

.Ecosystem__card:not(.eco-teal):hover .Ecosystem__num { color: rgba(255,5,140,0.18); }
.Ecosystem__card.eco-teal:hover .Ecosystem__num        { color: rgba(10,186,181,0.18); }

.Ecosystem__card_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.Ecosystem__icon {
    color: rgba(255,255,255,0.3);
    transition: color 0.35s ease;
    line-height: 0;
}

.Ecosystem__num {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    transition: color 0.35s ease;
    user-select: none;
}

.Ecosystem__card_title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.Ecosystem__card_text {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== SCROLL REVEAL ===== */

.ca-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.ca-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: COMPANY ABOUT + ECOSYSTEM ===== */

@media (max-width: 1200px) {
    .ca-num {
        font-size: 40px;
    }
    .CompanyAbout__stat {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 991px) {
    .CompanyAbout__stats {
        flex-wrap: wrap;
    }
    .CompanyAbout__stat {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0 0 32px 0;
        margin-bottom: 32px;
    }
    .CompanyAbout__stat:nth-child(even) {
        padding-left: 24px;
    }
    .CompanyAbout__stat:nth-child(3),
    .CompanyAbout__stat:nth-child(4) {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 22px;
    }

    section.CompanyAbout {
        padding: 50px 0 50px;
    }
    .CompanyAbout__stats {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .CompanyAbout__stat {
        flex: none;
        padding: 0 0 24px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        margin-bottom: 24px !important;
    }
    .CompanyAbout__stat:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .ca-num {
        font-size: 36px;
    }
    .ca-tagline {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .ca-sub {
        font-size: 16px;
    }
    section.Ecosystem {
        padding: 0 0 50px;
    }
    .Ecosystem__head {
        margin-bottom: 32px;
    }
    .Ecosystem__intro {
        font-size: 16px;
        margin-top: 16px;
    }
    .Ecosystem__card {
        padding: 24px;
        margin-bottom: 16px;
        height: auto;
    }
    .Ecosystem__num {
        font-size: 40px;
    }
    .Ecosystem__card_title {
        font-size: 18px;
    }
    .Ecosystem__card_text {
        font-size: 15px;
    }
}

/* ===== PARTNERSHIP ===== */

section.Partnership {
    padding: 0 0 80px;
}

.Partnership__head {
    margin-bottom: 48px;
}

.Partnership__label {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.Partnership__intro {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

.Partnership__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ptag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.Partnership__card {
    border: 1px solid rgba(255,255,255,0.09);
    border-top-width: 3px;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.35s ease, background 0.35s ease;
    cursor: default;
}

.Partnership__card.pc-pink { border-top-color: #FF058C; }
.Partnership__card.pc-teal { border-top-color: #0ABAB5; }

.Partnership__card.pc-pink:hover {
    box-shadow: 0 0 60px rgba(255,5,140,0.08);
    background: rgba(255,5,140,0.02);
}

.Partnership__card.pc-teal:hover {
    box-shadow: 0 0 60px rgba(10,186,181,0.08);
    background: rgba(10,186,181,0.02);
}

.Partnership__card_num {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 120px;
    line-height: 0.85;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 20px;
    right: 28px;
    user-select: none;
    pointer-events: none;
}

.Partnership__card_title {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.pc-pink .Partnership__card_title { color: #ffffff; }
.pc-teal .Partnership__card_title { color: #ffffff; }

.Partnership__card_text {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    position: relative;
}

.Partnership__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.Partnership__list li {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 10px;
}

.Partnership__list li:last-child {
    border-bottom: none;
}

.Partnership__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pc-pink .Partnership__list li::before { background: #FF058C; }
.pc-teal .Partnership__list li::before { background: #0ABAB5; }

.Partnership__cards .col-lg-6:first-child {
    padding-right: 12px;
}

.Partnership__cards .col-lg-6:last-child {
    padding-left: 12px;
}

@media (max-width: 768px) {
    section.Partnership {
        padding: 0 0 50px;
    }
    .Partnership__head {
        margin-bottom: 32px;
    }
    .Partnership__intro {
        font-size: 15px;
        margin-top: 16px;
    }
    .Partnership__card {
        padding: 28px;
        margin-bottom: 16px;
        height: auto;
    }
    .Partnership__card_title {
        font-size: 24px;
    }
    .Partnership__card_num {
        font-size: 90px;
    }
    .Partnership__cards .col-lg-6:first-child,
    .Partnership__cards .col-lg-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== ACCENT DETAILS ===== */

section.Ecosystem h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #FF058C, rgba(255,5,140,0));
    margin-top: 14px;
    border-radius: 2px;
}

section.Partnership h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #0ABAB5, rgba(10,186,181,0));
    margin-top: 14px;
    border-radius: 2px;
}

.Partnership__label::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #FF058C;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 2px;
}

/* ---------- CONSENT CHECKBOX ---------- */

.form__row--consent {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 20px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    text-transform: none;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
    user-select: none;
}

.consent-label input[type="checkbox"] {
    display: none;
}

.consent-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid #8c8c8c;
    border-radius: 6px;
    background: transparent;
    margin-top: 1px;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.consent-label input[type="checkbox"]:checked ~ .consent-checkbox {
    background: #FF058C;
    border-color: #FF058C;
}

.consent-label input[type="checkbox"]:checked ~ .consent-checkbox::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.consent-text {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 13px;
    line-height: 1.55;
    color: #8c8c8c;
    text-transform: none;
    transition: color 0.2s ease;
}

.consent-label:hover .consent-text {
    color: #c0c0c0;
}

.consent-text a {
    color: #FF058C;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.consent-text a:hover {
    border-bottom-color: #FF058C;
    color: #FF058C;
}

button.Pink__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

button.Pink__button:disabled:hover {
    background: #FF058C;
    box-shadow: none;
}

@media (max-width: 768px) {
    .consent-text {
        font-size: 12px;
    }
}