
.icon-cards,
.icon-cards_big {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 24px; */
    position: relative;
}

@media screen and (max-width: 991.98px) {
    .icon-cards,
    .icon-cards_big {
        flex-wrap: wrap;
        gap: 24px;
    }
}

.icon-cards_columns_2 {
    display: block;
    column-count: 2;
    column-gap: 24px;
}

@media screen and (max-width: 767.98px) {
    .icon-cards_columns_2 {
        display: flex;
        column-count: unset;
        column-gap: unset;
    }
}

.icon-cards_columns_2>* {
    break-inside: avoid;
    width: 100%;
    margin-bottom: 24px;
}

@media screen and (max-width: 767.98px) {
    .icon-cards_columns_2>* {
        flex: 0 0 100%;
        margin-bottom: 0;
    }
}

.icon-card,
.icon-card_lg,
.icon-card_big {
    display: flex;
    flex-direction: column;
    background-color: #F1F3F9;
    border-radius: 12px;
    padding: 24px;
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 991.98px) {

    .icon-card,
    .icon-card_lg,
    .icon-card_big {
        flex: 0 0 calc(50% - 12px);
    }
}

@media screen and (max-width: 575.98px) {

    .icon-card,
    .icon-card_lg,
    .icon-card_big {
        flex: 0 0 100%;
        padding: 20px;
    }
}

.icon-card:has(.btn)>*:nth-last-child(2),
.icon-card_lg:has(.btn)>*:nth-last-child(2),
.icon-card_big:has(.btn)>*:nth-last-child(2) {
    margin-bottom: 16px;
}

.icon-card_centered .icon-card__img {
    margin: 0 auto;
}

.icon-card_centered .icon-card__title,
.icon-card_centered .num-card__title,
.icon-card_centered .icon-card__subtitle,
.icon-card_centered .icon-card__text,
.icon-card_centered .num-card__text {
    text-align: center;
}

.icon-card_big {
    flex: 0 0 calc(33% - 16px);
    aspect-ratio: 35/25;
}
.icon-card {
    /* aspect-ratio: 26/25; */
    aspect-ratio: 27/19;
}

.icon-card_lg {
    /* flex: 0 0 calc(50% - 12px); */
    flex: 0 0 calc(50% - 6px);
    /* aspect-ratio: 54/41; */
    aspect-ratio: 55/36;
}

@media screen and (max-width: 767.98px) {
    .icon-card_lg,
    .icon-card_big {
        flex: 0 0 100%;
    }
}

.icon-card__img {
    width: 36px;
    display: flex;
}

.full_img .icon-card__img {
    width: 100%;
}

.full_img .icon-card__img img {
    margin: -22px;
}

@media screen and (max-width: 767.98px) {
    .full_img .icon-card__img img {
        margin: -22px 0;
        width: 100%;
        height: 130px;
    }

    .icon-card__img img {
        object-fit: cover;
    }
}

.icon-card__img img {
    width: 100%;
    height: auto;
}

.icon-card__title {
    margin-top: 24px;
    margin-bottom: 8px;
    color: #212121;
    font-size: 20px;
}

.icon-card__img+.icon-card__text {
    margin-top: 24px;
}

@media screen and (max-width: 575.98px) {
    .icon-card__title {
        margin-top: 20px;
        margin-bottom: 4px;
    }
}
@media screen and (max-width: 359.98px) {
    .icon-card__title {
        font-size: 16px!important;
    }
    .hero_event .icon-card {
        padding: 12px!important;
    }
}
.icon-card__title_hr {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(63, 68, 77, 0.2);
    margin-bottom: 16px;
}

.icon-card__subtitle {
    color: #1D2433;
    opacity: 0.6;
}

.icon-card__subtitle:not(:last-child) {
    margin-bottom: 20px;
}

.icon-card__text {
    color: #212121;
}

@media screen and (max-width: 575.98px) {
    .icon-card__text {
        font-size: 14px;
    }
}

.icon-card__text:not(:last-child) {
    margin-bottom: 16px;
}

.icon-card__ul {
    text-align: left;
    list-style: disc;
    list-style-position: inside;
}

.icon-card__ol {
    list-style: decimal;
    list-style-position: inside;
}

.icon-card__btn {
    margin: auto auto 0;
    max-width: fit-content;
}

@media screen and (max-width: 575.98px) {
    .icon-card__btn {
        max-width: 100%;
        width: 100%;
    }
}

.section-wrapper.bg_gray {
    padding-bottom: 80px;
    padding-top: 40px;
    background: linear-gradient(0deg, #F1F3F9, #F1F3F9), linear-gradient(0deg, #CEDBEA, #CEDBEA), #E1E6EF;
}

.section-wrapper.bg_gray:not(.mt-0) {
    margin-top: -100px;
}

.section-wrapper.bg_gray .section {
    margin-top: 0;
    margin-bottom: 0;
}

@media(max-width: 767.98px) {
    .section-wrapper.bg_gray {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .section-wrapper.bg_gray:not(.mt-0) {
        margin-top: -70px;
    }

    .section-wrapper.bg_gray .section__subtitle {
        text-align: center;
    }
}

.cards-section .section__content {
    position: relative;
}

.icon-cards.cards-slider {
    overflow: hidden;
}

.icon-cards.cards-slider .swiper-slide {
    height: 180px;
}

.icon-cards.cards-slider .icon-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 24px;
}

.cards-slider__btn {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #E1E6EF;
    background-color: #F1F3F9;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
}

@media(max-width: 767.98px) {
    .icon-cards.cards-slider {
        overflow: visible;
    }

    .icon-cards.cards-slider .swiper-slide {
        max-width: 80vw;
        width: 100% !important;
    }
}

.cards-slider__btn img {
    width: 24px;
}

.cards-slider__btn.swiper-button-lock {
    display: flex !important;
}

.cards-slider__btn:hover {
    background-color: #E1E6EF;
}

.cards-slider__btn:active {
    background-color: #D7DCE5;
}

.cards-slider__btn_prev {
    transform: translate(-100%, -50%);
    left: -8px;
}

.cards-slider__btn_next {
    transform: translate(100%, -50%);
    right: 0;
}

.youtube-section .icon-card_lg {
    aspect-ratio: 16/9;
}

.logos-section .icon-card__img {
    margin: auto;
    margin: auto;
    height: 180px;
    width: 150px;
}

.logos-section .icon-card__img img {
    object-fit: contain;
}

.logos-section .section__btns {
    justify-content: flex-start;
}

@media(max-width: 767.98px) {
    .logos-section .icon-card__img {
        width: 145px;
    }
}

.club-section.mt-0 .section {
    margin-top: 0;
}

.club-section .icon-card_big {
    border: 1px solid #E1E6EF;
    border-radius: 24px;
}

.club-section .icon-card__img {
    height: 252px;
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    margin: -8px -8px 0;
}


@media (max-width: 767.98px) {
    .cards-section:has(.icon-cards.cards-slider-mobile){
        margin-bottom: 32px;
        margin-top: 64px;
    }
    .icon-cards.cards-slider-mobile .swiper-slide {
        height: auto;
        min-height: 180px;
        aspect-ratio: 33/35;
        flex: none;
    }

    .icon-cards.cards-slider-mobile .swiper-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0;
    }
    .icon-cards.cards-slider-mobile .swiper-pagination+.swiper-wrapper {
        margin-top: 20px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide {
        /* flex: 0 0 calc(100% - 24px); */
        /* margin-right: 24px; */
        padding: 0;
        min-width: 0;
        height: auto;
    }

    .icon-cards.cards-slider-mobile .icon-cards {
        gap: 0;
    }
    .icon-cards.cards-slider-mobile .swiper-slide .icon-card {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 24px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide .icon-card__img {
        flex-shrink: 0;
        margin-bottom: 16px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide .icon-card__title {
        flex-shrink: 0;
        margin-bottom: 8px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide .icon-card__subtitle {
        flex-shrink: 0;
        margin-bottom: 16px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide .icon-card__text {
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-bottom: 16px;
    }

    .icon-cards.cards-slider-mobile .swiper-slide .icon-card__buttons {
        margin-top: auto;
        margin-top: 16px;
    }

    .section__content:has(.icon-cards.cards-slider-mobile) {
        /* margin: 0 -16px; */
        padding: 0;
    }

    .icon-cards.cards-slider-mobile .cards-slider__btn {
        display: none !important;
    }

    .icon-cards.cards-slider-mobile .swiper-wrapper {
        /* padding: 0 16px; */
        /* max-width: 100vw;
        width: 100vw; */
        box-sizing: border-box;
    }
}


@media (min-width: 768px) {
    .icon-cards .swiper-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        /* gap: 24px; */
        gap: 12px;
        position: relative;
    }
}

.icon-card {
    display: flex;
    flex-direction: column;
    background-color: #F1F3F9;
    border-radius: 12px;
    padding: 24px;
    /* flex: 0 0 calc(25% - 18px); */
    /* min-width: calc(25% - 18px); */
    flex: 0 0 calc(25% - 9px);
    min-width: calc(25% - 9px);
    background-position: center;
    background-size: cover;
    border: solid 1px rgb(225,230,239);
}

.icon-cards .swiper-pagination-bullet {
    background-color: #2121213e;
}
.icon-cards .swiper-pagination-bullet-active {
    background-color: #212121;
}













































.hero_event.hero {
    padding-bottom: 0;
    margin-top: -102px;
    text-align: center;
}
@media(min-width:1600px){
    .hero_event.hero {
        aspect-ratio: 17 / 9;
    }
}
.hero_event .hero_bg_image {
    position: relative;
    overflow: hidden;
    /* padding-top: 102px; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.hero_event .hero_bg_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero_event .hero_bg_video_part2 {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero_event .hero_bg_video_part2.is-ready {
    opacity: 1;
}

.hero_event .hero_bg_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.hero_event .hero__container {
    position: relative;
    z-index: 2;
    flex-direction: column;
    height: auto;
    /* padding: 100px 0 35px; */
    padding: 100px 0 140px!important;
}
@media(min-width:1600px){
    .hero_event .hero__container {
        padding-top: calc(100px + 5vw)!important;
    }
}

.hero_event .hero__title {
    font-weight: 500;
    color: #fff;
    font-size: 64px;
    line-height: 120%;
    margin-bottom: 12px;
}
.hero_event .hero__pretitle__wrap {
    display: flex;
    margin-bottom: 36px;
}
.hero_event .hero__pretitle {
    color: #fff;
    margin: 0 24px;
    white-space: nowrap;
}

.hero_event .hero__subtitle {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 20px;
}

.hero_event .hero__container {
    flex-direction: column;
    height: auto;
    /* padding: 100px 0 35px; */
    padding: 100px 0 140px;
}

.hero_event .hero__content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 24px 0;
}

.hero_event .hero__title {
    font-family: 'Prosto One', sans-serif;
    letter-spacing: -2.5px;
    color: #fff;
}

.hero_event .icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: space-around;
    max-width: 760px;
    margin: 0 auto;
    width: min-content;
}
.hero_event .icons .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;

    border: solid 1px rgb(225 230 239 / 30%);
    background-color: rgb(241 243 249 / 20%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 4px 8px;
    width: max-content;
}
.hero_event .icons .icon-wrap img {
    width: 24px;
    height: 24px;
}
.hero_event .icons .icon-wrap span {
    white-space: nowrap;
    font-size: 16px;
}

.hero_event .icon-cards {
    margin-top: 46px;
    margin-bottom: 40px;
    text-align: left;
    padding: 0 32px;
    gap: 24px;
    justify-content: center;
}
.hero_event .icon-cards .swiper-wrapper{
    justify-content: space-between;
    height: auto;
}
.hero_event .icon-card {
    border: solid 1px rgb(225 230 239 / 30%);
    background-color: rgb(241 243 249 / 20%);
    backdrop-filter: blur(10px);
    aspect-ratio: unset;
    padding: 20px;
    padding-right: 12px;
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
}
.hero_event .icon-card .icon-card__title {
    color: #fff;
}
.hero_event .icon-card .icon-card__subtitle {
    opacity: 1;
    line-height: 1.4;
    color: #fff;
}
.hero_event .icon-card .icon-card__img {
    height: 36px;
}
.hero_event .icon-card .icon-card__img img {
    height: auto;
}
.hero_event .hero__btns {
    justify-content: center;
    margin-top: 48px;
    gap: 24px;
}
.hero_event hr {
    align-self: center;
    width: 100%;
    opacity: .4;
}
.hero_event .hero__btns .hero__btn {
    max-width: max-content;
    height: 52px;
    padding: 0 24px;
    white-space: nowrap;
}

@media(max-width:768px){
    .hero_event .hero_bg_video {
        display: none;
    }

    .hero_event .hero_bg_image {
        background-position: 70%;
    }
    .hero_event .hero__pretitle__wrap{
        margin-bottom: 32px;
    }
    .hero_event .hero__pretitle {
        font-size: 18px;
    }
    .hero_event .hero__title,
    .hero_event .hero__subtitle {
        text-align: center;
    }
    .hero_event .hero__content {
        max-width: none;
    }
    .hero_event .hero__btns {
        margin-top: 0;
    }
    .hero_event .hero__btns hr {
        display: none;
    }
    .hero_event .hero__btns .section__btns {
        width: 100%;
        padding: 0 20px;
        margin-top: 0;
    }
    .hero_event .hero__btns .hero__btn {
        max-width: 100%;
        margin-top: 0;
    }

    .hero_event .hero__title {
        font-size: 36px;
    }
    .hero_event .hero__title br {
        display: none;
    }

    .hero_event .hero__content {
        padding: 0 20px;
        margin-left: 0;
        max-width: none;
    }

    .hero_event .icons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 20px 40px;
        align-items: center;
        max-width: 100%;
    }

    .hero_event .icons .icon-wrap {
        justify-content: flex-start;
        max-width: 100%;
    }
    .hero_event .icons .icon-wrap span {
        white-space: normal;
        text-align: left;
    }

    .hero_event .hero__container {
        padding: 40px 0 0;
        overflow: hidden;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .hero_event .hero_bg_image {
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
        background-color: #3e5864;
    }
    
    .hero_event .icon-card .icon-card__title {
        margin-top: 0;
    }
    .hero_event .icon-card {
        background-color: transparent;
        border-radius: 0;
        backdrop-filter: none;
        background-color: rgb(241 243 249 / 20%);
        border: solid 1px rgb(225 230 239 / 30%);
        border-radius: 12px;
        min-height: 100%;
        height: auto;
        /* min-height: 100%; */
        /* min-height: 200px; */
        gap: 16px;
        backdrop-filter: blur(10px);
        /* flex: 0 0 calc(50% - 6px); */
        flex: 100%;
    }
    .hero_event .icon-cards {
        padding: 0;
        padding-bottom: 0;
        margin: 40px 20px 20px;
        max-width: calc(100vw - 40px);
        border-radius: 12px;
        gap: 12px;
    }
    .hero_event .icon-card__img img {
        width: auto;
        object-fit: contain;
    }
    .swiper-pagination {
        order: -1;
        width: 100%;
        justify-content: center;
    }
    .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 1);
        opacity: 1;
        margin: 0 4px !important;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 10px;
        background-color: #fff;
    }
}


@media(max-width:1365.98px) and (min-width:768px){
    .hero_event .hero__container {
        padding: 0 0 18px;
    }
    .hero_event .hero__pretitle__wrap {

    }
    .hero_event .hero__title {
        font-size: 54px;
    }
    .hero_event .hero__pretitle__wrap {
        margin-bottom: 12px;
    }
    .hero_event .hero__content {
        padding-top: 24px;
    }
    .hero_event .icon-cards {
        margin-top: 48px;
    }
}
