
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;
}
/* font-family */

html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--theme-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}

:root {
    --black-clr: #000000;
    --black-clr-2: #010101B2;
    --white-clr: #fff;
    --light-white: #01010199;
    --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: #3CB006;


    --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);}
.red-clr{color:var(--red-clr);}
.yellow-clr{color:var(--yellow-clr);}
.pink-clr{color:var(--pink-clr);}


.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.red-clr4{color:var(--red-clr4);}
.orange-clr{color:var(--orange-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.purple-clr{color: var(--purple-clr);}
.teal-clr{color:var(--teal-clr)} 

/* 
.yellow-clr1{color:var(--yellow-clr1);}
.blue-clr{color:var(--blue-clr)} */

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-br {
    border-bottom: 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 */

/* fixed-bar start */
.fixed-top-bar {
    background: var(--theme-clr);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
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);
}
.leader-ul li a{
    position: relative;
  transition: all .5s;
}
.leader-ul li a:hover{
    color: #ffffff;
}

.header-section ul.leader-ul li a {
    text-decoration: none;
    /* font-weight: 500; */
    padding:10px 10px;
}
.header-section ul.leader-ul li a:hover{
    color: black;
}
a.affiliate-link-btn {
	border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    font-size: 18px;
    color: var(--black-clr);
    font-weight: 600 !important;
    transition: all .3s ease;
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
} 
@media (min-width: 768px) {
    .fixed-top-bar {
        padding: 5px 0;
    }
     a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
}
/* fixed-bar end */


img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.gap20 {
    gap: 20px;
}

a.cta-link-btn-1 {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 25px;
    font-size: 22px;
    line-height: 160%;
    color: #000000;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--neon-clr);
    border-radius: 10px;
}
a.cta-link-btn-1:hover {
    border-radius: 8px;
    background: var(--theme-clr-1);
    color: var(--white-clr);
}
.cta-btn-border {
    border: 3px dashed #000000;
    border-radius: 10px;
    padding: 0px;
}

.cta-btn-bg {
    background: url('https://cdn.oppyotest.com/launches/instaengineai/jv/cta-btn-border.webp') no-repeat center center; 
    background-size: cover; 
    padding: 20px 10px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 100px;
        display: inline-block;
    }

    .cta-btn-border {
        border-radius: 13px;
        padding: 0px;
    }
    
    .cta-btn-bg {
        padding: 30px;
        border-radius: 10px;
    }
}
/*  */



/* header section start */

.theme-btn {
    background: var(--theme-clr);
    padding: 15px 16px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn:hover {
    transition: all .3s ease;
    background: var(--theme-clr-1);
    color: var(--black-clr) !important;
}


.header-sec{
    background: linear-gradient(180deg, #000000 0%, #4D0027 100%);
    padding: 160px 0px 30px;
}
.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);
}

.heading-gradiant{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 18px;
}
.post-heading{
    background: 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/jv/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0px;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.Exclusive-text{
    background: #151515;
    border: 1px dashed var(--red-clr);
    border-radius: 10px;
    padding: 10px;
}
.red-frame-1 {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
@media(min-width:768px){
    .header-sec{
        background: #0a0708 url("https://cdn.oppyotest.com/launches/instaengineai/jv/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 100px 0px 100px;
    }

    .main-heading{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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;
    }
    .post-heading{
        padding: 20px 45px;
        border-radius: 100px;
    }

    .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/jv/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/instaengineai/jv/purple-right-arrow.webp);
        position: absolute;
        right: -85px;
        top: 18px;
    }
    .header-side-box{
        padding: 30px 28px 60px;
    }
    .Exclusive-text{
        padding: 14px;
    }
    .theme-btn {
        padding: 20px 115px;
    }
    .theme-btn:hover {
        transform: scale(1.04);
    }
    .green-frame{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/green-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 8px;
    }
}
/* header section end */

/* live section start */
.live-section{
    background: #ffffff;
}
.gradiant-box{   
    border-radius: 20px;
    /* border: 5px solid #4D7FFA4D; */
    background: var(--theme-clr);
    padding: 20px 15px;
}
.live-text{
    background: var(--theme-clr);
    border-radius: 0px 0px 10px 10px;
    /* display: inline-block; */
    padding: 10px;
}
.live-boxes{
    background: #01010180;
    border: 2px solid #FFFFFF33;
    padding: 15px;
    border-radius: 10px;
}
.lc-orange{
    color: #D99904;
}
.lc-bg-orange{
    background: #f3f3f3;
    border: 1px solid #DFDFDF;
}
.lc-sky-blue{
    color: #3A76CB;
}
.lc-bg-sky-blue {
    background: #ffffff;
    border: 1px solid #cbdbfa;
}
.live-sec-card{
    padding: 30px 13px;
    height: 100%;
}
.left-live-box{
    background: var(--white-clr);
    border: 2px solid #007BFF;
    border-radius: 30px;
    padding: 15px;
}
.right-live-box{
    background: var(--white-clr);
    border: 2px solid #F48129;
    border-radius: 10px;
    padding: 15px;
    /*height: 100%;*/
}
.form-btn input[type="submit"] {
	text-decoration: none;
	border: none;
	color: var(--black-clr);
	text-align: center;
	display: block;
	width: 100%;
	z-index: 9999;
	padding: 15px 10px;
	line-height: 30px;
	font-weight: 600;
	outline: none;
	white-space: normal;
    cursor: pointer;
    background: var(--theme-clr);
    border-radius: 10px;
    transition: all .3s ease;
}
.form-btn input[type="submit"]:hover {
    transition: all .3s ease;
    /* background: var(--theme-clr-1); */
}
.request-affiliate-1 a{
    background: var(--theme-clr);
    padding: 15px 14px;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 3px solid var(--white-clr);
    transition: all .3s ease;
}
.request-affiliate-1 a:hover{
    color: var(--white-clr);
    transition: all .3s ease;
    transform: scale(1.02);
}
.request-affiliate a{
    background:  var(--theme-clr);
    color: #ffffff;
    border: 3px solid var(--white-clr);
    transition: all 0.4s ease-in-out;
    outline: 0;
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
}
.request-affiliate a:hover{
    color: var(--white-clr);
    transition: all .3s ease;
    transform: scale(1.04);
}
@media(min-width:768px){
    /* .live-section{
        background: #181737 url("https://cdn.oppyotest.com/launches/instaengineai/jv/live-bg.webp") no-repeat center center;
        background-size: cover;
    } */
    .gradiant-box{    
        border-radius: 20px;
        padding: 30px 50px;
    }
    .live-text{
        padding: 8px 30px;
    }
    .live-boxes{
        padding: 20px 21px;
    }
    .left-live-box{
        padding: 46px 30px;
    }
    .right-live-box{
        padding: 20px 20px;
    }
    .form-control.input-field {
        height: 60px;
        font-size: 15px;
    }
    .form-control.input-field::placeholder{
        color: #000000;
    }
    .mt-md120{
        margin-top: 120px!important;
    }
    .request-affiliate a{
        padding: 17px;
        text-align: center;
    }
    .request-affiliate-1 a{
        padding: 20px 105px;
    }
    /* .request-affiliate-1:hover {
        transform: scale(1.04);
    } */
    .jvzoo-img{
        min-height: 131px;
    }

}
/* live 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/jv/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/jv/step-card-1.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-2{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/step-card-2.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-3{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/youtube-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 8px 10px 52px;
}
.desktop-video {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/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/jv/channel-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .channel-head{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/you-icon.webp");
        top: 10px;
        right: -25px;
    }
    /* .white-aarow{
        position: relative;
    }
    .white-aarow::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/future-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .future-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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-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/jv/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/jv/viral-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .viral-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/million-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .million-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/turn-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .turn-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/megaphone-left.webp");
        top: -8px;
        left: -75px;
    }
    .turn-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/jv/megaphone-right.webp");
        top: -8px;
        right: -75px;
    }
    .turn-box{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/stars-icon.webp");
        top: 40px;
        left: -40px;
    }
    .turn-text-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/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/jv/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px;
        border-radius: 0px;
    }
    .purple-frame {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/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/jv/excited-emoji.webp);
        position: absolute;
        top: -2px;
        left: 20px;
    }
}
/* not-anymore-sec end */

/* cta btn section start */
.cta-section {
    background: #0b0809;
}
.cta-btn-border {
    /* border: 3px dashed #FFFFFF4D; */
    border-radius: 10px;
    padding: 0px;
}
.cta-btn-bg {
    background: #0b0909;
    padding: 20px 10px;
    border-radius: 10px;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 28px;
    font-size: 22px;
    line-height: 160%;
    color: var(--black-clr);
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 10px;
    /* border: 5px solid rgba(255, 255, 255, 0.30); */
}
a.cta-link-btn:hover{
    background: var(--theme-clr-1);
    color: var(--black-clr);
}
.purple-box{
    background: var(--purple-clr);
    border-radius: 35px;
    padding: 10px;
    display: inline-block;
}
.col-12:has(.purple-box) {
    margin-top: -60px;
}
@media (min-width: 768px) {
    .cta-section {
        background: #0b0809 url(https://cdn.oppyotest.com/launches/instaengineai/jv/cta-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .cta-text{
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
    .cta-btn-border {
        border-radius: 13px;
        padding: 0px;
    }
    .cta-btn-bg {
        background: url('https://cdn.oppyotest.com/launches/instaengineai/jv/cta-btn-border.webp') no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 23px;
        border-radius: 10px;
    }
    a.cta-link-btn {
        font-size: 38px;
        padding: 22px 84px;
        display: inline-block;
    }
    .purple-box{
        padding: 6px 35px;
    }
    .col-12:has(.purple-box){
        margin-top: -115px;
    }
}
/* cta btn section end */

/* limited time section start */
.limited-time-sec {
    padding: 10px 0px 10px 0px;
    background: var(--red-clr);
}
/* limited time section end */

/* youtube-sec start */
.youtube-sec{
    background: #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/jv/youtube-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 8px 10px 52px;
}
.desktop-video {
    background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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;
}
/*  */
.chatbot-box-1 {
    background: #FF7879;
    padding: 20px 5px;
    border-radius: 15px;
    height: 100%;
}

.chatbot-box-2 {
    background: #6BB22D;
    padding: 20px 5px;
    border-radius: 15px;
    height: 100%;
}
.chatbot-box-2 video {
    object-fit: contain;
    min-height: 180px;
}
.white-text{
    background: #FDFFFC;
    display: inline-block;
    border-radius: 10px;
    padding: 8px 15px;
}

.agent-box-2 {
    background: linear-gradient(180deg, #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 (max-width: 767px) {
    .chatbot-box-1 img{
        max-width: 150px;
    }
}
@media (min-width: 768px) {
    .youtube-sec {
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/youtube-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 20px;
        border: unset;
        border-radius: unset;
    }
    /*  */
    .chatbot-box-1 {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/chatbot-box-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px 26px 30px 10px;
        /* border-radius: 20px 0px 0px 20px; */
        position: relative;
    }
    .chatbot-box-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/instaengineai/jv/vs-img.webp");
        top: 45%;
        right: -47px;
    }
    .chatbot-box-2 {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/chatbot-box-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 24px 10px 24px 30px;
        /* border-radius: 0px 20px 20px 0px; */
    }
    .chatbot-box-2 video{
        object-fit: contain;
        min-height: 409px;
     }
     .agent-box-2 {
        padding: 60px 50px 30px;
    }
}
/* youtube-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 26px;
}
@media (max-width: 767px) {
    .proudly-logo{
        max-height: 90px;
    }
}
@media (min-width: 768px) {
    .proudly-sec {
        background: url(https://cdn.oppyotest.com/launches/instaengineai/jv/proudlybg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 230px;
        position: relative;
    }
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/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/jv/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;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #FDF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/jv/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/instaengineai/jv/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;
    }
}

/* demo sec end */

/* deep-funnel start */
.deep-funnel-sec {
   background: #ffffff;
}
.funnel-box {
    box-shadow: 0px 0px 10px 0px #f48129 inset;
    background: #FFF6F4;
    border: 2px solid #F48129;
    border-radius: 15px;
    padding: 15px;
}
.funnel-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
}
.funnel-box-bundle {
    box-shadow: 0px 0px 10px 0px #fc001329 inset;
    background: #fc001314;
    border: 2px solid #FC00134D;
    border-radius: 15px;
    padding: 15px;
    min-height: 300px;
    /* height: 100%; */
}
.funnel-inner-bundle {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    min-height: 350px;
}

/* .funnel-inner-bundle {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    display: flex;
    min-height: 378px;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
} */
@media(min-width:768px){
    /* .deep-funnel-sec{
        background: #0d0e14 url(https://cdn.oppyotest.com/launches/instaengineai/jv/funnel-bg.webp) no-repeat center center;
        background-size: cover;
    } */
     .funnel-box-bundle {
        min-height: 400px;
}
     .funnel-inner-bundle {
        min-height: 378px;
    }
}
/* deep-funnel end */

/* prize sec start */

.prize-value {
    background: linear-gradient(180deg, #000000 0%, #6a0300 100%);
}
@media (min-width: 768px) {
    .prize-value {
        background: #ffffff url(https://cdn.oppyotest.com/launches/instaengineai/jv/prize-value.webp) no-repeat top center;
        background-size: cover;
        /* position: relative;
        z-index: -1;
        padding: 203px 0 97px; */
    }
}
/* prize sec end */

/* contest-sec start */
.contest-sec{
    background: #ffffff;
}
.purple-box-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: 2px solid var(--pink-clr);
    box-shadow: 0px 0px 10px 0px #FC00131A;
    display: inline-block;
    border-radius: 40px;
    padding: 20px;
}
/* contest-sec end */

/* prise table */

@media (max-width:767px) {
    .prise-table-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: 2px solid var(--pink-clr);
        border-radius: 40px;
        padding: 32px 32px 50px 31px;
        position: relative;
    }
    .contest-text{
        background-color: #252525;
        border-radius: 100px;
        margin-top: -59px;
        height: 100%;
    }
    
    .trophy-1{
        background: var(--theme-clr);
        border-radius: 20px;
        padding: 3px 0px;
        position: relative;
    }
    .tropfy-img {
        position: absolute;
        left: 32px;
        top: -2px;
        width: 50px;
        height: 55px;
    }
    
    .tropfy-img-1 {
        position: absolute;
        left: 39px;
        top: -1px;
        width: 44px;
        height: 50px;
    }
    
    .tropfy-img-2 {
        position: absolute;
        left: 39px;
        top: 0px;
        width: 42px;
        height: 48px;
    }
    
    .tropfy-img-3 {
        position: absolute;
        left: 46px;
        top: 7px;
        width: 35px;
        height: 35px;
    }
    
    .tropfy-img-4 {
        position: absolute;
        left: 46px;
        top: 7px;
        width: 35px;
        height: 35px;
    }

    .prise-table-2{
        /* background: #FDEFDF;
        border: 10px solid #fff; */
        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: 2px solid #F89B1B;
        border-radius: 40px;
        padding: 32px 22px 35px 22px;
        position: relative;
    }
    .note-text{
        background-color: #F1A545;
        display: inline-block;
        padding: 11px 102px;
        border-radius: 20px;
    }
    }

.camle-clr{
    color: #F1A545;
}

@media (min-width:768px) {
   .prise-table-1 {
        box-shadow: 0px 0px 10px 0px #FC00131A;
       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: 2px solid var(--pink-clr);
        border-radius: 40px;
        padding: 65px 32px 50px 31px;
        position: relative;
    }
    .prise-table-2{
        /* background: #FDEFDF;
        border: 10px solid #fff; */
        background: #FC00131A;
        border: 2px solid #FC00134D;
        border-radius: 40px;
        padding: 65px 30px 30px 20px;
        position: relative;
    }
    .contest-text{
        background-color: #252525;
        border-radius: 100px;
        margin-top: -92px;
        height: 100%;
    }
    .trophy-1{
        /* background-color: #2346A1; */
        background: var(--theme-clr);
        border-radius: 20px;
        padding: 10px 0px;
        position: relative;
    }
    
.tropfy-img {
    position: absolute;
    left: 54px;
    top: -10px;
}

.tropfy-img-1 {
    position: absolute;
    left: 46px;
    top: -8px;
}

.tropfy-img-2 {
    position: absolute;
    left: 39px;
    top: -6px;
}

.tropfy-img-3 {
    position: absolute;
    left: 46px;
    top: 18px;
}

.tropfy-img-4 {
    position: absolute;
    left: 35px;
    top: 18px;
}

.note-text{
    background-color: #F1A545;
    display: inline-block;
    padding: 11px 102px;
    border-radius: 20px;
}
}
/* prise section end */

/* performer sec start */
.performer-sec{
    background: #FFF6F4;
}
.performer-text{
    background: var(--blue-clr);
    border: 1px solid #000000;
    padding: 10px;
    border-radius: 10px;
}
.promote-card{
    background: #ffffff;
    border: 1px solid var(--red-clr);
    border-radius: 20px;
    align-content: center;
    padding: 30px 20px;
    height: 100%;
}
.promote-card2{
    background:url(https://cdn.oppyotest.com/launches/instaengineai/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/instaengineai/jv/promote-tick.webp) no-repeat;
    padding: 0px 0px 0px 40px;
    background-position: 0px 0px;
}
.performer-text {
    padding: 0px 10px;
    position: relative;
}
/* @media(min-width:768px){
    .performer-sec{
        background: #010101 url(https://cdn.oppyotest.com/launches/instaengineai/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
} */
/* performer sec end */

/* Reciprocate Section Start */
.reciprocate-sec{
    background: #000000;
}
.logo-box{
    background: #ffffff;
    border-radius: 10px;
    padding: 13px 20px;
    align-content: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    height: 100%;
}
.reciprocate-text{
    background: var(--theme-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
@media(min-width:768px){
    .reciprocate-sec{
        background: #000000 url(https://cdn.oppyotest.com/launches/instaengineai/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .logo-box{
        padding: 13px 35px;
    }
    .reciprocate-text{
        padding: 10px 25px;
    }
}

/*  */

/* logos sec start */
.logos-sec{
    background: #FFF6F4;
}
.logos-text{
    background:#ffffff;
    border: 1px dashed var(--red-clr);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.launch-box{
    background: var(--theme-clr);
    border-radius: 20px 20px 0px 0px;
    padding: 20px;
}

.launch-border{
    background: var(--theme-clr);
    border-radius: 0px 0px 20px 20px;
    padding: 0px 10px 0px;
}
.launch-border img{
    border-radius: 0px 0px 10px 10px;
}
@media(min-width:768px){
    /* .logos-sec{
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/jv/logos-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    } */
    .logos-text {
        padding: 0px 20px;
    }
}
/* logos sec end */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: #FFF6F4;
}
.inside-text {
    background: var(--theme-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/instaengineai/jv/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/jv/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}
/*  Contact Section end */

/* term-sec start */
.term-sec{
    background: #ffffff;
}
/* @media(min-width:768px){
    .term-sec{
        background: #0B0C12 url(https://cdn.oppyotest.com/launches/instaengineai/jv/term-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* term-sec end */



/* Footer Section Start */
.footer-section{
    background: var(--black-clr);
    padding: 30px 0px;
}
.footer-ul{
    padding: 0px;
    margin: 0px;
}
.footer-ul li{
    display: inline;
}
.agent{
    max-height: 140px;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .footer-section {
        padding: 50px 0px 100px;
    }
}

/* Footer Section 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 */



 /* countdown css start */
  .countdown, .countdown-1 {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .countdown div {
    background: #111;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
} 
.countdown-1 div {
    background: #ffffff;
    color: #000000;
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
} 
.countdown span,  .countdown-1 span {
    display: block;
    font-size: 25px;
    font-weight: bold;
}
.countdown-1 p {
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}
.countdown p {
    color: #999;
    font-size: 12px;
}
.countdown span.animate {
    animation: pop 0.5s ease;
  }
  .countdown-1 span.animate {
    animation: pop 0.5s ease;
  }
  @keyframes pop {
    0% {
      transform: scale(1.4);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .shake {
    animation: shake 0.4s infinite;
  }
  
  @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
  }
  .timer-bg{
    background: linear-gradient(90deg, #406cf752 40%, #ff6b8645 100%);
    border-radius: 5px;
    padding: 10px;
}
  @media (min-width: 768px){
    .countdown p, .countdown-1 p {
        font-size: 15px;
    }
    .countdown-1 div {
        padding: 10px 20px;
        min-width: 80px;
      }
      .countdown div {
        padding: 10px 20px;
        min-width: 80px;
      }
      .countdown span, .countdown-1 span {
        font-size: 32px;
      }
      .timer-bg{
        padding: 30px;
    }
  }

  /* countdown css end */