
html {
    scroll-behavior: smooth;
}

body {
        font-family: "Bricolage Grotesque", sans-serif;
    color: #000000;
    font-size: 14px;
    overflow-x: hidden;
}

/* font-family */
.italic{
    font-style: italic;
}
.caveat{
    font-family: "Caveat", system-ui;
}
.figtree {
  font-family: "Figtree", sans-serif;
}
/* .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(--pink-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}

:root {
    --black-clr: #000000;
    --black-clr-2: #010101B2;
    --white-clr: #fff;
    --light-white: #FFFFFFB2;
    --light-white1: #FFFFFF99;
    --yellow-clr: #FFD863;
    --pink-clr: #EC2CA3;
    --red-clr:#FF4646;
    --orange-clr: #FF8E0DF8;
    --orange-clr1: #FF9113;

    --red-clr1:#FF373C;
    --red-clr2:#FF361D;
    --red-clr3:#FF2C2C;
    --green-clr: #7AA700;
    --green-clr1: #28B800;
    --green-clr2: #26AF00;
    --green-clr3: #1AB400;
    --green-clr4: #96CA0A;
    --green-clr5: #26AF0F;
    --neon-clr: #FFA515;

    --red-clr4:#FF5E4A;
    /* --green-clr2: #29DA19; */
    --purple-clr: #9C50FA;
    --teal-clr: #00BBC0;

    --theme-clr: linear-gradient(99.1deg, #A1D506 7.71%, #5065DD 96.92%);
    --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:#297EEE;
    --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);}
.light-white1 {color: var(--light-white1);}

.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);}
.orange-clr1{color:var(--orange-clr1);}
.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(--pink-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/pitchoraai/jv/cta-btn-border.webp') no-repeat center center; 
    background-size: cover; 
    padding: 20px 10px;
    border-radius: 10px;
}
.tip-sec {
    background: #fff; 
    padding: 30px 0px;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 100px;
        display: inline-block;
    }
    .tip-sec {
    padding: 60px 0px;
    }

        .nav {
      margin-top: 80px;
    }

    .cta-btn-border {
        border-radius: 13px;
        padding: 0px;
    }
    
    .cta-btn-bg {
        padding: 30px;
        border-radius: 10px;
    }
    .video-absolute {
    position: absolute;
    top: 507px;
    left: -295px;
    transform-origin: top left;
    transform: rotate(-10deg) scale(0.4);
    opacity: 0;
}
.video-absolute1 {
    position: absolute;
    top: 147px;
    right: -870px;
    transform-origin: top left;
    transform: rotate(10deg) scale(0.3);
    opacity: 0;
}
}
/*  */


/*@media (min-width: 1366px) {*/
/*        .video-absolute {*/
/*    position: absolute;*/
/*    top: 507px;*/
/*    left: -295px;*/
/*    transform-origin: top left;*/
/*    transform: rotate(-10deg) scale(0.4);*/
/*    opacity: 0;*/
/*}*/
/*.video-absolute1 {*/
/*    position: absolute;*/
/*    top: 6px;*/
/*    right: -270px;*/
/*    transform-origin: top left;*/
/*    transform: rotate(10deg) scale(0.3);*/
/*    opacity: 0;*/
/*}*/
/*}*/


/* 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: #250017;
    padding: 160px 0px 250px;
    width: 100%;
}
.main-heading {
    background: linear-gradient(90deg, rgba(75, 38, 67, 0.2) 0%, rgba(168, 10, 134, 0.12) 100%);
    border: 2px solid #FFFFFF4D;
    /* backdrop-filter: blur(10px); */
    border-radius: 30px;
    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 10px;
    background: linear-gradient(90deg, rgba(75, 38, 67, 0.2) 0%, rgba(168, 10, 134, 0.12) 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/pitchoraai/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/pitchoraai/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/pitchoraai/jv/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
.post-head {
    background: linear-gradient(90deg, rgba(78, 9, 53, 0) 0%, #4E0935 43.27%, rgba(78, 9, 53, 0) 100%);
    padding: 10px 15px;
    display: inline-block;
    border-radius: 15px;
    display: inline-block;
}
.fsl-video-frame {
backdrop-filter: blur(10px);
    background: var(--pink-clr);
    border: 2px solid var(--pink-clr);
    padding: 10px;
    border-radius: 10px;
}

        .scroll-section {
      height: 300vh;
      /* background: #000000; */
   
    }
 
    .container-scroll {
      position: sticky;
      top: 0;
      /* height: 100vh; */
      /* display: flex; */
    }

    .nav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* margin-top: 80px; */
    }
 
   
    .slides {
      position: relative;
      width: 100%;
    }
 
    .slide {
      position: absolute;
      width: 100%;
      height: 100vh;
      padding-top: 20px;
      /* display: flex;
      flex-direction: column;
      justify-content: center; */
      opacity: 0;
      transform: translateY(80px) scale(0.95);
      transition: 0.6s;
    }
 
    .slide.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .header-frame {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-frame1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame1 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-frame2.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame2 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-frame3.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame3 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-frame4.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
.header-frame4 {
    display: inline-block;
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-frame5.webp) 0% 0% / 100% 100% no-repeat;
    padding: 20px;
}
@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 100px 0px 100px;
    }
        .slide {
      padding-top: 120px;
    }
        .main-text1 {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/main-text.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 10px 50px 3px;
    }
    .main-heading {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/main-heading.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 40px 33px;
    }
    .main-text {
        padding: 12px 40px;
        border-radius: 20px 20px 0px 0px;
    }
    .post-heading{
        padding: 20px 45px;
        border-radius: 100px;
    }
    .post-head {
        padding: 14px 28px;
    }
    .header-ul{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/header-ul.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px 20px;
        border: unset;
        border-radius: unset;
    }
    .header-ul li {
        padding: 0px 0px 25px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/pitchoraai/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/pitchoraai/jv/green-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 8px;
    }
        .header-frame4 {
        padding: 78px 50px 40px;
    }
    .fsl-video-frame {
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .step-pipe{
  position: absolute;
  left: 28px; /* adjust for alignment */
  width: 4px;
}

/* background line */
.step-pipe::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 15px;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
}

/* progress */
.progress-real{
  position: absolute;
      left: -50px;
    top: 15px;
  width: 100%;
  height: 0;
  background: #EC2CA3;
  box-shadow: 0 0 10px #EC2CA3;
}

/* dot */
.progress-dot{
  position: absolute;
  left: -62px;
  top: 0;
  /* transform: translate(-50%, -50%); */
}

/* image */
.progress-dot img{
  width: 28px;
  height: 28px;
}
.header-frame,.header-frame1, .header-frame2, .header-frame3 {
        padding: 78px 50px 20px;
    }
    @keyframes star-move{0%{transform:translate(0)}to{transform:translateY(-1000px)}}

@keyframes star-loop{0%{opacity:0}50%{opacity:1}to{opacity:0}}

    .bg-star {
        position: absolute;
        left: 0%;
        bottom: 85%;
        width: 30px;
        height: 30px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 200s, 5s;
        z-index: 90;
    }
.bg-star1 {
    position: absolute;
    right: 0%;
    bottom: 80%;
    width: 35px;
    height: 35px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 200s, 5s;
    z-index: 90;
}
    .bg-star2{
        position: absolute;
        left: -12%;
        bottom: 82%;
        width: 25px;
        height: 25px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 255s, 8s;
        z-index: 90;
    }
    .bg-star3{
        position: absolute;
        right: -12%;
        bottom: 60%;
        width: 25px;
        height: 25px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 125s, 7s;
        z-index: 90;
    }
    .bg-star4{
        position: absolute;
        left: -40%;
        bottom: 85%;
        width: 30px;
        height: 30px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 100s, 5s;
        z-index: 90;
    }
    .bg-star5{
        position: absolute;
        right: -5%;
        bottom: 88%;
        width: 20px;
        height: 20px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 120s, 7s;
        z-index: 90;
    }
    .bg-star6{
        position: absolute;
        left: -12%;
        bottom: 75%;
        width: 25px;
        height: 25px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 170s, 6s;
        z-index: 90;
    }
.bg-star7 {
    position: absolute;
    right: 20%;
    bottom: 78%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 90s, 4s;
    z-index: 90;
}
.bg-star8 {
    position: absolute;
    left: -5%;
    bottom: 90%;
    width: 25px;
    height: 25px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 130s, 5s;
    z-index: 90;
}
.bg-star9 {
    position: absolute;
    right: 3%;
    bottom: 83%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 110s, 3s;
    z-index: 90;
}
    .bg-star10{
        position: absolute;
        left: -8%;
        bottom: 100%;
        width: 25px;
        height: 25px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 70s, 2s;
        z-index: 90;
    }
.bg-star11 {
    position: absolute;
    right: -5%;
    bottom: 95%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 130s, 5s;
    z-index: 90;
}
.bg-star12 {
    position: absolute;
    left: 16%;
    bottom: 70%;
    width: 20px;
    height: 20px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 150s, 4s;
    z-index: 90;
}
.bg-star13 {
    position: absolute;
    right: 38%;
    bottom: 74%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 200s, 5s;
    z-index: 90;
}
    .bg-star14{
        position: absolute;
        left: -12%;
        bottom: 89%;
        width: 30px;
        height: 30px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 150s, 6s;
        z-index: 90;
    }
.bg-star15 {
    position: absolute;
    right: -16%;
    bottom: 85%;
    width: 25px;
    height: 25px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 170s, 6s;
    z-index: 90;
}
    .bg-star16{
        position: absolute;
        left: -24%;
        bottom: 50%;
        width: 22px;
        height: 22px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 160s, 7s;
        z-index: 90;
    }
.bg-star17 {
    position: absolute;
    right: -15%;
    bottom: 76%;
    width: 25px;
    height: 25px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 225s, 8s;
    z-index: 90;
}
.bg-star18 {
    position: absolute;
    left: 25%;
    bottom: 77%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 150s, 6s;
    z-index: 90;
}
.bg-star19 {
    position: absolute;
    left: -20%;
    bottom: 76%;
    width: 25px;
    height: 25px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 200s, 5s;
    z-index: 90;
}
    .bg-star20{
        position: absolute;
        right: -5%;
        bottom: 55%;
        width: 30px;
        height: 30px;
        animation-name: star-move, star-loop;
        animation-iteration-count: infinite, infinite;
        animation-timing-function: linear, linear;
        animation-duration: 180s, 5s;
        z-index: 90;
    }
.bg-star21 {
    position: absolute;
    left: -15%;
    bottom: 65%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 180s, 5s;
    z-index: 90;
}
.bg-star22 {
    position: absolute;
    left: -15%;
    bottom: 55%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 180s, 5s;
    z-index: 90;
}
.bg-star23 {
    position: absolute;
    right: -20%;
    bottom: 70%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 180s, 5s;
    z-index: 90;
}
.bg-star24 {
    position: absolute;
    left: -20%;
    bottom: 70%;
    width: 30px;
    height: 30px;
    animation-name: star-move, star-loop;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: linear, linear;
    animation-duration: 180s, 5s;
    z-index: 90;
}
}
/* header section end */

/* live section start */
.live-section{
   background: linear-gradient(180deg, #490E32 0%, #000000 100%);
}
.gradiant-box{   
    border-radius: 20px;
    /* border: 5px solid #4D7FFA4D; */
    background: var(--pink-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 var(--pink-clr);
    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{
    border-radius: 30px;
    margin: 0 auto;
    color: #ffffff;
    padding: 2.5% 6.7% 2.5% 6.7%;
    display: table;
    text-decoration: none;
    transition: 0.5s;
    background: var(--pink-clr);
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
    overflow: hidden;
    position: relative;
}
.request-affiliate-1 a:hover{
    background: var(--pink-clr);
    transform: scale(1.03);	
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
}

.btn-1:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

.arrow-btn {
    position: relative;
    margin-top: -2%;
    left: 5%;
    animation: Rightbounce 2s ease infinite;
}
@keyframes Rightbounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}

.request-affiliate a{
    background:  var(--pink-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/pitchoraai/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: 25px 70px;
    }
    /* .request-affiliate-1:hover {
        transform: scale(1.04);
    } */
    .jvzoo-img{
        min-height: 131px;
    }

}
/* live section end */


/* business-sec start */
.business-sec{
   background: linear-gradient(180deg, #000000 0%, #490E32 100%);
}

@media (min-width: 768px){
    .business-sec{
   padding: 100px 0px 0px;
}
}

/* business-sec end */

/* selling-sec start */
.selling-sec{
    background: linear-gradient(180deg, #000000 0%, #490E32 100%);
}
.selling-box{
    background: #1C0513;
    border: 3px dashed #ffffff;
    border-radius: 10px;
    padding: 10px;
}
.payment-box {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/payment-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
    border-radius: 30px;
}

@media (min-width: 768px){
    .selling-sec{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/selling-bg.webp) no-repeat;
    background-size: cover;
}
.selling-box{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/selling-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 34px 20px 20px;
    border: unset;
    border-radius: unset;
    height: 100%;
}
.payment-box {
        padding: 50px 0px;
    }

}

/* selling-sec end */

/* channel-sec start */
.channel-sec{
    background: linear-gradient(180deg, #000000 0%, #490E32 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: #FF373C;
    border: 3px dashed #FFFFFF;
    border-radius: 25px;
    display: inline-block;
    padding: 5px 20px;
}
.channel-they {
    padding: 10px 20px;
    background: #EC2CA34D;
    border: 1px dashed #FFFFFFCC;
    border-radius: 100px;
    display: inline-block;
}

@media (min-width: 768px) {
    .channel-sec {
        background: #000000 url(https://cdn.oppyotest.com/launches/pitchoraai/jv/channel-bg.webp) no-repeat center center;
        background-size: cover;
        /* background-attachment: fixed; */
    }
    .channel-head{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/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/pitchoraai/jv/channel-text.webp") no-repeat;
        background-size: 100% 100%;
        padding: 9px 42px;
        border: unset;
        border-radius: unset;
    } */
    .why-text{
        padding: 22px 74px;
        position: relative;
    }
    /* .why-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/you-icon.webp");
        top: 10px;
        right: -25px;
    } */
    /* .white-aarow{
        position: relative;
    }
    .white-aarow::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/white-arrow-down.webp");
        bottom: -90px;
        left: -30px;
    } */
}
/* channel-sec end */


/* proudly-section start */
.proudly-sec{
    background: #250017;
    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/pitchoraai/jv/proudlybg.webp) no-repeat top center;
        background-size: cover;
        padding: 50px 0px 100px;
        position: relative;
    }
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/presenting-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 18px 50px;
    }
    /* .mt-md157{
        margin-top: 157px!important;
    } */
}
/* proudly-section end */

/* demo sec start */
.demo-sec{
    background: #ffffff;
    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/pitchoraai/jv/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/demo-video-frame1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 89px 58px 23px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .purple-shade{
        padding: 0px 50px;
    }
    .demo-arrow{
        position: relative;
    }
    .demo-arrow::after {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/demo-left-arrow.webp");
        position: absolute;
        top: 35px;
        left: -100px;
    }
    .demo-arrow::before {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/jv/demo-right-arrow.webp");
        position: absolute;
        top: 30px;
        right: -115px;
    }
}

/* demo sec end */

/* deep-funnel start */
.deep-funnel-sec {
   background: #FFF3FA;
}
.funnel-box {
    box-shadow: 0px 0px 15px 0px #FFF3FA inset;
    background: #FFF6F4;
    border: 2px solid var(--pink-clr);
    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/pitchoraai/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: var(--pink-clr);
}
@media (min-width: 768px) {
    .prize-value {
        background: #ffffff url(https://cdn.oppyotest.com/launches/pitchoraai/jv/prize-value.webp) no-repeat top center;
        background-size: cover;
        /* position: relative;
        z-index: -1; */
        padding: 50px 0 122px;
    }
}
/* prize sec end */

/* contest-sec start */
.contest-sec{
    background: #ffffff;
}
.purple-box-1{
    background: #FFF3FA;
    border: 2px solid var(--pink-clr);
    box-shadow: 0px 0px 10px 0px #FC00131A;
    /* display: inline-block; */
    border-radius: 20px;
    padding: 20px;
}
/* contest-sec end */

/* prise table */

@media (max-width:767px) {
    .prise-table-1{
        background: #FFF3FA;
        border: 2px solid var(--pink-clr);
        border-radius: 40px;
        padding: 32px 32px 50px 31px;
        position: relative;
    }
    .contest-text {
        background-color: #000000;
        border-radius: 100px;
        margin-top: -50px;
        height: 100%;
        padding: 10px;
    }
    
    .trophy-1{
        background: var(--pink-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: #FFF3FA;
        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: #000000;
    border-radius: 100px;
    margin-top: -92px;
    height: 100%;
    padding: 13px 103px;
}
    .trophy-1{
        /* background-color: #2346A1; */
        background: var(--pink-clr);
        border-radius: 20px;
        padding: 10px 0px;
        position: relative;
    }

    .purple-box-1{
    padding: 30px 70px;
}
    
.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: #FFF3FA;
}
.performer-text{
    background: var(--blue-clr);
    border: 1px solid #000000;
    padding: 10px;
    border-radius: 10px;
}
.promote-card{
    background: #FFF3FA;
    border: 1px solid var(--pink-clr);
    border-radius: 20px;
    align-content: center;
    padding: 30px 20px;
    height: 100%;
}
.promote-card2{
    background:url(https://cdn.oppyotest.com/launches/pitchoraai/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/jv/promote-tick.webp) no-repeat;
    padding: 0px 0px 0px 40px;
    background-position: 0px 0px;
}
.performer-text {
    padding: 0px 10px;
    position: relative;
}
.promoate-box{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px 50px 0px 0px;
    padding: 20px;
}
/* @media(min-width:768px){
    .performer-sec{
        background: #010101 url(https://cdn.oppyotest.com/launches/pitchoraai/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
} */
/* performer sec end */

/* Reciprocate Section Start */
.reciprocate-sec{
   background: linear-gradient(180deg, #000000 0%, #490E32 100%);

}
.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(--pink-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
.rp-flip-card {
  position:relative; 
  width : 335px;
  height : 335px;
  background:transparent;
  transform-style: preserve-3d;
  perspective: 2000px;  
} 

.rp-front-card {
   position:absolute;
   height:100%;
   width:100%;   
   backface-visibility: hidden;
   transition: transform 1s;
}

/*Just overlay color of front image*/

.rp-front-card:after {
  content:'';
  position:absolute;
  height:100%;
  width:100%;
  background:url(https://cdn.oppyotest.com/launches/pitchoraai/jv/flip-frame.webp) no-repeat;
  background-size: 100% 100%;
  /* padding: 30px 20px 25px; */
  top:0;
  left:0;  
}
  
.rp-back-card {
   position:absolute;
   height:100%;
   width:100%;
   background:url(https://cdn.oppyotest.com/launches/pitchoraai/jv/flip-frame-back.webp) no-repeat;
   background-size: 100% 100%;
   backface-visibility: hidden;
   transform:rotateY(180deg); /*-180deg to flip direction*/
   transition: transform .8s;
   justify-content:center;
   align-items:center;
   display:flex;
   flex-direction:column;
}

.rp-flip-card:hover .rp-front-card {
    transform: rotateY(-180deg); /*180deg to flip direction*/
}
    
.rp-flip-card:hover .rp-back-card {
    transform:rotateY(0deg);
}
@media(min-width:768px){
    /* .reciprocate-sec{
        background: #000000 url(https://cdn.oppyotest.com/launches/pitchoraai/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    } */
    .logo-box{
        padding: 13px 35px;
    }
    .reciprocate-text{
        padding: 10px 25px;
    }
    .promoate-box{
    padding: 50px 40px;
}
.rp-flip-card {
  position:relative; 
  width : 400px;
  height : 400px;
  background:transparent;
  transform-style: preserve-3d;
  perspective: 2000px;  
} 
}

/*  */

/* logos sec start */
.logos-sec{
    background: #ffffff;
}
.logos-text{
    background:#ffffff;
    border: 1px dashed var(--pink-clr);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.launch-box{
    background: linear-gradient(180deg, #000000 0%, #490E32 100%);
    border-radius: 20px 20px 0px 0px;
    padding: 20px;
}

.launch-border{
    background: linear-gradient(180deg, #000000 0%, #490E32 100%);
    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/pitchoraai/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: linear-gradient(180deg, #FBF4FF 0%, #EDF9FF 100%);
}
.inside-text {
    background: var(--pink-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #FFF6F4 url(https://cdn.oppyotest.com/launches/pitchoraai/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/pitchoraai/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/pitchoraai/jv/term-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* term-sec end */



/* Footer Section Start */
/* Video Background */
/* #bgVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
} */

/* Footer Section */
footer {
  padding: 30px 0px;
  position: relative;
  /* width: 100%; */
  overflow: hidden;
}
.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* video ko background me bhejne ke liye */
}

.footer-ul{
    list-style: none;
}

/* BIG TEXT in Footer */
.main-text {
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

/* Copyright */
.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}

@media(min-width:768px){
    footer {
  padding: 100px 0px;
}
}

/* 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: #af39f4 !important;
    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 */

.swiper-sec{
    background:#f2feee;
}

.business-sec,
.container-fluid {
    overflow: visible;
}

.swiper {
    width: 100%;
    height: 500px;
    overflow: visible !important;
}

.swiper-wrapper {
    height: 100%;
    transition-timing-function: ease-in-out !important;
}

/* ================= DESKTOP ================= */

.swiper-slide {
    width: 750px;
    transition: all 0.5s ease;
    transform: scale(0.85);
    opacity: 0.4;
    overflow: visible;
}

.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(0.9);
    opacity: 0.6;
}

.swiper-slide-active {
    transform: scale(1.3);
    opacity: 1;
    z-index: 10;
}

.swiper-slide .box {
    padding: 10px;
}

/* media inside */
.swiper-slide video,
.swiper-slide img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .swiper {
        height: auto;
        overflow: hidden !important;
    }

    .swiper-slide {
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .swiper-slide-active {
        transform: none !important;
        z-index: 2;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        transform: none !important;
        opacity: 1 !important;
    }

    .swiper-slide video,
    .swiper-slide img {
        width: 100%;
        height: auto;
    }
}

/* Video slide */
.video-scroll-wrapper {
    position: relative;
    height: 500vh; /* 5 videos = 5 screen scrolls */
}

/* Sticky section stays fixed while scrolling */
.video-scroll-slider {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* All videos stacked on top of each other */
.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Active video visible */
.slide-video.active {
    opacity: 1;
    z-index: 2;
}

.video-scroll-slider {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Heading Overlay */
.video-heading {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    width: 90%;
    max-width: 900px;
    text-align: center;
}

.video-heading h2 {
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.video-heading h2 span {
    color: #ff2ea6;
    display: block;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 767px) {
    .video-heading {
        top: 8%;
        width: 92%;
    }

    .video-heading h2 {
        font-size: 24px;
        padding: 15px 20px;
        border-radius: 12px;
        line-height: 1.4;
    }

    .video-heading h2 span {
        margin-top: 5px;
    }
}

/* Video slide */   