.t888-banner-video-image-slider .t888-slide{
   height: 100%;
   height: 750px;
   max-height: 750px;
   position: relative;
   overflow: hidden;
}
.t888-banner-video-image-slider .t888-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.t888-slide-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}
.t888-slide-video {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0; left: 0;
    object-fit: cover;
}

.t888-slide-video-youtube {
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) scale(1.5) !important;
}

.t888-slide-video-youtube.is-t888-background-sized {
    transform: translate(-50%, -50%) !important;
}

.t888-slide-video-youtube.is-clean-autoplay {
    pointer-events: none;
}

.t888-slide-content-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 40px 50%;
    background: var(--t888-banner-overlay-color, rgba(0, 0, 0, 0.7));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}

.t888-slide:hover .t888-slide-content-overlay,
.t888-slide:focus-within .t888-slide-content-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.t888-slide-content {
    width: min(100%, 571px);
    color: #fff;
    text-align: left;
    transform: translateY(18px);
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.t888-slide:hover .t888-slide-content,
.t888-slide:focus-within .t888-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.t888-slide-title {
    font-family: var(--font-sfpro);
    font-size: 74px;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.t888-slide-subtitle {
    font-family: var(--font-sfpro);
    margin-top: 20px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 400;
    /* max-width: 500px; */
}

.t888-slide-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 55px;
    margin-top: 43px;
}

.t888-slide-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 53px 14px 40px;
    border-radius: 999px;
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    font-family: var(--font-sfpro);
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.t888-slide-btn-primary {
    background: var(--forth-color, #e90380);
    border: 1px solid var(--forth-color, #e90380);
    transition: all 0.3s ease;
}

.t888-slide-btn-secondary {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.t888-slide-btn-icon {
    position: absolute;
    right: -30px;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
}

.t888-slide-btn-icon svg {
    width: 28px;
    height: 28px;
}

.t888-slide-btn:hover .t888-slide-btn-icon,
.t888-slide-btn:focus .t888-slide-btn-icon {
    transform: translateY(-50%) rotate(45deg);
}
.t888-slide-btn:hover.t888-slide-btn-primary {
    background: var(--third-color);
    border-color: var(--third-color);
    color: #fff;
    padding: 14px 83px 14px 40px;
}
.t888-slide-btn:hover .t888-slide-btn-icon {
    right: 0;
}
.t888-slide-btn:hover.t888-slide-btn-secondary {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    padding: 14px 83px 14px 40px;
}
.t888-banner-video-image-slider .t888-scroll-explore {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 6;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-family: var(--font-sfpro);
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.t888-banner-video-image-slider .t888-scroll-explore .scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.t888-banner-video-image-slider .t888-slider-prev,
.t888-banner-video-image-slider .t888-slider-next {
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.t888-banner-video-image-slider .t888-slider-prev {
    left: 20px;
}

.t888-banner-video-image-slider .t888-slider-next {
    right: 20px;
}

.t888-banner-video-image-slider .t888-slider-prev .nav-icon,
.t888-banner-video-image-slider .t888-slider-next .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
}

.t888-banner-video-image-slider .t888-slider-prev .nav-icon svg,
.t888-banner-video-image-slider .t888-slider-next .nav-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.t888-banner-video-image-slider .t888-slider-prev:hover,
.t888-banner-video-image-slider .t888-slider-next:hover {
    background: var(--third-color, #00377b);
    border-color: var(--third-color, #00377b);
}

.t888-banner-video-image-slider .t888-slider-prev.swiper-button-disabled,
.t888-banner-video-image-slider .t888-slider-next.swiper-button-disabled {
    opacity: 0.45;
}
@media (max-width: 1024px) {
    .t888-banner-video-image-slider .t888-slide{
        height: 610px;
        max-height: 610px;
    }
.t888-slide-content-overlay {
    padding: 43px;
}
    .t888-banner-video-image-slider .t888-slider-prev {
        left: 16px;
    }

    .t888-banner-video-image-slider .t888-slider-next {
        right: 16px;
    }
}
@media (max-width: 575px) {
   .t888-slide-title{
    font-size: 44px;
    line-height: 53px;
   }
    .t888-slide-subtitle{
     font-size: 16px;
     line-height: 20px;
     margin-top: 14px;
     max-width: 300px;
    }
    .t888-slide-actions{
        margin-top: 26px;
        gap: 16px 36px;
    }
    .t888-slide-btn{
        font-size: 10px;
        line-height: 13px;
        padding: 8px 24px 8px 16px;
        height: 30px;
        min-height: 30px;
    }
    .t888-slide-btn:hover.t888-slide-btn-primary {
        padding: 8px 62px 8px 24px;
    }
    .t888-slide-btn:hover.t888-slide-btn-secondary {
        padding: 8px 62px 8px 24px;
    }
    .t888-slide-btn-icon {
        width: 30px;
        height: 30px;
        right: -20px;
    }
    .t888-slide-btn-icon svg {
        width: 16px;
        height: 16px;
    }
    .t888-slide-btn:hover .t888-slide-btn-icon {
        right: 0;
    }
    .t888-scroll-explore{
        display: none !important;
    }
    .t888-banner-video-image-slider .t888-slider-prev,
    .t888-banner-video-image-slider .t888-slider-next {
        width: 42px;
        height: 42px;
        bottom: 20px;
        transform: none;
    }
    .t888-banner-video-image-slider .t888-slider-prev {
        left: 16px;
    }
    .t888-banner-video-image-slider .t888-slider-next {
        right: 16px;
    }
    .t888-banner-video-image-slider .t888-slider-prev .nav-icon,
    .t888-banner-video-image-slider .t888-slider-next .nav-icon,
    .t888-banner-video-image-slider .t888-slider-prev .nav-icon svg,
    .t888-banner-video-image-slider .t888-slider-next .nav-icon svg {
        width: 22px;
        height: 22px;
    }
    .t888-slide-content-overlay{
        align-items: end;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }
    .t888-slide-content{
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 391px){
.t888-slide-title{
    font-size: 40px;
    line-height: 50px;
   }
}
@media (max-width: 376px){
.t888-slide-title{
    font-size: 38px;
    line-height: 50px;
   }
}
