
/* JV */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #101010;
    font-size: 14px;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--blue-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}
.jockey-one{
    font-family: "Jockey One", serif;
  }
.playfair-font {
    font-family: "Playfair Display", serif;
}
.italic{
    font-style: italic;
}
/* scroll button start */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--blue-clr);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
/* #scroll:hover {
    background: var(--theme-gradient1);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
} */
/* scroll button end */
:root {
    --black-clr:#020311;
    --white-clr: #fff;
    --light-grey: #f1f1f1;
    --orange-clr1: #FB591B;
    --orange-clr2: #FFA515;
    --purple-clr: #15AFBF;
    --purple-clr1:#25EADA;
    --purple-clr2:#B070FF;

    --blue-clr: #26ADFF;
    --yellow-clr: #FEC432;
    --grey-dark: #01010180;
    --light-white: #01010199;
    --grey-clr1:#FFFFFF99;
    --orange-theme: linear-gradient(90deg, #FF2929 0%, #FD6B2C 100%);

    --blue-clr1: #358DFF;
    --grey-clr:#555555;
    --lightgreen-clr: #4CDF9B;
    --pink-clr: #FF6AAE;
    --red-clr:#FF2C2C;
    --green-clr:#21AF21;
    --green-clr1:#57CA00;
    --green-clr2: #22b423;
    --theme-gradient: #4AFFFF;
    /* --theme-gradient1: linear-gradient(91.28deg, #4D7FFA 0%, #6137F7 100%); */
    --purple-theme-1 : linear-gradient(180deg, rgba(97, 55, 247, 0.4) 0%, rgba(97, 55, 247, 0) 100%);
    --theme-bg: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
    /* --theme-bg-1: linear-gradient(90deg, #55D7CC 0%, #A678F5 50%, #F3A76A 100%); */
    --theme-bg-1: #26ADFF;
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{
    color: var(--light-grey);
}
.light-white{
    color: var(--light-white);
}
.yellow-clr {
    color: var(--yellow-clr);
}
.orange-clr1 {color: var(--orange-clr1);}
.orange-clr2 {color: var(--orange-clr2);}
.purple-clr {color: var(--purple-clr);}
.purple-clr1 {color: var(--purple-clr1);}
.purple-clr2 {color: var(--purple-clr2);}
.lightpurple-clr {
    color: var(--lightpurple-clr);
}
.pink-clr{ color : var(--pink-clr);}
.lightgreen-clr{color: var( --lightgreen-clr);}
.red-clr{color:var(--red-clr);}
.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.grey-clr{color:var(--grey-clr);}
.grey-dark{color:var(--grey-dark);}
.grey-clr1{color:var(--grey-clr1);}
.green-clr{color:var(--green-clr)}
.green-clr1 {color: var(--green-clr1);}
.green-clr2{color:var(--green-clr2)}
.orange-theme{
    background: var(--orange-theme);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr{
    background: var(--theme-bg-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr2{
    color: var(--theme-gradient)
}
.br-theme {
    border-bottom: 2px solid transparent;
    border-image: var(--theme-gradient);
    border-image-slice: 1;
    width: 100%;
}
.purple-theme-1{
    background: var(--purple-theme-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .f-md-70{
        font-size: 70px;
    }
}

/* 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;
}

/* live section start */
.live-section{
    background: #FFFBED;
}
.live-section .gradiant-box{    
    border-radius: 20px;
    background: var(--theme-bg-1);
    padding: 50px 20px;
}
.lc-orange{
    color: #D99904;
}
.lc-bg-orange{
    background: #ffffff;
}
.lc-purple{
    color: #9550FA;
}
.lc-bg-purple{
    background: #F1E9FD;
}

.lc-sky-blue{
    color: #3A76CB;
}
.lc-bg-sky-blue{
    background: #ffffff;
}
.live-sec-card{
    padding: 20px;
    height: 100%;
}


.left-live-box{
    background: var(--white-clr);
    border: 2px solid #007BFF;
    border-radius: 30px;
    padding: 15px;
}
.right-live-box{
    background: var(--white-clr);
    border: 2px solid rgba(231, 109, 36, 0.30);
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}
.form-btn input[type="submit"] {
	text-decoration: none;
	border: none;
	color: var(--black-clr);
	text-align: center;
	display: block;
	width: 100%;
	z-index: 9999;
	padding: 15px 10px;
	line-height: 30px;
	font-weight: 600;
	outline: none;
	white-space: normal;
    cursor: pointer;
    background: var(--theme-gradient);
    border-radius: 10px;
    transition: all .3s ease;
}
.form-btn input[type="submit"]:hover {
    transition: all .3s ease;
    /* background: var(--theme-gradient1); */
}
.request-affiliate-1 a{
    background: var(--yellow-clr);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
    /* border: 10px solid #FEC4324D; */
    width: 100%;
}
/* .request-affiliate-1{
    border: 10px solid #A6FF004D;
    border-radius: 15px;
} */
.request-affiliate-1 a:hover{
    transition: all .3s ease;
    color: #000;
    /* background: var(--theme-gradient1); */
}
.request-affiliate a{
    background:  var(--yellow-clr);
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
}
.request-affiliate a:hover{
    transition: all .3s ease;
    color: #000;
    /* background: var(--theme-gradient1); */
}
/* button border animation css start */
@property --border-gradient-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
  }
  /* .btn-border{
    border: 10px solid #A6FF004D;
    display: inline-block;
    border-radius: 20px;
    transition: ease 0.3s;
    } */
    /* .btn-border:hover{
        transform: scale(1.1);
    } */
    .btn-border {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #FEC4324D 14%,  #FEC432 19%, transparent 17%);
        background-size: contain;
        background-color: #ffffff;
        animation: rotateBG 5s linear infinite;
    }
    .btn-border-1 {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #FEC4324D 14%,  #FEC432 19%, transparent 17%);
        background-size: contain;
        background-color: #070707;
        animation: rotateBG 5s linear infinite;
    }
  
  @keyframes rotateBG {
    0% {
      --border-gradient-angle: 0turn;
    }
    100% {
      --border-gradient-angle: 1turn;
    }
  }
  
  /* button border animation css end */
@media(min-width:768px){
        .live-section{
        padding: 50px 0px 100px;
        }
    .left-live-box{
        padding: 46px 30px;
    }
    .right-live-box{
        padding: 20px 20px;
    }
    .form-control.input-field {
        height: 60px;
        font-size: 15px;
    }
    .form-control.input-field::placeholder{
        color: #000000;
    }
    .mt-md120{
        margin-top: 120px!important;
    }
    .request-affiliate a{
        padding: 17px;
        text-align: center;
    }
    .request-affiliate-1 a{
        padding: 26px 125px;
        text-align: center;
    }
    .jvzoo-img{
        min-height: 131px;
    }

}
/* live section end */


/* stop-sec start */
.stop-sec{
    background: #FFFFFF;
}
.stop-box{
    border: 1px dashed #FF2C2C66;
    background: linear-gradient(180deg, rgba(255, 44, 44, 0.1) 0%, rgba(255, 44, 44, 0.01) 100%);
    border-radius: 10px;
    transform: rotateX(4deg);
    padding: 15px;
}
.stop-text{
    background: #FF2B2B1A;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.blue-frame-1 {
    display: inline-block;
    border-radius: 10px;
    background: #23A1F426;
    padding: 10px;
}
@media(min-width:768px){
    .red-wave{
        position: relative;
    }
    .red-wave::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/red-wave.webp") no-repeat;
        width: 100%;
        height: 14px;
        bottom: 0px;
        left: 0px;
    }
    .stop-preview{
        position: relative;
        transform: rotate(-4deg);
    }
    .stop-end{
        position: relative;
        transform: rotate(4deg);
    }
    .stop-preview::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/curve-red-line.webp") no-repeat;
        width: 88px;
        height: 7px;
        top: 50%;
        right: -71px;
    }
    .stop-end::before {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/curve-red-line.webp") no-repeat;
        width: 88px;
        height: 7px;
        top: 50%;
        left: -89px;
    }
    .stop-text{
        padding: 0px 15px;
    }
    .grey-wave{
        position: relative;
    }
    .grey-wave::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/grey-wave.webp") no-repeat;
        width: 100%;
        height: 8px;
        bottom: 0px;
        left: 0px;
    }
    .blue-frame-1{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/blue-frame-1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 5px 38px 5px 15px;
        position: relative;
    }
    .blue-frame-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/star-icon.webp");
        bottom: -10px;
        right: -35px;
    }
}
/* stop-sec end */

















/* sticky bar start */

.cta-btn .timerbg,
.cta-btn .smmltd {
    color: #fff !important;
}

.blink-soft {
    animation: blinker 1.5s linear infinite
}
@keyframes blinker {
    50% {
        opacity: 0
    }
}

/* stick bar end */

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
@media (min-width: 768px){
    .theme-btn {
        padding: 30px 100px;
    }
}
/* header section start */

.header-section {
    background: linear-gradient(180deg, rgba(255, 199, 0, 0.05) 0%, rgba(255, 199, 0, 0.07) 100%);
    padding: 30px 0px;
}
.blue-wave{
    position: relative;
}
.blue-wave::after {
    position: absolute;
    content: "";
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave.webp") no-repeat;
    width: 100%;
    height: 14px;
    bottom: -6px;
    left: 0px;
}
ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    /* font-weight: 500; */
	color: var(--white-clr);
}
.leader-ul li a{
    position: relative;
  transition: all .5s;
}


.header-section ul.leader-ul li a {
    text-decoration: none;
    /* font-weight: 500; */
    padding:10px 10px;
}
.header-section ul.leader-ul li a:hover{
    color: black;
}
a.affiliate-link-btn {
	border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    font-size: 18px;
    color: var(--black-clr);
    font-weight: 600 !important;
    transition: all .3s ease;
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
} 
.post-heading {
    border-radius: 10px;
    background: #23A1F4;
    padding: 10px;
    display: inline-block;
}
.header-li li {
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/header-li.webp) no-repeat;
    padding: 0px 0px 20px 32px;
    background-position: 0px 4px;
    list-style: none;
}

.header-card{
    border: 1px solid #23A1F44D;
    background: #23A1F40D;
    padding: 15px 10px;
    border-radius: 10px;
}
.Magically-text {
    background: linear-gradient(90deg, rgba(35, 161, 244, 0.2) 0%, rgba(35, 161, 244, 0.1) 50.45%, rgba(35, 161, 244, 0.2) 100%);
    border-left: 2px solid #23A1F4;
    border-right: 2px solid #23A1F4;
    padding: 4px 10px;
    display: inline-block;
}
.fsl-video-frame {
    border: 1px solid #23a1f4;
    box-shadow: 0px 0px 10px 8px #d5ebf1;
    border-radius: 10px;
}
@media(min-width:768px){
    .f-md-56{
        font-size: 56px;
    }
    .header-section {
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/header-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 35px 0px 100px;
        position: relative;
    }
    .blue-wave::after{
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave.webp") no-repeat;
        width: 104%;
        height: 14px;
        bottom: -4px;
        left: 0;
    }
    .Magically-text {
        padding: 4px 15px;
    }
    .post-heading {
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/post-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 4px 27px 4px 22px;
    }
    .header-card {
        padding: 20px 17px;
    }
    a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
}
/* header section end */

/* content sec start */
.content-sec{
    background: #FFFBED;
}

.fe-card{
    border-radius: 10px;
    padding: 15px 10px;
    height: 100%;
    background: #FFFFFF1A;
}
/* .purple-text{
    background: var(--theme-bg-1);
    display: inline-block;
    border-radius: 5px;
    padding: 0px 5px;
} */
.content-box {
    padding: 20px 5px;
    background: #191919;
    border-radius: 10px;
    position: relative;
}
.tip-clr-1{
    color: #23A1F4;
}
.tip-clr-2{
    color: #F9BF2D;
}
.watch-frame{
    background: #23A1F4;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
}

@media(min-width:768px){
    .content-sec {
        padding: 50px 0px 100px;
    }
    .yellow-wave{
        position: relative;
    }
    .yellow-wave::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/yellow-wave.webp") no-repeat;
        width: 100%;
        height: 12px;
        bottom: 0px;
        left: 0px;
    }
    .content-box{
        padding: 100px 0px;
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/content-bg.webp") no-repeat;
        background-size: 100% 100%;
        max-width: 1440px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);    
        border-radius: 0px;
    }
    .fe-card{
        padding: 20px;
    }
    .watch-frame{
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/waiting-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 20px 50px 20px 30px;
        position: relative;
    }
    .watch-frame::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/watch-img.webp");
        right: -40px;
        top: 0px;
    }
    /* .purple-text{
        border-radius: 10px;
        padding: 0px 20px;
    } */
}
@media(max-width:1400px){
    .content-box{
        max-width: 1240px;
    }
}
/* content sec end */


/* split-scroll sec start */
.split-sec{
    background: #FFFBED;
}
.blue-frame {
    display: inline-block;
    border-radius: 10px;
    background: rgb(35, 161, 244);
    padding: 10px;
}
.blue-wave-1{
    position: relative;
}
.blue-wave-1::after {
    position: absolute;
    content: "";
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave-1.webp") no-repeat;
    width: 100%;
    height: 14px;
    bottom: -6px;
    left: 0px;
}
@media(min-width:768px){
.split-sec{
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/split-bg.webp) no-repeat;
    background-size: 100% 100%;
    padding: 100px 0px 0px;
}
.blue-frame{
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/post-head.webp) no-repeat;
    background-size: 100% 100%;
    padding: 0px 20px;
}
}

/* ========================= */

/* explore-sec start */
/* scrolling video start */

/* Video */
.stack-card video{
height: 100%;
object-fit: cover;
width: 100%;
display: block;
transition: 0.6s ease-in-out;
border-radius: 10px;
}
.stack-card {
display: flex;
align-items: center;
overflow: hidden;
height: 80vh;
/* height: 100%; */
position: sticky;
top: 0;
padding: 0;
/* box-shadow: 0 0 30px rgba(0,0,0,0.3);  */
/* font-size: 10rem; */
/* background: url(https://cdn.oppyotest.com/launches/inkflow/jv/scroll-bg.webp) no-repeat center center;
background-size: cover; */
border: none;
}

.stack-card:nth-child(1) {
background-color: #FFFBED;
}
.stack-card:nth-child(2) {
/* box-shadow: 0 0 30px rgba(0,0,0,0.2);  */
background-color: #FEF3C4;
}
.stack-card:nth-child(3) {
background-color: #FFFBED;
/* box-shadow: 0 0 30px rgba(0,0,0,0.2);  */
}
.stack-card:nth-child(4) {
background-color: #FEF3C4;
/* box-shadow: 0 0 30px rgba(0,0,0,0.2);  */
}
.stack-card:nth-child(5) {
background-color: #FFFBED;
/* box-shadow: 0 0 30px rgba(0,0,0,0.2);  */
}
/* scrolling video end */

.explore-box {
border-radius: 10px;
position: relative;
}

@media(min-width:768px){
.explore-box {
    border-radius: 10px;
    height: 100%;
}
}
/* explore-sec end */

/* ease-sec start */
.ease-sec{
    background: #ffffff;
}
.ease-box{
    background: #FFFFFF12;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.ease-1{
    background: #F4F5FF;
 }
 .ease-2{
     background: #FFF3F0;
 }
 .ease-3{
     background: #FFF9EC;
 }
 .ease-4{
     background: #F0FAFF;
 }
 .ease-5{
     background: #F5F9EE;
 }
 .ease-6{
     background: #F0F4FF;
 }
.tilt {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    will-change: transform, box-shadow;
}
/* ✅ Extra Smooth Scaling Effect */
.tilt:hover {
    transform: scale(1.08);
    /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
}
@media(min-width:768px){
    .ease-box{
        padding: 20px 18px 25px;
    }
    
}
/* ease-sec end */


/* Secret Section Start */
.secret-sec{
    background: #FFFBED;
}
.blue-frame-2{
    background: #DEF1FE;
    border: 1px solid #23A1F4; 
    display: inline-block;
    border-radius: 10px;
    padding: 4px 10px;
}
.secret-text{
    background: #23A1F4;
    border-radius: 10px;
    display: inline-block;
    padding: 8px 15px;
}
.secret-box{
    display: inline-block;
    border-radius: 12px;
    padding: 10px;
}
.secret-box-1{
    background: #F4F5FF;
    border: 2px solid #C0C6FF;
}
.secret-box-2{
    background: #F0FAFF;
    border: 2px solid #B9E8FF;
}
.secret-box-3{
    background: #FFF3F0;
    border: 2px solid #FFD6CC;
}
.secret-list{
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/list-head.webp") no-repeat;
    background-position: 0px 5px;
    padding-left: 32px;
}
.real-text{
    background: #000;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}
@media (min-width:768px){
    .secret-sec{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/secret-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .blue-wave-2, .blue-wave-3, .blue-wave-4{
        position: relative;
    }
    .blue-wave-2::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave-2.webp") no-repeat;
        width: 260px;
        height: 12px;
        bottom: 0px;
        left: -3px;
    }
    .blue-wave-3::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave-3.webp") no-repeat;
        width: 236px;
        height: 12px;
        bottom: 0px;
        left: -3px;
    }
    .blue-wave-4::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave-4.webp") no-repeat;
        width: 604px;
        height: 12px;
        bottom: -7px;
        left: -6px;
    }
    .silent-emoji{
        position: relative;
    }
    .silent-emoji::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/silent-emoji.webp");
        top: 55%;
        left: 15%;
    }
    .silent-emoji::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/silent-emoji.webp");
        top: 55%;
        right: 15%;
    }
    .secret-text{
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/secret-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 20px;
    }
    .blue-frame-2{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/blue-frame-2.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        border: unset;
        border-radius: 0px;
        padding: 6px 20px;
    }
    .secret-box{
        padding: 20px 20px 25px;
    }
    .show-text{
        position: relative;
    }
    .show-text::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/curve-arrow-right.webp");
        top: 20%;
        left: -13%;
    }
    .show-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/curve-arrow-left.webp");
        top: 25%;
        right: -16%;
    }
    .real-text{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/real-bg.webp) no-repeat;
        background-size: 100% 100%;
        padding: 20px 30px;
        border-radius: unset;
    }
}
/* Secret Section End */

/* bugs-sec start */
.bugs-sec{
    background: #202020;
}
.blue-frame-3 {
    display: inline-block;
    border-radius: 10px;
    background: #23A1F4;
    padding: 10px;
}
@media(min-width:768px){
    .bugs-sec{
        background: #202020 url("https://cdn.oppyotest.com/launches/inkflow/jv/bugs-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .blue-frame-3{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/blue-frame-3.webp) no-repeat;
        background-size: 100% 100%;
        padding: 10px 20px;
        border-radius: unset;
    }
}
/* bugs-sec end */

/* lives-sec stat */
.lives-sec{
    background: #FFFBED;
}
.lives-text{
    background: #23A1F41A;
    border-bottom: 1px solid #23A1F4;
    padding: 0px 5px;
}
.lives-text-1{
    background: #23A1F41A;
    border-bottom: 1px solid #23A1F4;
    padding: 12px 4px;
}
.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;          
}
.remember-text {
    background: var(--blue-clr);
    border-radius: 10px;
    padding: 4px 10px;
    display: inline-block;
}
.lives-box{
    background: var(--blue-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 10px;
    position: relative;
}
@media(min-width:768px){
    /* .lives-sec{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/lives-bg.webp) no-repeat top center;
        background-size: cover;
    } */
    .lives-text-1{
        padding: 12px 25px;
    }
    .remember-text {
        background: var(--blue-clr);
        border-radius: 10px;
        padding: 16px 30px;
        display: inline-block;
    }
    .lives-box{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/lives-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 0px 105px 0px 25px;
    }
    .lives-box::after{
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/lives-icon.webp");
        position: absolute;
        top: -17px;
        right: 0px;
    }
}
/* lives-sec end */


/* expensive-section start */
.expensive-section{
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF1F1 97.68%);
}
.purple-frame {
    background: #23A1F4;
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
.why-text{
    border-bottom: 2px dashed #FF2C2C80;
    display: inline-block;
}
.expensive-card{
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 234, 234, 0.7) -1.31%, rgba(255, 234, 234, 0.3) 100%);
    padding: 20px;
    height: 100%
}
.white-box{
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    display: inline-block;
}
.expensive-box{
    border: 1px solid #C3C3C3;
    background: #fff;
    border-radius: 17px;
    display: inline-block;
}
.expensive-box img{
    padding: 7px;
}
.expensive-box div{
    border-top: 1px solid #C3C3C3;
    padding: 7px 11px;
}
.expensive-box .text{
    border-bottom: 1px solid #C3C3C3;
    border-top: none;
    padding: 7px 12px 7px 13px;
}
.nightmare-text{
    background-color: #FFF7F7;
    border-bottom: 1.5px solid #FE482B;
    display: inline-block;
    transform: rotate(1deg);
}
.expensive-card-main{
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 234, 234, 0.7) -1.31%, rgba(255, 234, 234, 0.3) 100%);
    padding: 20px;
    height: 100%;
}
.grey-box{
    background: #EEEEEE;
    border-radius: 13px;
    padding: 17px 25px;
    display: inline-block;
}
.expensive-card-1{
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/expensive-card-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px;
    display: inline-block;
    height: 100%;
}
.expensive-boxes {
    background: #FF2525;
    display: inline-block;
    backdrop-filter: blur(50px);
    border-radius: 5px;
    padding: 10px 8px;
}
.expensive-black-light {
    background: #E4EBEF;
    border: 1px solid #CACACA;
    padding: 20px;
    border-radius: 10px;
}

@media(min-width:768px){
    .expensive-section{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/expensive-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding-bottom: 140px;
    }
    .f-md-80{
        font-size: 80px;
    }
    .expensive-black-light {
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/expensive-black-light.webp") no-repeat;
        background-size: 100% 100%;
        padding: 34px 48px 34px 34px;
        border: none;
        border-radius: 0px;
    }
    .purple-frame {
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 0px 53px 0px 15px;
        position: relative;
    }
    .purple-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/think-emoji.webp");
        top: -16px;
        right: -12px;
    }
    .red-wave-1, .red-wave-2, .red-wave-3{
        position: relative;
    }
    .red-wave-1::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/red-wave-1.webp") no-repeat;
        width: 100%;
        height: 14px;
        bottom: 0px;
        left: 0px;
    }
    .red-wave-2::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/red-wave-2.webp") no-repeat;
        width: 100%;
        height: 14px;
        bottom: 0px;
        left: 0px;
    }
    .red-wave-3::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/red-wave-3.webp") no-repeat;
        width: 267px;
        height: 13px;
        bottom: 0px;
        left: 10px;
    }

    .expensive-card{
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/expensive-card.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 43px 72px 65px;
    }
    .white-box{
        padding: 10px 17px;
    }
    .triangle{
        position: relative;
    }
    .triangle img{
        z-index: 2;
    }
    .triangle::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/triangle.webp");
        top: -47px;
        right: -37px;
        z-index: -1;
    }
    .dot-1, .dot-2, .dot-3{
        position: relative;
    }
    .dot-1::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/dot.webp");
        top: 45%;
        right: -8px;
    }
    .dot-2::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/dot.webp");
        top: 49%;
        left: -8px;
    }
    .dot-3::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/dot.webp");
        top: -6px;
        left: 247px;
    }
    .expensive-boxes {
        padding: 13px 18px;
    }
    .expensive-card-main{
        padding: 80px 100px 0px;
    }
    .expensive-card-1{
        padding: 30px;
    }
    .red-box{
        background: #FF2C2C;
        border-radius: 5px;
        padding: 0px 5px;
    }

}
/* expensive-section end */


/* not-anymore-sec start */
.red-gradiant{
    background: linear-gradient(90deg, #FF2929 0%, #FD6B2C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.red-br{
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #FF2929 0%, #FD6B2C 100%);
    border-image-slice: 1;
    width:100%;
}

.not-anymore-sec{
    background: linear-gradient(180deg, #FFFBED 5.64%, #FFFFFF 105.2%);
}

.not-anymore-h{
    background: #FFFFFF;
    border-bottom: 2px solid #1BB3FF;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.dark-gradiant{
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/dark-gradiant.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}
.media img{
    background: #27A3F0;
    border-radius: 6px;
    padding: 2px;
}
.media-text{
    background: rgba(39, 163, 240, 0.1);
    border: 1px dashed #B9E3FF;
    border-radius: 6px;
    padding: 8px 16px;
}
.not-frame{
    background: #27A3F0;
    border-radius: 10px;
    padding: 10px;
}

@media (max-width: 767px){
    .not-anymore-box {
        background: #FFFFFF;
        border: 1px solid #ECECEC;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .not-anymore-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/inkflow/jv/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 136px 0px 104px;
    }
    .blue-wave-5{
        position: relative;
    }
    .blue-wave-5::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/blue-wave-2.webp") no-repeat;
        width: 260px;
        height: 12px;
        bottom: -3px;
        left: -3px;
    }
    .not-anymore-h{
        padding: 22px 56px;
    }
    .right-arrow{
        position: relative;
    }
    .right-arrow::before {
        position: absolute;
        content: url(https://cdn.oppyotest.com/launches/inkflow/jv/right-arrow.webp);
        bottom: -38px;
        right: -50px;
    }
    .not-anymore-box{
        background: #FFFFFF;
        border: 1px solid #ECECEC;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    .z-border{
        position: relative;
    }
    .z-border::after {
        content: url(https://cdn.oppyotest.com/launches/inkflow/jv/z-border.webp);
        position: absolute;
        top: -22px;
        left: -10px;
    }
    .not-frame {
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/not-frame.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 8px 18px 8px 19px;
    }
    .dark-gradiant{
        padding: 18px 47px 15px 34px;
    }
}
/* not-anymore-sec end */

/* proudly sec start */
.proud-section{
    background: #34251f;
}
.proud-section .heading {
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/presenting-bg.webp");
    background-size: 100% 100%;
    padding: 0px 10px;
    display: inline-block;
}

@media (min-width: 768px) {
    .proud-section{
        background: #FFFBED url("https://cdn.oppyotest.com/launches/inkflow/jv/proudly-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding-bottom: 120px;
    }
    .yellow-wave-1{
        position: relative;
    }
    .yellow-wave-1::after {
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/inkflow/jv/yellow-wave-1.webp") no-repeat;
        width: 523px;
        height: 14px;
        bottom: 0px;
        left: -5px;
    }
    .proud-text {
        border-bottom: 2px dashed #F06327;
    }
    .proud-section .heading {
        padding: 0px 25px 2px;
    }
    .img-pop{
        transition: ease 0.4s;
    }
    .img-pop:hover{
        transform: scale(1.1);
    }
}
/* proudly sec end */

/* step-sec start */
.step-sec{
    background: #FFFBED;
}

/* steps-card */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--blue-clr);
}
.heading-tabs:not(.collapsed) .steps-card{
    border-color: var(--blue-clr);
}
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    fill: white;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    transition: 0.5s ease-in-out;
    border: 1px solid transparent;
}

.steps-tabs{
    /* height: 750px; */
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--blue-clr);
}

@media (min-width: 768px) {
    /* .step-sec{
        padding: 20px 0px 100px;
    } */
    .steps-card .steps-icon{
        min-width: 100px;
        min-height: 100px;   
    }
    .easy-step{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/blue-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 37px 0px 28px;
        border-radius: unset;
        position: relative;
    }
    .easy-step::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/inkflow/jv/click-hand-icon.webp");
        top: 26px;
        right: -44px;
    }
}
/*  */

.steps-card p{
    /* color: #101010; */
    color: rgba(25, 25, 25, 0.5);
}

.steps-card{
    transition: all .8s ease-in-out;
    border-radius: 20px;
    background: #ffffff;
}
.heading-tabs{
    background: rgba(153, 88, 204, 0.10);    ;
    border: none;
    outline: none;
    padding: 0;
    text-align: left;
    border-radius: 20px;
}


.cleint-frame {
    border: 5px solid var(--blue-clr);
    background: var(--blue-clr);
    border-radius: 12px;
    /* padding: 20px; */
}
/* step-sec end */

/* demo section start */
.demo-sec{background:#fff;}
.demo-box {
    /* border-radius: 10px; */
    padding: 15px 10px;
    height: 100%;
    align-items: center;
    background: url("https://cdn.oppyotest.com/launches/inkflow/jv/demo-box.webp") no-repeat bottom center;
    background-size: 100% 100%;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-box {
        padding: 15px 18px;
    }
}
/* demo section end */

/* deep-funnel start */
.deep-funnel-sec {
    background: #FFFBED;
}
/* deep-funnel end */

/* prize sec start */

.prize-value {
    background: #0b0308;
}
@media (min-width: 768px) {
    .prize-value {
        background: #FFFBED url(https://cdn.oppyotest.com/launches/inkflow/jv/prize-value.webp) no-repeat top center;
        background-size: cover;
        position: relative;
        z-index: -1;
    }
}
/* prize sec end */

/* contest-sec start */
.contest-sec{
    background: #ffffff;
}
/* contest-sec end */

/* prise table */

@media (max-width:767px) {
    .prise-table-1{
        background: #D9D9D9;
        border: 10px solid #fff;
        border-radius: 40px;
        padding: 32px 32px 50px 31px;
        position: relative;
    }
    .contest-text{
        background-color: #252525;
        border-radius: 100px;
        margin-top: -59px;
        height: 100%;
    }
    
    .trophy-1{
        background-color: #2346A1;
        border-radius: 20px;
        padding: 3px 0px;
        position: relative;
    }
    .tropfy-img {
        position: absolute;
        left: 32px;
        top: -2px;
        width: 50px;
        height: 55px;
    }
    
    .tropfy-img-1 {
        position: absolute;
        left: 39px;
        top: -1px;
        width: 44px;
        height: 50px;
    }
    
    .tropfy-img-2 {
        position: absolute;
        left: 39px;
        top: 0px;
        width: 42px;
        height: 48px;
    }
    
    .tropfy-img-3 {
        position: absolute;
        left: 46px;
        top: 7px;
        width: 35px;
        height: 35px;
    }
    
        .tropfy-img-4 {
        position: absolute;
        left: 46px;
        top: 7px;
        width: 35px;
        height: 35px;
    }

    .prise-table-2{
        background: #FDEFDF;
        border: 10px solid #fff;
        border-radius: 40px;
        padding: 32px 22px 35px 22px;
        position: relative;
    }
    .note-text{
        background-color: #F1A545;
        display: inline-block;
        padding: 11px 102px;
        border-radius: 20px;
    }
    }

.camle-clr{
    color: #F1A545;
}

@media (min-width:768px) {
    .prise-table-1{
        background: #D9D9D9;
        border: 10px solid #fff;
        border-radius: 40px;
        padding: 65px 32px 50px 31px;
        position: relative;
    }
    .prise-table-2{
        background: #FDEFDF;
        border: 10px solid #fff;
        border-radius: 40px;
        padding: 65px 30px 30px 20px;
        position: relative;
    }
    .contest-text{
        background-color: #252525;
        border-radius: 100px;
        margin-top: -92px;
        height: 100%;
    }
    .f-md-100{
        font-size: 100px !important;
    }
    .trophy-1{
        background-color: #2346A1;
        border-radius: 20px;
        padding: 10px 0px;
        position: relative;
    }
    
.tropfy-img {
    position: absolute;
    left: 54px;
    top: -10px;
}

.tropfy-img-1 {
    position: absolute;
    left: 46px;
    top: -8px;
}

.tropfy-img-2 {
    position: absolute;
    left: 39px;
    top: -6px;
}

.tropfy-img-3 {
    position: absolute;
    left: 46px;
    top: 18px;
}

.tropfy-img-4 {
    position: absolute;
    left: 35px;
    top: 18px;
}

.note-text{
    background-color: #F1A545;
    display: inline-block;
    padding: 11px 102px;
    border-radius: 20px;
}
}
/* prise section end */

/* performer sec start */
.performer-sec{
    background: #FFFBED;
}
/* @media(min-width:768px){
    .performer-sec{
        background: #fef6ff url(https://cdn.oppyotest.com/launches/inkflow/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
} */
/* performer sec end */

/* Reciprocate Section Start */
.reciprocate-sec{
    padding: 30px 0px;
    background: #000000;
}
@media(min-width:768px){
    .reciprocate-sec{
        padding: 100px 0px;
        background:url(https://cdn.oppyotest.com/launches/inkflow/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
}

/*  */

/* logos sec start */
.logos-sec{
    background: #FFFBED;
}
/* logos sec end */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: #ffffff;
}
.container-box{
    padding: 20px;
    position: relative;
    background: #030f28;
    border-radius: 30px;
}
.terms-list li {
    list-style: none;
    padding: 0 0 20px 0px;
}
@media(min-width:768px){
    .contact-section{
        padding: 100px 0px;
    }
    .container-box{
        padding: 80px;
        background: url(https://cdn.oppyotest.com/launches/inkflow/jv/contact-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }
}

/*  */
/* term-sec start */
.term-sec{
    background: #FFFBED;
}
/* term-sec end */

/* Footer Section Start */
.footer-section{
    background: var(--black-clr);
    padding: 30px 0px;
}
.footer-ul{
    padding: 0px;
    margin: 0px;
}
.footer-ul li{
    display: inline;
}
.agent{
    max-height: 140px;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .footer-section {
        padding: 50px 0px;
    }
}

/* Footer Section End */



/* fixed-bar start */
.fixed-top-bar {
    background: var(--blue-clr);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
}
@media (min-width: 768px) {
    .fixed-top-bar {
        padding: 5px 0;
    }
}
/* fixed-bar end */

/* Table Section Start */

.table-section {
    background: #EDECFF;
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: double 3px transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
ul.vgreytick li:nth-child(even) {
    background-color: #EDECFF;
}
.tbbg2 {
    background: #EDECFF;
    padding: 20px 30px;
    background-size: cover;
    border-radius: 18px 18px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}
ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/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: 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    border: double 3px transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    /* background: linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%); */
}
.tbbg3 {
    background: linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%);
    padding: 20px 30px;
    background-size: 100% 100%;
    border-radius: 15px 15px 0 0;
}

.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/inkflow/jv/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:last-child {
    border-bottom: 0;
    border-radius: 0px 0px 18px 18px;
}

ul.vgreytick-1 {
    padding: 0
}

ul.vgreytick-1 li {
    background:#fff url(https://cdn.oppyotest.com/launches/inkflow/jv/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-1 li:nth-child(even) {
    background-color: #2a1b7d;
    color: #fff;
}

ul.vgreytick-1 li:last-child {
    border-bottom: 0;
    border-radius: 0px 0px 18px 18px;
}
.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #FFCB40;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background:  #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.table-sale {
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
}
.mt-top{
    margin-top: -26%;
}
@media(min-width:768px){
    .table-section {
        background: #EDECFF;
        /* background: #fef6ff url(https://cdn.oppyotest.com/launches/inkflow/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed; */
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        padding:50px 30px;
        /* min-height: 235px;
        background-size: 100% 100%; */
    }
    ul.vgreytick li {
        padding: 15px 65px;
        background-position: 30px 17px
    }
    .tbbg3 {
        padding: 50px 30px;
        /* min-height: 235px;
        background-size: 100% 100%; */
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }

    .table-sale {
        padding: 11px 70px;

    }
    .mt-top{
        margin-top: -15%;
    }

}

/* Table Section End */

/* promote section start */
.promote-section{background:#FCFBFF;}
.promote-card{
    background: #ffffff;
    border: 1px solid var(--blue-clr);
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
}
.promote-card2{
    background:url(https://cdn.oppyotest.com/launches/inkflow/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/inkflow/jv/promote-tick.webp) no-repeat;
    padding: 0px 0px 0px 40px;
    background-position: 0px 0px;
}
/* promote section end */