
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #010101;
    font-size: 14px;
    /* overflow-x: hidden; */
}

/* font-family */
.caveat{
    font-family: "Caveat", system-ui;
}
.italic{
    font-style: italic;
}
.Passero {
    font-family: "Passero One", sans-serif;
}
/* font-family */

html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--red-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}

:root {
    --black-clr: #010101;
    --black-clr-2: #010101B2;
    --white-clr: #fff;
    --light-white: #01010199;
    --light-white1: rgba(255, 255, 255, 0.6);
    --red-clr:#FC0013;
    --red-clr1:#FF3637;
    --red-clr2:#FF361D;
    --red-clr3:#FF5E4A;
    --yellow-clr: #F8D13E;
    --green-clr: #64FE4B;
    --green-clr1: #3CB006;
    --neon-clr: #F8D13E;

    --red-clr4:#FF5E4A;
    --orange-clr: #FD6D29;
    --green-clr2: #29DA19;
    --purple-clr: #8346BF;
    --teal-clr: #00BBC0;
    /* --theme-clr: linear-gradient(135deg, #FFE31B, #FFF9B2);
    --theme-clr-1: linear-gradient(135deg, #FFF9B2, #FFE31B); */
    --theme-clr: #F8D13E;
    --theme-clr-1: #F8D13E;
    --light-gradient: linear-gradient(180deg, #FFFFFF 20%, rgba(255, 255, 255, 0) 100%);
    /*--blue-clr:#358DFF;
    --yellow-clr1: #FFCB34;
    --red-clr2:#FF361D;*/
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.black-clr-2 {color: var(--black-clr-2)}
.white-clr,a.white-clr { color: var(--white-clr);}
.light-white{color: var(--light-white);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.red-clr4{color:var(--red-clr4);}
.orange-clr{color:var(--orange-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.purple-clr{color: var(--purple-clr);}
.yellow-clr{color:var(--yellow-clr);}
.teal-clr{color:var(--teal-clr)} 
.neon-clr{color:var(--neon-clr)} 
.light-white1 {color: var(--light-white1);}

/* 
.yellow-clr1{color:var(--yellow-clr1);}
.blue-clr{color:var(--blue-clr)} */

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-br {
    border-bottom: 3px solid transparent;
    border-image: var(--theme-clr);
    border-image-slice: 1;
    width: 100%;
}
.light-gradient{
    background: var(--light-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /* border: 5px solid #A0D3FF; */
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Section Padding End */
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.gap20 {
    gap: 20px;
}

a.cta-link-btn-1 {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 25px;
    font-size: 22px;
    line-height: 160%;
    color: #000000;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--neon-clr);
    border-radius: 10px;
}
a.cta-link-btn-1:hover {
    border-radius: 8px;
    background: var(--theme-clr-1);
    color: var(--white-clr);
}
/* .cta-btn-border {
    border: 3px dashed #ffffff;
    border-radius: 10px;
    padding: 0px;
} */

.cta-btn-bg {
    background: #0B0809;
    border: 1px dashed #fff;
    padding: 20px 10px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 100px;
        display: inline-block;
    }

    .cta-btn-border {
        /* border-radius: 13px; */
        padding: 0px;
    }
    
    .cta-btn-bg {
        background: url('https://cdn.oppyotest.com/launches/tubeengineai/special/cta-btn-border.webp') no-repeat center center;
        background-size: cover;
        padding: 35px 26px 40px;
        border-radius: 10px;
        border: unset;
    }
}
/*  */



/* header section start */

/* sticky bar start */
.fixed-top-bar {
    background: var(--theme-clr);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.coupon{
    background: #fff;
    border-radius: 4px;
    padding: 0px 4px;
}
 .top-bar  {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 15px;
 }
 
 .fixed-top-bar a {
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;
     /* fill: #000; */
     color: #000000;
     background-color: #ffffff;
     border-radius: 5px 5px 5px 5px;
     padding: 6px 15px 4px;
     animation: blink 1.5s linear infinite;
 }
 @keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
 }
 .next-text {
    background-color: rgb(239, 49, 49);
    color: #fff;
    border-radius: 4px;
    padding: 0px 2px;
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
    .fixed-top-bar a {
        font-size: 20px;
        padding: 6px 15px 6px;
    }
 }
/* stick bar end */
.theme-btn {
    background: var(--theme-clr);
    padding: 15px 16px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn:hover {
    transition: all .3s ease;
    background: var(--theme-clr-1);
    color: var(--black-clr) !important;
}

ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    font-weight: 500;
    color: var(--white-clr);
}
.header-sec ul.leader-ul li a {
    text-decoration: none;
    font-weight: 800;
    padding: 10px 10px;
}
.leader-ul li a {
    position: relative;
    transition: all .5s;
}
a.affiliate-link-btn {
    border-radius: 10px;
    border-radius: 10px;
    background: var(--theme-clr);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    border: 2px solid #070707;
    font-size: 18px;
    color: var(--black-clr);
    font-weight: 800 !important;
    transition: all .3s ease;
}
@media (min-width: 768px) {
    a.affiliate-link-btn {
        padding: 15px 20px !important;
        font-size: 20px;
    }
}

.header-sec{
    background: #0a0708;
    position: relative;
}
.pre-head {
    background: #ffffff2b;
    border: 1px solid #ffffff54;
    border-radius: 15px;
    padding: 6px 15px;
    display: inline-block;
}
.main-heading {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 50%, rgba(0, 0, 0, 0) 100%);
    border: 2px solid #FE0C0D;
    border-radius: 10px;
    padding: 20px 10px;
    /* display: inline-block; */
}
.yellow-text{
    background: linear-gradient(180deg, rgba(248, 209, 62, 0) 0%, rgba(248, 209, 62, 0.5) 100%);
    padding: 0 5px;
    display: inline-block;
}
.heading-gradiant{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 18px;
}
.post-heading{
    background: #1D1B1C;
    border: 1px solid #ffffff54;
    backdrop-filter: blur(50px);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.header-side-box{
    background: #FFFFFF;
    border: 2px solid #FD6D294D;
    backdrop-filter: blur(100px);
    border-radius: 10px;
    padding: 20px 10px;
}
.header-ul{
    padding: 20px 15px;
    background: #1D1B1C;
    border: 1px solid #ffffff54;
    border-radius: 15px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0px;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.Exclusive-text{
    background: #151515;
    border: 1px dashed var(--red-clr);
    border-radius: 10px;
    padding: 10px;
}
.red-frame-1 {
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
.blue-box {
    border-radius: 10px;
    background: transparent;
    border: 1px solid #3F3F3E;
    background: #080808;
    padding: 20px 10px;
}
.header-white-box {
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    height: 100%;
    align-items: center;
}
@media(min-width:768px){
    .header-sec{
        background: #0a0708 url("https://cdn.oppyotest.com/launches/tubeengineai/special/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .pre-head {
        border-radius: 30px;
    }
    .main-heading{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/main-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px;
        border: unset;
        border-radius: unset;
    }
    .header-ul li {
        padding: 0px 0px 22px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(https://cdn.oppyotest.com/launches/tubeengineai/special/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/tubeengineai/special/purple-right-arrow.webp);
        position: absolute;
        right: -85px;
        top: 18px;
    }
    .post-heading{
        padding: 12px 20px;
    }
    .header-side-box{
        padding: 30px 28px 60px;
    }
    .Exclusive-text{
        padding: 14px;
    }
    .theme-btn {
        padding: 20px 95px;
    }
    .theme-btn:hover {
        transform: scale(1.04);
    }
    .green-frame{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/green-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 8px;
    }
    .blue-box {
        border-radius: 20px;
        padding: 30px;
    }
}
/* header section end */

/* step sec start */
.step-sec{
    background: #fecbcf;
}
.neon-text{
    background: var(--neon-clr);
    display: inline-block;
    padding: 0px 10px;
    border-radius: 10px;
}
.step-card{
    padding: 15px 15px 25px;
    display: inline-block;
    height: 100%;
}

.step-card-1 {
    background: #D0F4FF;
    border-radius: 10px;
}
.step-card-2{
    background: #EDE5F7;
    border-radius: 10px;
}
.step-card-3{
    background: #D6F0D5;
    border-radius: 10px;
}
@media (min-width:768px) {
    .step-sec{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .neon-text{
        padding: 0px 20px;
    }
    .step-card {
        padding: 0px 25px 25px;
        border: unset;
        border-radius: unset;
    }
    .step-card img{
        margin-top: -25px;
    }
    .step-card-1{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-card-1.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-2{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-card-2.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-3{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-card-3.webp") no-repeat;
        background-size: 100% 100%;
    }
}
/* step sec end */

/* cta btn section start */
.cta-section {
    background: #0b0809;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 10px;
    font-size: 24px;
    line-height: 160%;
    color: var(--black-clr);
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 10px;
    /* border: 5px solid rgba(255, 255, 255, 0.30); */
}
a.cta-link-btn:hover{
    background: var(--theme-clr-1);
    color: var(--black-clr);
    transform: scale(1.05);
}
.purple-box{
    background: var(--purple-clr);
    border-radius: 35px;
    padding: 10px;
    display: inline-block;
}
.col-12:has(.purple-box) {
    margin-top: -60px;
}
@media (min-width: 768px) {
    .cta-section {
        background: #0b0809 url(https://cdn.oppyotest.com/launches/tubeengineai/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 70px 0;
    }
    .cta-text{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
    a.cta-link-btn {
        font-size: 38px;
        padding: 22px 84px;
        display: inline-block;
    }
    .purple-box{
        padding: 6px 35px;
    }
    .col-12:has(.purple-box){
        margin-top: -115px;
    }
}
/* cta btn section end */

/* limited time section start */
.limited-time-sec {
    padding: 10px 0px 10px 0px;
    background: var(--red-clr);
}
/* limited time section end */

/* faceless-sec-1 start */
.faceless-sec-1{
    background: #1e0505;
}
.yellow-under{
    border-bottom: 1px dashed var(--yellow-clr);
}

@media (min-width: 768px) {
    .faceless-sec-1 {
        background: #1e0505 url(https://cdn.oppyotest.com/launches/tubeengineai/special/faceless-bg-1.webp) no-repeat center center;
        background-size: cover;
    }
    .mt-md130{
        margin-top: 130px !important;
    }
}
/* faceless-sec-1 end */

/* youtube-sec start */
.youtube-sec{
    background: #d5f5d4;
}
.youtube-text{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.youtube-text-1{
    background: var(--neon-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
/*  */
    .chatbot-box-1 {
        background: #FF7879;
        padding: 20px 5px;
        border-radius: 15px;
        height: 100%;
    }
   
    .chatbot-box-2 {
        background: #6BB22D;
        padding: 20px 5px;
        border-radius: 15px;
        height: 100%;
    }
     .chatbot-box-2 video {
        object-fit: contain;
        min-height: 180px;
     }
    .white-text{
        background: #FDFFFC;
        display: inline-block;
        border-radius: 10px;
        padding: 8px 15px;
    }

.agent-box-2 {
    background: linear-gradient(180deg, #3394FF 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 20px 20px 0px;
    /* padding-left: 36px; */
}
@media (max-width: 767px) {
    .chatbot-box-1 img{
        max-width: 150px;
    }
}
@media (min-width: 768px) {
    .youtube-sec {
        background: #d5f5d4 url(https://cdn.oppyotest.com/launches/tubeengineai/special/youtube-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .youtube-text{
        padding: 0px 20px;
    }
    .youtube-text-1{
        padding: 0px 18px 0px 20px;
    }
    /*  */
    .chatbot-box-1 {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/chatbot-box-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px 26px 30px 10px;
        /* border-radius: 20px 0px 0px 20px; */
        position: relative;
    }
    .chatbot-box-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/vs-img.webp");
        top: 45%;
        right: -47px;
    }
    .chatbot-box-2 {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/chatbot-box-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px 10px 24px 30px;
        /* border-radius: 0px 20px 20px 0px; */
    }
    .chatbot-box-2 video{
        object-fit: contain;
        min-height: 409px;
     }
     .agent-box-2 {
        padding: 50px 40px 0px;
    }
}
/* youtube-sec end */

/* profit-sec start */
.profit-sec{
    background: #FFFFFF;
}
.profit-text{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px) {
    .profit-sec {
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/tubeengineai/special/profit-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .profit-text{
        padding: 0px 15px;
    }
}
/* profit-sec end */

/* channel-sec start */
.channel-sec{
    background: #010101;
}
.channel-text{
    background: #FC0113;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.channel-box{
    background: #FFFFFF;
    border: 2px solid #FC01134D;
    box-shadow: 0px 10px 20px 0px #0000004D;
    padding: 0px 20px 20px;
    border-radius: 20px;
}
.title{
    background: #FC0113;
    border-radius: 16px;
    padding: 0 16px;
    display: inline-block;
    /* margin-top: -10px; */
}
/* div:has(.title){
    margin-top: -8px;
} */
.sub-text{
    background: #6BB22D;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 20px
}
.why-text{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 2px dashed #FFFFFF;
    display: inline-block;
    padding: 0 20px;
}

.channel-black-box{
    padding: 15px 5px 15px;
    z-index: 1;
    position: relative;
}
.channel-black-box::after{
    position: absolute;
    content: '';
    border-radius: 20px;
    background: #FFFFFF1A;
    border: 2px solid #FC01134D;
    backdrop-filter: blur(20px);
    height: 100%;
    width: 100%;
    max-width: 1270px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
@media (min-width: 768px) {
    .channel-sec {
        background: #010101 url(https://cdn.oppyotest.com/launches/tubeengineai/special/channel-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .channel-text{
        padding: 0px 20px;
    }
    .why-text{
        padding: 0 34px;
    }

    .channel-black-box{
        padding: 0px 0px 40px;
    }
    /* .channel-black-box::after{
        border: unset;
        border-radius: unset;
    } */
}
/* channel-sec end */

/* future-sec start */
.future-sec{
    background: #FFF1EC;
}
.future-text {
    background: var(--neon-clr);
    border: 2px dashed #e6b500;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.future-text-1 {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.fu-frame {
    /* background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/fu-frame.webp") no-repeat;
    background-size: 100% 100%; */
    background: #feb2b83d;
    border-radius: 10px;
    border: 2px solid #FC01134D;
    display: inline-block;
    padding: 10px;
    position: relative;
}
@media (min-width: 768px) {
    .future-sec{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/future-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .future-text {
        padding: 0px 20px;
    } 
    .future-text-1 {
        padding: 0px 25px;
    } 
}
/* future-sec end */

/* automation-sec start */
.automation-sec{
    background: #000000;
}
@media (min-width: 768px) {
    .automation-sec{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/automation-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* automation-sec end */

/* ultimate-sec start */
.ultimate-sec{
    background: #000000;
}
.ultimate-text {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 3px dashed #140207;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 15px;
}
.pd-box{
    padding: 10px;
    height: 100%;
    border-radius: 20px;
}
.ind-box {
    background: #FFFFFF1A;
    border: 2px solid #6C6C6C80;
    backdrop-filter: blur(10px);
    /* box-shadow: 0px 0px 50px 0px #FFFFFF4D inset; */
}
@media (min-width: 768px) {
    .ultimate-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/tubeengineai/special/ultimate-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .ultimate-text {
        padding: 10px 30px;
    } 
   .pd-box{
        padding: 40px 30px 0px;
    }
    .features-heading{
        position: relative;
    }
    .features-heading:before{
       background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/power-icon-left.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       left:130px;
       content: '';
   }
   .features-heading:after{
       background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/power-icon-right.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       right:130px;
       content: '';
   }
}
/* ultimate-sec end */

/* without-sec start */
.without-sec{
    background: #ffffff;
}
.without-text{
    background: #FFFFFF;
    border: 1px dashed var(--red-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.without-box{
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid var(--red-clr);
    border-radius: 10px;
    padding: 5px 10px;
}
@media (min-width: 768px) {
    .without-sec {
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-text{
        padding: 5px 20px;
    }
    .without-box{
        padding: 4px 15px;
        min-height: 67px;
    }
}
/* without-sec end */

/* final sec start */
.final-sec {
    background: #fff0f0;
}
.final-shape {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 2px dashed #FFFFFF;
    padding: 15px 0px;
    border-radius: 10px;
}
.final-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
    position: relative;
}
.final-card::before {
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/final.webp) no-repeat;
    content: '';
    position: absolute;
    width: 150px;
    height: 80px;
    top: 50px;
    left: 25px;
}
.final-card.card-1{
    border: 2px solid #10A37F;
    box-shadow: 14px 14px 12px 0px #10A37F26;
}
.final-card.card-2{
   border: 2px solid #CC2AF1;
   box-shadow: 14px 14px 12px 0px #CC2AF126;
}
.final-card.card-3{
    border: 2px solid #FF882E;
    box-shadow: 14px 14px 12px 0px #FF882E26;
}
.final-card.card-4{
   border: 2px solid #3E57DA;
   box-shadow: 14px 14px 12px 0px #3E57DA26;
}
.final-card.card-5{
   border: 2px solid #0076D0;
   box-shadow: 14px 14px 12px 0px #0076D026;
}
.final-card.card-6{
    border: 2px solid #5EC9FF;
    box-shadow: 14px 14px 12px 0px #5EC9FF26;
}
.final-card.card-7{
    border: 2px solid #9FB7EF;
    box-shadow: 14px 14px 12px 0px #9FB7EF26;
}
.final-card.card-8{
    border: 2px solid #852CFF;
    box-shadow: 14px 14px 12px 0px #852CFF26;
}
.final-card.card-9{
    border: 2px solid #010101;
    box-shadow: 14px 14px 12px 0px #01010126;
}
.final-card span{
    background: #FF361D;
    border-radius: 7px;
    padding: 2px 7px;
    display: inline-block;
}
.red-box-final {
    border-radius: 10px;
    background: #ff363717;
    border: 1px solid #ef3131;
    padding: 10px;
}
.blue-box-final {
    border-radius: 10px;
    background: #ff363717;
    border: 1px solid #ef3131;
    padding: 10px;
}
.one-time-text {
    background: var(--theme-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 12px 30px;
}
@media (min-width: 768px) {
    .final-sec {
        background: #fff0f0 url("https://cdn.oppyotest.com/launches/tubeengineai/special/final-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .final-shape {
        padding: 10px 100px 10px 50px;
        display: inline-block;
        position: relative;
    }
    .final-shape:after {
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/final-vector.webp");
        top: -21px;
        right: -66px;
        position: absolute;
    }
    .final-card {
        padding: 67px 20px 50px;
        position: relative;
    }
    .final-card span{
        background: #FF361D;
        border-radius: 7px;
        padding: 2px 7px;
        display: inline-block;
    }
    .final-card::after {
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/final-sad-emoji.webp");
        position: absolute;
        top: -50px;
        right: -25px;
    }
    .red-box-final {
        padding: 20px;
    }
    .blue-box-final {
        padding: 30px 20px 23px;
        height: 100%;
    }
}
/* final sec end */

/* viral-sec start */
.viral-sec{
    background: #fff0f0;
}
.viral-text, .viral-text-1{
    background: var(--neon-clr);
    border: 2px dashed var(--white-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.viral-box{
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 10px;
}
.viral-1{
    border: 2px solid #F49A49;
}
.viral-2{
   border: 2px solid #265CC3;
}
.viral-3{
   border: 2px solid #5B3CFF;
}
.viral-4{
    border: 2px solid #F53252;
}
@media (min-width: 768px) {
    .viral-sec {
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/tubeengineai/special/viral-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .viral-text{
        padding: 5px 25px;
    }
    .viral-text-1{
        padding: 0 78px 0 25px;
        position: relative;
    }
    .viral-text-1::after {
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/cash-icon.webp");
        position: absolute;
        top: -25px;
        right: -60px;
    }
    .viral-box {
        gap: 15px;
        padding: 10px;
    }
}
/* viral-sec end */

/* gold-sec start */
.gold-sec{
    background: #ffffff;
}
.gold-text{
   background: var(--neon-clr);
    border: 4px dashed #FFFFFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.gold-box{
    /* display: inline-block; */
    padding: 20px 10px;
    border-radius: 10px;
    backdrop-filter: blur(50px);
    height: 100%;
}
.gold-1{
    background: #CEFFDA;
    border: 1px solid  #33D459;
    border-right: 5px solid #33D459;
    border-bottom: 5px solid #33D459;
}
.gold-2{
    background: #96A1FF1A;
    border: 1px solid  #96A1FF;
    border-right: 5px solid #96A1FF;
    border-bottom: 5px solid #96A1FF;
}
.gold-3{
    background: #FFE4E5;
    border: 1px solid  #FF282F;
    border-right: 5px solid #FF282F;
    border-bottom: 5px solid #FF282F;
}
.gold-4{
    background: #FFF3DB;
    border: 1px solid  #FFB930;
    border-right: 5px solid #FFB930;
    border-bottom: 5px solid #FFB930;
}
.gold-5{
    background: #ffffff;
    border: 1px solid  #1A4AA8;
    border-right: 5px solid #1A4AA8;
    border-bottom: 5px solid #1A4AA8;
}
.gold-6{
    background: #DBFFF8;
    border: 1px solid  #16B192;
    border-right: 5px solid #16B192;
    border-bottom: 5px solid #16B192;
}
@media (min-width: 768px) {
    .gold-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/gold-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .gold-text{
        padding: 10px 30px;
    }
    .gold-box{
        border-radius: 20px;
        padding: 20px;
    }
}
/* gold-sec end */

/* star-sec start */
.star-sec{
    background: #FBE9E2;
}
.star-text{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.star-list li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/star-list.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 55px;
}
.star-text-2{
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .star-sec{
        background: #FBE9E2 url(https://cdn.oppyotest.com/launches/tubeengineai/special/star-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .star-text{
        padding: 0px 26px;
    }
    .star-list li {
    padding: 0px 0px 30px 55px;
    }
    .star-text-2{
        padding: 0 20px;
    }
}
/* star-sec end */

/* million-sec start */
.million-sec{
    background: #0e0204;
}
.million-text{
    background: #FC0113;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .million-sec{
        background: #0e0204 url(https://cdn.oppyotest.com/launches/tubeengineai/special/million-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .million-text{
        padding: 0 34px;
    }
}
/* million-sec end */

/* turn-sec start */
.turn-sec{
    background: #ffffff;
}
.turn-text{
    background: #FC0113;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
.turn-box{
    background: var(--neon-clr);
    box-shadow: 0px 5px 25px 0px #19512280;
    padding: 10px 10px 5px;
    border-radius: 20px;
}
.turn-box img{
    border-radius: 15px 15px 0 0;
}
@media (min-width: 768px) {
    .turn-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/turn-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .turn-text{
        padding: 0 29px;
    }
}
/* turn-sec end */

/* freelancer-sec start */
.freelancer-sec{
    background: #070002;
}
.freelancer-sec-1{
    background: linear-gradient(180deg, rgba(255, 240, 221, 0) 0%, #FFF0DD 100%);
}

.freelancer-text{
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
}
.freelancer-text-1{
    background: #ffffff;
    border: 2px dashed #FA0113;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .freelancer-sec {
        background: #070002 url(https://cdn.oppyotest.com/launches/tubeengineai/special/freelancer-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text{
        padding: 0px 31px;
    }
    .freelancer-sec-1 {
        background: #FFF0DD url(https://cdn.oppyotest.com/launches/tubeengineai/special/freelancer-bg-1.webp) no-repeat bottom center;
        background-size: cover;
    }
    .freelancer-text-1{
        padding: 10px 71px 10px 40px;
        position: relative;
    }
    .freelancer-text-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/think-emoji-1.webp");
        top: -5px;
        right: -25px;
    }
}
/* freelancer-sec end */

/* expensive-section start */
.expensive-section{
    background: #ffffff;
}
.purple-frame {
    background:  var(--yellow-clr);
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
.expensive-h{
   border-top: 2px solid var(--red-clr);
   border-left: 2px solid var(--red-clr);
   border-right: 2px solid var(--red-clr);
   background: #fff;
   padding: 20px;
   display: inline-block;
   border-radius: 10px 10px 5px 5px;
}

.expensive-card, .expensive-card-main{
    border-radius: 20px;
    background: linear-gradient(180deg, #FFEAEA 0%, rgba(255, 234, 234, 0.1) 100%);
    padding: 20px;
    height: 100%;
}

.expensive-card-1{
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/expensive-card-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px;
    display: inline-block;
    height: 100%;
}
.expensive-boxes {
    background: var(--red-clr);
    backdrop-filter: blur(50px);
    border-radius: 5px;
    padding: 8px 15px;
}
.expensive-black-box {
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
.felt-text{
    background: var(--red-clr);
    display: inline-block;
    border-radius: 20px;
    padding: 10px 15px;
}
.red-line{
    border-bottom: 2px dashed var(--red-clr);
}
.expensive-text{
    background: var(--yellow-clr);
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}
@media(min-width:768px){
    .f-md-80{
        font-size: 80px;
    }
    .felt-text{
        padding: 20px 45px;
    }
    .expensive-black-box {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 40px 40px;
        border-radius: 0px;
    }
    .purple-frame {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 12px 45px 18px;
        position: relative;
    }
    .purple-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/think-emoji-2.webp");
        top: -32px;
        right: -50px;
    }
    .red-wave{
        position: relative;
    }
    .red-wave::after{
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/red-wave.webp") no-repeat center center;
        width: 100%;
        height: 7px;
        bottom: -4px;
        left: 0;
    }
    .expensive-h{
       background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/expensive-h.webp") no-repeat;
       background-size: 100% 100%;
       padding: 36px 47px 20px;
       display: inline-block;
       border: unset;
       border-radius: 0;
    }
    .expensive-card{
        padding: 60px 100px;
    }
    .expensive-card-main{
        padding: 80px 100px 0px;
    }
    .expensive-card-1{
        padding: 30px;
    }
    .red-box{
        background: var(--red-clr);
        border-radius: 5px;
        padding: 0px 5px;
    }

}
/* expensive-section end */


/* not-anymore-sec start */
.not-anymore-sec{
   background: #FBE9E2;
}
.not-anymore-sec-card{
    border-radius: 100px;
    border: 1px solid rgba(255, 44, 44, 0.5);
    background: #FFF;
    padding: 10px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}
.notanymore-text {
    padding: 10px 20px;
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    display: inline-block;
    position: relative;
}
.not-red-text{
    background: #FC0113;
    border: 1px dashed #FFFFFF;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    /* .not-anymore-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/tubeengineai/special/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
        padding-top: 130px;
    } */
    .not-anymore-sec-card{
        padding: 20px 14px;
    }
    .notanymore-text {
        padding: 10px 40px 10px 140px;
    }
    .notanymore-text::after {
        content: url(https://cdn.oppyotest.com/launches/tubeengineai/special/excited-emoji.webp);
        position: absolute;
        top: 40px;
        left: 40px;
        transform: translateY(-50%);
    }
}
/* not-anymore-sec end */

/* proudly-section start */
.proudly-sec{
    background: #0b0402;
    padding: 30px 0px;
}
.presenting-head{
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #FB0012;
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 8px 26px;
}
@media (max-width: 767px) {
    .proudly-logo{
        max-height: 90px;
    }
}
@media (min-width: 768px) {
    .proudly-sec {
        background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/proudlybg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 120px;
        position: relative;
    }
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/presenting-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 4px 45px 14px;
    }
}
/* proudly-section end */

/* step-sec start */
.step-sec-1{
    background: #ffffff;
}
.easy-step {
    background: #FC0013;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 10px 4px;
    position: relative;
}
/* steps-card */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: #23A1F4;
}
/* .heading-tabs:not(.collapsed) .steps-card{
    border-color: var(--purple-clr);
} */
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: white;
    fill: white;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    transition: 0.5s ease-in-out;
    border: 2px solid transparent;
    padding: 20px;
    margin-bottom: 20px;
}

.steps-tabs{
    /* height: 750px; */
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid #FD6D29;
}

@media (min-width: 768px) {
    .step-sec-1 {
        background: #fff url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-bg-1.webp") no-repeat center center;
        background-size: cover;
    }
    .easy-step {
        padding: 0px 22px 3px 22px;
        position: relative;
    }
    .easy-step::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/click-hand-icon.webp");
        top: 26px;
        right: -60px;
    }
    .steps-card .steps-icon{
        min-width: 100px;
        min-height: 100px;   
    }
}
/*  */

.steps-card p{
    /* color: #101010; */
    color: rgb(25 25 25 / 78%);
    text-align: left;
}

.steps-card{
    transition: all .8s ease-in-out;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #FD6D29;
    /* background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/step-frame.webp") no-repeat;
    background-size: 100% 100%; */
    padding: 40px 30px;
}
.nav-link.active .steps-card{
    border: 1px solid #FC001380
}
.nav-tabs .nav-link.active .steps-card {
    background: #FFF0DD80 !important;
}
.heading-tabs{
    /* background: rgba(153, 88, 204, 0.10);  */
    background: transparent; 
    border: none;
    outline: none;
    padding: 0;
    text-align: center;
    border-radius: 20px;
}
.cleint-frame {
    border: 5px solid #FC001380;
    background: #fc0013;
    border-radius: 12px;
}
/* step-sec end */

/* demo sec start */
.demo-sec{
    background: #fff0f0;
    overflow: hidden;
}
.purple-shade{
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    padding: 0px 15px;
    border-radius: 30px;
}
.border-frame{
    background: #FC00131A;
    border: 2px solid #FC001333;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
.tons-border {
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/demo-box.webp") no-repeat bottom center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    /* border-radius: 10px; */
    padding: 15px 20px;
    height: 100%;
}
.demo-box {
    
}
@media (min-width: 768px) {
    .demo-sec{
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/tubeengineai/special/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .purple-shade{
        padding: 0px 45px;
    }
    .tons-border {
        padding: 15px;
    }
}

/* demo sec end */

/* rest-sec start */
.rest-sec{
    background: #ffffff;
}
.rest-text{
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .rest-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/rest-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .rest-text{
        padding: 0 25px;
    }
}
/* rest-sec end */

/* faceless-sec start */
.faceless-sec{
    background: #0a0708;
}
.faceless-text{
    background: #FC0013;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .faceless-sec{
        background: #0a0708 url(https://cdn.oppyotest.com/launches/tubeengineai/special/faceless-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .faceless-text{
        padding: 10px 18px;
    }
}
/* faceless-sec end */

/* earning-sec start */
.earning-sec{
    background: #430001;
}
.earning-text{
    background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .earning-sec{
        background: #430001 url(https://cdn.oppyotest.com/launches/tubeengineai/special/earning-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .earning-text{
        padding: 14px 113px 14px 27px;
        position: relative;
    }
    .earning-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/earning-icon.webp");
        top: 15px;
        right: -51px;
    }
}
/* earning-sec end */

/* moving-row-sec */
.moving-row-sec{
    background: #080b1a;
}
.moving-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Common styles for moving rows */
  .moving-row {
    display: flex;
    white-space: nowrap;
    animation: move 30s linear infinite;
  }

  /* Alternate direction for rows */
  .moving-row-parent:nth-child(odd) .moving-row {
    animation-direction: normal;
  }

  .moving-row-parent:nth-child(even) .moving-row {
    animation-direction: reverse;
  }

  /* Hover to pause animation */
  .moving-row-parent:hover .moving-row{
    animation-play-state: paused;   
  }

  /* Individual tags styling */
  .moving-row .tag {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 30px;
    border: 1px solid #FFFFFF33;
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  /* Shadow gradient effect on edges */
  .shadow-left,
  .shadow-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .shadow-left {
    left: 0;
    background: linear-gradient(to right, rgba(8, 11, 26,1), rgb(8, 11, 26, 0));
  }

  .shadow-right {
    right: 0;
    background: linear-gradient(to left,  rgba(8, 11, 26,1), rgb(8, 11, 26, 0));
  }

  /* Keyframes for movement */
  @keyframes move {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @media (min-width:768px) {
    .moving-row-sec{
        padding-bottom: 150px;
    }
  }
/* moving-row-sec */

/* crazy sec start */
.crazy-sec{
    background: #fff;
}
.crazy-text{
   background: var(--neon-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 20px;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/crazy-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .crazy-text{
        padding: 2px 46px 2px 28px;
        position: relative;
    }
    .crazy-text::after {
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/glasses-emoji.webp");
        position: absolute;
        top: 0px;
        right: -27px;
    }
}
/* crazy sec end */

/* everyone sec start */
.everyone-sec{
    background: #fafafa;
}
.everyone-text{
    background: #FC0113;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/everyone-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .everyone-text{
        padding: 12px 25px;
    }
}
/* everyone sec end */

/* potential-sec start */
.potential-sec{
    background: #ffffff;
}
.potential-text {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 18px;
}
.gap30 {
	--bs-gutter-y: 30px;
}
.feature-list-box {
    padding: 15px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: #FFFFFF;
	box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	border-bottom: 7px solid var(--red-clr);
}
.feature-list-box img {
    border-radius: 50%;
    background: #fc001312;
}
.feature-list-box:hover{
	-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}
@-webkit-keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  
  @keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  .support-img:hover img{-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}

@media(min-width:768px){
	.gap30 {
		--bs-gutter-x: 50px;
		--bs-gutter-y: 50px;
	}
	.feature-list-box {
		height: 100%;
		padding: 30px;
	}

}
/* potential-sec end */

/* testimonial sec start */
.testimonial-sec{
    background: #fff0f0;
}
.purple-text {
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    display: inline-block;
    border-radius: 5px;
    padding: 0px 5px;
}
@media (min-width: 768px) {
    .testimonial-sec{
        background: #fff0f0 url("https://cdn.oppyotest.com/launches/tubeengineai/special/testimonial-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .purple-text {
        border-radius: 10px;
        padding: 0px 20px;
    }
}
/* testimonial sec end */

/*compare section start*/
.compare-section{
    background: #fff;
}

.winning-box{
    padding: 36px 110px;
    border-top: 1px solid #378E00;
    border-left: 1px solid #378E00;
    border-right: 1px solid #378E00;
    border-width: 1px, 0px, 1px, 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #378E00;
    border-radius: 20px 20px 0px 0px;
    box-shadow: -5px 4px 30px 0px #00000026;
    margin-top: -24px;
}
.compare-list-1{
    box-shadow: -5px 4px 30px 0px #00000026;
    border-radius: 0px 0px 0px 20px;
}
.compare-list-1 li {
    list-style: none;
    text-align: left;
    padding: 25px 25px 25px 70px;
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/happy-tick.webp") no-repeat;
    background-position: 23px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid #378E00;
    background-color: #FFFFFF;
}
.compare-list-1 li:nth-child(odd){  
    background-color: #E6FFC7;
}
.compare-list-1 li:last-child{
     border-bottom: 1px solid #378E00;
    /*background-image: none;
    padding-top: 45px; */
    border-radius: 0px 0px 0px 20px;
}
.losing-box {
    padding: 24px 110px;
    background: #FF361D;
    border: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px 20px 0px 0px;
    /* margin-top: -71px; */
}
.compare-list-2 li{
    list-style: none;
    text-align: left;
    background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/sad-tick.webp") no-repeat;
    background-position: 23px 25px;
    padding: 25px 41px 25px 65px;
    border-right: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FCDDDA;
    
}
.compare-list-2 li:nth-child(even){  
    background-color: #FFEBE9;
}
.compare-list-2 li:nth-child(3){
    padding: 38px 41px 38px 65px;
    background-position: 23px 36px;
}
.compare-list-2 li:last-child{
    border-radius: 0px 0px 20px 0px;
    border-bottom: 1px solid #FF361D;
    padding: 38px 41px 38px 65px;
    background-position: 23px 36px;
}
.c-green-box {
    background: #378E00;
    border: 6px solid #E6FFC7;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF361D;
    border: 6px solid #FCDDDA;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
@media (min-width:768px) {
    .compare-section{
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .c-green-box {
        border-radius: 100px;
        padding: 14px;
    }
    .c-red-box {
        border-radius: 100px;
        padding: 12px 36px;
    }
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
        /* padding: 0px 15px; */
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }
}

/* compare section end */

/* lifestyle section start */
.lifestyle-section{
    background: #ffffff;
}
.dfy-shape {
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
@media (max-width: 768px){   
    .lifestyle-section .heading{
        color: #121212;
    }
}
@media (min-width: 768px){
    .lifestyle-section{
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/lifestyle.webp) no-repeat top center;
        background-size: cover;
    }
}
/* lifestyle section start */

/* fear sec start */
.fear-sec{
    background: #fff0f0;
}
.fair-text {
    border: 2px solid #FF361D;
    background: #FF462F1A;
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.fear-text-1{
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 5px;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/tubeengineai/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .fair-text{
        padding: 0px 10px;
    }
}
/* fear sec end */



















/* bonusess-sec start */
.bonusess-sec{
    background: #a61a22;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/tubeengineai/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 50px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #ffffff;
}
.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 10px;
    border: 2px solid #FC001333;
    background: #fff0f0;
    height: 100%;
    padding: 20px;
}

.margin-t-30 {
    margin-top: -30px;
}
.bonus-headline-top {
    padding: 4px 55px;
    display: inline-block;
    text-align: center;
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/bonus-head.webp) no-repeat center center;
    background-size: 100% 100%;
}
@media (min-width: 768px){
    .margin-t-78 {
        margin-top: -66px;
    }
    .bonus-section-shape {
        padding: 55px 30px 30px;
    }
}
/* bonus sec end */

/* moneyback sec start */
.moneyback-sec{
    background: #0a0708;
}
.moneyback-h{
    background: var(--red-clr);
    border:  2px dashed #ffffff;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.riskfree-text {
    background: var(--yellow-clr);
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 0px 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        /* background: #090317 url("https://cdn.oppyotest.com/launches/tubeengineai/special/moneyback-bg.webp") no-repeat center center; */
        background: #0a0708 url("https://cdn.oppyotest.com/launches/tubeengineai/special/faceless-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .riskfree-text {
        border-radius: 20px;
        padding: 0px 20px;
    }
    .moneyback-h {
        padding: 0px 20px;
    }
}
/* moneyback sec end */

/* table section start */

.table-section {
    background: #fff;
    padding: 30px 0
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: solid 10px #FDF1FF;
}

.tbbg2 {
    background: #FDF1FF;
    padding: 30px;
    background-size: cover;
    border-radius: 8px 8px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}

.myfeatureslast {
    float: left;
    padding: 30px;
    width: 100%;
    min-height: 69px;
    color: #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 0
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}

ul.grey-tick-last li:last-child {
    border-bottom: 0
}

ul.grey-tick-last li:nth-child(odd) {
    background-color: #f1f1f1;
}

ul.grey-tick-last li:nth-child(even) {
    background-color: #fff;
}

.tablebox3 {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 35px 35px 20px 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    padding: 15px;
    /* border: 5px solid #000; */
    background: linear-gradient(90deg, #070803 40%, #010300 100%);
}

.tbbg3 {
    /* background: #000; */
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/table-frame.webp) no-repeat bottom center;
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 8px 8px 0 0;
    min-height: 210px;
}
.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/tubeengineai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
ul.vgreytick li:nth-child(1) {
    border-radius: 15px 15px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 30px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background: var(--red-clr);
    border-radius: 25px;
    padding: 8px 11px;
    display: inline-block;
}
.table-sale {
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
}
.mt-top{
    margin-top: -77px;
}
.vgreytick li.headline1 {
    background: #FFDFDF;
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #FF0000;
}
.vgreytick li.headline2 {
    background: var(--red-clr);
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
}
ul.vgreytick3 li {
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/cross2.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.close-img {
    width: 50px;
}
@media(min-width:768px){
    .table-section {
        background: url("https://cdn.oppyotest.com/launches/tubeengineai/special/table-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .tbbg3 {
        min-height: 500px;
        padding: 50px 30px 50px 30px;
        background-size: 100% 100%;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px
    }
    .table-sale {
        padding: 11px 70px;

    }
    .mt-top{
        margin-top: -79px;
    }
    ul.vgreytick3 li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .commercial1{
        padding: 8px 29px;
    }
}
/* table section end */

/* ticking sec start */
.ticking-sec{
    background: #FFF0F1;
}
.ticking-text{
     background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
/* @media (min-width:768px) {
    .ticking-sec{
        background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* ticking sec end */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: #FFF0F1;
}
.inside-text {
    background: #FF0000;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #FFF0F1 url(https://cdn.oppyotest.com/launches/tubeengineai/special/contact-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px;
    }
    .inside-text {
        border-radius: 100px;
        display: inline-block;
        padding: 11px 90px 9px 30px;
        position: relative;
    }
    .inside-text::after {
        content: url("https://cdn.oppyotest.com/launches/tubeengineai/special/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}

/* Contact Section end */

/* faq sec start */
.faq-section {
    background: #ffffff;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/faq-icon.webp) no-repeat top left;
    background-color: #fff0f169;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid var(--red-clr);
    border-radius: 20px;
}
@media (min-width: 768px){
    /* .faq-section {
        background: url(https://cdn.oppyotest.com/launches/tubeengineai/special/result-sec-bg.webp) no-repeat center center;
        background-size: cover;
    } */
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #ffffff;
    padding: 30px 0;
}
.final-text{
     background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .cta-section-white {
        background: #ffffff url(https://cdn.oppyotest.com/launches/tubeengineai/special/compare-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 80px 0px;
    }
}
/* final-call end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.footer-ul .t-decoration-none:hover {
    color: #fff;
}
@media(min-width:768px) {
    .footer-section {
        padding: 70px 0px;
    }
}

/* footer end */


/* video mute/unmute css */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mute-toggle {
    position: absolute;
    top: 13px;
    right: 8px;
    z-index: 10;
    background-color: var(--yellow-clr);
    border: none;
    border-radius: 50%;
    padding: 12px 13px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.mute-toggle:hover {
  background-color: var(--white-clr);
}



/* bttn css */
.play-btn {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red-clr);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0
    }
}
/* Button Hidden when Playing */
.hide {
    opacity: 0;
    pointer-events: none;
}

/* Play/Pause Icons */
.play-btn i {
    color: white;
    font-size: 30px;
}
.fu-frame video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
}
@media (min-width: 768px) {
     .play-btn {
        top: 50%;
    }
  .play-btn {
        /* left: 27%; */
        width: 60px;
        height: 60px;
    }
}




/* slider up start */
.bx-wrapper {
    border: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    max-width: auto !important;
}
.bx-viewport {
    position: relative !important;
}
.bxslider {
    background: transparent !important;
    color: var(--yellow-clr);
    text-align: center;
    padding: 0;
    margin: 0;
    border: 0px !important;
    font-weight: 800;
    position: relative;
}
.bxslider li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 76px;
    line-height: 32px;
    text-align: center;
}
.typing-text {
    width: 100%;
}
@media (min-width: 768px){
    .bxslider li {
        justify-content: start;
        min-width: 100%;
        float: left !important;
        width: auto !important;
    }
    .typing-text {
        color: var(--yellow-clr);
    /* width: 540px; */
            width: 530px;
}
}
/* slider up end */