
/* 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(--theme-bg);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}
.italic{
    font-style: italic;
}
/* scroll button start */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--theme-bg);
    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;
    --orange-clr1: #FB591B;
    --grey-clr:#555555;
    --green-clr:#33FA59;
    --red-clr: #FF4A4A;
    --red-clr1: #FF2C2C;
    --blue-clr: #406CF7;
    --purple-clr: #8F77FD;
    --skyblue-clr: #0BAEFF;
    
    --green-clr1:#33FA59;
    --brown-clr: #DF6A00;
    --theme-bg: linear-gradient(89.87deg, #6363F8 2.95%, #8D8DFF 92.7%);
    --theme-bg-1: linear-gradient(89.87deg, #8D8DFF 2.95%, #6363F8 92.7%);

    /* --theme-bg-2: linear-gradient(90deg, rgba(143, 119, 253, 0.2) 0%, #8F77FD 45.67%, rgba(143, 119, 253, 0.2) 100%); */
}
/* 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);}

.blue-clr{color:var(--blue-clr);}
.purple-clr{color:var(--purple-clr);}
.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-clr1 {color: var(--orange-clr1);}

.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 */

/* header section start */

.header-section {
    background: #090909;
    padding: 130px 0px 30px;
}
.main-heading{
    background: #181623;
    border: 2px solid #8F77FD;
    padding: 20px 10px;
    border-radius: 10px;
    /* 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;
}


.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;
  }
} 
.header-li li {
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/header-li.webp) no-repeat;
    padding: 0px 0px 20px 32px;
    background-position: 0px 4px;
    list-style: none;
}
.header-li li:nth-last-child(1) {
    padding-bottom: 0px;
}
/* .header-card{
    border: 1px solid #406CF74D;
    background: #F1F5FE;
    border-radius: 10px;
    padding: 10px 0px;
} */
.Magically-text {
    background: #8F77FD1A;
    border-right: 2px solid var(--purple-clr);
    border-left: 2px solid var(--purple-clr);
    border-radius: 5px;
    padding: 4px 10px;
    display: inline-block;
}

.fsl-video-frame {
    border: 1px solid #8F77FD;
    box-shadow: 0px 0px 10px 8px #8F77FD80;
    border-radius: 10px;
}
/* .jvzoo-box{
    background: #FDF0F6;
    border-radius: 10px;
    display: inline-block;
    padding: 20px 20px;
} */
.post-head{
    background: #8F77FD1A;
    border: 1px solid #8F77FD;
    box-shadow: 0px 0px 10px 0px #8F77FD80;
    border-radius: 10px;
    display: inline-block;
    padding: 15px;
}
@media(min-width:768px){
    .header-section {
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/header-bg.webp) no-repeat bottom center;
        background-size: cover;
        position: relative;
    }
    .main-heading{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/main-heading.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 40px 45px;
        border: unset;
        border-radius: unset;
    }
    .post-head{
        padding: 15px 30px;
    }
    .blue-line{
        position: relative;
    }
    .blue-line::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/blue-line.webp");
        bottom: -26px;
        left: -6px;
    }
    .brown-line{
        position: relative;
    }
    .brown-line::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/brown-line.webp");
        bottom: -28px;
        left: 0px;
    }
    .Magically-text {
        padding: 7px 23px;
    }
    /* .header-card {
        padding: 20px 0px 0px 10px;
    } */
    a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
}

/*  */
.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: #181737;
}
.gradiant-box{   
    border-radius: 20px;
    /* border: 5px solid #4D7FFA4D; */
    background: var(--theme-bg);
    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: #f3f3f3;
    border: 1px solid #DFDFDF;
}
.live-sec-card{
    padding: 20px;
    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 #FFE0C2;
    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-bg);
}
.request-affiliate a{
    background:  var(--theme-bg);
    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;
    background: var(--theme-bg-1);
    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/aibrandifly/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 84px;
        text-align: center;
    }
    .jvzoo-img{
        min-height: 131px;
    }

}
/* live section end */

/* product-sec start */
.product-sec{
    background: #090909;
}
.story-text{
    background: linear-gradient(90deg, rgba(143, 119, 253, 0) 0%, rgba(143, 119, 253, 0.14) 46.63%, rgba(143, 119, 253, 0) 100%);
    border: 1px solid #8F77FD;
    border-radius: 10px;
    display: inline-block;
    padding: 10px 15px;
}
@media(min-width:768px){
    .product-sec{
        background: #090909 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/product-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .product-text{
        position: relative;
    }
    .product-text::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/left-purple-arrow.webp");
        top: 35px;
        left: -46px;
    }
    .product-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/right-purple-arrow.webp");
        top: 35px;
        right: -46px;
    }
    .story-text{
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/purple-box.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 20px 25px;
    }
}
/* product-sec end */

/* stop-sec start */
.stop-sec{
    background: #212148;
}
.stop-box {
    background: #8F77FD1A;
    border: 1px solid #8F77FD;
    box-shadow: 0px 0px 10px 0px #8F77FD80;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 15px;
    justify-content: center;
}
.apps-img {
    max-width: 150px;
}
@media(min-width:768px){
    .stop-sec{
        background: #212148 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/stop-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .stop-box{
        padding: 15px 30px;
        gap: 30px;
    }
    .apps-img {
        max-width: 300px;
    }
}
/* stop sec end */

/* tip-sec start */
.tip-sec{
    background: #202043;
    backdrop-filter: blur(800px);
}
.watch-frame {
    background: #FDCE77;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
}
@media(min-width:768px){
     .tip-sec{
        background: #202043 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/tip-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .watch-frame {
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/waiting-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 20px 50px 20px 30px;
        position: relative;
    }
    .watch-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/watch-img.webp");
        right: -40px;
        top: 0px;
    }
}
/* tip-sec end */

/* ignore-sec start */
.ignore-sec{
    background: #090909;
}
.ignore-img1{
    max-width: 40%;
}
@media(max-width:767px){
    .ignore-img{
        max-width: 105px;
    }
}
.ignore-text-1{
    background: linear-gradient(180deg, rgba(143, 119, 253, 0.2) 0%, #8F77FD 100%);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 30px;
}
.video-frame-1 {
    border-radius: 20px;
    overflow: hidden;
    background: #8F77FD1A;
    padding: 10px;
    object-fit: contain;
    border: 1px solid #8F77FD4D;
}
.red-box-1{
    background: #FF252526;
    border: 2px dashed #FF2525;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
}
@media(min-width:768px){
    .ignore-sec{
        background: #090909 url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ignore-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .ignore-text-1{
        border-radius: 20px;
        padding: 0px 52px;
    }
    .ignore-img1{
        max-width: 15%;
    }
    .red-box-1{
        padding: 13px 50px 13px 35px;
        border-radius: 50px;
        position: relative;
    }
    .red-box-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/bored-icon.webp");
        top: -8px;
        right: -50px;
    }
    /* .purple-wave-1::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/purple-wave-1.webp");
        bottom: 0px;
        left: 0px;
    } */
}
/* ignore-sec end */

/* ease-sec start */
.ease-sec{
    background: #151533;
}
/* .ease-box{
    background: #FFFFFF12;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
} */
.ease-1{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.ease-2{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.ease-3{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-3.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.ease-4{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-4.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.ease-5{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-5.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.ease-6{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-6.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}
.tilt {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    will-change: transform, box-shadow;
}
/* Extra Smooth Scaling Effect */
.tilt:hover {
    transform: scale(1.08);
    /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
}
@media(min-width:768px){
    .ease-sec{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .ease-1{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
    .ease-2{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
    .ease-3{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-3.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
    .ease-4{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-4.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
    .ease-5{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-5.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
    .ease-6{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/ease-6.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px;
    }
}
/* ease-sec end */

  /* third-sec start */
  .third-section {
        padding: 30px 0px 30px 0px;
        background: #22224a;
    }
@media (min-width: 768px) {
    .third-section {
        background: #22224a url(https://cdn.oppyotest.com/launches/aibrandifly/jv/third-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0px 100px 0px;
    }
}
  /* third-sec end */

/* thing-sec start */
.thing-sec{
background: #12132e;
}
.thing-text{
    background: linear-gradient(180deg, rgba(143, 119, 253, 0.2) 0%, #8F77FD 100%);
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
}
.thing-text-1{
    background: #00000026;
    border: 1px dashed #8F77FD;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.thing-box{
    background: #8F77FD1A;
    border: 1px solid #8F77FD4D;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    height: 100%;
}
.thing-content-box{
    padding: 10px;
}
.thing-text-2{
    background: #8F77FD1A;
    border: 1px solid #8F77FD;
    box-shadow: 0px 0px 10px 0px #8F77FD80;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}
@media(min-width:768px){
    .thing-sec{
        background: #12132e url(https://cdn.oppyotest.com/launches/aibrandifly/jv/thing-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .thing-text{
        padding: 5px 128px 5px 25px;
         border-radius: 30px;
        position: relative;
    }
    .thing-text::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/thing-icon.webp");
        top: -20px;
        right: -3px;
    }
    .thing-text-1, .thing-text-2{
        padding: 14px 19px;
    }
    .thing-content-box{
        padding: 20px;
    }   
}
/* thing-sec end */

/* creator-sec start */
.creator-sec{
    background: #090909;
}
.creator-frame{
    background: #8F77FD1A;
    border: 2px dashed #8F77FD;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 10px;
}
.creator-text-1{
    background: #00C40D1A;
    border: 2px dashed #00C40D;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media(min-width:768px){
    .creator-sec{
        background: #090909 url(https://cdn.oppyotest.com/launches/aibrandifly/jv/creator-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .creator-frame{
        padding: 20px 25px;
    }
    .creator-text-1{
        border-radius: 50px;
        padding: 13px 41px 13px 70px;
        position: relative;
    }
    .creator-text-1::before{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/money-emoji.webp");
        top: -12px;
        left: -35px;
    }
}
/* creator-sec end */

/* goldmine-sec start */
.goldmine-sec{
    background: #1d1d3d;
}
.goldmine-box {
    padding: 30px;
    z-index: 1;
    position: relative;
}
.goldmine-box::after {
    position: absolute;
    content: '';
    border-radius: 20px;
    background: #8F77FD1A;
    border: 1px solid #8F77FD4D;
    backdrop-filter: blur(20px);
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
@media(min-width:768px){
    .goldmine-sec{
        background: #1d1d3d url(https://cdn.oppyotest.com/launches/aibrandifly/jv/goldmine-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .goldmine-box {
        padding: 50px 0px;
    }
    .goldmine-line-1{
        position: relative;
    }
    .goldmine-line-1::after {
        position: absolute;
        content: "";
        top: 0px;
        right: 0px;
        width: 2px;
        height: 100%;
        border-radius: 10px;
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/goldmine-1.webp") no-repeat;
    }
}
@media (max-width:1400px) {
    .goldmine-box::after{
        position: absolute;
        content: '';
        border-radius: 20px;
        background: #8F77FD1A;
        border: 1px solid #8F77FD4D;
        backdrop-filter: blur(20px);
        height: 100%;
        width: 100%;
        max-width: 1270px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
}
@media (max-width:767px) {
    .goldmine-box::after{
        position: absolute;
        content: '';
        border-radius: 20px;
        background: #8F77FD1A;
        border: 1px solid #8F77FD4D;
        backdrop-filter: blur(20px);
        height: 100%;
        width: 100%;
        max-width: 340px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
}
/* goldmine-sec end */

/* expensive-section start */
.expensive-section{
    background: #010101;
}
.expensive-text{
    background: #FF2C2C;
    padding: 15px 10px;
    display: inline-block;
    border-radius: 10px;
}
.expensive-card {
    border-radius: 20px;
    background: #FF2C2C;
    border: 1px solid #FF2C2C80;
    display: inline-block;
    padding: 20px;
}
.expensive-card-1 {
    border-radius: 20px;
    border: 1px solid #FF2C2C80;
    display: inline-block;
    padding: 20px;
}

.expensive-red-box{
    padding: 30px;
    position: relative;
}
.expensive-red-box::after{
    position: absolute;
    content: '';
    border-radius: 20px;
    background: rgba(255, 44, 44, 0.10);
    height: 100%;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.expensive-boxes {
    background: #FF2C2C;
    border-radius: 10px;
    padding: 6px 25px;
}
.expensive-boxes:nth-child(1) {
    background: #FF2C2C;
    border-radius: 10px;
    padding: 20px 18px;
}
.expensive-shade {
    background: linear-gradient(270deg, rgba(255, 75, 75, 0.6) 0%, rgba(250, 37, 37, 0.7) 62.48%, rgba(255, 75, 75, 0.7) 100.78%);
    border: 1px solid #FF252566;
    display: inline-block;
    border-radius: 10px;
    padding: 10px 8px;
}
.expensive-black-box {
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
.ex-box {
    background: var(--red-clr);
    border-radius: 5px;
    padding: 0px 5px;
}
@media(min-width:768px){
    .expensive-section{
        background: #ffe6e6 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/expensive-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .expensive-text{
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/expensive-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 14px 50px 16px 30px;
        box-shadow: unset;
        border-radius: unset;
        position: relative;
    }
    .expensive-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/think-emoji.webp");
        top: -30px;
        right: -65px;
    }
    .expensive-card {
        padding: 40px 30px;
    }
    .expensive-card-1 {
        padding: 40px 30px;
    }
    .red-wave-1{
        position: relative;
    }
    .red-wave-1::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/red-wave-1.webp") no-repeat;
        width: 395px;
        height: 14px;
        bottom: -7px;
        left: 16px;
    }
    .expensive-1 {
        padding: 13px 110px 13px 108px;
    }
    .expensive-2 {
        padding: 13px 123px;
    }
    .expensive-3 {
        padding: 13px 110px;
    }
    .expensive-4 {
        padding: 13px 33px 13px 60px;
    }
    .theme-line-5{
        position: relative;
    }
    .theme-line-5::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/theme-line-5.webp");
        bottom: -20px;
        left: 0px;
    }
    .expensive-red-box{
        padding: 50px 0px;
    }
    .expensive-red-box::after{
        width: calc(100% + 10%);
    }
    .expensive-shade {
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/expensive-shade.webp") no-repeat;
        background-size: 100% 100%;
        /* padding: 13px 25px 13px 35px; */
        border: unset;
        border-radius: unset;
    }
    .expensive-shade:nth-child(1){
        padding: 13px 173px;
    }
    .expensive-shade:nth-child(3){
        padding: 13px 130px;
    }
    .expensive-shade:nth-child(5){
        padding: 13px 52px;
    }
    .expensive-black-box {
    background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/heroes-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 30px 40px 40px;
    border-radius: 0px;
}
}
@media(min-width:1400px){
    .expensive-red-box::after{
        width: calc(100% + 200px);
    }
}
/* expensive-section end */


/* result-sec start */
.result-sec{
    background: #0B0C12;
}
.expensive-black-light {
    background: #0B0C12;
    border: 1.14px solid #544E9D;
    box-shadow: 0px 0px 20px 0px #8F77FD80;
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .result-sec{
        background: #0B0C12 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/result-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .expensive-black-light {
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/expensive-black-light.webp") no-repeat;
        background-size: 100% 100%;
        padding: 42px 48px 42px 34px;
        border: unset;
        box-shadow: unset;
        border-radius: 0px;
    }
}
/* result-sec end */

/* not-anymore-sec start */
.not-anymore-sec{
    background: linear-gradient(180deg, #090909 -9.78%, #111111 100%);
}
.not-frame {
    background: #406CF7;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.but-text{
    background: #0BAEFF1A;
    border: 2px dashed #8F77FD;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.think-box-2 {
    background: #8F77FD1A;
    border: 1px solid #8F77FD4D;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}
.ignore-text{
    background: #00C40D1A;
    border: 2px dashed #00C40D;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .not-anymore-sec{
        background: #090909 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .not-frame {
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/anymore-frame.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 40px 4px 30px;
        border-radius: unset;
        position: relative;
    }
    .not-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/book-icon.webp");
        top: -3px;
        right: -30px;
    }
    .but-text{
        padding: 0px 47px 0px 21px;
        position: relative;
    }
    .but-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/right-star-emoji.webp");
        top: -6px;
        right: -45px;
    }
      .ignore-text{
        border-radius: 20px;
        padding: 10px 15px;
    }

}
/* not-anymore-sec end */


























/* proudly sec start */
.proud-section{
    background: #010101;
}
.heading {
    background: linear-gradient(180deg, rgba(143, 119, 253, 0.2) 0%, #8F77FD 100%);
    border-radius: 30px;
    display: inline-block;
}
.heading-text{
    padding: 2px 15px;
}
@media (min-width: 768px) {
    .proud-section{
        background: #010101 url("https://cdn.oppyotest.com/launches/aibrandifly/jv/proudly-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .proud-text {
        border-bottom: 2px dashed #F06327;
    }
    .heading-text{
        padding: 8px 40px;
    }
    .img-pop{
        transition: ease 0.4s;
    }
    .img-pop:hover{
        transform: scale(1.1);
    }
}
/* proudly sec end */

/* step-sec start */
.step-sec{
    background: #ffffff;
}
.easy-step{
    background: var(--purple-clr);
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}
/* steps-card */
.nav-tabs .nav-link.active .steps-card{
    background: #8F77FD1A !important;
}
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--purple-clr);
}
.heading-tabs:not(.collapsed) .steps-card{
    border-color: var(--purple-clr);
}
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    fill: white;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    transition: 0.5s ease-in-out;
    border: 1px solid transparent;
}

.steps-tabs{
    /* height: 750px; */
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--purple-clr);
}

@media (min-width: 768px) {
    /* .step-sec{
        padding: 20px 0px 100px;
    } */
    .steps-card .steps-icon{
        min-width: 100px;
        min-height: 100px;   
    }
    .easy-step{
        padding: 0px 22px 3px 13px;
        position: relative;
    }
    .easy-step::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/click-hand-icon.webp");
        top: 26px;
        right: -60px;
    }
}
/*  */

.steps-card p{
    /* color: #101010; */
    color: rgba(25, 25, 25, 0.5);
}

.steps-card{
    transition: all .8s ease-in-out;
    border-radius: 20px;
    background: #ffffff;
}
.heading-tabs{
    background: rgba(153, 88, 204, 0.10);    ;
    border: none;
    outline: none;
    padding: 0;
    text-align: left;
    border-radius: 20px;
}


.cleint-frame {
    border: 5px solid var(--purple-clr);
    background: var(--purple-clr);
    border-radius: 12px;
    /* padding: 20px; */
}
/* step-sec end */

/* demo section start */
.demo-sec{
    background: #010101;
}
.demo-text{
    background: linear-gradient(180deg, rgba(143, 119, 253, 0.2) 0%, #8F77FD 100%);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 30px;
}
.border-frame {
    background: #151515;
    border: 2px solid #8F77FD80;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
 .demo-box {
        /* border-radius: 10px; */
        padding: 15px 10px;
        height: 100%;
        align-items: center;
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/demo-box.webp") no-repeat center center;
        background-size: 100% 100%;
    }
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 52px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/aibrandifly/jv/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .demo-box {
        padding: 15px 15px;
    }
   
}
/* demo section end */

/* deep-funnel start */
.deep-funnel-sec {
    background: #0d0e14;
}
@media(min-width:768px){
    .deep-funnel-sec{
        background: #0d0e14 url(https://cdn.oppyotest.com/launches/aibrandifly/jv/funnel-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* deep-funnel end */

/* prize sec start */

.prize-value {
    background: #0b0308;
}
@media (min-width: 768px) {
    .prize-value {
        background: #0d0e14 url(https://cdn.oppyotest.com/launches/aibrandifly/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: #010101;
}
.purple-box{
    background: #8F77FD1A;
    border: 1px solid #8F77FD;
    box-shadow: 0px 0px 10px 0px #8F77FD80;
    display: inline-block;
    border-radius: 40px;
    padding: 20px;
}
/* contest-sec end */

/* prise table */

@media (max-width:767px) {
    .prise-table-1{
        /* background: #D9D9D9;
        border: 10px solid #fff; */
        background: #8F77FD1A;
        border: 2px solid #8F77FD4D;
        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: #2346A1;
        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: #8F77FD1A;
        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{
        /* background: #D9D9D9;
        border: 10px solid #fff; */
        box-shadow: 0px 0px 10px 0px #8F77FD80;
        background: #8F77FD1A;
        border: 2px solid #8F77FD;
        border-radius: 40px;
        padding: 65px 32px 50px 31px;
        position: relative;
    }
    .prise-table-2{
        /* background: #FDEFDF;
        border: 10px solid #fff; */
        background: #8F77FD1A;
        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(--purple-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: #010101;
}
.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/aibrandifly/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/aibrandifly/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/aibrandifly/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
}
/* performer sec end */

/* Reciprocate Section Start */
.reciprocate-sec{
    background: #090909;
}
.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%;
}
@media(min-width:768px){
    .reciprocate-sec{
        background: #090909 url(https://cdn.oppyotest.com/launches/aibrandifly/jv/reciprocate-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .logo-box{
        padding: 13px 35px;
    }
}

/*  */

/* logos sec start */
.logos-sec{
    background: #090909;
}
.logos-text{
    background: var(--purple-clr);
    border: 1px solid #000000;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.launch-box{
    background: var(--purple-clr);
    border-radius: 10px 10px 0px 0px;
    padding: 20px ;
}

.launch-border{
    border: 1px solid var(--purple-clr);
     border-radius: 0px 0px 10px 10px;
}
.launch-border img{
    border-radius: 0px 0px 10px 10px;
}
@media(min-width:768px){
    .logos-sec{
        background: #090909 url(https://cdn.oppyotest.com/launches/aibrandifly/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: #010101;
}
.container-box{
    padding: 20px;
    position: relative;
    background: #030f28;
    border-radius: 30px;
}
.terms-list li {
    list-style: none;
    padding: 0 0 20px 0px;
}
@media(min-width:768px){
    .contact-section{
        background: #010101 url(https://cdn.oppyotest.com/launches/aibrandifly/jv/contact-sec-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 100px 0px;
    }
    .container-box{
        padding: 80px;
        background: url(https://cdn.oppyotest.com/launches/aibrandifly/jv/contact-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }
}

/*  */
/* term-sec start */
.term-sec{
    background: #0B0C12;
}
@media(min-width:768px){
    .term-sec{
        background: #0B0C12 url(https://cdn.oppyotest.com/launches/aibrandifly/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(--theme-bg);
    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: #8F77FD1A;
        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 */





  /* 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: #fff;
    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;
    color: var(--purple-clr) !important;
}
@media (min-width: 768px){
    .bxslider li {
        justify-content: center;
        min-width: 100%;
        float: left !important;
        width: auto !important;
    }
}
/* slider up end */