
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    font-size: 14px;
    overflow-x: hidden;
}

/* font-family */
.italic{
    font-style: italic;
}
.caveat{
    font-family: "Caveat", system-ui;
}
.rocknroll {
  font-family: "RocknRoll One", sans-serif;
}
.Passero {
    font-family: "Passero One", sans-serif;
}
.poppins{
    font-family: "Poppins", 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: #000000;
    --black-clr-2: #010101B2;
    --white-clr: #fff;
    --light-white: #01010199;
    --light-white1: rgba(255, 255, 255, 0.6);
    --yellow-clr: #F8CC1B;
    --pink-clr: #FF3278;
    --red-clr:#FA2E2E;
    --orange-clr: #F48129;

    --red-clr1:#FF3637;
    --red-clr2:#FF361D;
    --red-clr3:#FF5E4A;
    --green-clr: #64FE4B;
    --green-clr1: #28B800;
    --neon-clr: #F8D13E;

    --red-clr4:#FF5E4A;
    --green-clr2: #29DA19;
    --purple-clr: #8346BF;
    --teal-clr: #00BBC0;

    --theme-clr: linear-gradient(113.88deg, #685FB7 -9.49%, #C4238F 30.77%, #EC4A47 60.18%, #F89B1B 91.41%);
    --theme-clr-1: linear-gradient(113.88deg, #685FB7 -9.49%, #C4238F 30.77%, #EC4A47 60.18%, #F89B1B 91.41%);
    --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);}
.yellow-clr{color:var(--yellow-clr);}
.pink-clr{color:var(--pink-clr);}
.red-clr{color:var(--red-clr);}
.orange-clr{color:var(--orange-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);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.purple-clr{color: var(--purple-clr);}
.teal-clr{color:var(--teal-clr)} 
.neon-clr{color:var(--neon-clr)} 
.light-white1 {color: var(--light-white1);}

/* 
.yellow-clr1{color:var(--yellow-clr1);}
.blue-clr{color:var(--blue-clr)} */

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-br {
    border-bottom: 2px 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: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 10px;
}
a.cta-link-btn-1:hover {
    border-radius: 8px;
    background: var(--theme-clr-1);
    color: var(--white-clr);
}
/* .cta-btn-border {
    border: 3px dashed #ffffff;
    border-radius: 10px;
    padding: 0px;
} */

.cta-btn-bg {
    background: linear-gradient(180deg, #000000 0%, #3F2100 100%), linear-gradient(180deg, #000000 0%, #4D0027 100%);
    border: 4px dashed #EC4A47;
    padding: 20px 10px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 100px;
        display: inline-block;
    }

    .cta-btn-border {
        /* border-radius: 13px; */
        padding: 0px;
    }
    
    .cta-btn-bg {
        background: url('https://cdn.oppyotest.com/launches/instaengineai/special/cta-btn-border.webp') no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 50px 70px;
        border-radius: unset;
        border: unset;
    }
}
/*  */

/* sticky bar start */
.fixed-top-bar {
    background: var(--pink-clr);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.coupon{
    background: #fff;
    border-radius: 4px;
    padding: 0px 4px;
}
 .top-bar  {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 15px;
 }
 
 .fixed-top-bar a {
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;
     /* fill: #000; */
     color: #000000;
     background-color: #ffffff;
     border-radius: 5px 5px 5px 5px;
     padding: 6px 15px 4px;
     animation: blink 1.5s linear infinite;
 }
 @keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
 }
 .next-text {
    background-color: var(--black-clr);
    color: #fff;
    border-radius: 4px;
    padding: 0px 2px;
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
    .fixed-top-bar a {
        font-size: 20px;
        padding: 6px 15px 6px;
    }
 }
/* stick bar end */

.theme-btn {
    background: var(--theme-clr);
    padding: 15px 16px;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
    border: 3px solid var(--white-clr);
}
.theme-btn:hover {
    transition: all .3s ease;
    background: var(--theme-clr-1);
}

ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    font-weight: 500;
    color: var(--white-clr);
}
.header-sec ul.leader-ul li a {
    text-decoration: none;
    font-weight: 500;
    padding: 10px 10px;
}
.leader-ul li a {
    position: relative;
    transition: all .5s;
}
a.affiliate-link-btn {
    border-radius: 10px;
    border-radius: 10px;
    background: var(--theme-clr);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    border: 2px solid #FFFFFF;
    font-size: 18px;
    color: var(--white-clr);
    font-weight: 500 !important;
    transition: all .3s ease;
}
@media (min-width: 768px) {
    a.affiliate-link-btn {
        padding: 12px 20px !important;
        font-size: 20px;
    }
}


/* header section start */
.header-sec{
    background: linear-gradient(180deg, #000000 0%, #4D0027 100%);
    /* padding-top: 140px; */
}
.pre-head {
    background: #ffffff2b;
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 6px 15px;
    display: inline-block;
}
.main-heading {
    background: linear-gradient(180deg, #4D0027 0%, rgba(33, 0, 17, 0.5) 95.07%);
    border: 2px solid #D7356C;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 10px;
    display: inline-block;
}
.main-text {
    background: var(--theme-clr);
    border-radius: 20px 20px 20px 20px;
    padding: 10px 20px;
    display: inline-block;
}
.yellow-line{
    border-bottom: 2px dashed var(--yellow-clr);
}
.post-heading{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    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: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    border-radius: 15px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0px;
}
.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/instaengineai/special/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
/* .blue-box {
    border-radius: 10px;
    background: transparent;
    border: 1px solid #3F3F3E;
    background: #080808;
    padding: 20px 10px;
} */
.header-white-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid #FFFFFF4D;
    border-radius: 10px;
    padding: 15px 20px;
    /* box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(15px);
    height: 100%;
    align-items: center;
}
@media(min-width:768px){
    .header-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/instaengineai/special/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .pre-head {
        border-radius: 30px;
    }
    .main-heading{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/main-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 47px 0px;
        border: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .main-text {
        padding: 12px 40px;
        border-radius: 20px 20px 0px 0px;
    }
    .header-ul{
        padding: 30px 20px;
    }
    .header-ul li {
        padding: 0px 0px 25px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(https://cdn.oppyotest.com/launches/instaengineai/special/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/instaengineai/special/purple-right-arrow.webp);
        position: absolute;
        right: -85px;
        top: 18px;
    }
    .post-heading{
        padding: 20px 45px;
        border-radius: 100px;
    }
    .header-side-box{
        padding: 30px 28px 60px;
    }
    .Exclusive-text{
        padding: 14px;
    }
    .theme-btn {
        padding: 21px 35px;
    }
    .theme-btn:hover {
        transform: scale(1.04);
    }
    /* .blue-box {
        border-radius: 20px;
        padding: 30px;
    } */
}
/* header section end */

/* step sec start */
.step-sec{
    background: #FFF6F4;
}
.step-text{
    border: double 2px transparent;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.step-inner {
    padding: 10px 15px;
}
.step-card{
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px 15px;
    display: inline-block;
    border: 1px solid #F48129;
    border-bottom: 3px solid #F48129;
    /* height: 100%; */
}
@media (max-width:767px) {
    .step-card img{
        max-height: 90px;
    }
}
@media (min-width:768px) {
    .step-sec{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/step-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .step-text{
        border-radius: 100px;
    }
    .step-inner {
        padding: 13px 28px;
    }
    .step-card {
        padding:35px 20px 30px;
        border: unset;
        border-radius: unset;
    }
    .step-card-1{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/step-card-1.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-2{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/step-card-2.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-3{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/step-card-3.webp") no-repeat;
        background-size: 100% 100%;
    }
}
/* step sec end */

/* cta btn section start */
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 10px;
    font-size: 24px;
    line-height: 140%;
    color: var(--white-clr);
    font-weight: 400;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 100px;
    border: 3px solid #FFFFFF;
}
a.cta-link-btn:hover{
    color: var(--white-clr);
    transform: scale(1.05);
}
@media (min-width: 768px) {
    a.cta-link-btn {
        font-size: 44px;
        padding: 32px 48px;
        display: inline-block;
    }
}
/* cta btn section end */


/* youtube-sec start */
.youtube-sec{
    background: #FFFFFF;
}
.youtube-text {
    background: var(--red-clr);
    border: 3px dashed #FFFFFF;
    border-radius: 100px;
    display: inline-block;
    padding: 7px 23px;
}
.youtube-box{
    border: double 2px transparent;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.youtube-box-inner {
    padding: 10px 15px;
}
.phone-video {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/youtube-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 8px 10px 52px;
}
.desktop-video {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/youtube-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 3px 4px 3px;
}


.youtube-text-1{
    background: linear-gradient(113.88deg, rgba(104, 95, 183, 0.1) -9.49%, rgba(196, 35, 143, 0.1) 30.77%, rgba(236, 74, 71, 0.1) 60.18%, rgba(248, 155, 27, 0.1) 91.41%);
    border: 1px solid #F89B1B;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 10px;
}
/*  */


.white-text{
    background: #FDFFFC;
    display: inline-block;
    border-radius: 10px;
    padding: 8px 15px;
}

.agent-box-2 {
    background: linear-gradient(180deg, #FDE1EF 0%, rgba(253, 225, 239, 0.1) 97.55%);
    border-radius: 30px;
    padding: 30px 20px;
}

@media (max-width:767px) {
    .youtube-box img{
        max-height: 30px;
    }
}

@media (min-width: 768px) {
    .youtube-sec {
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/instaengineai/special/youtube-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .youtube-text{
        padding: 7px 70px;
    }
    .youtube-box{
        border-radius: 100px;
    }
    .youtube-box-inner {
        padding: 13px 28px;
    }
    .desktop-video {
        padding: 12px 10px 18px;
    }



    .youtube-text-1{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/youtube-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 20px;
        border: unset;
        border-radius: unset;
    }
    /*  */
     .agent-box-2 {
        padding: 60px 50px 30px;
    }
}
/* youtube-sec end */

/* channel-sec start */
.channel-sec{
    background: linear-gradient(180deg, #000000 0%, #4D0027 100%);
}
.channel-text{
    background: #685FB733;
    border: 1px solid #EC4A47;
    border-radius: 20px;
    display: inline-block;
    padding: 7px 10px;
}
.channel-head {
    background: linear-gradient(180deg, #4D0027 0%, rgba(33, 0, 17, 0.5) 92.21%);
    border: 1px solid #D7356C;
    border-bottom: unset;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
}

.channel-box{
    background: #FFFFFF;
    border: 2px solid #FC01134D;
    box-shadow: 0px 10px 20px 0px #0000004D;
    padding: 0px 20px 20px;
    border-radius: 20px;
}
.sub-text{
    background: #6BB22D;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 20px
}
.why-text{
    background: var(--red-clr);
    border-radius: 100px;
    display: inline-block;
    padding: 5px 20px;
}

@media (min-width: 768px) {
    .channel-sec {
        background: #000000 url(https://cdn.oppyotest.com/launches/instaengineai/special/channel-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .channel-head{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/channel-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 70px 50px;
        border: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .channel-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/channel-text.webp") no-repeat;
        background-size: 100% 100%;
        padding: 9px 42px;
        border: unset;
        border-radius: unset;
    }
    .why-text{
        padding: 0px 85px 0px 35px;
        position: relative;
    }
    .why-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/you-icon.webp");
        top: 10px;
        right: -25px;
    }
    /* .white-aarow{
        position: relative;
    }
    .white-aarow::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/white-arrow-down.webp");
        bottom: -90px;
        left: -30px;
    } */
}
/* channel-sec end */

/* future-sec start */
.future-sec{
    background: #ffffff;
}
.future-text {
    background: #ffffff;
    border: 2px solid #EC4A47;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 1px;
}
.future-box {
    background: linear-gradient(180deg, #FFEFEB 0%, rgba(255, 239, 235, 0.1) 97.55%);
    border: 1px solid #F48129;
    border-bottom: unset;
    border-radius: 10px;
    padding: 20px 10px 20px;
}


.fu-frame {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/fu-frame.webp") no-repeat;
    background-size: 100% 100%;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    position: relative;
}
.fu-frame video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
    border-radius: 20px;
}
@media (min-width: 768px) {
    .future-sec{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/future-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .future-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/future-box.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 70px 50px 20px;
    }
    .future-text {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/future-frame.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 0px 30px;
    }
}
/* future-sec end */

/* viral-sec start */
.viral-sec{
    background: #FFF6F4;
}
.viral-sec1{
    background: #ffffff;
}
.viral-box {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.1) 97.55%);
    border: 1px solid #F48129;
    border-bottom: unset;
    border-radius: 10px;
    padding: 20px 10px 20px;
}
.viral-frame{
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/viral-frame.webp") no-repeat;
    background-size: 100% 100%;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 4px 2px;
}
.viral-text {
    border: double 1px transparent;
    border-bottom: double 3px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.viral-text-inner {
    padding: 5px 10px;
}

.viral-text-1{
    border: double 1px transparent;
    border-bottom: double 3px transparent;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.viral-text-1-inner {
    padding: 10px 15px;
}
.viral-box-1{
    border: 1px solid #F48129;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 15px 10px;
    height: 100%;
}
@media (min-width: 768px) {
    .viral-sec {
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/special/viral-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .viral-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/viral-box.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 70px 50px 20px;
    }
    .viral-frame{
        padding: 12px 12px 20px;
    }
    .viral-box-1 {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/viral-1.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 30px 15px;
    }
    .viral-text {
        border-radius: 50px;
    }
    .viral-text-inner {
        padding: 4px 100px;
    }
    .viral-text-1{
        border-radius: 20px;
    }
    .viral-text-1-inner {
        padding: 15px 35px;
    }
}
/* viral-sec end */

/* without-sec start */
.without-sec{
    background: #FFF6F4;
}
.without-box{
    background: #FFFFFF;
    border: 1px solid #EC4A47;
    border-radius: 20px;
    padding: 10px 0px 15px;
    height: 100%;
}
.without-box-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    padding: 5px 10px;
}
@media (min-width: 768px) {
    .without-sec {
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/special/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/without-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 1px 35px;
        border: unset;
        border-radius: unset;
    }
    .without-box-inner{
        padding: 0px 16px 0px;
    }
}
/* without-sec end */

/* final sec start */
.final-sec {
    background: #FFFFFF;
}
.final-shape {
    background: #FA2E2E;
    border: 2px dashed #FFFFFF;
    padding: 15px 0px;
    border-radius: 30px;
}
.red-box-final {
    border-radius: 10px;
    background: #FA2E2E1A;
    border: 3px solid #FA2E2E;
    box-shadow: 0px 0px 50px 0px #FA2E2E inset;
    padding: 20px 10px;
}
.blue-box-final {
    border-radius: 10px;
    background: #FFFFFF;
    border: 3px solid #28B800;
    box-shadow: 0px 0px 50px 0px #28B800 inset;
    padding: 30px 10px;
}
.one-time-text {
    background: var(--green-clr1);
    border-radius: 10px;
    display: inline-block;
    padding: 12px 15px;
}
@media (min-width: 768px) {
    .final-sec {
        background: #FFFFFF url("https://cdn.oppyotest.com/launches/instaengineai/special/final-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .final-shape {
        padding: 13px 110px 13px 30px;
        display: inline-block;
        position: relative;
    }
    .final-shape:after {
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/final-vector.webp");
        top: -15px;
        right: -66px;
        position: absolute;
    }

    .red-box-final {
        padding: 40px 30px;
    }
    .blue-box-final {
        padding: 45px 20px;
        height: 100%;
    }
}
/* final sec end */

/* gold-sec start */
.gold-sec{
    background: #FFF6F4;
}
.gold-text{
    border: double 1px transparent;
    border-bottom: double 3px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.gold-text-inner {
    padding: 5px 10px;
}
.gold-box{
    background: linear-gradient(180deg, #FFFFFF 9.37%, rgba(255, 255, 255, 0.1) 97.55%);
    border-radius: 10px;
    padding: 20px 10px 5px;
}
.gold-box-inner {
    background: #FFFFFF;
    border: 1px solid #EC4A47;
    border-radius: 20px;
    padding: 10px 0px 15px;
    height: 100%;
}
.px7{
    padding: 0px 7px 0px;
}
@media (min-width: 768px) {
    .gold-sec{
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/special/gold-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .gold-text{
        border-radius: 30px;
    }
    .gold-text-inner {
        padding: 20px 57px;
    }
    .gold-box{
        border-radius: 100px;
        padding: 50px 50px 5px;
    }
    .gold-box-inner {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/gold-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 1px 30px;
        border: unset;
        border-radius: unset;
    }
}
/* gold-sec end */

/* star-sec start */
.star-sec{
    background: #ffffff;
}
.star-text{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.star-text-inner {
    padding: 5px 10px;
}
.star-text-1{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.star-text-inner-1 {
    padding: 10px 10px;
}
.star-text-2{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.star-text-inner-2 {
    padding: 10px 10px;
}


.star-box-1{
    background: linear-gradient(180deg, rgba(244, 129, 41, 0.3) 0%, rgba(244, 129, 41, 0) 100%);
    border: 1px solid #F48129;
    border-bottom: unset;
    border-radius: 20px;
    padding: 15px 15px 10px;
}
.star-box-2{
    background: linear-gradient(180deg, rgba(40, 184, 0, 0.3) 0%, rgba(40, 184, 0, 0) 100%);
    border: 1px solid #28B800;
    border-bottom: unset;
    border-radius: 20px;
    padding: 15px 15px 10px;
}
.star-box-3{
    background: linear-gradient(180deg, rgba(255, 50, 120, 0.3) 0%, rgba(255, 50, 120, 0) 100%);
    border: 1px solid #FF3278;
    border-bottom: unset;
    border-radius: 20px;
    padding: 15px 15px 10px;
}
@media (min-width: 768px) {
    .star-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/instaengineai/special/star-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .star-text{
        border-radius: 30px;
    }
    .star-text-inner {
        padding: 25px 30px;
    }
    .star-text-1{
        border-radius: 100px;
    }
    .star-text-inner-1 {
        padding: 20px 80px;
    }
    .star-text-2{
        border-radius: 30px;
    }
    .star-text-inner-2 {
        padding: 20px 40px;
    }
    .star-box-1{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/star-box-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 30px 20px;
        border: unset;
        border-radius: unset;
    }
    .star-box-2{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/star-box-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 30px 20px;
        border: unset;
        border-radius: unset;
    }
    .star-box-3{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/star-box-3.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 30px 20px;
        border: unset;
        border-radius: unset;
    }
}
/* star-sec end */

/* million-sec start */
.million-sec{
    background: linear-gradient(180deg, #000000 0%, #4D0027 100%);
}
.million-text{
    background: linear-gradient(180deg, #4D0027 0%, rgba(33, 0, 17, 0.5) 92.21%);
    border: 2px solid #D7356C;
    border-radius: 20px;
    display: inline-block;
    padding: 20px 15px;
}
@media (min-width: 768px) {
    .million-sec{
        background: #000000 url(https://cdn.oppyotest.com/launches/instaengineai/special/million-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .million-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/million-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 147px;
        border: unset;
        border-radius: unset;
    }
}
/* million-sec end */

/* turn-sec start */
.turn-sec{
    background: #FFF6F4;
}
.turn-text{
    background: #FFFFFF;
    border: 2px solid #C4238F;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 12px;
}
.turn-box{
    background: #FFFFFF;
    border: 2px solid #EC4A47;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
.turn-box img{
    border-radius: 15px 15px 0 0;
}
.turn-text-1{
    background: #FF3278;
    border-radius: 15px;
    padding: 10px 15px;
    display: inline-block;
}
@media (min-width: 768px) {
    .turn-sec{
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/special/turn-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .turn-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/turn-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 40px;
        border: unset;
        border-radius: unset;
        position: relative;
    }
    .turn-text::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/megaphone-left.webp");
        top: -8px;
        left: -75px;
    }
    .turn-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/megaphone-right.webp");
        top: -8px;
        right: -75px;
    }
    .turn-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/turn-box.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 15px 30px;
        border: unset;
        border-radius: unset;
    }
    .turn-text-1{
        border-radius: 30px;
        padding: 15px 60px;
        position: relative;
    }
    .turn-text-1::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/stars-icon.webp");
        top: 40px;
        left: -40px;
    }
    .turn-text-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/stars-icon.webp");
        top: 40px;
        right: -40px;
    }
}
/* turn-sec end */

/* freelancer-sec start */
.freelancer-sec{
    background: #ffffff;
}
.freelancer-text{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.freelancer-text-inner {
    padding: 10px 10px;
}

.freelancer-sec-1{
    background: #FFFFFF;
}
.freelancer-text-1{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.freelancer-text-inner-1 {
    padding: 10px 10px;
}

@media (min-width: 768px) {
    .freelancer-sec {
        background: #ffffff url(https://cdn.oppyotest.com/launches/instaengineai/special/freelancer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text{
        border-radius: 30px;
    }
    .freelancer-text-inner {
        padding: 15px 50px;
    }

    .freelancer-sec-1 {
        background: #ffffff url(https://cdn.oppyotest.com/launches/instaengineai/special/freelancer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text-1{
        border-radius: 30px;
    }
    .freelancer-text-inner-1 {
        padding: 20px 28px;
    }
}
/* freelancer-sec end */

/* expensive-section start */
.expensive-section{
    background: #FFF4F4;
}
.purple-frame {
    background:  var(--red-clr);
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
.expensive-h{
   border-top: 2px solid var(--red-clr);
   border-left: 2px solid var(--red-clr);
   border-right: 2px solid var(--red-clr);
   background: #fff;
   padding: 20px;
   display: inline-block;
   border-radius: 10px 10px 5px 5px;
}

.expensive-card, .expensive-card-main{
    border-radius: 20px;
    border: 2px solid var(--red-clr);
    background: #FFFFFF80;
    padding: 20px;
    height: 100%;
}

.expensive-card-1{
    border-radius: 20px;
    border: 2px solid var(--red-clr);
    background: #FFFFFF80;
    padding: 20px;
    display: inline-block;
    height: 100%;
}
.expensive-boxes {
    background: var(--red-clr);
    backdrop-filter: blur(50px);
    border-radius: 5px;
    padding: 8px 15px;
}
.expensive-black-box {
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
.felt-text{
    background: var(--red-clr);
    display: inline-block;
    border-radius: 20px;
    padding: 10px 15px;
}
.red-line{
    border-bottom: 2px dashed var(--red-clr);
}
.expensive-text{
    background: var(--red-clr);
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}
@media(min-width:768px){
    .f-md-80{
        font-size: 80px;
    }
    .felt-text{
        padding: 20px 45px;
    }
    .expensive-black-box {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px;
        border-radius: 0px;
    }
    .purple-frame {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 16px 65px;
        position: relative;
    }
    .purple-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/think-emoji-2.webp");
        top: -30px;
        right: -45px;
    }
    .red-wave{
        position: relative;
    }
    .red-wave::after{
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/red-wave.webp") no-repeat center center;
        width: 100%;
        height: 7px;
        bottom: -4px;
        left: 0;
    }
    .expensive-h{
       background: url("https://cdn.oppyotest.com/launches/instaengineai/special/expensive-h.webp") no-repeat;
       background-size: 100% 100%;
       padding: 36px 47px 20px;
       display: inline-block;
       border: unset;
       border-radius: 0;
    }
    .expensive-card{
        padding: 60px 100px;
    }
    .expensive-card-main{
        padding: 80px 100px 0px;
    }
    .expensive-card-1{
        padding: 30px;
    }
    .red-box{
        background: var(--red-clr);
        border-radius: 5px;
        padding: 0px 5px;
    }
    .red-circle-1{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/red-circle-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 54px;
        display: inline-block;
    }
    .red-circle-2{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/red-circle-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 14px 76px;
        display: inline-block;
    }
}
/* expensive-section end */

/* not-anymore-sec start */
.not-anymore-sec{
   background: linear-gradient(113.88deg, rgba(104, 95, 183, 0.2) -9.49%, rgba(196, 35, 143, 0.2) 30.77%, rgba(236, 74, 71, 0.2) 60.18%, rgba(248, 155, 27, 0.2) 91.41%);
}
.not-anymore-sec-card{
    border-radius: 100px;
    border: 1px solid rgba(255, 44, 44, 0.5);
    background: #FFF;
    padding: 10px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}
.notanymore-text {
    padding: 10px 20px;
    background: var(--theme-clr);
    border-radius: 20px;
    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/instaengineai/special/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
        padding-top: 130px;
    } */
    .not-anymore-sec-card{
        padding: 20px 21px;
    }
    .notanymore-text {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/notanymore-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 10px 21px 10px 121px;
    }
    .notanymore-text::after {
        content: url(https://cdn.oppyotest.com/launches/instaengineai/special/excited-emoji.webp);
        position: absolute;
        top: -2px;
        left: 20px;
    }
}
/* not-anymore-sec end */

/* proudly-section start */
.proudly-sec{
    background: #000000;
    padding: 30px 0px;
}
.presenting-head {
    border-radius: 30px;
    background: linear-gradient(113.88deg, rgba(104, 95, 183, 0.2) -9.49%, rgba(196, 35, 143, 0.2) 30.77%, rgba(236, 74, 71, 0.2) 60.18%, rgba(248, 155, 27, 0.2) 91.41%);
    border: 1px solid #F89B1B;
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 8px 20px;
}
@media (min-width: 768px) {
    .proudly-sec {
        background: url(https://cdn.oppyotest.com/launches/instaengineai/special/proudlybg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 30px;
        position: relative;
    }
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/instaengineai/special/presenting-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 18px 50px;
    }
}
/* proudly-section end */

/* step-sec start */
.step-sec-1{
    background: #ffffff;
}
.easy-step{
    border: double 2px transparent;
    background-image: linear-gradient(#FFF6F4, #FFF6F4), var(--theme-clr);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    border-radius: 10px;
}
.easy-step-inner {
    padding: 10px 15px;
}
/* steps-card */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--orange-clr);
}
/* .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/instaengineai/special/step-bg-1.webp") no-repeat center center;
        background-size: cover;
    }
    .easy-step{
        border-radius: 100px;
    }
    .easy-step-inner {
        padding: 2px 45px 2px 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/instaengineai/special/step-frame.webp") no-repeat;
    background-size: 100% 100%; */
    padding: 40px 30px;
}
.nav-link.active .steps-card{
    border: 1px solid var(--orange-clr);
}
.nav-tabs .nav-link.active .steps-card {
    background: linear-gradient(180deg, rgba(244, 129, 41, 0.3) 0%, rgba(244, 129, 41, 0) 100%) !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 var(--orange-clr);
    background: var(--orange-clr);
    border-radius: 12px;
}
/* step-sec end */

/* demo sec start */
.demo-sec{
    background: #FDF6F4;
    overflow: hidden;
}
.purple-shade{
    background: var(--pink-clr);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    padding: 0px 15px;
    border-radius: 20px;
    display: inline-block;
}
.border-frame{
    background: #FFFFFF;
    border: 2px solid #FF327880;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
.tons-border {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/special/demo-box.webp") no-repeat bottom center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    /* border-radius: 10px; */
    padding: 15px 20px;
    height: 100%;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #FDF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/special/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/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 50px;
    }
    .tons-border {
        padding: 15px;
    }
}

/* demo sec end */

/* ultimate-sec start */
.ultimate-sec{
    background: #000000;
}
.ultimate-text {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 3px dashed #140207;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 15px;
}
.pd-box{
    padding: 10px;
    height: 100%;
    border-radius: 20px;
}
.ind-box {
    background: #FFFFFF1A;
    border: 2px solid #6C6C6C80;
    backdrop-filter: blur(10px);
    /* box-shadow: 0px 0px 50px 0px #FFFFFF4D inset; */
}
@media (min-width: 768px) {
    .ultimate-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/instaengineai/special/ultimate-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .ultimate-text {
        padding: 10px 30px;
    } 
   .pd-box{
        padding: 40px 30px 0px;
    }
    .features-heading{
        position: relative;
    }
    .features-heading:before{
       background: url(https://cdn.oppyotest.com/launches/instaengineai/special/power-icon-left.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       left:130px;
       content: '';
   }
   .features-heading:after{
       background: url(https://cdn.oppyotest.com/launches/instaengineai/special/power-icon-right.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       right:130px;
       content: '';
   }
}
/* ultimate-sec end */

/* earning-sec start */
.earning-sec{
    background: #FFFFFF;
}
.earning-text{
    background: #FFF6F4;
    border: 2px solid #EC4A47;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.earning-box{
    background: linear-gradient(180deg, rgba(244, 129, 41, 0.3) 0%, rgba(244, 129, 41, 0) 100%);
    border: 1px solid var(--orange-clr);
    border-radius: 15px;
    padding: 12px 10px;
}
@media (min-width: 768px) {
    .earning-sec{
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/instaengineai/special/earning-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .earning-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/earning-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 50px;
        border: unset;
        border-radius: unset;
        position: relative;
    }
    .earning-text::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/earning-icon.webp");
        top: 28px;
        left: -80px;
    }
    .earning-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/earning-icon.webp");
        top: 28px;
        right: -80px;
    }
    .earning-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/earning-box.webp") no-repeat;
        background-size: 100% 100%;
        padding: 25px 18px 30px;
        border: unset;
        border-radius: unset;
    }
}
/* earning-sec end */

/* crazy sec start */
.crazy-sec{
    background: #FDF6F4;
}
.crazy-text{
   background: var(--orange-clr);
    border-radius: 100px;
    display: inline-block;
    padding: 0px 20px;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: #FDF6F4 url("https://cdn.oppyotest.com/launches/instaengineai/special/crazy-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .crazy-text{
        padding: 6px 55px 6px 20px;
        position: relative;
    }
    .crazy-text::after {
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/glasses-emoji.webp");
        position: absolute;
        top: 0px;
        right: -65px;
    }
    .theme-wave{
        position: relative;
    }
    .theme-wave::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/theme-wave.webp");
        top: 10px;
        left: 10px;
    }
}
/* crazy sec end */


/* everyone sec start */
.everyone-sec{
    background: #FDF6F4;
}
.everyone-text{
    background: #FFFFFF;
    border: 2px solid #EC4A47;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/everyone-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .everyone-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/everyone-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 17px 38px;
        border: unset;
        border-radius: unset;
        position: relative;
    }
    .everyone-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/love-icon.webp");
        top: 0px;
        right: -50px;
    }
}
/* everyone sec end */

/* testimonial sec start */
.testimonial-sec{
    background: #ffffff;
}
.pink-text {
    background: var(--pink-clr);
    border-radius: 15px;
    padding: 10px 15px;
    display: inline-block;
}
@media (min-width: 768px) {
    .testimonial-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/instaengineai/special/testimonial-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .pink-text {
        border-radius: 30px;
        padding: 20px 30px;
    }
}
/* testimonial sec end */




















































































/*compare section start*/
.compare-section{
    background: #FDF6F4;
}

.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/instaengineai/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/instaengineai/special/sad-tick.webp") no-repeat;
    background-position: 23px 25px;
    padding: 25px 41px 25px 65px;
    border-right: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FCDDDA;
    
}
.compare-list-2 li:nth-child(even){  
    background-color: #FFEBE9;
}
/* .compare-list-2 li:nth-child(3){
    padding: 38px 41px 38px 65px;
    background-position: 23px 36px;
} */
.compare-list-2 li:last-child{
    border-radius: 0px 0px 20px 0px;
    border-bottom: 1px solid #FF361D;
    padding: 38px 41px 38px 65px;
    background-position: 23px 36px;
}
.c-green-box {
    background: #378E00;
    border: 6px solid #E6FFC7;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF361D;
    border: 6px solid #FCDDDA;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
@media (min-width:768px) {
    .compare-section{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .c-green-box {
        border-radius: 100px;
        padding: 14px;
    }
    .c-red-box {
        border-radius: 100px;
        padding: 12px 36px;
    }
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
        /* padding: 0px 15px; */
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }
}

/* compare section end */

/* 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/instaengineai/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: linear-gradient(113.88deg, #685FB7 -9.49%, #C4238F 30.77%, #EC4A47 60.18%, #F89B1B 91.41%);
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/instaengineai/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 #EC4A47;
    background: linear-gradient(113.88deg, rgba(104, 95, 183, 0.1) -9.49%, rgba(196, 35, 143, 0.1) 30.77%, rgba(236, 74, 71, 0.1) 60.18%, rgba(248, 155, 27, 0.1) 91.41%);
    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/instaengineai/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: linear-gradient(180deg, #000000 0%, #4D0027 100%);
}
.moneyback-h{
    background: var(--red-clr);
    border:  2px dashed #ffffff;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.riskfree-text {
    background: var(--pink-clr);
    border-radius: 10px;
    padding: 0px 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/instaengineai/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .riskfree-text {
        border-radius: 20px;
        padding: 0px 20px;
    }
    .moneyback-h {
        padding: 0px 20px;
    }
}
/* moneyback sec end */

/* table section start */

.table-section {
    background: #FDF6F4;
    padding: 30px 0
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: solid 10px #FDF1FF;
}

.tbbg2 {
    background: #FDF1FF;
    padding: 30px;
    background-size: cover;
    border-radius: 8px 8px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}

.myfeatureslast {
    float: left;
    padding: 30px;
    width: 100%;
    min-height: 69px;
    color: #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 0
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/instaengineai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}

ul.grey-tick-last li:last-child {
    border-bottom: 0
}

ul.grey-tick-last li:nth-child(odd) {
    background-color: #f1f1f1;
}

ul.grey-tick-last li:nth-child(even) {
    background-color: #fff;
}

.tablebox3 {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 35px 35px 20px 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    padding: 8px;
    /* border: 5px solid #000; */
    background: linear-gradient(113.88deg, #685FB7 -9.49%, #C4238F 30.77%, #EC4A47 60.18%, #F89B1B 91.41%);
}

.tbbg3 {
    background-color: #ffffff !important;
    background: url(https://cdn.oppyotest.com/launches/instaengineai/special/table-frame.webp) no-repeat bottom center;
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 35px 35px 0 0;
    min-height: 240px;
}
.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/instaengineai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
ul.vgreytick li:nth-child(1) {
    /* border-radius: 15px 15px 0px 0px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 30px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background: var(--theme-clr);
    border-radius: 25px;
    padding: 8px 11px;
    display: inline-block;
}
.table-sale {
    background: url(https://cdn.oppyotest.com/launches/instaengineai/special/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
}
.mt-top{
    margin-top: -69px;
}
.vgreytick li.headline1 {
    background: #FFDFDF;
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #FF0000;
}
.vgreytick li.headline2 {
    background: var(--red-clr);
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}
ul.vgreytick3 li {
    background: url(https://cdn.oppyotest.com/launches/instaengineai/special/cross2.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.close-img {
    width: 50px;
}
@media(min-width:768px){
    .table-section {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/special/table-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .tbbg3 {
        min-height: 500px;
        padding: 50px 30px 50px 30px;
        background-size: 100% 100%;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px
    }
    .table-sale {
        padding: 11px 70px;

    }
    .mt-top{
        margin-top: -72px;
    }
    ul.vgreytick3 li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .commercial1{
        padding: 8px 29px;
    }
}
/* table section end */

/* ticking sec start */
.ticking-sec{
    background: #FFF0F1;
}
.ticking-text{
     background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
/* @media (min-width:768px) {
    .ticking-sec{
        background: url(https://cdn.oppyotest.com/launches/instaengineai/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* ticking sec end */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: linear-gradient(180deg, rgba(255, 239, 235, 0.1) 0%,  #FFEFEB 97.55%);
}
.inside-text {
    background: var(--theme-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #ffffff url(https://cdn.oppyotest.com/launches/instaengineai/special/contact-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px;
    }
    .inside-text {
        border-radius: 100px;
        display: inline-block;
        padding: 11px 90px 9px 30px;
        position: relative;
    }
    .inside-text::after {
        content: url("https://cdn.oppyotest.com/launches/instaengineai/special/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}

/* Contact Section end */

/* faq sec start */
.faq-section {
    background: #ffffff;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/instaengineai/special/faq-icon.webp) no-repeat top left;
    background-color: #ec4a471a;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid var(--orange-clr);
    border-radius: 20px;
}
@media (min-width: 768px){
    /* .faq-section {
        background: url(https://cdn.oppyotest.com/launches/instaengineai/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/instaengineai/special/compare-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 80px 0px;
    }
}
/* final-call end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.footer-ul .t-decoration-none:hover {
    color: #fff;
}
@media(min-width:768px) {
    .footer-section {
        padding: 70px 0px;
    }
}

/* footer end */


/* video mute/unmute css */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mute-toggle {
    position: absolute;
    top: 13px;
    right: 8px;
    z-index: 10;
    background-color: var(--yellow-clr);
    border: none;
    border-radius: 50%;
    padding: 12px 13px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.mute-toggle:hover {
  background-color: var(--white-clr);
}



/* bttn css */
.play-btn {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red-clr);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0
    }
}
/* Button Hidden when Playing */
.hide {
    opacity: 0;
    pointer-events: none;
}

/* Play/Pause Icons */
.play-btn i {
    color: white;
    font-size: 30px;
}
/* .fu-frame video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
} */
@media (min-width: 768px) {
     .play-btn {
        top: 50%;
    }
  .play-btn {
        /* left: 27%; */
        width: 60px;
        height: 60px;
    }
}




/* slider up start */
.bx-wrapper {
    border: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    max-width: auto !important;
}
.bx-viewport {
    position: relative !important;
}
.bxslider {
    background: transparent !important;
    color: var(--yellow-clr);
    text-align: center;
    padding: 0;
    margin: 0;
    border: 0px !important;
    font-weight: 800;
    position: relative;
}
.bxslider li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 76px;
    line-height: 32px;
    text-align: center;
}
.typing-text {
    width: 100%;
}
@media (min-width: 768px){
    .bxslider li {
        justify-content: start;
        min-width: 100%;
        float: left !important;
        width: auto !important;
    }
    .typing-text {
        color: var(--yellow-clr);
    /* width: 540px; */
            width: 530px;
}
}
/* slider up end */


.stickybar {
    display: table;
    margin: 0% 0% 1% 3%;
    width: 94%;
    border-radius: 6px;
    float: left;
    background: #171717;
    opacity: .9;
    position: fixed;
    top: 15px;
    padding: 1%;
    z-index: 9999
}

.stickybar.subscribebox p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    text-align: center
}
.subscribebox a {
    border-radius: 8px;
    background-image: -moz-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -webkit-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -ms-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    box-shadow: 0 10px 0 0 rgba(36,105,181,.004);
    border: 0;
    width: 100%;
    color: #fff;
    box-shadow: 3px 5px 2px 0 #2469ba;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 3px;
    background: rgb(26 168 255);
    box-shadow: 3px 5px 2px 0 rgb(23 146 255);
    font-size: 18px;
    width: 100%;
    float: left;
    text-align: center;
    text-decoration: none;
}
@media (min-width:768px) {
    .stickybar {
        display: table;
        margin: 0% 0% 1% 3%;
        width: 94%;
        border-radius: 6px;
        float: left;
        background: #171717;
        opacity: .9;
        position: fixed;
        bottom: 0;
        top: auto;
        padding: 1%;
        z-index: 9999
    }
    .stickybar.subscribebox p {
        color: #fff;
        font-size: 20px;
        margin: 0;
        text-align: center
    }
    
.subscribebox a {
    border-radius: 8px;
    background-image: -moz-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -webkit-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -ms-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    box-shadow: 0 10px 0 0 rgba(36,105,181,.004);
    border: 0;
    width: 100%;
    color: #fff;
    box-shadow: 3px 5px 2px 0 #2469ba;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 3px;
    background: rgb(26 168 255);
    box-shadow: 3px 5px 2px 0 rgb(23 146 255);
    font-size: 30px;
    width: 100%;
    float: left;
    text-align: center;
    text-decoration: none
    }
}
.blink-soft {
    animation: blinker 1.5s linear infinite
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}