*{
    box-sizing: border-box;
}

@font-face {
    font-family: 'Geologica';
    src: url('./fonts/Geologica.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
}

html .page--main {
    max-width: none;
    padding: 0;
}

body {
    font-family: 'Geologica'!important;
    padding: 0;
    margin: 0;
}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(89.08deg, #01030F 1.06%, #0F2235 50.28%, #01030F 99.49%);
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 1300px) {
    .container {
        width: 1356px
    }
}

@media (min-width: 1800px) {
    .container {
        width: 1356px
    }
}

.section__tittle{
    font-size: 60px;
    font-weight: 700;
    color: #FF6D44;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
.mt_section{
    margin-top: 72px;
}

.btn {
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 600;
    color: #1C1C1C;
}
@media (max-width: 1023px) {
    .section__tittle{
        font-size: 34px;
    }
    .btn{
        font-size: 18px;
        padding: 10px 16px;
    }
    .mt_section{
    margin-top: 60px;
    }
}
@media (max-width: 500px) {
    .section__tittle{
        font-size: 28px;
        text-align: left;
    }
    .btn{
        font-size: 18px;
        padding: 10px 16px;
        text-align: left;
        min-width: 150px;

    }
    .mt_section{
        margin-top: 50px;
    }
}

/* fs */

.fs {
    position: relative;
    height: calc(100vh - 65px);
    display: flex;
    flex-direction: column;
}

.fs__bg {
    position: absolute;
    inset: 0;
}

.fs__bg video {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.fs-nav {
    z-index: 1;
    background: rgba(19, 19, 19, 0.3);
}

.fs__nav_list {
    display: flex;
    gap: 40px;
    padding: 23px 0;

}

.fs__nav_item {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;

    &:hover {
        text-decoration: underline;
    }
}

.fs__inner_container {
    margin-top: auto;
    padding: 4rem 0;
}

.fs__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 8px;
}

.fs__tittle {
    font-size: 68px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 82px;
}

.fs__sub_tittle {
    font-size: 26px;
    color: #fff;
    margin: 25px 0 0 0;
    padding: 0;
}
@media (max-width: 1023px) {
    .fs__inner_container{
        margin-left: 10px;
    }
    .fs__tittle{
        font-size: 34px;
        line-height: 42px;
    }
    .fs__sub_tittle{
        font-size: 20px;
        font-weight: 400;
    }
}
@media (max-width: 500px) {
    .fs__sub_tittle{
        font-size: 18px;
        font-weight: 400;
        line-height: 28px!important;
    }
    .fs__nav_list{
        padding: 12px;
        gap: 0;
        justify-content: space-between;
    }
    .fs__nav_item {
        font-size: 13px;
    }
    .fs__tittle{
        line-height: 39px;
    }
}

/* liders */
.liders {}

.liders__top{
    /* padding: 80px 0; */
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    /* overflow: hidden; */
}
.liders__content{
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.liders__top_actions{
    display: flex;
    gap: 24px;
}
.btn.top_btn {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    min-width: 300px;
    text-align: start;
    cursor: pointer;
    color: #fff;
    background: none;
    border: 1px solid #fff;
}
.btn.top_btn:hover{
    background: rgba(255, 109, 68, 1);
    color: rgba(28, 28, 28, 1);
}
.btn.top_btn.active{
    background: #FF6D44;
    opacity: 1!important;
    color: #1C1C1C;
}
.btn.top_btn.active:hover{
    color: #fff;
}
.select__box {
    position: relative;
    width: 300px;
}

.btn.select {
    color: #fff;
    font-size: 20px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s linear;
}
.select.has-selection {
    background-color: #FF6D44;
    color: #1C1C1C;
    border-color: #FF6D44;
}
.select.has-selection svg path{
    stroke: #01030F;
}
.select svg{
    width: 20px;
    transition: all 0.1s linear;
}

.btn.select:hover {
    background-color: #FF6D44;
    color: rgba(28, 28, 28, 1);
}

.select.active svg {
    transform: rotate(180deg);
}

.options {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background: transparent;
    border: 1px solid #FFF;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-all 0.3s ease;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(89.08deg, #01030F 1.06%, #0F2235 50.28%, #01030F 99.49%);

}

.options.active {
    max-height: 370px;
    opacity: 1;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
}
.region__count {
    padding: 2px 3px;
    background-color: #FFFFFF26;
    font-size: 11px;
    color: #FFFFFFB2;
    border-radius: 4px;
}

.option:hover {
    background-color: #FF6D44;
}

.option:last-child {
    border-bottom: none;
}

.option.selected {
    background-color: #FF6D44;
    color: white;
}

.hidden-select {
    display: none;
}
.liders__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
}
.liders__card{
    background: #060B1680;
    padding: 30px;
    width: 100%;
    border: 1px solid #FF6D44;
    border-radius: 5px;
    display: grid;
    grid-template-rows: 16% minmax(60px, min-content) 1fr minmax(40px, min-content);
    gap: 30px;
    color: #fff;
    align-content: space-between;
    height: auto;
}
.liders__card_logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.liders__card_logo img{
    height: 100%;
}
.liders__card_inner{
    display: flex;
    gap: 12px;
}
.liders__card_inner img{
    object-fit: contain;
}
.liders__card_inner-desc{
    font-size: 20px;
    line-height: 25px;
}
.liders__card_desc {
    font-size: 16px;
    line-height: 22px;
}
.btn.liders__card_link{
    text-align: center;
    width: 100%;
    font-size: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
}
.liders__card_link:hover{
    background: rgba(255, 109, 68, 1);
    color: rgba(28, 28, 28, 1);
}
@media (max-width: 1023px) and (min-width: 500px) {
    .liders__list {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }
    
    .liders__list::-webkit-scrollbar {
        height: 6px;
    }
    
    .liders__list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .liders__list::-webkit-scrollbar-thumb {
        background: #FF6D44;
        border-radius: 3px;
    }
    
    .liders__card {
        padding: 24px;
        flex: 0 0 calc(50% - 16px);
        scroll-snap-align: start;
        min-width: 0;
    }
    .liders__top_actions{
        gap: 12px;
        padding-right: 18px;
    }
    .select{
        font-size: 18px;
    }
}

/* Мобильные устройства (до 767px) */
@media (max-width: 500px) {
    .liders__list::-webkit-scrollbar {
        height: 4px;
    }
    
    .liders__list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .liders__list::-webkit-scrollbar-thumb {
        background: #FF6D44;
        border-radius: 2px;
    }
    .liders__list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .liders__card {
        flex: 0 0 85vw; 
        max-width: 85vw;
        scroll-snap-align: start;
        min-width: 0;
        padding: 20px;
        gap: 20px;
        box-sizing: border-box;
        margin-right: 10px;
    }

    .liders__top_actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .top_btn,
    .select__box {
        width: 100%;
        min-width: auto;
    }
    .select{
        font-size: 18px;
    }
    .btn.top_btn {
        min-width: 100%;
    }
}

/* Дополнительная адаптивность для карточек */
@media (max-width: 1023px) {
    .liders__card_inner {
        gap: 14px;
    }
    
    .liders__card_inner-desc {
        font-size: 18px;
        line-height: 22px;
    }
    
    .liders__card_desc {
        font-size: 16px;
        line-height: 20px;
    }
    
    .liders__card_link {
        font-size: 18px;
        padding: 10px 16px;
    }
}
/* Стили для поиска в выпадающем списке */
.search-container {
    position: relative;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
    width: 100%;
    padding: 12px 36px 12px 12px; 
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    border-color: #FF6D44;
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.clear-search {
    position: absolute;
    right: 24px; 
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0.7;
}

.clear-search:hover {
    opacity: 1;
}

.clear-search svg {
    width: 10px;
    height: 10px;
    pointer-events: none;
}

mark {
    background-color: #FF6D44!important;
    color: #1C1C1C;
    padding: 0;
    border-radius: 2px;
}

.options-container {
    max-height: 280px;
    overflow-y: auto;
}
.options-container::-webkit-scrollbar {
    width: 6px;
}

.options-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.options-container::-webkit-scrollbar-thumb {
    background: #FF6D44;
    border-radius: 3px;
}
div[data-type="delimiter"]{
    pointer-events: none;
}
div[data-type="delimiter"]:hover{
    background: inherit;
}
div[data-type="delimiter"] > span {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

.no-results {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    font-size: 14px;
}
.liders__no_result{
    background: url('../assets/no-result-liders.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    grid-column: 1 / -1;
    margin-top: 30px;
    width: 100%;
}
.liders__no_result__title {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}
.liders__no_result__text {
    font-size: 20px;
    color: #ffffff;
}

/* Мобильные стили */
@media (max-width: 500px) {
    
    .liders__no_result{
        background: url('../assets/no-result-liders_mobile.png');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 80px 16px;
    }
    .liders__no_result__title {
        text-align: center;
        font-size: 18px;
    }
    .liders__no_result__text {
        font-size: 14px;
        text-align: center;
        line-height: 21px;
    }
}

/* analytics */
.analytics__content{
    display: grid;
    grid-template-columns: 37% 1fr;
    gap: 3rem;
    color: #fff;
}
.analytics__left{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.analytics__tittle {
    text-align: left;
}
.analytics__desc{
    font-size: 30px;
    font-weight: 500;
}
.btn.analytics__link{
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 16px 48px;
    width: fit-content;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: all .2s linear;
}
.analytics__link:hover{
    color: #1C1C1C;
    background: #FF6D44;
}
.mySwiper-analytics{
    position: relative;
}
.analytics__right{
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 46px;
}
.swiper-slide img{
    width: 100%;
    max-height: 100%;
}
.analytics__content .analytics__link-mobile{
    display: none;
}
.analytics__right .swiper-button-prev{
    transform: translate(-110%,-50%);
}
.analytics__right .swiper-button-next {
    transform: translate(110%, -50%);

}
@media (max-width: 1023px) and (min-width: 501px) {
    .analytics__content{
        grid-template-columns: 1fr 1fr;
    }
    .analytics__desc{
        font-size: 18px;
        line-height: 30px;
    }
    .analytics__link{
        padding: 12px 40px;
    }
    .analytics__right{
        padding: 0 30px 0 0;
    }
    .analytics__right .swiper-button-prev,
    .analytics__right .swiper-button-next {
        display: none!important;
    }
    
}
@media (max-width: 500px) {
    .analytics__content{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    .analytics__desc{
        font-size: 16px;
        line-height: 28px;
    }
    .analytics__left{
        gap: 16px;
    }
    .analytics__content .analytics__link{
        display: none;
    }
    .analytics__right{
        width: 100%;
        padding: 0 20px 0 0;
    }
    .mySwiper-analytics{
        min-width: 100%;
    }
     .analytics__right .swiper-button-prev,
    .analytics__right .swiper-button-next {
        display: none!important;
    }
    .analytics__content .analytics__link-mobile{
        text-align: center;
        width: 100%;
        display: block;
        text-decoration: none;
        border-radius: 5px;
        background: #FF6D44;
        padding: 12px;
        color: #1C1C1C;
        font-size: 20px;
        font-weight: 600;
        transition: all .2s linear;
    }
    .analytics__link:hover{
        color: #FFF;
    }
}

/* media */
.media__content{
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.media__box {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}
.media__item video{
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.media__item {
    width: 49%;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 360px;
}
.media__item > iframe {
    height: 100%;
    border-radius: 5px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; /* Увеличил для лучшего взаимодействия */
    height: 70px;
    background: linear-gradient(89.08deg, #01030F 1.06%, #0F2235 50.28%, #01030F 99.49%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 10;
}

.play-button:hover {
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.7);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-element.playing + .play-button:not(:hover) {
    opacity: 0;
    pointer-events: none;
}

.media__item:hover .video-element.playing + .play-button {
    opacity: 1;
    pointer-events: auto;
}

.play-button .pause-icon {
    display: none;
}

.video-element.playing + .play-button .play-icon {
    display: none;
}

.video-element.playing + .play-button .pause-icon {
    display: block;
}

.video-element[controls] {
    cursor: pointer;
}

.media__item {
    position: relative;
    z-index: 1;
}

.play-button {
    z-index: 100;
}
.media__box::-webkit-scrollbar {
        height: 4px;
    }
    
    .media__box::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .media__box::-webkit-scrollbar-thumb {
        background: #FF6D44;
        border-radius: 2px;
    }
@media (max-width: 1023px) and (min-width: 501px) {
    .media__tittle{
        text-align: left;
    }
    .media__box{
        gap: 16px;
    }
}
@media (max-width: 500px) {
    .media__content{
        gap: 16px;
    }
    .media__box {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }  
    
    .media__item {
        flex: 0 0 calc(100% - 18px);
        scroll-snap-align: start;
        min-width: 0;
        gap: 20px;
        min-height: 250px;
    }
    .media__item > iframe{
        /* max-height: 250px; */
    }
}

/* news */
.news {
    margin-bottom: 3rem;
}
.news__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    color: #fff;

}
.news__content{
    /* overflow: hidden; */
}
.news__box{
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.swiper-wrapper {
   position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide {
    display: inline-flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    height: 100%;
}
.swiper-slide a{
    min-height: 240px;
    width: 95%;
}
.slide_box{
    box-sizing: border-box;
    width: 100%;
    padding: 30px 60px;
    display: grid;
    grid-template-rows: 140px minmax(20px, auto) 1fr;
    gap: 24px;
    justify-items: center;
    background: #080D19;
    border: 1px solid #FF6D44;
    border-radius: 5px;
    height: 100%;
}
.slide__date{
    font-size: 12px;
    color: #FFFFFF80;
    height: 100%;
}
.slide__desc{
    font-size: 20px;
    min-height: 65px;
}
.slide__logo {
    display: flex;
    align-items: center;
}
@media (max-width: 1023px) and (min-width: 768px) {
    .news__tittle{
        text-align: start;
    }
    .slide_box {
        padding: 16px;
        gap: 16px;
    }
}
@media (max-width: 500px) {
    .news__content{
        gap: 16px;
    }
    .news__box{
        padding: 0 20px 0 0;
    }
    .news__box .swiper-button-next,
    .news__box .swiper-button-prev {
        display: none;
    }
    .slide_box {
        padding: 16px;
        gap: 16px;
    }
    .swiper-slide a{
        width: 100%;
    }

}