
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #000000;
    font-size: 14px;
    overflow-x: hidden !important;
}

/* font-family */
.italic{
    font-style: italic;
}
.caveat{
    font-family: "Caveat", system-ui;
}
.figtree {
  font-family: "Figtree", sans-serif;
}
.Zen {
     font-family: "Zen Dots", sans-serif;
}
.Passero {
    font-family: "Passero One", sans-serif;
}
/* .rocknroll {
    font-family: "RocknRoll One", sans-serif;
} */
.oswald {
    font-family: "Oswald", sans-serif;
}
.playfair {
    font-family: "Playfair Display", serif;
}
.poppins{
    font-family: "Poppins", sans-serif;
}
/* font-family */

html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--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);}
.yellow-clr{color:var(--yellow-clr);}
.pink-clr{color:var(--pink-clr);}
.red-clr{color:var(--red-clr);}
.orange-clr{color:var(--orange-clr);}
.orange-clr1{color:var(--orange-clr1);}



.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.red-clr4{color:var(--red-clr4);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.green-clr3{color:var(--green-clr3)}
.green-clr4{color:var(--green-clr4)}
.green-clr5{color:var(--green-clr5)}
.purple-clr{color: var(--purple-clr);}
.teal-clr{color:var(--teal-clr)} 
.neon-clr{color:var(--neon-clr)} 
.light-white1 {color: var(--light-white1);}


.yellow-clr1{color:var(--yellow-clr1);}
.blue-clr{color:var(--blue-clr)}

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-br {
    border-bottom: 2px solid transparent;
    border-image: var(--theme-clr);
    border-image-slice: 1;
    width: 100%;
}
.light-gradient{
    background: var(--light-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /* border: 5px solid #A0D3FF; */
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .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;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Section Padding End */
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.gap20 {
    gap: 20px;
}

a.cta-link-btn-1 {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 25px;
    font-size: 22px;
    line-height: 160%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 10px;
}
a.cta-link-btn-1:hover {
    border-radius: 8px;
    background: var(--theme-clr-1);
    color: var(--white-clr);
}
/* .cta-btn-border {
    border: 3px dashed #ffffff;
    border-radius: 10px;
    padding: 0px;
} */

.cta-btn-bg {
    background: linear-gradient(180deg, #000000 0%, #3F2100 100%), linear-gradient(180deg, #000000 0%, #4D0027 100%);
    border: 4px dashed #EC4A47;
    padding: 20px 10px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 100px;
        display: inline-block;
    }

    .cta-btn-border {
        /* border-radius: 13px; */
        padding: 0px;
    }
    
    .cta-btn-bg {
        background: url('https://cdn.oppyotest.com/launches/pitchoraai/special/cta-btn-border.webp') no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 50px 70px;
        border-radius: unset;
        border: unset;
    }
}
/*  */

/* sticky bar start */
.fixed-top-bar {
    background: var(--pink-clr);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.coupon{
    background: #fff;
    border-radius: 4px;
    padding: 0px 4px;
}
 .top-bar  {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 15px;
 }
 
 .fixed-top-bar a {
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;
     /* fill: #000; */
     color: #000000;
     background-color: #ffffff;
     border-radius: 5px 5px 5px 5px;
     padding: 6px 15px 4px;
     animation: blink 1.5s linear infinite;
 }
 @keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
 }
 .next-text {
    background-color: var(--black-clr);
    color: #fff;
    border-radius: 4px;
    padding: 0px 2px;
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
    .fixed-top-bar a {
        font-size: 20px;
        padding: 6px 15px 6px;
    }
 }
/* stick bar end */

.theme-btn a{
    border-radius: 30px;
    margin: 0 auto;
    color: #ffffff;
    padding: 20px;
    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; 
}
.theme-btn a:hover {
    background: var(--pink-clr);
    transform: scale(1.05);	
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
}

.btn1: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);
  }
}


ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    font-weight: 500;
    color: var(--white-clr);
}
.header-sec ul.leader-ul li a {
    text-decoration: none;
    font-weight: 500;
    padding: 10px 10px;
}
.leader-ul li a {
    position: relative;
    transition: all .5s;
}
a.affiliate-link-btn {
    border-radius: 10px;
    border-radius: 10px;
    background: var(--pink-clr);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    /* border: 2px solid #FFFFFF; */
    font-size: 18px;
    color: var(--white-clr);
    font-weight: 500 !important;
    transition: all .3s ease;
}
@media (min-width: 768px) {
    a.affiliate-link-btn {
        padding: 12px 20px !important;
        font-size: 20px;
    }
}

.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);
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
    transform: scale(1.05);	
}

.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);
  }
}

@media (min-width: 768px) {
    .request-affiliate-1 a{
        padding: 25px 70px;
    }
}


/* header section start */
.header-sec{
    background: #250017;
    padding-bottom: 250px;
}
.pre-head {
    background: #ffffff2b;
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 6px 15px;
    display: inline-block;
}
.main-heading {
    background: linear-gradient(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-text1 {
    background: var(--theme-clr);
    border-radius: 20px 20px 20px 20px;
    padding: 10px 20px;
    display: inline-block;
} */
.yellow-line{
    border-bottom: 2px dashed var(--yellow-clr);
}
.post-heading{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.header-side-box{
    background: #FFFFFF;
    border: 2px solid #FD6D294D;
    backdrop-filter: blur(100px);
    border-radius: 10px;
    padding: 20px 10px;
}
.header-ul{
    padding: 20px 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/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0px;
}
.Exclusive-text{
    background: #151515;
    border: 1px dashed var(--red-clr);
    border-radius: 10px;
    padding: 10px;
}
.red-frame-1 {
    background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
/* .blue-box {
    border-radius: 10px;
    background: transparent;
    border: 1px solid #3F3F3E;
    background: #080808;
    padding: 20px 10px;
} */
    .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;
}
.header-white-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    border-radius: 10px;
    padding: 15px 20px;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    backdrop-filter: blur(50px);
    height: 100%;
    align-items: center;
}
.fe-frame{
    backdrop-filter: blur(10px);
    background: var(--pink-clr);
    border: 2px solid var(--pink-clr);
    padding: 10px;
    border-radius: 10px;
}
    .header-frame {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-frame1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame1 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-frame2.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame2 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-frame3.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame3 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-frame4.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}
    .header-frame4 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-frame5.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}

    .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;
      position: relative;
      /* 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);
}


@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .header-frame,.header-frame1, .header-frame2, .header-frame3 {
        padding: 78px 50px 20px;
    }
    .header-frame4 {
        padding: 78px 50px 40px;
    }
.main-text1 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/main-text.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 50px 3px;
}
    .pre-head {
        border-radius: 30px;
    }
    .main-heading {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/main-heading.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 40px 33px;
    }
            .post-head {
        padding: 14px 28px;
    }
        .header-ul{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/header-ul.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px 20px;
        border: unset;
        border-radius: unset;
    }
    .header-ul li {
        padding: 0px 0px 15px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(https://cdn.oppyotest.com/launches/pitchoraai/special/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(https://cdn.oppyotest.com/launches/pitchoraai/special/purple-right-arrow.webp);
        position: absolute;
        right: -85px;
        top: 18px;
    }
    .post-heading{
        padding: 20px 45px;
        border-radius: 100px;
    }
    .slide {
      padding-top: 120px;
    }
        .nav {
      margin-top: 80px;
    }
    .header-side-box{
        padding: 30px 28px 60px;
    }
    .Exclusive-text{
        padding: 14px;
    }
    .theme-btn a{
        padding: 35px 90px;
    }
    .theme-btn a:hover {
        transform: scale(1.04);
    }
    .fe-frame{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/fe-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 81px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
}
@media (min-width:768px){
.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;
}
    @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 */

/* business-sec start */
.business-sec{
   background: linear-gradient(180deg, #000000 0%, #490E32 100%);
}

/* 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/special/payment-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
    border-radius: 30px;
}
.payment-box1 {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/payment-box1.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/special/selling-bg.webp) no-repeat;
    background-size: cover;
}
.selling-box{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/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;
    }
.payment-box1 {
        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/special/channel-bg.webp) no-repeat center center;
        background-size: cover;
        /* background-attachment: fixed; */
    }
    .channel-head{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/channel-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 70px 50px;
        border: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .channel-text{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/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/special/you-icon.webp");
        top: 10px;
        right: -25px;
    } */
    /* .white-aarow{
        position: relative;
    }
    .white-aarow::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/white-arrow-down.webp");
        bottom: -90px;
        left: -30px;
    } */
}
/* channel-sec end */

/* without-sec-start */
.without-sec{
    background: linear-gradient(180deg, #000000 0%, #490E32 100%);
}
.without-box{
    background: linear-gradient(90deg, rgba(75, 38, 67, 0.2) 0%, rgba(168, 10, 134, 0.12) 100%);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    padding: 15px;
    border-radius: 15px;
}
@media (min-width: 768px) {
    .without-box{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/without-frame.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
    }
}
/* without-sec-end */

/* businesses-sec-start */
.businesses-sec{
    background: #FFF3FA;
}
.business-text{
    background: #FFFFFF;
    border: 1px solid #EC2CA3;
    border-radius: 100px;
    padding: 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .business-text{
        padding: 20px 45px;
    }
}
/* businesses-sec-end */

/* story-sec-start */
.story-sec{
    background: #FFFFFF;
}
.story-text{
    background: #EC2CA31A;
    border: 1px solid #EC2CA3;
    padding: 20px;
    border-radius: 30px;
    display: inline-block;
}
.story-text1{
    background: #EC2CA3;
    padding: 20px;
    border-radius: 30px;
    display: inline-block;
}
.story-it, .story-it1, .story-it2{
    background: #EC2CA31A;
    border: 1px dashed #EC2CA3;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
}
.story-growth{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
}
.story-box{
    background: #26AF001A;
    border: 1px dashed #26AF00;
    padding: 10px 15px;
    border-radius: 10px;
}
.sg-blue{
    background: #7AA7001A;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
}
.authors-images-1 {
    position: relative;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
}

.authors-images-1 img {
    margin-left: -16px;
    position: relative;
    z-index: 0;         
    transition: transform 0.1s ease-in-out, z-index 0.1s ease-in-out;
}

.authors-images-1 img:first-child {
    margin-left: 0px; 
}

.authors-images-1 img:hover {
    transform: translateY(-10px); 
    /* z-index: 10; */
    cursor: pointer;          
}
.story-bottom{
    background: #EC2CA31A;
    border: 1px dashed #EC2CA3;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .story-sec{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/story-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .story-text{
        padding: 20px 50px;
        border-radius: 100px;
    }.story-text1{
        padding: 20px 50px;
        border-radius: 100px;
    }
    .story-it{
        padding: 10px 85px;
    }
    .story-it1{
        padding: 10px 70px;
    }
    .story-it2{
        padding: 10px 52px;
    }
    .sg-blue{
        padding: 15px 50px;
    }
}
/* story-sec-end *

/* warning-sec-start */
.warning-sec{
    background: linear-gradient(180deg, #FFE8E8 34.59%, #DFFFE5 100%);
}
.warning-text{
    background: #FF4646;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}
.warning-frame1{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FF4646;
    border-bottom: none;
    padding: 20px;
    border-radius: 30px;
}
.warning-frame2{
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FF4646;
    border-bottom: none;
    padding: 20px;
    border-radius: 30px;
    height: 100%;
}
.wf-box{
    padding: 10px 15px;
    background: #FF46461A;
    border: 1px dashed #FF4646;
    border-radius: 10px;
    display: inline-block;
}
.wf-bottom{
    background: #FF46461A;
    border-radius: 10px;
    display: inline-block;
    padding: 15px 25px 15px 20px;
}
.warning-text2{
    background: #FF4646;
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-block;
}
.varified-box{
    background: #FFFFFF;
    padding: 30px;
    border-radius: 30px;
}
.verified-text{
    background: #26AF00;
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-block;
}
.varified-text{
    background: #26AF001A;
    border: 1px dashed #26AF00;
    border-radius: 10px;
    padding: 7px 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .warning-text{
        padding: 20px 40px;
    }
    .warning-frame1{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/warning-frame1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 50px 40px;
        border: unset;
        border-radius: unset;
    }
    .warning-frame2{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/warning-frame1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 50px 40px;
        border: unset;
        border-radius: unset;
    }
    .warning-text2{
        padding: 10px 40px;
    }
    .varified-box{
        padding: 60px 40px;
    }
    .verified-text{
        padding: 20px 50px;
    }
}
/* warning-sec-end */












































/* proudly-section start */
.proudly-sec{
    background: #250017;
    padding: 30px 0px;
}

@media (min-width: 768px) {
    .proudly-sec {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/proudlybg.webp) no-repeat top center;
        background-size: cover;
        padding: 50px 0px 100px;
        position: relative;
    }
    /* .mt-md157{
        margin-top: 157px!important;
    } */
}
/* proudly-section end */


/* steps-sec-start */
.steps-sec{
    background: #FFF3FA;
}
.steps-text{
    background: #EC2CA3;
    border-radius: 100px;
    padding: 20px;
    display: inline-block;
}
.steps-frame1{
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 1px solid #9C50FA;
}
.steps-frame2{
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 1px solid #9C50FA;
}
.steps-frame3{
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 1px solid #26AF00;
}
@media (min-width: 768px) {
    .steps-text{
        padding: 20px 50px;
    }
    .steps-frame1{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/steps-frame1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px;
        border-bottom: unset;
        border-radius: unset;
    }
    .steps-frame2{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/steps-frame2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px;
        border-bottom: unset;
        border-radius: unset;
    }
    .steps-frame3{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/steps-frame3.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px;
        border-bottom: unset;
        border-radius: unset;
    }
}
/* steps-sec-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: 5px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #FDF6F4 url(https://cdn.oppyotest.com/launches/pitchoraai/special/demo-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/demo-video-frame1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 89px 58px 23px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .demo-arrow{
        position: relative;
    }
    .demo-arrow::after {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/demo-left-arrow.webp");
        position: absolute;
        top: 35px;
        left: -100px;
    }
    .demo-arrow::before {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/demo-right-arrow.webp");
        position: absolute;
        top: 30px;
        right: -115px;
    }
}

/* demo sec end */

/* ultimate-sec start */
/* Bottom To Top CSS Start */
.cs_top_icon a {
    display: flex;    
    background-image: linear-gradient(-89deg, #fb9e31 0%, #fb7e4e 52%, #fd6d41 100%);
    filter: drop-shadow(-13.753px 9.992px 15px rgba(152,75,239,0.3));
    width: 50px;
    height: 50px;    
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
.cs_top_icon a svg {
    fill: #fff;
    transform: rotate(270deg);
}
.cs_top_icon a.show {
    opacity: 1;
    visibility: visible;
}
/* Bottom To Top CSS End */

/* Button CSS Start */

.cs_btn, .cs_btn:focus, .cs_btn:active {
    background-image: url(https://cdn.oppyotest.com/launches/pitchoraai/special/btn-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 637px;
    width: 100%;    
    min-height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: -6.498px 17.854px 29px 0px rgba(228, 152, 0, 0.35);    
    text-transform: capitalize;    
    margin: auto;    
    border-radius: 50px;
    transition: all 0.3s;
    text-align: center;
    padding: 10px 25px;
}
.cs_btn:hover{
    transform: translateY(-5px);
}
/* Button CSS End */

/* Background Cover CSS */
.cs_bg_cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* Background Cover CSS */
/* Top bar css */
.cs-topbar {
    background: linear-gradient(90deg, #f93003 30%, #ff9100 100%);
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
/* Top bar css */

/* Badge css start */
.cs-banner-badge {
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 30px 0 0px 0;
}
.cs-badge-box {
    background: linear-gradient(184deg, rgba(19,9,25,0.99) 0%, rgba(54,23,79,0.99) 100%);
    border-radius: 10px;
    padding: 0 15px;
    min-height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cs-banner-badge-dark-bg .cs-badge-box {
    background: #292130; 
}
.cs-badge-box3{
    padding: 0 5px;
}
.cs-badge-box4{
    padding: 0;
}
.cs-banner-badge a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
.cs-banner-badge a img {
    width: 150px;
    height: auto;
    object-fit: contain;
}
/* Badge css end */

/* Banner CSS Start */
.cs_banner_wrapper {
    background-image: url(https://cdn.oppyotest.com/launches/pitchoraai/special/banner-new.png);
    padding-top: 30px;
    padding-bottom: 90px;
    position: relative;
}
.cs_banner_wrapper .container{
    max-width: 1760px;
}
.cs_banner_head ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 25px 0 15px 0;
}
.cs_banner_head ul li{
    font-size: 24px;
    font-weight: 700;
    color: #3f284d;
    text-transform: capitalize;    
    height: 70px;
    border-radius: 10px;
    filter: drop-shadow(0 0 30px rgba(230,97,17,0.1));
    background-color: #faf5ff;
    border: 2px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}
.cs_banner_head h2, .cs_banner_head h4{
    font-size: 60px;
    font-weight: 800;
    color: #441059;
    text-transform: capitalize;
}
.cs_banner_head h4 {
    color: #ff4576;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5px 0 15px 0;
}
.cs_banner_head p{    
    background-image: linear-gradient(0deg, rgba(51,39,177,0.99) 0%, rgba(139,50,235,0.99) 47%, rgba(127,29,225,0.99) 100%);
    filter: drop-shadow(-7.08px 10.903px 10px rgba(151,45,231,0.24));
    border-radius: 10px;   
    height: 50px; 
    display: inline-flex;    
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    padding: 0 25px;
}
.cs_scroll_parent {    
    position: relative;  
       
}
.cards {
    position: relative;
    padding-top: 30px;    
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;         
}
.cs_nav > p{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 62px;
    background-image: linear-gradient(0deg, rgba(255,151,61,0.99) 0%, rgba(220,109,10,0.99) 49%, rgba(255,151,61,0.99) 100%);
    filter: drop-shadow(15.543px 12.586px 10px rgba(255,152,46,0.76));
    border-radius: 50px;
    padding: 0 30px;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.cs_tabs_menu {
    display: flex;
    margin-left: 20px;
    position: relative;
}
.cs_scroll_line {
    width: 3px;
    height: 443px;
    border-radius: 2px;
    background-color: #ffcf96;
    position: absolute;
    top: -43px;
}
.cs_scroll_line span:before {
    content: '';
    width: 19px;
    height: 19px;
    display: flex;
    background-image: linear-gradient(#fff, #fff),linear-gradient(150deg, #ffb973, #fd6210, #fe5698, #dd81ff);
    border: 3px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 10px rgba(255,127,0,0.52));
    transition: all 0.3s;
    position: absolute;
    left: -8px;
    bottom: 0;
}
.cs_scroll_line span{
    width: 3px;
    height: 123px;
    background-image: linear-gradient(184deg, rgba(255,147,41,0.99) 0%, rgba(255,91,148,0.99) 100%);
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}
.cards.stepOne .cs_scroll_line span{    
    height: 293px;    
}
.cards.stepTwo .cs_scroll_line span{    
    height: 443px;    
}
ul.nav.nav-tabs {
    border-bottom: 0;
    flex-direction: column;
    gap: 20px;
    margin-left: 30px;
}
.nav-tabs li:last-child{
    margin-right: 0;
}
.nav-tabs li a {
    max-width: 390px;
    width: 100%;
    min-height: 130px;
    background-color: #fff;
    border-radius: 10px;
    padding: 22px;
    position: relative;
    display: block;     
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
}
.cs_banner_scroll_tab h4 {
    font-size: 22px;
    font-weight: 700;
    color: #161938;
    text-transform: capitalize;
    font-family: 'Outfit';
    transition: all 0.3s;
}
.nav-tabs>li.active>a .cs_banner_scroll_tab h4, .nav-tabs>li.active>a:focus .cs_banner_scroll_tab h4, .nav-tabs>li.active>a:hover .cs_banner_scroll_tab h4{
    color: #ff9c3a;
}
.cs_banner_scroll_tab p {
    font-size: 20px;
    font-weight: 400;
    color: #8286af;
    transition: all 0.3s;
    padding-top: 10px;
}
.nav-tabs>li.active>a .cs_banner_scroll_tab p, .nav-tabs>li.active>a:focus .cs_banner_scroll_tab p, .nav-tabs>li.active>a:hover .cs_banner_scroll_tab p{
    color: #161938;    
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    background-image: linear-gradient(#fff, #fff),linear-gradient(150deg, #ffb973, #fd6210, #fe5698, #dd81ff);          
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.custom_card_wrapper {
    position: relative;
    max-width: 980px;
    width: 100%;
    height: 600px;
    margin: 0 auto 0 0;
}
.custom-card {
    background-color: #ffffff;    
    border-radius: 12px;
    border: 4px solid #fff;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;        
}
.cs_video_bullets {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 4px solid #fff;
    background-color: #ff9c3a;
}
.card2 .cs_video_bullets{
    background-color: #be8ef1;
}
.card3 .cs_video_bullets{
    background-color: #01b3f7;
}
.cs_main_video {
    width: 100%;
    height: 100%;
    position: relative;
}
.cs_bullet{
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs_bullet span{
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    display: flex;
}
.cs_bullet span:last-child{    
    background-color: #feb83b;    
}
.card2 .cs_bullet span:last-child {
    background-color: #cc9cff;
}
.card3 .cs_bullet span:last-child {
    background-color: #8ecde5;
}
.card2 {
    top: 0px;
    display: none;
}
.card3 {
    top: 0px;
    display: none;
}
.cards.stepOne .card2 {
    display: block;
}
.cards.stepTwo .card2,.cards.stepTwo .card3 {
    display: block;
}
.cs_banner_wrapper .cs_down_banner_arrow {
    margin-bottom: 25px;
    padding-top: 30px;
}
.cs_down_arrow_img img{
    filter: drop-shadow(-7.08px 10.903px 10px rgba(255,152,46,0.52));
}
.custom_card_wrapper{
    position: relative;
}
img.cs_video_bot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -226px;    
}
.cs_circle_shape {
    width: 477px;
    height: 477px;
    border-radius: 50%;
    background-image: radial-gradient(circle at center, rgba(239,79,105,0.99) 0%, rgba(253,171,59,0.99) 100%);
    position: absolute;
    top: -20px;
    right: -120px;
}
.cs_banner_options {
    position: relative;
    z-index: 9;
}
.cs_banner_options ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.cs_banner_options ul li{    
    background-image: linear-gradient(#fff, #fff),linear-gradient(150deg, #ffb973, #fd6210, #fe5698, #dd81ff);
    border-radius: 10px;
    filter: drop-shadow(-7.08px 10.903px 20px rgba(255,150,44,0.3));
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 70px;
    padding: 0 25px;
    font-size: 24px;
    color: #161938;
    font-weight: 700;
    text-transform: capitalize;
}
/* Payment CSS Start */
.cs_pymnt_main_parent {
    position: relative;
    z-index: 1;
}
.cs_pymnt_main_parent h1 {
    font-size: 46px;
    font-weight: 800;
    color: #441059;
    font-family: 'outfit';
    padding: 55px 0 10px 0;
}
.cs_pymnt_main_parent h4 {
    font-size: 36px;
    font-weight: 600;
    color: #161938;
    font-family: 'outfit';
    padding-bottom: 30px;
}
.cs_pymnt_main_parent h1 > span{
    background-image: url(https://cdn.oppyotest.com/launches/pitchoraai/special/otp-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 403px;
    width: 100%;
    height: 62px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    color: #ff8400;;
}
.cs_pymnt_main_parent .cs_btn {
    margin-bottom: 40px;
}
.cs_pymnt_main_parent img{
    display: block;
    margin: auto;
}
.cs_pymnt_main_parent p {
    font-size: 16px;
    font-weight: 400;
    color: #271e42;
    padding-top: 10px;
}
.cs_down_arrow_img {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 1;
}
/* Payment CSS End */
/* Top Pyment css */
.cs_top_pymnt_wrapper {
    background-image: url(https://cdn.oppyotest.com/launches/pitchoraai/special/top-pymnt-bg.png);
    padding: 180px 0 80px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    background-position: top;
    margin-top: -200px;
}
/* Top Pyment css */

/* Banner CSS End */

/* Website Builder Slider CSS Start */
.cs_webst_buildr_wrapper{
    background-image: url(https://cdn.oppyotest.com/launches/pitchoraai/special/slider-bg.jpg);
    padding: 80px 0;
    position: relative;
}
.csLineShape{
    position: absolute;
    z-index: 1;
}
.csTopLeftLineShape{
    top: -20px;
    left: 0;
}
.csTopRightLineShape{
    top: -20px;
    right: 0;
}
.csBotmLeftLineShape{
    bottom: -20px;
    left: 0;
}
.csBotmRightLineShape{
    bottom: -20px;
    right: 0;
}
/* .cs_sb_heading{
    display: inline-flex;    
    justify-content: center;
    align-items: center;
    height: 50px;
    background-image: linear-gradient(0deg, rgba(255,151,61,0.99) 0%, rgba(219,109,9,0.99) 49%, rgba(255,151,61,0.99) 100%);
    border-radius: 50px;
    filter: drop-shadow(6.994px 5.664px 10px rgba(255,152,46,0.3));
    padding: 0 25px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    font-family: 'outfit';
} */
/* .cs_main_heading {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    padding-top: 15px;
}
.cs_main_heading > span {
    position: relative;
    z-index: 1;
}
.cs_main_heading > span > img{
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
} */
.cs_webst_build_slider_inner {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}
.cs_webst_build_img {
    text-align: center;
}
/* Swiper custom pagination bullet */
.cs_webst_build_slider_main{
    position: relative;
}
.cs_webst_build_slider_main .swiper-button-next:after, .cs_webst_build_slider_main .swiper-button-prev:after{
    display: none;
}
.cs_webst_build_slider_main .swiper-button-next, .cs_webst_build_slider_main .swiper-button-prev {
    width: 61px !important;
    height: 61px !important;
}
.cs_webst_build_slider_main .swiper-button-prev {
    left: 40px;
}
.cs_webst_build_slider_main .swiper-button-next {
    right: 40px;
}
.cs_webst_build_slider_inner .swiper-pagination {
    position: unset;
    margin-bottom: 50px;
}
.cs_webst_build_slider_inner .swiper-pagination-bullet{
    min-width: 160px;
    width: auto;
    height: 60px;
    line-height: 60px;
    background-image: linear-gradient(184deg, rgba(19,9,25,0.99) 0%, rgba(54,23,79,0.99) 100%);
    border-radius: 6px;
    border: 1px solid #4d385d;    
    opacity: 1;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s;
    margin: 0 13px 10px 13px !important;
    z-index: 1;
}
.cs_webst_build_slider_inner .swiper-pagination-bullet:before {
    content: '';
    filter: drop-shadow(-7.08px 10.903px 10px rgba(151,45,231,0.24));
    background-image: linear-gradient(0deg, rgb(69 60 163 / 99%) 0%, rgba(139, 50, 235, 0.99) 47%, rgba(127, 29, 225, 0.99) 100%);
    border-radius: 6px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cs_webst_build_slider_inner .swiper-pagination-bullet-active:before, .cs_webst_build_slider_inner .swiper-pagination-bullet:hover:before{
    opacity: 1;
    visibility: visible;
    color: #fff;
}
/* Swiper custom pagination bullet */
/* Modal CSS */
.modal-backdrop {
    backdrop-filter: blur(8px) !important;
    opacity: 1 !important;
    background-color: #0000008a;
}
.modal-dialog {
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.modal-content {
    position: relative; 
}
.cs_webst_img{
    max-height: 600px;
    overflow-x: hidden;
}
.modal-content button {    
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}
/* Modal CSS */
/* Website Builder Slider CSS End */

/* Feature Section CSS Start */
.cs_feature_wrapper{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/feature-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;    
}
.cs_feature_wrapper .container{
    max-width: 1680px;
}
.cs_dark_main_head h1{
    color: #441059;
}   
.cs_feat_inner{ 
    position: relative;
}
.cs_feat_inner:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 4px;
    /* height: 6800px; */
    padding: 0px;
    top: 90px;
    text-align: center;
    z-index: 0;
    margin: 0 auto;
    background-color: rgb(226, 216, 239);
}
.cs_feat_inner:before{
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-image: linear-gradient(0deg, rgba(0,157,81,0.99) 0%, rgba(0,217,112,0.99) 48%, rgba(0,157,81,0.99) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
.movable_vertical_line {
    position: absolute;
    top: 90px;
    bottom: 0;
    overflow: hidden;
    left: calc(50% - 2px);
    width: 4px;
    min-height: 50px;
    z-index: 1;
    /* height: 6800px; */
}

.movable_vertical_line > .movable_vertical_line_inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
        background: linear-gradient(to bottom, #0058CA 410px, #0094f3 200px, #40be6b 1100px, #ff2eca 1400px, #f0304a 2000px, #01c365 2370px, #00c4b4 2800px, #c437fd 3200px, #df4a28 3570px, #df4a28 3600px, #0058CA 3970px, #db760a 4800px, #0058CA 5449px, #0094f3 5710px, #01c365 6265px);
}
.cs_feat_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;    
}
.cs_feat_flex:nth-of-type(2n+1) {
    flex-direction: row-reverse;
}
.cs_feat_flex.cs_feat_1 {
    margin-top: 0px;
}
.cs_feat_flex > span{
    width: 50px;
    height: 50px;
    background-color: #0058CA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border: 5px solid #fff;
    position: absolute;
    top: 50px;
    left: calc(50% - 26px);
    z-index: 1;
}
.cs_feat_2 > span{
    background-image: linear-gradient(0deg, rgba(1,111,237,0.99) 0%, rgba(0,179,247,0.99) 48%, rgba(1,111,237,0.99) 100%);
}
.cs_feat_3 > span{
    background-image: linear-gradient(0deg, rgba(23,195,139,0.99) 0%, rgba(97,185,77,0.99) 48%, rgba(23,195,139,0.99) 100%);
}
.cs_feat_4 > span{
    background-image: linear-gradient(0deg, rgba(255,0,192,0.99) 0%, rgba(255,84,212,0.99) 48%, rgba(255,0,191,0.99) 100%);
}
.cs_feat_5 > span{
    background-image: linear-gradient(0deg, rgba(218,0,30,0.99) 0%, rgba(255,80,104,0.99) 48%, rgba(217,0,31,0.99) 100%);
}
.cs_feat_6 > span{
    background-image: linear-gradient(0deg, rgba(0,157,81,0.99) 0%, rgba(0,217,112,0.99) 48%, rgba(0,157,81,0.99) 100%);
}
.cs_feat_7 > span{
    background-image: linear-gradient(0deg, rgba(0,179,164,0.99) 0%, rgba(0,212,194,0.99) 48%, rgba(0,179,163,0.99) 100%);
}
.cs_feat_8 > span{
    background-image: linear-gradient(0deg, rgba(179,0,255,0.99) 0%, rgba(205,87,254,0.99) 48%, rgba(179,0,255,0.99) 100%);
}
/* .cs_feat_9 > span{
    background-image: linear-gradient(0deg, rgba(0,0,255,0.99) 0%, rgba(96,96,255,0.99) 48%, rgba(0,0,255,0.99) 100%);
} */
.cs_feat_10 > span{
    background-image: linear-gradient(0deg, rgba(189,94,9,0.99) 0%, rgba(241,134,9,0.99) 48%, rgba(189,93,9,0.99) 100%);
}
.cs_feat_9 > span{
    background-image: linear-gradient(0deg, rgba(182,50,41,0.99) 0%, rgba(246,84,37,0.99) 48%, rgba(181,51,41,0.99) 100%);
}
.cs_feat_12 > span{
    background-image: linear-gradient(0deg, rgba(0,81,143,0.99) 0%, rgba(31,125,199,0.99) 48%, rgba(0,81,143,0.99) 100%);
}
.cs_feat_11 > span{
    background-image: linear-gradient(0deg, rgba(24,134,179,0.99) 0%, rgba(47,185,242,0.99) 48%, rgba(25,133,179,0.99) 100%);
}
.cs_feat_flex > img {
    position: absolute;
    top: 50%;
    left: 52.5%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.cs_feat_flex:nth-of-type(2n+1) > img {
    left: 42.6%;
}
.cs_feat_4 > img {
    left: 45.9% !important;
}
.cs_feat_6 > img {
    left: 46.5% !important;
}
.cs_feat_8 > img {
    left: 43.2% !important;
}
.cs_feat_10 > img {
    left: 47.2% !important;
}
.cs_feat_12 > img {
    left: 42.2% !important;
}
.cs_Feat_left > img {
    max-width: 592px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.cs_Feat_right {
    max-width: 630px;
    width: 100%;
}
.cs_feat_contnt_head {
    display: inline-block;
    position: relative;
    z-index: 1;
    /* padding-bottom: 25px; */
}
/* .cs_feat_contnt_head::before {
    content: ''; 
    height: 3px;
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(96,33,255,0.99) 51%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    margin: auto;
    z-index: -1;
}
.cs_feat_2 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(1,133,239,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_3 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(55,191,111,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_4 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(255,37,201,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_5 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(233,33,61,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_6 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(233,129,9,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_7 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(1,211,193,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_8 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(193,47,253,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_9 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(96,33,255,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_10 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(1,179,93,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_11 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(241,81,37,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_12 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(15,103,171,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
}
.cs_feat_13 .cs_feat_contnt_head::before{
    background-image: linear-gradient(-90deg, rgba(255,255,255,0.99) 0%, rgba(41,169,223,0.99) 49%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,0.99) 100%);
} */
.cs_feat_content h4{
    display: inline-flex;
    align-items: center;
    height: 60px;
    background: #0058CA;
    border-radius: 0 0 20px 20px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    padding: 0 25px;
    text-align: center;    
}
.cs_feat_2 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(1,111,237,0.99) 0%, rgba(0,179,247,0.99) 48%, rgba(1,111,237,0.99) 100%);
}
.cs_feat_3 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(23,195,139,0.99) 0%, rgba(97,185,77,0.99) 48%, rgba(23,195,139,0.99) 100%);
}
.cs_feat_4 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(255,0,192,0.99) 0%, rgba(255,84,212,0.99) 48%, rgba(255,0,191,0.99) 100%);
}
.cs_feat_5 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(218,0,30,0.99) 0%, rgba(255,80,104,0.99) 48%, rgba(217,0,31,0.99) 100%);
}
.cs_feat_6 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(0,157,81,0.99) 0%, rgba(0,217,112,0.99) 48%, rgba(0,157,81,0.99) 100%);
}
.cs_feat_7 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(0,179,164,0.99) 0%, rgba(0,212,194,0.99) 48%, rgba(0,179,163,0.99) 100%);
}
.cs_feat_8 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(179,0,255,0.99) 0%, rgba(205,87,254,0.99) 48%, rgba(179,0,255,0.99) 100%);
}
/* .cs_feat_9 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(0,0,255,0.99) 0%, rgba(96,96,255,0.99) 48%, rgba(0,0,255,0.99) 100%);
} */
.cs_feat_10 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(189,94,9,0.99) 0%, rgba(241,134,9,0.99) 48%, rgba(189,93,9,0.99) 100%)
}
.cs_feat_9 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(182,50,41,0.99) 0%, rgba(246,84,37,0.99) 48%, rgba(181,51,41,0.99) 100%);
}
.cs_feat_12 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(0,81,143,0.99) 0%, rgba(31,125,199,0.99) 48%, rgba(0,81,143,0.99) 100%);
}
.cs_feat_11 .cs_feat_content h4{
    background-image: linear-gradient(0deg, rgba(24,134,179,0.99) 0%, rgba(47,185,242,0.99) 48%, rgba(25,133,179,0.99) 100%);
}

.cs_feat_content p {
    max-width: 500px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #3a3e5d;
    padding-bottom: 25px;
    font-family: "Roboto", sans-serif;
}
.cs_feat_content p:last-child{
    padding-bottom: 0;
}
/* Feature Section CSS End */

/* Video Version */
.cs_feat_inner { 
    margin-top: 60px;
}
.cs_feat_flex { 
    margin-bottom: 30px;
}
.cs_feat_flex:last-child{
    margin-bottom: 0;
}
.cs_Feat_left {
    max-width: 690px;
    width: 100%;
    height: 390px;    
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #da30ff, #0b1b9d); */
    border: 8px solid #0058CA;
    /* background-origin: border-box;
    background-clip: padding-box, border-box; */
    font-size: 0;
    border-radius: 12px;
}
.cs_feat_2 .cs_Feat_left {
    border: 8px solid #0178ee;
}
.cs_feat_3 .cs_Feat_left {
        border: 8px solid #21c386;
}
.cs_feat_4 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #da30ff, #ff4dd2); */
    border: 8px solid #da30ff;
}
.cs_feat_5 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #dc0523, #f43b55); */
     border: 8px solid #dc0523;
}
.cs_feat_6 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #cc6b0c, #ea820c); */
    border: 8px solid #37b377;
}
.cs_feat_7 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #03b6a7, #03d4c2); */
    border: 8px solid #03b6a7;
}
.cs_feat_8 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #da30ff, #ba17ff); */
    border: 8px solid #da30ff;
}
/* .cs_feat_9 .cs_Feat_left {
     border: 8px solid #0d0dff;
} */
.cs_feat_10 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #37b377, #03d670); */
    border: 8px solid #db760a;
}
.cs_feat_9 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #be382b, #ea4f28); */
     border: 8px solid #ea4f28;
}
.cs_feat_12 .cs_Feat_left {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #0a5d9d, #207cc5);
}
.cs_feat_11 .cs_Feat_left {
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(251, 235, 255, 0.99) 100%), linear-gradient(to bottom, #2195c5, #2fb3ea); */
    border: 8px solid #2195c5;
}
.cs_Feat_left video {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.movable_vertical_line > .movable_vertical_line_inner {    
        background: linear-gradient(to bottom, #0058CA 410px, #0094f3 200px, #40be6b 1100px, #ff2eca 1400px, #f0304a 2000px, #01c365 2370px, #00c4b4 2800px, #c437fd 3200px, #df4a28 3570px, #df4a28 3600px, #0058CA 3970px, #db760a 4800px, #0058CA 5449px, #0094f3 5710px, #01c365 6265px);
}
.cs_feat_8 > img { 
    top: 64%;
}
.cs_feat_10 > img { 
    top: 60%;
}
.cs_feat_12 > img { 
    top: 58%;
}
/* Video Version */

.timeline-line {
  position: relative;
  width: 3px;
  height: 100%;
  background: #1e90ff;
  margin: 0 auto;
}

/* Glowing moving effect */
.glow-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #00cfff;
  border-radius: 50%;
  box-shadow: 
    0 0 10px #00cfff,
    0 0 20px #00cfff,
    0 0 40px #00cfff;
  animation: moveGlow 3s linear infinite;
}

/* Animation */
@keyframes moveGlow {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}


/* Video Background */
#bgVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Big Center Text */
.main-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}
/* .main-text1 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
} */

.neon-text {
    background: linear-gradient(90deg, rgba(75, 38, 67, 0.2) 0%, rgba(168, 10, 134, 0.12) 100%);
    border: 2px solid #FFFFFF4D;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px;
}
.container-box{
    max-width: 1680px !important;
}

@media (min-width: 768px) {
    /* .light-icon{
        position: relative;
    }
.light-icon:before {
    content: url(https://cdn.oppyotest.com/launches/pitchoraai/special/light-icon.webp);
    position: absolute;
    top: -18px;
    right: -83px;
} */
.neon-text {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/neon-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 44px 110px 34px;
    border: unset;
    border-radius: unset;
    box-shadow: unset;
}
}

/* ultimate-sec end */

/* probplem-sec-start */
.probplem-sec{
    background: #FFF3FA;
}
.probplem-text{
    padding: 10px 20px;
    background: #EC2CA31A;
    border-radius: 15px;
    display: inline-block;
}
.probplem-with{
    background: linear-gradient(175.11deg, #EC2CA3 19.51%, rgba(236, 44, 163, 0) 86.92%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.probplem-box{
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #EC2CA3;
    border-radius: 20px;
    height: 100%;
    transition: all .3s ease;
}
.probplem-box:hover{
    transform: scale(1.05); 
}

@media (min-width: 768px) {
    .probplem-text{
        padding: 15px 105px 15px 25px;
        position: relative;
    }
    .probplem-text::after{
        content: url(https://cdn.oppyotest.com/launches/pitchoraai/special/happy-icon.webp);
        top: -2px;
        right: 24px;
        position: absolute;
    }
    .probplem-box{
        padding: 30px 24px;
    }
}
/* probplem-sec-end */  

/* moving-row-sec */
.moving-row-sec{
    background: #080b1a;
}
.moving-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Common styles for moving rows */
  .moving-row {
    display: flex;
    white-space: nowrap;
    animation: move 30s linear infinite;
  }

  /* Alternate direction for rows */
  .moving-row-parent:nth-child(odd) .moving-row {
    animation-direction: normal;
  }

  .moving-row-parent:nth-child(even) .moving-row {
    animation-direction: reverse;
  }

  /* Hover to pause animation */
  .moving-row-parent:hover .moving-row{
    animation-play-state: paused;   
  }

  /* Individual tags styling */
  .moving-row .tag {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 30px;
    border: 1px solid #FFFFFF33;
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  /* Shadow gradient effect on edges */
  .shadow-left,
  .shadow-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .shadow-left {
    left: 0;
    background: linear-gradient(to right, rgba(8, 11, 26,1), rgb(8, 11, 26, 0));
  }

  .shadow-right {
    right: 0;
    background: linear-gradient(to left,  rgba(8, 11, 26,1), rgb(8, 11, 26, 0));
  }

  /* Keyframes for movement */
  @keyframes move {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @media (min-width:768px) {
    .moving-row-sec{
        padding-bottom: 150px;
    }
}
/* moving-row-sec */

/* crazy sec start */
/* crazy sec start */
.crazy-sec{
    background: #ffffff;
}
.crazy-text{
   background: var(--pink-clr);
    border-radius: 100px;
    display: inline-block;
    padding: 0px 20px;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/pitchoraai/special/crazy-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .crazy-text{
        padding: 6px 55px 6px 20px;
        position: relative;
    }
    .crazy-text::after {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/glasses-emoji.webp");
        position: absolute;
        top: 0px;
        right: -65px;
    }
    .theme-wave{
        position: relative;
    }
    .theme-wave::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/theme-wave.webp");
        top: 10px;
        left: 10px;
    }
}
/* crazy sec end */

/* everyone sec start */
.everyone-sec{
    background: #FDF6F4;
}
.everyone-text{
    background: #FFFFFF;
    border: 2px solid #EC4A47;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/everyone-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .everyone-text{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/everyone-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 17px 38px;
        border: unset;
        border-radius: unset;
        position: relative;
    }
    .everyone-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/love-icon.webp");
        top: 0px;
        right: -50px;
    }
}
/* everyone sec end */

/* potential-sec start */
.potential-sec{
    background: linear-gradient(180deg, #FBF4FF 0%, #EDF9FF 100%);
}
.potential-box{
    background: #297EEE1A;
    display: inline-block;
    border-radius: 15px;
    padding: 10px;
}
.gap30 {
	--bs-gutter-y: 30px;
}
.feature-list-box {
    padding: 15px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: #FFFFFF;
	box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	border-bottom: 7px solid var(--purple-clr);
}

.feature-list-box:hover{
	-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}
@-webkit-keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  
  @keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  .support-img:hover img{-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}

@media(min-width:768px){
	.list-section{
		padding: 100px 0px;
		background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/list-section-bg.webp) no-repeat center center;
		background-size: cover;
	}
	.gap30 {
		--bs-gutter-x: 50px;
		--bs-gutter-y: 50px;
	}
	.feature-list-box {
		height: 100%;
		padding: 30px;
	}
    .potential-box{
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/blue-frame1.webp) no-repeat;
    background-size: 100% 100%;
    border-radius: unset;
    padding: 15px 30px;
}

}
/* potential-sec end */

/* freelancing sec start */
.freelancing-sec{
    background: linear-gradient(180deg, #000000 0%, #490E32 100%);
}
.believe-text{
    background: #EC2CA31A;
    border: 3px dashed #EC2CA3;
    border-radius: 30px;
    display: inline-block;
    padding: 12px 30px;
}
.license-text{
    background: #FFFFFF;
    border: 3px solid #EC2CA3;
    box-shadow: 0px 0px 20px 0px #EC2CA3 inset;
    border-radius: 30px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .freelancing-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/pitchoraai/special/freelancing-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .believe-text{
        padding: 30px 56px;
        position: relative;
    }
    .license-text{
        padding: 15px 50px;
        border-radius: 100px;
    }
    /* .believe-text::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/think-emoji.webp");
        top: 10px;
        right: 18px;
    } */
    .img-pop{
        transition: ease 0.3s;
    }
    .img-pop:hover{
        transform: scale(1.1);
    }
}
/* freelancing sec end */

/*compare section start*/
.compare-section{
    background: #ffffff;
}
.choicebox-1{
    background: #FFF4F4;
    border: 2px solid #FF000080;
    border-bottom: 10px solid #FF000080;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicebox-2{
    background: #F1FFED;
    border: 2px solid #1AB40080;
    border-bottom: 10px solid #1AB40080;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicetext-1 {
    background: #FF373C;
    border-radius: 40px 40px 0px 0px;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choicetext-2{
    background: #1AB400;
    border-radius: 40px 40px 0px 0px;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choise-list{
    background: #ffffff;
    border: 1px solid #FF000033;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list-1{
    background: #ffffff;
    border: 1px solid #21AF2133;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/choice-cross.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list-1 li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/choice-right.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list li:nth-last-child(1), .choise-list-1 li:nth-last-child(1){
    border: unset;
    padding-bottom: 0px;
}
.choise-list li, .choise-list-1 li{
    position: relative;
}
.choise-list li::after {
    position: absolute;
    content: "";
    background: #FF000033;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list-1 li::after {
    position: absolute;
    content: "";
    background: #21AF2133;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list li:last-child::after,
.choise-list-1 li:last-child::after {
    background: none;
    content: none; 
}

.choicebox-inner-text-1{
    background: #FFFFFF;
    border: 1px solid var(--red-clr);
    border-radius: 70px;
    padding: 10px 9px;
    display: inline-block;
}
.choicebox-inner-text-2{
    background: #FFFFFF;
    border: 1px solid var(--green-clr1);
    border-radius: 70px;
    padding: 10px 20px;
    display: inline-block;
}
.c-green-box {
    background: #1AB400;
    /* border: 6px solid #E6FFC7; */
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF373C;
    /* border: 6px solid #FCDDDA; */
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}

@media (min-width:768px) {
    .compare-section{
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
        .choicebox-1{
        padding: 40px 40px 40px;
        border-radius: 0px 0px 40px 40px;
    }
    .choicebox-2{
        padding: 40px;
        border-radius: 0px 0px 40px 40px;
    }
    .choicetext-1{
        padding: 15px 197px;
        /* border-radius: unset;
        display: inline-block; */
    }
    .choicetext-2{
        padding: 15px 204px;
        /* border-radius: unset;
        display: inline-block; */
    }
    .choicebox-inner-text-1{
        padding: 16px 30px;
    }
    .choicebox-inner-text-2{
        padding: 16px 30px;
    }
    .c-green-box {
        border-radius: 100px;
        padding: 14px;
    }
    .c-red-box {
        border-radius: 100px;
        padding: 12px 36px;
    }
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
        /* padding: 0px 15px; */
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }
}

/* compare section end */

/* fear sec start */
.fear-sec{
    background: #fff0f0;
}
.fair-text {
    border: 2px solid #FF361D;
    background: #FF462F1A;
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.fear-text-1{
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 5px;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #fff0f0 url(https://cdn.oppyotest.com/launches/pitchoraai/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .fair-text{
        padding: 0px 10px;
    }
}
/* fear sec end */



















/* bonusess-sec start */
.bonusess-sec{
    background: #982e6f;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/pitchoraai/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 50px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #ffffff;
}
.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 30px;
    border: 2px solid var(--pink-clr);
    box-shadow: 0px 0px 30px 0px #EC2CA3 inset;
    background: #FFFFFF;
    height: 100%;
    padding: 20px;
}

.margin-t-30 {
    margin-top: -30px;
}
.bonus-headline-top {
    padding: 4px 55px;
    display: inline-block;
    text-align: center;
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/bonus-head.webp) no-repeat center center;
    background-size: 100% 100%;
}
@media (min-width: 768px){
    .margin-t-78 {
        margin-top: -66px;
    }
    .bonus-section-shape {
        padding: 55px 30px 30px;
    }
}
/* bonus sec end */

/* moneyback sec start */
.moneyback-sec{
    background: linear-gradient(180deg, #000000 0%, #293703 100%);
}
.moneyback-h{
    background: var(--red-clr);
    border:  2px dashed #ffffff;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.riskfree-text {
    background: var(--pink-clr);
    border-radius: 10px;
    padding: 0px 10px;
    display: inline-block;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/pitchoraai/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .riskfree-text {
        border-radius: 30px;
        padding: 10px 20px;
    }
    .moneyback-h {
        padding: 0px 20px;
    }
}
/* moneyback sec end */

/* table section start */

.table-section {
    background: #ffffff;
    padding: 30px 0
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: solid 10px #FDF1FF;
}

.tbbg2 {
    background: #FDF1FF;
    padding: 30px;
    background-size: cover;
    border-radius: 8px 8px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}

.myfeatureslast {
    float: left;
    padding: 30px;
    width: 100%;
    min-height: 69px;
    color: #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 0
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}

ul.grey-tick-last li:last-child {
    border-bottom: 0
}

ul.grey-tick-last li:nth-child(odd) {
    background-color: #f1f1f1;
}

ul.grey-tick-last li:nth-child(even) {
    background-color: #fff;
}

.tablebox3 {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 35px 35px 20px 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    padding: 8px;
    /* border: 5px solid #000; */
    background: var(--pink-clr);
}

.tbbg3 {
    background-color: #ffffff !important;
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/table-frame.webp) no-repeat bottom center;
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 35px 35px 0 0;
    min-height: 240px;
}
.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/pitchoraai/special/list-head.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
ul.vgreytick li:nth-child(1) {
    /* border-radius: 15px 15px 0px 0px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 30px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background: var(--pink-clr);
    border-radius: 25px;
    padding: 8px 11px;
    display: inline-block;
}
.table-sale {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
}
.mt-top{
    margin-top: -69px;
}
.vgreytick li.headline1 {
    background: #FFDFDF;
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #FF0000;
}
.vgreytick li.headline2 {
    background: var(--red-clr);
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}
ul.vgreytick3 li {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/cross2.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.close-img {
    width: 50px;
}
@media(min-width:768px){
    .table-section {
        background: url("https://cdn.oppyotest.com/launches/pitchoraai/special/table-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 25px 20px
    }
    .tbbg3 {
        min-height: 550px;
        padding: 50px 30px 50px 30px;
        background-size: 100% 100%;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px
    }
    .table-sale {
        padding: 11px 70px;

    }
    .mt-top{
        margin-top: -72px;
    }
    ul.vgreytick3 li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .commercial1{
        padding: 8px 29px;
    }
}
/* table section end */

/* ticking sec start */
.ticking-sec{
    background: #FFF0F1;
}
.ticking-text{
     background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
/* @media (min-width:768px) {
    .ticking-sec{
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* ticking sec end */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background:#F9FFE9;
}
.inside-text {
    background: var(--pink-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #ffffff url(https://cdn.oppyotest.com/launches/pitchoraai/special/contact-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px;
    }
    .inside-text {
        border-radius: 100px;
        display: inline-block;
        padding: 11px 90px 9px 30px;
        position: relative;
    }
    .inside-text::after {
        content: url("https://cdn.oppyotest.com/launches/pitchoraai/special/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}

/* Contact Section end */

/* faq sec start */
.faq-section {
    background: #ffffff;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/faq-icon.webp) no-repeat top left;
    background-color: #FFF3FA;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    /* box-shadow: 0px 0px 30px 0px #AF39F4 inset; */
    border: 1px solid var(--pink-clr);
    border-radius: 20px;
}
@media (min-width: 768px){
    /* .faq-section {
        background: url(https://cdn.oppyotest.com/launches/pitchoraai/special/result-sec-bg.webp) no-repeat center center;
        background-size: cover;
    } */
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #ffffff;
    padding: 30px 0;
}
.final-text{
     background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .cta-section-white {
        background: #ffffff url(https://cdn.oppyotest.com/launches/pitchoraai/special/compare-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 80px 0px;
    }
}
/* final-call end */

/* Footer Section */
footer {
  padding: 30px 0px;
  position: relative;
  /* width: 100%; */
  overflow: hidden;
}
/* .full-video {
  padding: 30px 0px;
  position: relative;
  overflow: hidden;
  height: 200px;
} */
.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.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;
}

.video-scroll-slider {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}



@media(min-width:768px){
    footer {
  padding: 100px 0px;
}
.full-video {
  padding: 30px 0px;
  position: relative;
  /* width: 100%; */
  overflow: hidden;
  height: 1022px;
}
}

@media(max-width:1366px){
.full-video {
  padding: 30px 0px;
  position: relative;
  /* width: 100%; */
  overflow: hidden;
  height: 750px;
}
}

@media(max-width:767px){
.full-video {
  padding: 30px 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 200px;
}
}

/* 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%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:rgba(128,0,255,0.8);
    backdrop-filter: blur(6px);

    transition:all 0.3s ease;

    /* pulse animation */
    animation:pulse 2s infinite;
}

/* pulse glow */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(128,0,255,0.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(128,0,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(128,0,255,0);
    }
}

/* hover zoom */
.play-btn:hover{
    transform:translate(-50%, -50%) scale(1.2);
}

/* icon rotate animation */
.play-btn i{
    transition: transform 0.4s ease;
}

.play-btn i.fa-pause{
    transform: rotate(180deg);
}

/* ripple background */
.play-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    animation:ripple 2s infinite;
    z-index:-1;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(2);
        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;
    }
}

.stickybar {
    display: table;
    margin: 0% 0% 1% 3%;
    width: 94%;
    border-radius: 6px;
    float: left;
    background: #171717;
    opacity: .9;
    position: fixed;
    top: 15px;
    padding: 1%;
    z-index: 9999
}

.stickybar.subscribebox p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    text-align: center
}
.subscribebox a {
    border-radius: 8px;
    background-image: -moz-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -webkit-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -ms-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    box-shadow: 0 10px 0 0 rgba(36,105,181,.004);
    border: 0;
    width: 100%;
    color: #fff;
    box-shadow: 3px 5px 2px 0 #2469ba;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 3px;
    background: rgb(26 168 255);
    box-shadow: 3px 5px 2px 0 rgb(23 146 255);
    font-size: 18px;
    width: 100%;
    float: left;
    text-align: center;
    text-decoration: none;
}
@media (min-width:768px) {
    .stickybar {
        display: table;
        margin: 0% 0% 1% 3%;
        width: 94%;
        border-radius: 6px;
        float: left;
        background: #171717;
        opacity: .9;
        position: fixed;
        bottom: 0;
        top: auto;
        padding: 1%;
        z-index: 9999
    }
    .stickybar.subscribebox p {
        color: #fff;
        font-size: 20px;
        margin: 0;
        text-align: center
    }
    
.subscribebox a {
    border-radius: 8px;
    background-image: -moz-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -webkit-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    background-image: -ms-linear-gradient( 124deg,rgb(249,112,145) 0%,rgb(249,122,127) 42%,rgb(249,132,108) 100%);
    box-shadow: 0 10px 0 0 rgba(36,105,181,.004);
    border: 0;
    width: 100%;
    color: #fff;
    box-shadow: 3px 5px 2px 0 #2469ba;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 3px;
    background: rgb(26 168 255);
    box-shadow: 3px 5px 2px 0 rgb(23 146 255);
    font-size: 30px;
    width: 100%;
    float: left;
    text-align: center;
    text-decoration: none
    }
}
.blink-soft {
    animation: blinker 1.5s linear infinite
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.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 */   