
/*   Teams   */
.top-teams {
    margin-bottom: 100px;
}

.video-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.video-box .play-video i.play {
    font-size: 24px;
    width: 56px;
    height: 56px;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
    opacity: 0.6;
    filter: blur(14px);
}

.video-box .play-video {
    width: 56px;
    height: 56px;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    background: transparent;
}

.video-box .video-box-inner {
    content: " ";
    width: 100%;
    height: 100%;
    background: var(--primary_color);
    position: absolute;
    inset: 0;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.video-box .video-box-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all .3s ease;
}

.video-box .video-box-text b {
    color: #F6F8FE;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.video-box .video-box-text span {
    display: block;
    color: #F6F8FE;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
}

.video-box .play-video,
.video-box .video-box-text {
    visibility: hidden;
    opacity: 0;
}


.top-teams-list .team-swiper {
    width: calc(100% - 80px);
    height: 340px;
    margin: 0 auto;
    border-radius: 24px;
}

.top-teams-list .swiper-wrapper {
    display: flex;
    align-items: center;
}

.backdrop-wrap {
    position: relative;
}

.backdrop {
    width: 100%;
    height: 140px;
    background: var(--primary_color);
    opacity: 0.08;
    border-radius: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-slide-active .video-box .video-box-inner {
    background: linear-gradient(to bottom, #01040900 0%, #010409 100%);
}

.swiper-slide-active .video-box img {
    filter: unset;
    opacity: 1;
}


.team-swiper .swiper-slide {
    position: unset;
    width: auto !important;
}

.swiper-slide-active .video-box .play-video,
.swiper-slide-active .video-box .video-box-text {
    visibility: visible;
    opacity: 1;
}


.team-swiper .swiper-slide .video-box .video-box-inner,
.team-swiper .swiper-slide .video-box img {
    width: 247px;
    height: 340px;
}

.team-swiper .swiper-slide.swiper-slide-active .video-box .video-box-inner,
.team-swiper .swiper-slide.swiper-slide-active .video-box img {
    width: 400px;
    height: 340px;
}
@media (max-width: 991px) {
    .top-teams .section-head {
        margin-bottom: 0;
    }

    .team-swiper .swiper-slide.swiper-slide-active .video-box .video-box-inner,
    .team-swiper .swiper-slide.swiper-slide-active .video-box img,
    .team-swiper .swiper-slide .video-box .video-box-inner,
    .team-swiper .swiper-slide .video-box img {
        width: 100%;
        height: auto;
    }



    .top-teams-list .team-swiper {
        height: auto;
    }
}