html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #010101;
    font-size: 14px;
    overflow-x: hidden;
}
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;
}

/* font-family */
.caveat{
    font-family: "Caveat", system-ui;
}
.zen{
    font-family: "Zen Dots", sans-serif;
}
.italic {
    font-style: italic;
}
.oswald{
     font-family: "Oswald", sans-serif;
}
/* font-family */

:root {
    --black-clr:#000000;
    --white-clr: #fff;
    --light-grey: #0101014D;
    --light-white: #01010199;
    --light-white1: #01010166;
    --light-white2: #FFFFFF99;
    --light-white3: #FFFFFF66;
    --light-white4: #02020299;
    --blue-clr:#38A4FF;
    --blue-clr1:#3A6FFF;
    --orange-clr: #FF8114;
    --red-clr: #E30613;
    --red-clr1: #F0202D;
    --red-clr2: #FF4646;
    --red-clr3: #FF5E4A;
    --green-clr:#30CA05;
    --green-clr1:#26AF00;
    --green-clr2:#28B800;
    --pink-clr:#EB00D0;
    --purple-clr:#C58EFF;
    --grey-clr:#555555;
    --yellow-clr: #E3AF06;
    --yellow-clr1: #FFD341;
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);
    --theme-clr: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);

    /* --theme-gradient1: linear-gradient(90deg, #AC2FFF 31.86%, #FF4F70 101.83%);
    --theme-gradient2: linear-gradient(175deg, #FF4F70 21.76%, #A020F0 80.53%, #4A00FF 144.53%); */

}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
/* .light-white1 {
    color: #ffffff99;
} */
.light-grey{color: var(--light-grey);}
.light-white{color: var(--light-white);}
.light-white1{color: var(--light-white1);}
.light-white2{color: var(--light-white2);}
.light-white3{color: var(--light-white3);}
.light-white4{color: var(--light-white4);}
.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.orange-clr{color:var(--orange-clr);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.pink-clr{color:var(--pink-clr);}
.yellow-clr{color:var(--yellow-clr);}
.yellow-clr1{color:var(--yellow-clr1);}
.grey-clr{color:var(--grey-clr);}
.purple-clr{color:var(--purple-clr);}

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr1{
    background: var(--theme-gradient2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-clr1 {
    background: linear-gradient(180deg, #E30613 0%, #FFF2F2 106.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-br {
    border-bottom: 4px solid transparent;
    border-image: var(--theme-gradient);
    border-image-slice: 1;
    width: 100%;
}

/* 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;
    }
    .mt-md118{
        padding-top: 118px;
    }
}

/* 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;
}

/* cta-border-sec start */
.cta-btn-bg {
    background: linear-gradient(90.41deg, #064200 4.59%, #333300 99.83%);
    border: 5px dotted #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
}
.cta-btn-border {
    /* border: 3px dashed #000000; */
    border-radius: 10px;
    padding: 0px;
}
@media (min-width: 768px) {
    .cta-btn-bg {
        background: url(..//images/cta-btn-border.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 25px;
        border-radius: 20px;
        border: unset;
        border-radius: unset;
    }
    .cta-btn-border {
        border-radius: 33px;
        padding: 0px;
    }
}
/* cta-border-sec end */

/* bttn css */
.play-btn{
    position:absolute;
    top:80%;
    left:50%;
    transform:translate(-50%, -50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:var(--green-clr1);
    backdrop-filter: blur(6px);

    transition:all 0.3s ease;

    /* pulse animation */
    animation:pulse 2s infinite;
}

/* pulse glow */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 var(--green-clr1);
    }
    70%{
        box-shadow:0 0 0 15px rgba(128,0,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(128,0,255,0);
    }
}

/* hover zoom */
.play-btn:hover{
    transform:translate(-50%, -50%) scale(1.2);
}

/* icon rotate animation */
.play-btn i{
    transition: transform 0.4s ease;
}

.play-btn i.fa-pause{
    transform: rotate(180deg);
}

/* ripple background */
.play-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    animation:ripple 2s infinite;
    z-index:-1;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(2);
        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;
} */
 .explore-box {
    border-radius: 10px;
    position: relative;
}

@media (min-width: 768px) {
     .play-btn {
        top: 50%;
    }
  .play-btn {
        /* left: 27%; */
        width: 60px;
        height: 60px;
    }
        .explore-box {
        border-radius: 10px;
        /* height: 100%; */
    }
}

/* sticky bar start */
.fixed-top-bar {
    background: var(--red-clr);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    z-index: 99;
    text-transform: lowercase;
}

.fixed-top-bar a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    background: var(--white-clr);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 9px 10px;
    text-decoration: none;
    animation: blink 1.5s linear infinite;
}
@keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
 }
/* stick bar end */

/* header section start */

.theme-btn {
    background: var(--red-clr1);
    border: 4px solid var(--red-clr1);
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
    padding: 12px 9px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s linear;
    background-size: 100% 100%;
}
.theme-btn:hover {
    transition: all .3s linear;
    transform: scale(1.03);
}

.header-sec{
    background: linear-gradient(180deg, #FFFFFF 24.28%, #E30613 621.67%);
    padding: 30px 0px;
}
.main-text {
    background: var(--red-clr);
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}

.int-box {
    background: #FFB528;
    border-radius: 0px 0px 20px 30px;
    display: inline-block;
    padding: 10px;
}

.pre-head {
    padding: 10px 10px;
    background: #E306131A;
    border: 1px solid #E3061380;
    /* backdrop-filter: blur(25px); */
    border-radius: 10px;
    display: inline-block;
}
/* .main-heading {
    background: linear-gradient(181.37deg, rgba(112, 0, 0, 0.2) 1.06%, rgba(112, 0, 0, 0.2) 98.73%);
    border: 2px solid #DB3C3B;
    border-radius: 20px;
    padding:0px 10px 10px;
} */
.video-box {
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/video-frame.webp) no-repeat;
    background-size: 100% 100%;
    border-radius: 15px;
    padding: 30px;
}
.payment-box{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    border: 3px solid #FFFFFF;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    padding: 10px;
    border-radius: 10px;
}
.header-ul{
    padding: 20px 10px;
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/ul-box.webp);
    background-size: 100% 100%;
    /* border: 2px solid #FFFFFF4D; */
    /* backdrop-filter: blur(15px);
    box-shadow: 0px 10px 20px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    /* border-radius: 20px; */
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/tick.webp") no-repeat;
    background-position: 0px 1px;
    padding: 0px 0px 15px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.red-frame{
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.Exclusive-text{
    background: #250103;
    border: 1px dashed #E30613;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    border-radius: 20px;
    padding: 10px;
}
.green-price {
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/green-price.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.month-text{
    background: var(--red-clr);
    border-radius: 100px;
    padding: 2px 6px;
}
.post-head{
    background: #FFFFFF;
    border: 1px solid #E3061380;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}

.booking-box{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    padding: 11px 30px 20px;
}
.mq-outer{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:16px 0;
}

.mq-track{
    display:flex;
    align-items:center;
    gap:20px;
    width:max-content;
    animation:marquee 20s linear infinite;
    will-change:transform;
}

@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.mq-item{
    flex:0 0 auto;
    width:70px;
    height:70px;
    border-radius:16px;
    overflow:hidden;
}

.mq-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
        .main-text {
        padding: 10px 26px 15px;
    }
    .pre-head {
        padding: 10px 20px;
    }
        .int-box {
        padding: 10px 28px 15px;
    }
    /* .main-heading {
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 43px 40px 56px;
        border-radius: unset;       
        border: unset;
        box-shadow: unset;
    } */
    /* .typing-text {
        padding: 12px 24px;
        width: 835px;
    } */
    .post-head{
        padding: 10px 20px;
}
    .green-price {
        padding: 0px 8px;
    }
    .header-ul{
        padding: 40px 20px;
    }
    .header-ul li{
        padding: 0px 0px 30px 37px;
    }
    .payment-box{
        padding: 70px 106px;
        border-radius: 50px;
    }
    .theme-btn {
        padding: 25px 60px;
    }
    .Exclusive-text{
        padding: 20px 25px;
    }
}
/* header section end */

/* videos section start */
.videos-sec{
    background: #ffffff;
}

.video-box1{
    background: linear-gradient(180deg, #000000 0%, #690309 100%);
    box-shadow: 0px 0px 30px 0px #DF0613 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
}

@media(min-width:768px){
    .videos-sec{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/videos-bg.webp) no-repeat;
    background-size: cover;
}
    .video-box1{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/video-box1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 40px 105px;
    box-shadow: unset;
    border-radius: unset;
}

}

/* videos section end */

/* choose section start */
.choose-sec{
    background: #FFF2F2;
    padding: 30px 0px;
}
.google-box{
    background: #FFFFFF;
    border: 1px solid #0000004D;
    display: inline-block;
    border-radius: 30px;
    padding: 30px;
}
.search-box{
    background: #F0F0F0;
    padding: 15px 80px 15px 15px;
    border-radius: 10px;
}
.visora-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/visora-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 30px;
}
.ai-box{
    background: #26AF00;
    border-radius: 100px;
    padding: 7px 13px;
    display: inline-block;
}
.choose-red-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/choose-red-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}
.choose-green-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/choose-green-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.choose-box{
    background: #212121;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
}

@media(min-width:768px){
    .choose-sec{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/choose-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 168px 0px 100px;
}
.mt-md250{
    margin-top: 250px !important;
}
.choose-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/choose-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 40px 74px;
    border-radius: unset;
}
.choose-red-box{
    padding: 30px 56px;
}
.choose-green-box{

    padding: 30px 24px;
}
}

/* choose section end */

/* btn-sec start */
.cta-section {
   background: linear-gradient(180deg, #000000 0%, #690309 100%);
    position: relative;
    perspective: 1000px;
    padding: 30px 0px;
}
.cta-box{
    background: #0B0001;
    border: 3px solid #E3AF06;
    border-radius: 50px;
    padding: 20px;
}

@media (min-width: 768px) {
    .cta-section {
        /* background: #000000 url(https://cdn.oppyotest.com/launches/visoraai/special/cta-bg.webp) no-repeat center center;
        background-size: cover; */
        padding: 70px 0px;
    }
    .cta-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/cta-box.webp) no-repeat;
    background-size: 100% 100%;
    border: unset;
    border-radius: unset;
    padding: 30px 40px;
}
}
/* btn-sec end */

/* Published section start */
.published-sec{
    background: #ffffff;
}
.published-text{
    background: #26AF001A;
    border: 1px solid #26AF0080;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.published-box{
    background: #E306131A;
    border: 1px solid #E3061380;
    border-radius: 10px;
    display: inline-block;
    padding: 15px 40px;
}

/* Published section end */

/* Way section start */
.way-sec{
    background: #FFF2F2;
}
.way-box1{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/way-box1.webp) no-repeat;
    background-size: 100% 100%;
    /* display: inline-block; */
    padding: 15px;
}
.way-box2{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/way-box2.webp) no-repeat;
    background-size: 100% 100%;
    /* display: inline-block; */
    padding: 15px;
}
.way-ul li{
    list-style: none;
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/tick1.webp) no-repeat;
    background-position: 0px 1px;
    padding: 0px 0px 15px 37px;
}
.way-ul1 li{
    list-style: none;
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/cross-icon1.webp) no-repeat;
    background-position: 0px 1px;
    padding: 0px 0px 15px 37px;
}
.green-box-choose{
    background: #26AF00;
    border-radius: 100px;
    display: inline-block;
    padding: 12px 54px;
}
.red-box-choose{
    background: #E30613;
    border-radius: 100px;
    display: inline-block;
    padding: 12px 54px;
}

@media (min-width: 768px) {
    .way-ul li {
        padding: 0px 0px 30px 50px;
    }
    .way-ul1 li {
        padding: 0px 0px 30px 50px;
    }
    .green-box-choose{
        position: relative;
    }
    .red-box-choose{
        position: relative;
    }
    .green-box-choose::after {
        content: url(https://cdn.oppyotest.com/launches/visoraai/special/happy-emoji.webp);
        position: absolute;
        top: 3px;
        left: -30px;
    }
    .red-box-choose::after {
        content: url(https://cdn.oppyotest.com/launches/visoraai/special/sad-emoji.webp);
        position: absolute;
        top: 3px;
        left: -30px;
    }
    .way-box1{
    padding: 0px 50px 50px 50px;
}
.way-box2{
    padding: 0px 50px 50px 50px;
}
}

/* Way section end */

/* Winners section start */
.winner-sec{
    background: #FFFFFF;
}
.w-box{
    background: #FFFFFF;
    border: 1px solid #0000004D;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.w-box1{
    background: linear-gradient(180deg, #000000 0%, #0D3B00 100%);
    border: 1px solid #26AF00;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px){
    .winner-sec{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/winner-bg.webp) no-repeat center center;
    background-size: cover;
    }
    .w-box{
    padding: 30px 12px;
}
    .w-box1{
    padding: 19px 12px 30px;
}

}

/* Winners section end */

/* formula section start */
.formula-sec{
    background: #FFF2F2;
}
.formula-box{
    background: #FFFFFF;
    border-radius: 20px;
    display: inline-block;
    padding: 34px 59px;
    box-shadow: 0px 0px 20px #ff0000b2;
}
.formula-border{
    border-top: 1px solid #0000004D;
    border-bottom: 1px solid #0000004D;
    padding: 10px;
}
@media (min-width: 768px){
    .red-arrow{
        position: relative;
    }
.red-arrow::after {
    content: url(https://cdn.oppyotest.com/launches/visoraai/special/red-arrow.webp);
    position: absolute;
    top: -160px;
    right: -150px;
}
.formula-border{
    border-left: 1px solid #0000004D;
    border-right: 1px solid #0000004D;
    border-top: unset;
    border-bottom: unset;
    /* padding: 30px; */
}
}
/* formula section end */

/* paid section start */
.paid-sec{
    background: #FFFFFF;
}
.paid-box1{
    background: #FFFFFF;
    border: 1px solid #E30613;
    box-shadow: 0px 0px 10px 0px #00000040;
    border-radius: 10px;
    padding: 30px 20px;
}
.paid-box2{
    background: #282828;
    border: 3px solid #E30613;
    box-shadow: 0px 0px 10px 0px #00000040;
    border-radius: 10px;
    padding: 30px 20px;
}
.paid-grey{
    background: #F3F2F2;
    border-radius: 5px;
    padding: 10px 31px;
}
.paid-grey1{
    background: #414141;
    border-radius: 5px;
    padding: 10px 31px;
}
.paid-box3{
    background: #F4F4F4;
    border-radius: 20px;
    display: inline-block;
    padding: 30px;
}

.paid-bg-box{
    background: #26AF001A;
    border: 1px solid #26AF0080;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}

/* paid section end */

/* Services section start */
.service-sec{
    background: #000000;
}
.service-box{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #E30613;
    border-radius: 10px;
    border-bottom: unset;
    display: inline-block;
    padding: 20px;
}
.service-bg-box{
    background: #E30613;
    border-radius: 10px;
    display: inline-block;
    padding: 10px 15px;
}

@media (min-width: 768px){
    .service-sec{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/service-bg.webp) no-repeat center center;
    background-size: cover;
}
.service-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/service-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 40px 75px 32px;
    border: unset;
    border-radius: unset;
}
}

/* Services section end */

/* Market section start */
.market-sec{
    background: #ffffff;
}
.s-box{
    background: #FFFFFF;
    border: 1px solid var(--red-clr);
    border-radius: 20px;
    padding: 25px 40px;
}
.s-box1{
    background: linear-gradient(180deg, #000000 0%, #0D3B00 100%);
    border: 1px solid #26AF00;
    border-radius: 20px;
    padding: 25px 65px;
}
.market-box{
    background: #F4F4F4;
    border-radius: 20px;
    padding: 10px;
}
@media (min-width: 768px){
    .market-box{
    padding: 40px 240px;
}
}
/* Market section end */

/* opportunity-sec-start */
.opportunity-sec{
    background: #FFF2F2;
}
.opportunity-box{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px solid #E30613;
    border-radius: 30px;
    padding: 0px 20px 20px 20px;
}
.opportunity-text{
    background: #E30613;
    border-radius: 0px 0px 30px 30px;
    display: inline-block;
    padding: 10px 20px;
}
.ob-text{
    background: #E306131A;
    border: 1px solid #E3061380;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
}
.ob-text1{
    background: #E306131A;
    border: 1px solid #E3061380;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}
.payment-line {
    background: #282828;
    padding: 14px;
}
.payment-line1 {
    background: #E30613;
    padding: 25px;
}
@media (min-width: 768px){
    .opportunity-sec{
        background: url(https://cdn.oppyotest.com/launches/visoraai/special/opportunity-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .opportunity-box{
        background: url(https://cdn.oppyotest.com/launches/visoraai/special/opportunity-box.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 50px 50px 50px;
        border: unset;
        border-radius: unset;
    }
    .opportunity-text{
        padding: 20px 50px 25px 50px;
    }
    .payment-line {
    padding: 30px;
}
}
/* opportunity-sec-end */










/* presenting-sec start */
.presenting-sec{
    background: #000000;

}
.presenting-head{
   background: #E3061333;
    border: 1px solid #E30613;
    border-radius: 30px;
    display: inline-block;
    padding: 10px;
}
.presenting-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/presenting-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}

@media (min-width: 768px) {
    .presenting-sec{
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 100px;
    }
    .presenting-head{
        padding: 11px 50px;
        border-radius: 100px;
    }
    .presenting-box{
    padding: 50px 130px 30px;
    }
}
/* presenting-sec end */

/* step-2 sec start */

.step-section {
    background: #ffffff;
}
.step-text{
    background: var(--red-clr);
    display: inline-block;
    border-radius: 100px;
    padding: 10px;
}
.step-box{
    background: #FFF3F3;
    border: 3px solid #E30613;
    /* display: inline-block; */
    border-radius: 50px;
    padding: 20px;
}

@media (min-width: 768px) {
    .step-text{
    padding: 20px 50px 25px;
}
.step-box{
    padding: 50px 40px;
}
}
/* step-2 sec end */


/* demo section start */
.demo-sec{
   background: #FFF2F2;
}
.demo-text{
    background: var(--theme-clr);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
.border-frame {
    background: #151515;
    border: 2px solid var(--red-clr);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/visoraai/special/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 50px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 100px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }

}
/* demo section end */
/* features section start */
.feature-sec{
    background: #000000;
}
.feature-box{
    background: #242424;
    border: 3px solid #5C5C5C;
    border-radius: 10px;
    padding: 20px;
}
.feature-box1{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px;
}

@media (min-width:768px) {
   .feature-sec{
       background: url("https://cdn.oppyotest.com/launches/visoraai/special/feature-bg.webp") no-repeat top center;
       background-size: cover;
   }
   .feature-box{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/feature-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 50px 40px;
    border-radius: unset;
    border: unset;
}
.feature-box1{
    padding: 50px 40px;
}
.feature-line{
    position: relative;
}
.feature-line::after {
    content: url(https://cdn.oppyotest.com/launches/visoraai/special/feature-line.webp);
    position: absolute;
    left: -139px;
    bottom: -30px;
}
.feature-line1{
    position: relative;
}
.feature-line1::before {
    content: url(https://cdn.oppyotest.com/launches/visoraai/special/feature-line1.webp);
    position: absolute;
    right: -30px;
    top: -50px;
}

}
/* features section end */

/* Opportunity-sec-start */
.real-sec{
    background: #FFFFFF;
}

@media(min-width:768px){

}
/* streams-sec-end */

/* income sec start */
.income-sec{
    background: #FFF2F2;
}
.income-text{
    background: #E30613;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

.income-box{
    background: #FFFFFF;
    border: 1px solid #0000004D;
    border-radius: 20px;
    padding: 20px;
}
.untapped-box{
    background: #212121;
    border-radius: 20px;
    display: inline-block;
    padding: 20px;
}

@media (min-width: 768px) {
    .income-sec{
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/income-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .income-text{
    padding: 25px 50px;
}
.untapped-box{
    padding: 30px 68px;
}
}
/* income sec end */

/* everyone sec start */
.everyone-sec{
    background: #FFF2F2;
}
.everyone-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    display: inline-block;
    padding: 10px;
    border-radius: 30px;
}
.everyone-box{
    background:linear-gradient(180deg, #000000 0%, #690309 100%);
    border: 1px solid #DB3C3B;
    border-bottom: 5px solid #DB3C3B;
    /* display: inline-block; */
    border-radius: 20px;
    padding: 30px 25px 40px;
}
@media (min-width: 768px) {
    /* .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/everyone-bg.webp") no-repeat center center;
        background-size: cover;
    } */
    .everyone-text{
        padding: 7px 40px;
        border-radius: 100px;
    }
}
/* everyone sec end */

/*compare section start*/
.compare-section{
    background: #FDF6F4;
}
.choicebox-1{
    background: #FFF4F4;
    border: 2px solid #FF3D3D80;
    border-bottom: 10px solid #FF3D3D80;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicebox-2{
    background: #F1FFED;
    border: 2px solid #26AF0080;
    border-bottom: 10px solid #26AF0080;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicetext-1 {
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/choicetext-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choicetext-2{
     background: url("https://cdn.oppyotest.com/launches/visoraai/special/choicetext-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choise-list{
    background: #ffffff;
    border: 1px solid #FF000033;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list-1{
    background: #ffffff;
    border: 1px solid #21AF2133;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/choice-cross.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list-1 li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/visoraai/special/choice-right.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list li:nth-last-child(1), .choise-list-1 li:nth-last-child(1){
    border: unset;
    padding-bottom: 0px;
}
.choise-list li, .choise-list-1 li{
    position: relative;
}
.choise-list li::after {
    position: absolute;
    content: "";
    background: #FF000033;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list-1 li::after {
    position: absolute;
    content: "";
    background: #21AF2133;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list li:last-child::after,
.choise-list-1 li:last-child::after {
    background: none;
    content: none; 
}

.choicebox-inner-text-1{
    background: #FFFFFF;
    border: 1px solid #FF3D3D;
    border-radius: 70px;
    padding: 10px 9px;
    display: inline-block;
}
.choicebox-inner-text-2{
    background: #FFFFFF;
    border: 1px solid var(--green-clr1);
    border-radius: 70px;
    padding: 10px 20px;
    display: inline-block;
}
.c-green-box {
    background: #1AB400;
    /* border: 6px solid #E6FFC7; */
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF373C;
    /* 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/visoraai/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
        .choicebox-1{
        padding: 40px 40px 30px;
        border-radius: 40px;
    }
    .choicebox-2{
        padding: 40px 30px 30px;
        border-radius: 40px;
    }
    .choicetext-1{
        padding: 16px 65px 36px;
        border-radius: unset;
        display: inline-block;
    }
    .choicetext-2{
        padding: 16px 65px 36px;
        border-radius: unset;
        display: inline-block;
    }
    .choicebox-inner-text-1{
        padding: 16px 30px;
    }
    .choicebox-inner-text-2{
        padding: 16px 30px;
    }
    .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 */

/* offer-sec start */
.offer-sec{
    background: #E30613;
    padding: 30px 0px;
}
.offer-box{
    background: #FFFFFF;
    border: 1px solid var(--red-clr);
    border-radius: 20px;
    padding: 20px;
}
.offer-box1{
    background: linear-gradient(180deg, #000000 0%, #0D3B00 100%);
    border: 1px solid #26AF00;
    border-radius: 20px;
    padding: 20px;
}

@media (min-width:768px){
    .offer-sec{
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/offer-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 80px 0px;
}
.offer-box{
    padding: 40px 27px;
}
.offer-box1{
    padding: 40px 27px 11px;
}
}

/* offer-sec end */

/* moneyback sec start */
.moneyback-sec{
    background: #000000;
}
.moneyback-h{
    background: var(--theme-gradient);
    /* border: 2px solid var(--blue-clr); */
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 100px;
    padding: 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/visoraai/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .moneyback-h {
        padding: 10px 90px 10px 40px;
        position: relative;
    }
    .moneyback-h::after {
        content: url(https://cdn.oppyotest.com/launches/visoraai/special/think-icon.webp);
        position: absolute;
        top: -15px;
        right: -15px;
    }
}
/* 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/visoraai/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/visoraai/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/visoraai/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: #FFF3F3; */
}
/* 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: #ffffff;
   
}
.tbbg3 {
    /* background: #080E20; */
    background:#ffffff url("https://cdn.oppyotest.com/launches/visoraai/special/table-frame.webp") no-repeat ;
    background-size: 100% 100%;
    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 !important;
    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;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 28px;
    font-size: 22px;
    line-height: 160%;
    color: var(--white-clr);
    font-weight: 800;
    transition: all .3s ease;
    background: var(--red-clr1);
    border-radius: 10px;
    /* border: 5px solid rgba(255, 255, 255, 0.30); */
}

.table-white-box{
    background: #ffffff;
}

@media (min-width: 768px){
    .table-section {
    background: url(https://cdn.oppyotest.com/launches/visoraai/special/table-bg.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
    .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: 75px 75px 30px 30px;
    }
    .tbbg3 {
        padding: 25px 30px 25px 30px;
        background-size: 100% 100%;
        border-radius: 50px 50px 0 0;
        min-height: 550px;
    }
    .table-border-content {
        max-width: 80%;
    }
        a.cta-link-btn {
        font-size: 38px;
        padding: 22px 84px;
        display: inline-block;
    }
}
/* table section end */
/* CAREFULLY sec start */
.carefully-sec{
    background: #ffffff;
}
.carefully-box{
    background: #E30613;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px){
    .carefully-box{
    padding: 25px 47px;
}
}

/* CAREFULLY sec end */

/* contact-sec start */
.contact-section {
    background-color: #ffffff;
}
.contact-text {
    background: var(--theme-clr);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}
.contact-frame{
    background: #F2FCF0;
    border: 1px solid var(--blue-clr);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .contact-section {
        background: #ffffff url(https://cdn.oppyotest.com/launches/visoraai/special/contact-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .contact-text {
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/dark-purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 91px 15px 63px;
        border-radius: unset;
        position: relative;
    }
    /* .contact-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/visoraai/special/thinking-emoji.webp");
        top: -22px;
        right: -43px;
    } */
    .contact-frame{
        background: url("https://cdn.oppyotest.com/launches/visoraai/special/contact-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 48px 30px;
        border-radius: unset;
        border: unset;
    }
}
/* contact-sec end */

/* fear sec start */
.fear-sec{
    background: linear-gradient(180deg, #FFD7D7 0%, #FFFFFF 100%);
}
.fair-text {
    border: 2px solid #FFFFFF;
    background: var(--red-clr);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.theme-brush {
    background: #ffffff;
    border: 3px solid #FF361D;
    border-radius: 100px;
    padding: 0 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #FFA3A366 url(https://cdn.oppyotest.com/launches/visoraai/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .theme-brush {
        padding: 0px 20px;
    }
}
/* fear sec end */

/* faq sec start */
.faq-section {
    background: #ffffff;
    padding: 30px 0px;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/visoraai/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 {
        padding: 100px 0px;
    }
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #ffffff;
    padding: 30px 0;
}
.final-text{
    background: var(--orange-clr);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px){
    .cta-section-white {
        padding: 80px 0px;
    }
    .final-text{
        border-radius: 100px;
        padding: 0px 44px;
    }
}
/* 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 */


@media (min-width: 768px) {
    .f-md-80 {
        font-size: 80px;
    }
}
/*  */
