
/* JV */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #010101;
    font-size: 14px;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--blue-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}
.oswald{
    font-family: "Oswald", sans-serif;
}
.playfair-font {
    font-family: "Playfair Display", serif;
}
.italic{
    font-style: italic;
}
/* scroll button start */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--blue-clr);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
/* #scroll:hover {
    background: var(--theme-bg-1);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
} */
/* scroll button end */
:root {
    --black-clr:#010101;
    --white-clr: #fff;
    --light-white: #01010199;
    --grey-clr1:#FFFFFF99;
    --purple-clr: #CD50FF;
    --blue-clr: #1D9BF5;
    --green-clr:#00BD00;
    --green-clr1:#21AF21;
    --red-clr: #FF3A3A;
    --red-clr1: #FF351C;

    
    
    --red-clr2: #FF361D;
    --blue-clr1: #5289EF;
    --purple-clr2:#B070FF;
    --orange-clr2: #FFA515;
    --orange-clr1: #FB591B;
    --orange-clr: #F08506;
    --grey-clr:#555555;
    --skyblue-clr: #0BAEFF;
    --brown-clr: #DF6A00;

     --theme-bg: linear-gradient(115.66deg, #00BBF4 13.23%, #750DE4 91.11%);
    --theme-bg1: linear-gradient(115.66deg, #750DE4 13.23%, #00BBF4 91.11%);
}
/* Color CSS */

.black-clr {color: var(--black-clr);}
.white-clr,
a.white-clr {color: var(--white-clr);}

.light-white{color: var(--light-white);}
.grey-clr1 {color: var(--grey-clr1);}
.brown-clr{color:var(--brown-clr);}
.green-clr1 {color: var(--green-clr1);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}

.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.purple-clr{color:var(--purple-clr);}
.purple-clr2{color:var(--purple-clr2);}
.skyblue-clr{color:var(--skyblue-clr);}

.grey-clr{color:var(--grey-clr);}

.green-clr{color:var(--green-clr);}
.green-clr1{color:var(--green-clr1);}

.orange-clr {color: var(--orange-clr);}
.orange-clr1 {color: var(--orange-clr1);}
.orange-clr2 {color: var(--orange-clr2);}

.lightpurple-clr {color: var(--lightpurple-clr);}


.theme-clr{
    background: var(--theme-bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.br-theme {
    border-bottom: 2px solid transparent;
    border-image: var(--theme-bg);
    border-image-slice: 1;
    width: 100%;
}






/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    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;
}


/* sticky bar start */

.cta-btn .timerbg,
.cta-btn .smmltd {
    color: #fff !important;
}

.blink-soft {
    animation: blinker 1.5s linear infinite
}
@keyframes blinker {
    50% {
        opacity: 0
    }
}

/* stick bar end */

.under{
    border-bottom: 2px solid var(--white-clr);
}

/* header section start */

.header-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #CFE2FF 100%);
    padding: 130px 0px 30px;
}

.pre-heading {
    border-radius: 100px;
    border: 1px dashed var(--blue-clr);
    background: #FFFFFF;
    display: inline-block;
    padding: 10px;
}
.attention{
    background: var(--red-clr);
    border-radius: 100px;
    padding: 0px 10px;
    display: inline-block;
}
.main-heading{
    background: #F4F9FF;
    border: 1px solid #9DD6FF;
    border-bottom: 5px solid #9DD6FF;
    border-radius: 50px 10px 50px 10px;
    padding: 15px;
    /* display: inline-block; */
}
.main-1 {
    background: var(--blue-clr);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
.post-head{
    background: #CD50FF0D;
    border: 1px dashed var(--purple-clr);
    border-radius: 10px;
    padding: 10px 6px;
    display: inline-block;
}


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;
  }
} 

.fsl-video-frame {
    border: 1px solid var(--blue-clr);
    box-shadow: 0px 0px 10px 8px #1d9bf529;
    border-radius: 10px;
}
/* .jvzoo-box{
    background: #FDF0F6;
    border-radius: 10px;
    display: inline-block;
    padding: 20px 20px;
} */
.header-date-box {
    background: linear-gradient(180deg, rgba(64, 140, 252, 0.3) 0%, rgba(64, 140, 252, 0) 100%);
    /* border: 1px solid var(--blue-clr); */
    border-bottom: none;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.main-date-1 {
    background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/date-frame-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px 14px 15px;
}
.launch-start {
    background: var(--blue-clr);
    padding: 7px 34px;
    display: inline-block;
    border-radius: 100px;
}
.time-box-1 {
    background: #ffffff;
    padding: 11px 12px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px #0000004D;
}
.launch-end {
    background: var(--orange-clr);
    padding: 9px 33px;
    display: inline-block;
    border-radius: 100px;
}
.main-date-2 {
    background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/date-frame-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 15px 15px;
}
.time-box-2 {
    background: #ffffff;
    padding: 11px 8px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px #0000004D;
}
.mt-top {
    margin-top: -45px;
}
@media(min-width:768px){
    .header-section {
        background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/header-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px;
        position: relative;
    }
    .pre-heading {
        border-radius: 100px;
        padding: 8px 52px 8px 18px;
        position: relative;
    }
    .pre-heading::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/investment-3d-icon.webp");
        top: -15px;
        right: -15px;
    }
    .attention{
        padding: 0px 15px;
    }
    .main-heading{
        padding: 27px 50px;
    }
    .main-1 {
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/main-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 8px 30px;
        border-radius: unset;
    }
    .post-head{
        padding: 7px 19px;
    }

    .blue-line{
        position: relative;
    }
    .blue-line::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/blue-line.webp");
        bottom: -26px;
        left: -6px;
    }
    .brown-line{
        position: relative;
    }
    .brown-line::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/brown-line.webp");
        bottom: -28px;
        left: 0px;
    }

    a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
    .header-date-box {
        padding: 60px 45px 40px;
    }
}

/*  */
.blue-box {
    border-radius: 10px;
    background: #E2F3FF;
    border: 1px solid #406CF7;
    padding: 20px 10px;
}
.header-white-box {
    background: #FFFFFF;
    /* border: 1px solid #FFFFFF33; */
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0px 5px 20px 0px #00000026;
    backdrop-filter: blur(50px);
    height: 100%;
    align-items: center;
}
@media (min-width: 768px) {
    .blue-box {
        border-radius: 20px;
        padding: 30px;
    }
    .mt-mdm3 {
        margin-top: -4px !important;
    }
}
/* header section end */

/* live section start */
.live-section{
    background: linear-gradient(180deg, #eaf3ff54 0%, #e8e2fffc 100%);
}
.gradiant-box{   
    border-radius: 20px;
    /* border: 5px solid #4D7FFA4D; */
    background: var(--blue-clr);
    padding: 20px 15px;
}
.live-text{
    background: var(--theme-bg);
    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 #addbfb;
}
.live-sec-card{
    padding: 20px 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 #1d9bf55c;
    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-bg);
    border-radius: 10px;
    transition: all .3s ease;
}
.form-btn input[type="submit"]:hover {
    transition: all .3s ease;
    /* background: var(--theme-bg-1); */
}
.request-affiliate-1 a{
    background: var(--theme-bg);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    /* border: 10px solid rgba(20, 220, 255, 0.2); */
    width: 100%;
    background-size: 150% 100%;
    transition: all 0.6s ease-in-out;
    outline: 0;
}
/* .request-affiliate-1{
    border: 10px solid #A6FF004D;
    border-radius: 15px;
} */
.request-affiliate-1 a:hover{
    color: #ffffff;
    background-position: 100% 0%;
    transition: all .3s ease;
    background: var(--theme-bg1);
}
.request-affiliate a{
    background:  var(--theme-bg);
    color: #ffffff;
    background-size: 150% 100%;
    transition: all 0.6s ease-in-out;
    outline: 0;
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
}
.request-affiliate a:hover{
    transition: all .3s ease;
    color: #ffffff;
    background: var(--theme-bg);
    background-position: 100% 0%;
}
/* button border animation css start */
@property --border-gradient-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
  }
  .btn-border{
    transition: ease 0.3s;
    }
    .btn-border:hover{
        transform: scale(1.03);
    }
    /* .btn-border {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #fdd03b 14%, #d544f9 19%, #6d6ffd 23%, transparent 17%);
        background-size: contain;
        animation: rotateBG 5s linear infinite;
    }
    .btn-border-1 {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #fdd03b 14%, #d544f9 19%, #6d6ffd 23%, transparent 17%);
        background-size: contain;
        background-color: #070707;
        animation: rotateBG 5s linear infinite;
    }
  
  @keyframes rotateBG {
    0% {
      --border-gradient-angle: 0turn;
    }
    100% {
      --border-gradient-angle: 1turn;
    }
  } */
  
  /* button border animation css end */
@media(min-width:768px){
    /* .live-section{
        background: #181737 url("https://cdn.oppyotest.com/launches/affiliateengineai/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: 40px 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 84px;
        text-align: center;
    }
    .jvzoo-img{
        min-height: 131px;
    }

}
/* live section end */

/* step sec start */
.step-section {
    background: #FFFFFF;
}

.step-text {
    background: #FAEEFF;
    border: 2px dashed var(--purple-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 15px;
}

.step-card {
    border-radius: 20px;
    border: 1px solid var(--blue-clr);
    background: #1D9BF51A;
    border-radius: 10px;
    padding: 20px 10px;
}

.step {
    background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/step.webp) no-repeat;
    background-size: 100% 100%;
    padding: 6px 20px 12px 23px;
    display: inline-block;
    margin-top: -26px;
}

.video-frame {
    background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 9px 54px 40px 57px;
}

@media (min-width: 768px) {
    .step-section {
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/step-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .step-text {
       padding: 0px 27px;
    }

    .step-card {
        padding: 0 27px 30px;
    }

    .step {
        background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/step.webp) no-repeat;
        background-size: 100% 100%;
        padding: 6px 20px 12px 23px;
        display: inline-block;
        margin-top: -7px;
    }

    .video-frame {
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 18px 110px 79px 112px;
    }
}

/* step sec end */

/* website section start */
.website-sec{
    background: #DADAFF;
}
.website-text{
    background: #FFFFFF;
    border: 1px solid var(--blue-clr);
    border-bottom: 5px solid var(--blue-clr);
    border-radius: 30px 10px 30px 10px;
    padding: 15px;
    display: inline-block;
}
.red-text{
    background: linear-gradient(180deg, rgba(255, 58, 58, 0) 0%, rgba(255, 58, 58, 0.3) 100%);
    border-bottom: 1px solid var(--red-clr);
    padding: 0px 10px;
}
.logo-text{
    background: #EDF4FF;
    border: 2px dashed var(--blue-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 8px 32px;
}
.logo-text img{
    max-height: 67px;
}
.website-sec li::marker{
    color: #FF361D;
}
@media(min-width:768px){
    .website-sec{
        background: #DADAFF url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/website-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .website-text{
        padding: 19px 49px 15px;
    }
}
/* website section end */

/* news sec start */
.news-sec{
    background: #FFFFFF;
}
.news-text {
    background: #FAEEFF;
    border: 2px dashed var(--purple-clr);
    padding: 0px 15px;
    border-radius: 10px;
    display: inline-block;
}
@media (min-width: 768px){
    .news-sec{
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/news-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .news-text {
        padding: 0px 32px;
    }
}
/* news sec end */




/* proudly sec start */
.proud-section{
    background: #000000;
    padding: 30px 0px;
}
.prudly-text {
    background: var(--theme-clr);
    display: inline-block;
    border-radius: 40px;
    padding: 4px 15px;
}
.pre-heading-1 {
    border-radius: 100px;
    border: 1px dashed var(--blue-clr);
    background: #1D9BF533;
    display: inline-block;
    padding: 10px;
}
.main-heading-1{
    background: #1D9BF533;
    border: 1px solid #9DD6FF;
    border-bottom: 5px solid #9DD6FF;
    border-radius: 50px 10px 50px 10px;
    padding: 15px;
    /* display: inline-block; */
}
@media (min-width: 768px) {
    .proud-section{
        background:  url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/proudly-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 100px;
    }
    .pre-heading-1 {
        border-radius: 100px;
        padding: 8px 52px 8px 18px;
        position: relative;
    }
    .pre-heading-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/investment-3d-icon.webp");
        top: -15px;
        right: -15px;
    }
    .main-heading-1{
        padding: 27px 50px;
    }
    .prudly-text {
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/proudly-frame.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 15px 62px
    }
    .img-pop{
        transition: ease 0.4s;
    }
    .img-pop:hover{
        transform: scale(1.05);
    }
}
/* proudly sec end */


/* step-section-1 start */
.step-section-1 {
    background: #FFFFFF;
}
.affiliate-text{
    background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/affilate-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 20px;
}
.step-text-1{
    background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/three-step-frame.webp") no-repeat;
    background-size: 100% 100% ;
    display: inline-block;
    padding: 14px 25px;
}
.step-box-inner-1, .step-box-inner-2, .step-box-inner-3{
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(135.97deg, #EDF4FF 20.58%, #FAEEFF 93.01%);
    border: 1px solid #1D9BF566;
    border-bottom: 5px solid #1D9BF566;
    border-radius: 20px;
    padding: 30px 15px 20px;
    margin-top: -25px;
}

@media (min-width: 768px) {
    .step-section-1 {
        background: #FFFFFF url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/step-bg-1.webp) no-repeat center center;
        background-size: cover;
    }
    .step-text-1{
        padding: 14px 25px;
        position: relative;
    }
    .step-text-1::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/left-step-arrow.webp");
        top: 2px;
        left: -205px;
    }
    .step-text-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/right-step-arrow.webp");
        top: 10px;
        right: -260px;
    }
    .step-box-1{
        margin-top: -24px;
    }
    .step-box-inner-1{
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/step-box-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 15px 108px;
        border-radius: unset;
        border: unset;
        margin-top: -25px;
    }
    .step-box-inner-2{
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/step-box-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 15px 88px;
        border-radius: unset;
        border: unset;
        margin-top: -25px;
    }
    .step-box-inner-3{
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/step-box-3.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 15px 105px;
        border-radius: unset;
        border: unset;
        margin-top: -25px;
    }
}
/* step-section-1 end */

/* demo section start */
.demo-sec{
    background: linear-gradient(135.97deg, #EDF4FF 20.58%, #FAEEFF 93.01%);
}
.demo-text {
    background: var(--blue-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
}
.border-frame {
    background: #CD50FF1A;
    border: 2px solid #CD50FF80;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 8px 74px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
}
/* demo section end */

/* deep-funnel start */
.deep-funnel-sec {
   background: #ffffff;
}
.funnel-box {
    box-shadow: 0px 0px 10px 0px #1d9bf529 inset;
    background: #1d9bf51a;
    border: 2px solid #1d9bf561;
    border-radius: 15px;
    padding: 15px;
}
.funnel-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
}
/* @media(min-width:768px){
    .deep-funnel-sec{
        background: #0d0e14 url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/funnel-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* deep-funnel end */

/* prize sec start */

.prize-value {
    background: #010122;
}
@media (min-width: 768px) {
    .prize-value {
        background: #ffffff url(https://cdn.oppyotest.com/launches/affiliateengineai/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{
    background: #6797ef24;
    border: 1px solid var(--blue-clr);
    box-shadow: 0px 0px 10px 0px #608ee59e;
    display: inline-block;
    border-radius: 40px;
    padding: 20px;
    height: 100%;
}
/* contest-sec end */

/* prise table */

@media (max-width:767px) {
    .prise-table-1{
        /* background: #D9D9D9;
        border: 10px solid #fff; */
        background: #6797ef24;
        border: 2px solid var(--blue-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-color: var(--blue-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: #6797ef24;
        border: 2px solid #8F77FD4D;
        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 #608ee59e;
        background: #6797ef24;
        border: 2px solid var(--blue-clr);
        border-radius: 40px;
        padding: 65px 32px 50px 31px;
        position: relative;
    }
    .prise-table-2{
        /* background: #FDEFDF;
        border: 10px solid #fff; */
        background: #6797ef24;
        border: 2px solid #8F77FD4D;
        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-color: var(--blue-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: #EAF4FF;
}
.performer-text{
    background: var(--blue-clr);
    border: 1px solid #000000;
    padding: 10px;
    border-radius: 10px;
}
.promote-card{
    background: #ffffff;
    border: 1px solid var(--blue-clr);
    border-radius: 20px;
    align-content: center;
    padding: 30px 20px;
    height: 100%;
}
.promote-card2{
    background:url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/affiliateengineai/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/affiliateengineai/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
} */
/* performer sec end */

/* Reciprocate Section Start */
.reciprocate-sec{
    background: #091b27;
}
.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: #5289EF;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 30px;
}
@media(min-width:768px){
    .reciprocate-sec{
        background: #091b27 url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .logo-box{
        padding: 13px 35px;
    }
    .reciprocate-text{
        padding: 0px 25px;
    }
}

/*  */

/* logos sec start */
.logos-sec{
    background: #EAF4FF;
}
.logos-text{
    background:#ffffff;
    border: 1px dashed #5289EF;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.launch-box{
    background: #5289EF;
    border-radius: 10px 10px 0px 0px;
    padding: 20px ;
}

.launch-border{
    border: 1px solid #5289EF;
     border-radius: 0px 0px 10px 10px;
}
.launch-border img{
    border-radius: 0px 0px 10px 10px;
}
@media(min-width:768px){
    /* .logos-sec{
        background: #EAF4FF url(https://cdn.oppyotest.com/launches/affiliateengineai/jv/logos-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    } */
    .logos-text {
        padding: 0px 20px;
    }
}
/* logos sec end */

/* inside sec start */
.inside-section {
    background: linear-gradient(180deg, #EAF3FF 0%, #E8E2FF 100%);
}
.inside-text{
    background: var(--theme-bg);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px) {
    .inside-section {
        background: #E8E2FF url("https://cdn.oppyotest.com/launches/affiliateengineai/jv/inside-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .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/affiliateengineai/jv/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}
/* inside sec end */

/* term-sec start */
.term-sec{
    background: #EAF4FF;
}
/* @media(min-width:768px){
    .term-sec{
        background: #0B0C12 url(https://cdn.oppyotest.com/launches/affiliateengineai/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 */



/* fixed-bar start */
.fixed-top-bar {
    background: var(--blue-clr);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
@media (min-width: 768px) {
    .fixed-top-bar {
        padding: 5px 0;
    }
}
/* fixed-bar end */
      

    .swing {
        animation: jhula 2s ease-in-out infinite alternate;
        transform-origin: top center;
      }
  
      @keyframes jhula {
        0% {
          transform: rotate(-15deg);
        }
        100% {
          transform: rotate(15deg);
        }
      }


      /* 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 */


/* swiper css start */

    .slider-container {
      width: 100%;
      height: 450px;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .slider-track {
      display: flex;
      gap: 16px;
      animation: slide 100s linear infinite;
      width: max-content;
    }

    .slider-container:hover .slider-track {
      animation-play-state: paused;
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

   .slide {
        flex: 0 0 auto;
        width: 2px;
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
        transition: transform 0.3s ease;
        background: #6797ef24;
        padding: 10px;
        border: 1px solid #8F77FD4D;
    }

    .slide:hover {
      /* transform: scale(1.05); */
      z-index: 10;
      position: relative;
    }

    .slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Duplicate slides for seamless loop */
    .slider-track {
      padding-left: 20px;
    }
@media (max-width: 767px) {
    .slide {
        width: 265px !important;
    }
}
  /* swiper css end */



