
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;
    --red-clr:#FC0013;
    --red-clr1:#FF3637;
    --red-clr2:#FF361D;
    --red-clr3:#FF5E4A;
    --yellow-clr: #F8D13E;
    --green-clr: #64FE4B;
    --green-clr1: #3CB006;


    --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);
    --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)} 

/* 
.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 #000000;
    border-radius: 10px;
    padding: 0px;
}

.cta-btn-bg {
    background: url('https://cdn.oppyotest.com/launches/aitubestar/special/cta-btn-border.webp') no-repeat center center; 
    background-size: cover; 
    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 {
        padding: 30px;
        border-radius: 10px;
    }
}
/*  */



/* header section start */

/* sticky bar start */

.fixed-top-bar {
    background: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99
}
.fixed-top-bar a {
    font-size: 18px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #000000;
    background: var(--theme-clr);
    border-radius: 5px 5px 5px 5px;
    padding: 12px 9px 12px;
    text-decoration: none;
}
.fixed-top-bar a:hover {
    transition: all .3s ease;
    background: var(--theme-clr-1);
    color: var(--black-clr) !important;
}

/* 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;
}


.header-sec{
    background: #0a0708;
    position: relative;
}
.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;
    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-radius: 15px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/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/aitubestar/special/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
@media(min-width:768px){
    .header-sec{
        background: #0a0708 url("https://cdn.oppyotest.com/launches/aitubestar/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .main-heading{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/main-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px;
        border: unset;
        border-radius: unset;
    }
    .header-ul li {
        padding: 0px 0px 30px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(https://cdn.oppyotest.com/launches/aitubestar/special/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/aitubestar/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 115px;
    }
    .theme-btn:hover {
        transform: scale(1.04);
    }
    .green-frame{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/green-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 8px;
    }
}
/* header section end */

/* step sec start */
.step-sec{
    background: #fecbcf;
}
.neon-text{
    background: #C3FF6E;
    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/aitubestar/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/aitubestar/special/step-card-1.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-2{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/step-card-2.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-3{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/step-card-3.webp") no-repeat;
        background-size: 100% 100%;
    }
}
/* step sec end */

/* cta btn section start */
.cta-section {
    background: #0b0809;
}
.cta-btn-border {
    /* border: 3px dashed #FFFFFF4D; */
    border-radius: 10px;
    padding: 0px;
}
.cta-btn-bg {
    background: #0b0909;
    padding: 20px 10px;
    border-radius: 10px;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 28px;
    font-size: 22px;
    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);
}
.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/aitubestar/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .cta-text{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
    .cta-btn-border {
        border-radius: 13px;
        padding: 0px;
    }
    .cta-btn-bg {
        background: url('https://cdn.oppyotest.com/launches/aitubestar/special/cta-btn-border.webp') no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 23px;
        border-radius: 10px;
    }
    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 */

/* youtube-sec start */
.youtube-sec{
    background: var(--white-clr);
}
.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: #C3FF6E;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
/*  */
    .chatbot-box-1 {
        background: #FF7879;
        padding: 20px 5px;
        border-radius: 15px;
    }
   
    .chatbot-box-2 {
        background: #6BB22D;
        padding: 20px 5px;
        border-radius: 15px;
    }
     .chatbot-box-2 video {
        object-fit: contain;
        min-height: 180px;
     }
    .white-text{
        background: #FDFFFC;
        display: inline-block;
        border-radius: 10px;
        padding: 8px 15px;
    }
@media (max-width: 767px) {
    .chatbot-box-1 img{
        max-width: 150px;
    }
}
@media (min-width: 768px) {
    .youtube-sec {
        background: #fff url(https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/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/aitubestar/special/vs-img.webp");
        top: 45%;
        right: -47px;
    }
    .chatbot-box-2 {
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/chatbot-box-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px 20px 24px 30px;
        /* border-radius: 0px 20px 20px 0px; */
    }
    .chatbot-box-2 video{
        object-fit: contain;
        min-height: 409px;
     }
}
/* youtube-sec end */

/* profit-sec start */
.profit-sec{
    background: #050303;
}
.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: #050303 url(https://cdn.oppyotest.com/launches/aitubestar/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: #FFF0F1;
}
.channel-text{
    background: #C3FF6E;
    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;
}
@media (min-width: 768px) {
    .channel-sec {
        background: #FFF0F1 url(https://cdn.oppyotest.com/launches/aitubestar/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-sec end */

/* future-sec start */
.future-sec{
    background: #FFF1EC;
}
.future-text {
    background: #C3FF6E;
    border: 2px dashed #8FDA27;
    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/aitubestar/special/fu-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
    position: relative
}
@media (min-width: 768px) {
    .future-sec{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/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 */

/* ultimate-sec start */
.ultimate-sec{
    background: linear-gradient(180deg, #150207 0%, #810104 16.83%, #FF9866 24.52%, #FFF0DD 37.02%, #FFF0DD 64.43%, #FF9866 78.85%, #810104 87.99%, #150207 100%);
}
.ultimate-text {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 3px dashed #140207;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 15px;
}
.features-card-1 {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 15px;
}
.features-card-2 {
    background: #FC0013;
    border-radius: 20px;
    padding: 20px 15px;
}
@media (min-width: 768px) {
    .ultimate-sec{
        background: #150207 url("https://cdn.oppyotest.com/launches/aitubestar/special/ultimate-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .ultimate-text {
        padding: 10px 30px;
    } 
    .features-card-1, .features-card-2 {
        padding: 30px;
        border-radius: 30px;
    }
}
/* ultimate-sec end */

/* without-sec start */
.without-sec{
    background: #fff0f0;
}
.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: #fff0f0 url(https://cdn.oppyotest.com/launches/aitubestar/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: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #FFFFFF 100%);
}
.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/aitubestar/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;
    }
@media (min-width: 768px) {
    .final-sec {
        background: #FFFFFF url("https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/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/aitubestar/special/final-sad-emoji.webp");
        position: absolute;
        top: -50px;
        right: -25px;
    }
}
/* final sec end */

/* viral-sec start */
.viral-sec{
    background: #fff0f0;
}
.viral-text, .viral-text-1{
    background: #C3FF6E;
    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/aitubestar/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/aitubestar/special/cash-icon.webp");
        position: absolute;
        top: -25px;
        right: -60px;
    }
    .viral-box{
        gap: 20px;
        padding: 20px;
    }
}
/* viral-sec end */

/* choice sec start */
.choice-sec{
    background: #fff;
}
.choicebox-1{
    background: #FF5E4A;
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.choicebox-2{
    background: #3CB006;
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    height: 100%;
}
.choicetext-1{
    background: #FFFFFF;
    padding: 15px 82px;
    display: inline-block;
    border-radius: 100px;
}
.choise-list, .choise-list-1{
    background: #FFFFFF;
    padding: 12px 15px 20px !important;
    border-radius: 10px;
}
.choise-list li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/aitubestar/special/choice-cross.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.choise-list-1 li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/aitubestar/special/choice-right.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.choise-list li:nth-last-child(1), .choise-list-1 li:nth-last-child(1){
    background: none;
    background-position: unset;
}
@media (min-width: 768px) {
    .choice-sec{
        background: #e9f5fe url("https://cdn.oppyotest.com/launches/aitubestar/special/choice-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .choicebox-1{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/choicebox-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 10px 84px;
        box-shadow: none;
    }
    .choicebox-2{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/choicebox-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 10px 85px;
        box-shadow: none;
    }
}
/* choice sec end */

/* warning section start */
.warning-section{
    background: #FBE9E2;
}
.warning-card{
    background: #fff;
    border: 5px dotted #FF361D;
    border-radius: 20px;
    padding: 0px 10px 10px;
}
.warning-shape{
    background: #FF361D;
    border-radius: 41px;
    padding: 0px 36px 8px;
    display: inline-block;
    margin-top: -20px;
}
@media (min-width: 768px) {
    .warning-section{
        background: #FBE9E2 url(https://cdn.oppyotest.com/launches/aitubestar/special/warning-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .warning-card{
        padding: 0px 50px 50px;
        position: relative;
    }
    .warning-shape{
        margin-top: -40px;
    }
}
/* warning section end */

/* gold-sec start */
.gold-sec{
    background: #ffffff;
}
.gold-text{
   background: #C3FF6E;
    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/aitubestar/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/aitubestar/special/star-list.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 55px;
}
.star-text-2{
    background: #C3FF6E;
    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/aitubestar/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/aitubestar/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: #C3FF6E;
    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/aitubestar/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: #070002;
}

.freelancer-text{
    background: #C3FF6E;
    border: 2px dashed #FFFFFF;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
}
.freelancer-text-1{
    background: #FA0113;
    border: 2px dashed #FFFFFF;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .freelancer-sec {
        background: #070002 url(https://cdn.oppyotest.com/launches/aitubestar/special/freelancer-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text{
        padding: 0px 31px;
    }
    .freelancer-sec-1 {
        background: #070002 url(https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/special/think-emoji-1.webp");
        top: -5px;
        right: -25px;
    }
}
/* freelancer-sec end */

/* expensive-section start */
.expensive-section{
    background: linear-gradient(180deg, #FFF1F1 0%, #FFF1F1 97.68%);
}
.expensive-text{
    background: #FC0113;
    border-radius: 8px;
    border: 2px dashed #FFFFFF;
    display: inline-block;
    padding: 0 10px;
}
.ex-card {
    background: #FFF1F1;
    border: 1px solid #FC0113;
    border-radius: 20px;
    padding: 20px 15px;
}
@media(min-width:768px){
    .expensive-section{
        background: url(https://cdn.oppyotest.com/launches/aitubestar/special/expensive-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 120px 0 137px;
    }
    .ex-sec{
        padding: 50px 0 100px;
    }
    .expensive-text{
        padding: 0 42px 0 18px;
        position: relative;
    }
   .expensive-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aitubestar/special/think-emoji.webp");
        top: -22px;
        right: -25px;
    }
    .ex-card {
        padding: 50px 29px;
    }
}
/* expensive-section end */

/* not-anymore-sec start */
.not-anymore-sec{
   background: #C3FF6E33;
}
.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: #C3FF6E;
    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/aitubestar/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/aitubestar/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/aitubestar/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/aitubestar/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/aitubestar/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/aitubestar/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/aitubestar/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: #C3FF6E;
    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 {
    border-radius: 15px;
    background: #fff;
    backdrop-filter: blur(20px);
    border: double 1px var(--red-clr);
    display: flex;
    padding: 15px 10px;
    gap: 15px;
    align-items: center;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/aitubestar/special/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/aitubestar/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: #fff0f0;
}
.rest-text{
    background: #C3FF6E;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .rest-sec{
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/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: #ffffff;
}
.earning-text{
    background: #C3FF6E;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .earning-text{
        padding: 14px 113px 14px 27px;
        position: relative;
    }
    .earning-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aitubestar/special/earning-icon.webp");
        top: 15px;
        right: -51px;
    }
}
/* earning-sec end */

/* crazy sec start */
.crazy-sec{
    background: #fff;
}
.crazy-text{
   background: #C3FF6E;
    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/aitubestar/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/aitubestar/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/aitubestar/special/everyone-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .everyone-text{
        padding: 12px 25px;
    }
}
/* everyone 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/aitubestar/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/aitubestar/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;
}
@media (min-width:768px) {
    .compare-section{
        background: url("https://cdn.oppyotest.com/launches/aitubestar/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
    
}
@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/aitubestar/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/aitubestar/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: #0c1d23;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/aitubestar/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/aitubestar/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;
}
@media (min-width:768px) {
    .moneyback-sec{
        /* background: #090317 url("https://cdn.oppyotest.com/launches/aitubestar/special/moneyback-bg.webp") no-repeat center center; */
        background: #0a0708 url("https://cdn.oppyotest.com/launches/aitubestar/special/faceless-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .moneyback-h {
        padding: 0px 20px;
    }
}
/* moneyback sec end */

/* table section start */
.table-section {
    background: #fff;
}
.table-text{
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
.tablebox2 {
    background: #fff;
    width: 100%;
    float: left;
    border-radius: 10px;
    border: 1px solid #232323;
}
.tbbg2 {
    background: url("https://cdn.oppyotest.com/launches/aitubestar/special/white-table.webp") no-repeat center center;
    background-size: cover;
    padding: 50px 30px 30px 30px;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}
ul.vgreytick {
    padding: 0;
}
.tablebox2 ul {
    padding-left: 0;
    color: #010101;
}
ul.vgreytick li {
    background: url(https://cdn.oppyotest.com/launches/aitubestar/special/vgreytick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
}
ul.cross-ul li {
    background: url(https://cdn.oppyotest.com/launches/aitubestar/special/cross.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
}
.tablebox2 ul.vgreytick li:nth-child(even) {
    background-color: #a19fff45;
}
.tablebox2 ul.vgreytick li:nth-child(15) {
    background-color: #a19fff45;
}
.tablebox3 ul.vgreytick li:nth-child(odd) {
    background-color: #FFF0F1;
}
/* ul.cross-ul li:nth-child(1) {
    background-color: #e6e5ff ;
} */
ul.cross-ul li:nth-child(1) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(2) {
    background-color: #ffffff !important;
}
ul.cross-ul li:nth-child(3) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(4) {
    background-color: #ffffff !important;
}
ul.cross-ul li:nth-child(5) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(6) {
    background-color: #ffffff !important;
}
.tablebox3 {
    width: 100%;
    float: left;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    border: 1px solid #232323;
    padding-bottom: 20px;
    /* background-color: #080E20; */
   
}
.tbbg3 {
    /* background: #080E20; */
    background: url("https://cdn.oppyotest.com/launches/aitubestar/special/table-frame.webp") no-repeat bottom center;
    background-size: cover;
    padding: 11px 30px;
    background-size: 100% 100%;
    border-radius: 10px 10px 0 0;
    min-height: 250px;
}
ul.vgreytick li:nth-child(even) {
    background-color: #fff;
}

.myfeatureslast{
    background: #fff;
    border-radius: 0 0 9px 9px;
}
.table-sale{
    background: var(--green-clr);
    border-radius: 48px;
    padding: 2% 5%;
    display: inline-block;
}
.vgreytick li.headline {
    background: linear-gradient(90deg, #F8D13E 0%, #FF6A00 100%);
    padding: 20px 0px 20px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}
.br-sec{
    border: 1px solid #43C5ED;
    border-radius: 10px;
}
.table-border-content {
    background: #fff;
    border: 3px dashed #999;
    max-width: 95%;
    margin: 0 auto;
    height: auto;
    overflow: auto;
    padding-bottom: 10px;
}
.tb-check {
    background: #FEFE9B;
    padding: 18px 18px 18px 10px;
}
@media (min-width: 768px){
    .tbbg2 {
        padding: 50px 30px 0px 30px;
        background-size: 100% 100%;
        border-radius: 10px 10px 0 0;
        min-height: 294px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    ul.cross-ul li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .tablebox3 {
        padding-bottom: 40px;
        border-radius: 30px;
    }
    .tbbg3 {
        padding: 25px 30px 25px 30px;
        background-size: 100% 100%;
        border-radius: 10px 10px 0 0;
        min-height: 550px;
    }
    .table-border-content {
        max-width: 80%;
    }
}
/* 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/aitubestar/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* ticking sec end */

/* inside-sec start */
.inside-section {
    background: #ffffff;
}
/* inside-sec end */

/* faq sec start */
.faq-section {
    background: #FFF0F1;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/aitubestar/special/faq-icon.webp) no-repeat top left;
    background-color: #ffffff;
    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/aitubestar/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/aitubestar/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);*/
/*}*/

/* =====video play pause========== */

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper .video {
  width: 100%;
  height: auto;
  display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff000075;
    border: 2px solid white;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* transition: opacity 0.3s ease; */
    opacity: 1; /* Default visible */
}

.play-btn:hover {
  background: rgb(255 0 0);
  font-size: 28px;
  transform: translate(-50%, -50%) scale(1.1);
}