/* ============================================
   Hero Slider Styles
   ============================================ */

/* Hero legacy slider text (used in slide1) */
.hero .tab-content .tab-pane #sliderText_1 .sliderText2 {
    position: absolute;
    bottom: -100%;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    background: #0004;
    transition: all 1.5s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .tab-content .tab-pane #sliderText_1.active .sliderText2 {
    bottom: 0;
    opacity: 1;
}

.hero .tab-content .tab-pane .sliderText2>div {
    display: flex;
    align-items: center;
    margin: 10px;
    margin-bottom: 50px;
}

.hero .tab-content .tab-pane .sliderText2 .img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.hero .tab-content .tab-pane .sliderText2 .img img {
    height: 100%;
}

.hero .tab-content .tab-pane .sliderText2 .text {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 28px;
}

.hero .tab-content .tab-pane .sliderText2 .text b {
    font-weight: bold;
    font-size: 28px;
}

.hero .tab-content .tab-pane .sliderText2 .hero_offer_btn {
    border-radius: 3px;
    background: #EE612D;
    color: #fff;
    animation: shadow-pulse2 3s infinite;
}

.hero .tab-content .tab-pane .sliderText2.active {
    opacity: 1;
    bottom: 0;
}

@keyframes sliderText_anim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero slider container */
.slide_content{
    position: absolute;
    bottom: -100%;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    background: #0007;
    transition: all 1.5s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide_content.active{
    bottom: 0;
    opacity: 1;
}

/* Owl Carousel Hero Slider */
.owl-carousel .owl-item .slide1 .img img{
    display: inline-block;
    width: auto;
}
.owl-hero-slider .owl-carousel .owl-item img{
    width: auto;
}
.owl-hero-slider .owl-nav{
    direction: rtl;
}
.owl-hero-slider .owl-next, .owl-hero-slider .owl-prev{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #0005 !important;
    border: none !important;
    top: 50% !important;
}
.owl-hero-slider .owl-next{
    left: 2%;
    right: auto;
}
.owl-hero-slider .owl-prev {
    right: 2%;
    left: auto;
}
.owl-hero-slider .owl-prev i, .owl-hero-slider .owl-next i{
    color: #fff;
} 

.item_content{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    margin: 0;
}

/* SLIDE 1 */
.slide1{
    background-image: url( ../images/sliders/tab1-slide1.webp );
    background-size: cover;
    height: 60vh;
    padding: 20px;
    background-position: center center;
}
.slide1 .img{
    text-align: right;
    align-content: center;
}
.slide1 .text{
    color: white;
    align-content: center;
    text-align: left;
    color: #fff;
    font-size: 20px;
}
.slide1 .text b{
    font-weight: bold;
    font-size: 28px;
    line-height: 20px;
}
.slide1 .text #hero_btn_slide1{
    border-radius: 4px;
    background: var(--color1);
    color: #fff;
    animation: shadow-pulse2 3s infinite;
}
/* SLIDE 1 FINISHED */

/* SLIDE 2 */
.slide2{
    background-image: url( ../images/sliders/tab1-slide2.webp );
    background-size: cover;
    height: 60vh;
    padding: 20px;
    text-align: center;
    background-position: center center;
}
.slide2 *{
    text-align: center;
}
.slide2 .text{
    color: white;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}
.slide2 .text b{
    display: block;  
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
}
.slide2 .text #hero_btn_slide2{
    border-radius: 4px;
    background: var(--color1);
    color: #fff;
    animation: shadow-pulse2 3s infinite;
}
/* SLIDE 2 FINISHED */

/* SLIDE 3 */
.slide3{
    background-image: url( ../images/sliders/tab1-slide3.webp );
    background-size: cover;
    height: 60vh;
    padding: 20px;
    text-align: center;
    background-position: center center;
    position: relative;
    overflow: hidden;
}
.slide3-launch-badge{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--color2);
    color: #fff;
    padding: 6px 18px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    white-space: nowrap;
    padding: 8px;
    width: 500px;
    opacity: 0;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-launch-badge.fade-step-0{
    animation: slide3-badge-fade-down 1.0s ease-out 0.3s forwards;
}
@keyframes slide3-badge-fade-down{
    from{
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.slide3::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(0px);
    transform: scale(1);
    z-index: 0;
    animation: slide3-bg-blur-scale 1s ease-out forwards;
}
.slide3 .item_content{
    position: relative;
    z-index: 1;
}
.slide3 .item_content *{
    text-align: center;
    font-weight: 100;
}
.slide3 .slide3-line span{
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(1){
    animation: slide3-fade-in-up 0.6s ease-out 1.5s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(2){
    animation: slide3-fade-in-up 0.6s ease-out 1.7s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(3){
    animation: slide3-fade-in-up 0.6s ease-out 1.9s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(4){
    animation: slide3-fade-in-up 0.6s ease-out 2.1s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(5){
    animation: slide3-fade-in-up 0.6s ease-out 2.3s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(7){
    animation: slide3-fade-in-up 0.6s ease-out 2.5s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .slide3-line span:nth-child(8){
    animation: slide3-fade-in-up 0.6s ease-out 2.7s forwards;
}
.slide3 .fade-step{
    opacity: 0;
    transform: translateY(10px);
}
.owl-hero-slider .owl-item.active .slide3 .fade-step-1{
    animation: slide3-fade-in-up 0.8s ease-out 1.5s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .fade-step-2{
    animation: slide3-fade-in-up 0.8s ease-out 1.9s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .fade-step-3{
    /* title appears after last word of line finishes (~3.3s) */
    animation: slide3-fade-in-up 0.8s ease-out 3.5s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .fade-step-4{
    /* button after title */
    animation: slide3-fade-in-up 0.8s ease-out 4.1s forwards;
}
.owl-hero-slider .owl-item.active .slide3 .fade-step-5{
    /* logos after button */
    animation: slide3-fade-in-up 0.8s ease-out 4.7s forwards;
}
@keyframes slide3-fade-in-up{
    from{
        opacity: 0;
        transform: translateY(10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slide3-bg-blur-scale{
    0%{
        filter: blur(0px);
        transform: scale(1);
    }
    100%{
        filter: blur(7px);
        transform: scale(1.03);
    }
}
.hero-brand-logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin:  80px auto 8px;
}
.hero-brand-logos img{
    height: 30px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 4px 10px;
}
.slide3 .sense_levent_logo img{  
    width: 150px !important;
    display: inline-block;
    margin: 12px;
    height: auto !important;
}
.slide3 .text{
    color: white;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.slide3 .text .p_1{
    display: block;
    font-size: 70px;
    line-height: 50px;
    max-width: 700px;
    margin: auto;
    text-transform: none;
    font-weight: 800;
    letter-spacing: 3px;
}
.slide3 .text .p_2{
    font-size: 22px;
    margin: 2px auto;
    font-weight: bold;
    max-width: 1150px;
    letter-spacing: 3px;
}
.slide3 .text .p_4{
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 30px;
}
.slide3 .text .p_4 small{
    font-size: 12px;
    margin-bottom: 30px;
}
.slide3 .text #hero_btn_slide3{
    border-radius: 4px;
    background: var(--color2);
    color: #fff;
    margin: 12px;
    font-size: 15px;
    padding: 9px;
    width: 160px;
    font-weight: bold;
    height: 40px;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 35px;
}
.leftBorder{
    border-left: 1px solid white;
}
/* SLIDE 3 FINISHED */

/* Responsive Styles */
@media (max-width:768px) {

.slide3 .text #hero_btn_slide3  {
    margin: 15px 0px 0px 0px !important;


    }
    .slide3 .sense_levent_logo img{  
        width: 190px !important;
    }
    .slide3 .text .p_2 {
        font-size: 16px;
    }
    .slide3-line {
       font-size: 14px !important; 
    }
    .slide3 .text .p_1 {
        font-size: 28px;
        line-height: 28px;
        font-weight: bold;
        text-transform: none;
    }
    .hero-brand-logos{
        gap: 10px;
        margin: 14px auto 6px;
    }
    .hero-brand-logos .brand-logo{
        height: 14px !important;
    }
    .slide2 .text small{
        font-size: 12px;
    }
    .slide2 .text b{    
        font-size: 30px;
        line-height: 30px;
    }
    .slide1 .text{
        font-size: 16px;  
        line-height: 16px;
    }
    .slide1 .text b{
        font-size: 18px;
    }
    .hero-brand-logos{
        max-width: 100%;
        margin: 10px auto 4px;
    }
    .hero-brand-logos img{
        height: 24px !important;
        margin: 3px 8px;
    }
    .hero .tab-content .tab-pane .sliderText2 .text {
        font-size: 16px;
    }
    .hero .tab-content .tab-pane .sliderText2>div {
        flex-direction: column;
    }
    .hero .tab-content .tab-pane .sliderText2 .text b {
        font-size: 20px;
    }
    .hero .tab-content .tab-pane .sliderText2 .text .btn {
        font-size: 14px;
    }
}

