
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(--purple-clr);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}
/* scroll button start */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--purple-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-clr: #F89B1C;
    --orange-clr1: #FB591B;
    --purple-clr: #6137F7;
    --purple-clr1: #8968ff;
    --blue-clr: #227AF2;
    --lightpurple-clr: #71A2FB;
    --skyblue-clr:#3DC2EC;
    --grey-clr:#555555;
    --lightgreen-clr: #4CDF9B;
    --pink-clr: #FF6AAE;
    --red-clr:#FF2C2C;
    --green-clr:#21AF21;
    --green-clr1:#57CA00;
    --theme-gradient: #A6FF00;
    --yellow-clr: #FFD641;
    /* --theme-gradient: linear-gradient(91.28deg, #6137F7 0%, #4D7FFA 100%);
    --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%);
    --white-theme: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
    --white-theme-1: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 100%);
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{
    color: var(--light-grey);
}
.yellow-clr {
    color: var(--yellow-clr);
}
.orange-clr {color: var(--orange-clr);}
.orange-clr1 {color: var(--orange-clr1);}
.purple-clr {color: var(--purple-clr);}
.purple-clr1 {color: var(--purple-clr1);}
.lightpurple-clr {
    color: var(--lightpurple-clr);
}
.pink-clr{ color : var(--pink-clr);}
.skyblue-clr{color:var(--skyblue-clr);}
.lightgreen-clr{color: var( --lightgreen-clr);}
.red-clr{color:var(--red-clr);}
.blue-clr{color:var(--blue-clr);}
.grey-clr{color:var(--grey-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1 {
    color: var(--green-clr1);
}
.green-clr2{color:var(--green-clr2)}
.theme-clr{
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.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;
}
.white-theme{
    background: var(--white-theme);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.white-theme-1{
    background: var(--white-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: #EDECFF;
}
.live-section .gradiant-box{    
    border-radius: 20px;
    background: var(--purple-clr);
    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: 30px;
    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(--theme-gradient);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid #281b7b;
    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(--theme-gradient);
    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, #d5ffa2 14%, #a8fd3e 19%, transparent 17%);
        background-size: contain;
        background-color: #281b7b;
        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, #d5ffa2 14%, #a8fd3e 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){
    .left-live-box{
        padding: 46px 30px;
    }
    .right-live-box{
        padding: 50px 30px;
    }
    .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 */

/* sticky bar start */

.cta-btn .timerbg,
.cta-btn .smmltd {
    color: #fff !important;
}



.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
    }
}
.text-new {
    color: #C735F7;
    text-transform: uppercase
}

.blink-soft {
    animation: blinker 1.5s linear infinite
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.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
}
.text-new {
    color: #C735F7;
    text-transform: uppercase;
}
.blink-soft {
    animation: blinker 1.5s linear infinite;
}
/* 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 */

/* rotating-icons */
.rotate-360 {
    animation: rotate-360 60s infinite linear;
}
@keyframes rotate-360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.rotate-invert-360 {
    animation: rotate-invert-360 60s infinite linear;
}
@keyframes rotate-invert-360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}
.round-left,.round-right{
    position: absolute;
    left: -580px;
    top: 0;
    width: 955px;
    height: 955px;
}
.round-right{
    left: auto;
    right: -580px;
}
.round-left .image-box,.round-right .image-box{
    position: absolute;
    border-radius: 50%;
}
@media only screen and (max-width : 1400px){
    .round-left,.round-right{
        scale: 0.5;
        left: -530px;
        top: -190px;
    }
    .round-right {
        left: auto;
        right: -530px;
    }
}
/* rotating-icons */

/* Header CSS */

.header-section {
    background: linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%);
    padding: 30px 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;
    border: 1px solid #5136E5;
    background: #1B1441;
    backdrop-filter: blur(50px);
    padding: 10px;
    display: inline-block;
}
/* .header-card{
    border-radius: 10px;
    background: #FFF;
    padding: 15px;
} */
.header-li li {
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/header-li.webp) no-repeat;
    padding: 0px 0px 20px 32px;
    background-position: 0px 4px;
    list-style: none;
}
/* .mainheading{
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33; 
    padding: 15px 10px;
    border-radius: 10px;
} */
.header-card{
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    padding: 20px 10px;
    border-radius: 10px;
}
.Magically-text {
    background: #1B1441;
    border-bottom: 1px solid #5136E5;
    display: inline-block;
}
.mainheading-text{
    font-style: italic;
    background: #6137F7;
    display: inline-block;
    border-radius: 10px;
    padding: 0px 10px;
}
@media(min-width:768px){
    .f-md-54{
        font-size: 54px;
    }
    .header-section {
        background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/header-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 35px 0px 120px 0px;
        position: relative;
    }
    /* .mainheading{
        padding: 25px 30px 20px;
    } */
    .Magically-text {
        padding: 0px 7px;
    }
    a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
    .post-heading {
        padding: 10px 25px;
    }

    /* .header-card {
        padding: 30px 34px 30px 34px;
    } */
}
/* header section end */

/* second sec start */
.second-sec{
    background: #ffffff;
}
.fe-card{
    border-radius: 10px;
    padding: 20px 10px;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.fe-card-1{
    background: #C97DEF1A;
}
.fe-card-2{
    background: #CD3D501A;
}
.fe-card-3{
    background: #38ACE21F;
}
.fe-card-4{
    background: #CDA4221F;
}
.fe-card-5{
    background: #23A68B1F;
}
.fe-card-6{
    background: #C97DEF1A;
}
.fe-card::after{
    position: absolute;
    content: "";
    background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/fe-card-curve.webp") no-repeat;
    width: 310px;
    height: 125px;
    bottom: 15px;
    left: 30px;
    z-index: -1;
}
.purple-text{
    background: var(--purple-clr);
    border-radius: 5px;
    padding: 0px 5px;
}
.purple-border{
    border: 2px solid #5134FA;
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
@media(min-width:768px){
    .fe-card{
        padding:30px 20px;
    }
    .fe-card::after{
        width: 310px;
        height: 155px;
        left: auto;
    }
    .purple-text{
        border-radius: 10px;
        padding: 0px 20px;
    }
    .purple-border{
        background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/purple-border.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 14px 34px 15px;
    }
}
/* second sec end */


/* explore-sec start */
/* scrolling video start */
.stack-card {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    position: sticky;
    top: 0;
    padding: 40px 0px;
    /* box-shadow: 0 -1px 3px rgba(0,0,0,0.1), 0 -1px 2px rgba(0,0,0,0.25); 
    font-size: 10rem;*/
}
  .stack-card:nth-child(1) {
    /* background-color: #e3342f; */
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg.webp) no-repeat bottom center;
    background-size: cover;
    /* background-attachment: fixed; */
  }
  .stack-card:nth-child(2) {
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg-1.webp) no-repeat bottom center;
    background-size: cover;
    /* background-attachment: fixed; */
  }
  .stack-card:nth-child(3) {
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg-2.webp) no-repeat bottom center;
    background-size: cover;
    /* background-attachment: fixed; */
  }
  .stack-card:nth-child(4) {
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg-3.webp) no-repeat bottom center;
    background-size: cover;
    /* background-attachment: fixed; */
  }
  .stack-card:nth-child(5) {
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg-4.webp) no-repeat bottom center;
    background-size: cover;
    /* background-attachment: fixed; */
  }
/* scrolling video end */

.explore-sec{
    background: #EDECFF;
    padding-bottom: 0px;
}

.explore-box {
    padding: 10px;
    border-radius: 10px;
}
.video-1{
    background: #6137F7;
}
.video-2{
    background: #2898FF;
}
.video-3{
    background: #D0D0D0;
}
.video-4{
    background: #B3FF79;
}
.video-5{
    background: #FEC3F9;
}
@media(min-width:768px){
    .explore-sec{
        /* background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/explore-bg.webp) no-repeat bottom center;
        background-size: cover; */
        padding: 100px 0px 0px;
    }
    .explore-box {
        padding: 20px;
        border-radius: 10px;
        float: left;
        width: 51vw;
    }
    
    .stack-card{
        padding: 0px;
    }
    /* .stack-card:nth-child(5) {
        padding-bottom: 100px;
      } */
}
/* explore-sec end */

/* ease-sec start */
.ease-sec{
    background: linear-gradient(178.99deg, #070707 12.38%, #1D1648 68.26%, #301E97 110.04%);
}
.ease-box{
    border: 1px solid #FFFFFF33;
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
}
.yellow-wave{
    position: relative;
}
.yellow-wave::after{
    position: absolute;
    content: "";
    background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/yellow-wave.webp") no-repeat;
    width: 100%;
    max-width: 970px;
    height: 8px;
    bottom: -8px;
    left: 7%;
}
@media(min-width:768px){
    .ease-sec{
        background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/ease-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* ease-sec end */

/* heroes-sec start */
.heroes-sec{
    /* background: linear-gradient(0deg,  #6137F7 50.82%, #FFFFFF 100%); */
    background: linear-gradient(180deg, #FFFFFF 50.82%, #6137F7 100%);
}
.heroes-text{
    background: var(--purple-clr);
    display: inline-block;
    padding: 0px 10px;
    border-radius: 10px;
}
.heroes-box{
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
.iconic-text{
    background-color: #A6FF0026;
    color: #A6FF00;
    padding: 0px 8px;
}
.heroes-boxes{
    border: 1px solid #FFFFFF33;
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(50px);
    padding: 8px 16px;
    border-radius: 10px;
}
@media(min-width:768px){
    .heroes-sec{
        padding: 100px 0px 0px;
    }
    .heroes-text{
        padding: 1px 128px 1px 25px;
        border-radius: 10px;
        position: relative;
    }
    .heroes-box{
        background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 42px 40px;
        border-radius: 0px;
    }
    .heroes-text::after{
        position: absolute;
        content: "";
        background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/thumbs-up.webp") no-repeat;
        width: 113px;
        height: 120px;
        top: -23px;
        right: 0px;
    }
}
/* heroes-sec end */

/* bugs-sec start */
.bugs-sec{
    background: #1b0b37;
}
.remember-text{
    background: var(--purple-clr);
    border-radius: 10px;
    padding: 4px 10px;
    display: inline-block;
}
.authors-images {
    position: relative;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
}

.authors-images 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 img:first-child {
    margin-left: 0px; 
}

.authors-images img:hover {
    transform: translateY(-10px); 
    /* z-index: 10; */
    cursor: pointer;          
}

@media(min-width:768px){
    .bugs-sec{
        background: #1b0b37 url("https://cdn.oppyotest.com/launches/gptappsengine/jv/bugs-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .remember-text{
        padding: 6px 20px;
    }
}
/* bugs-sec end */

/* lives-sec stat */
.lives-sec{
    background: #EDECFF;
}
.lives-text{
    background: #6137F71A;
    border-bottom: 1px solid #6137F7;
    padding: 0px 5px;
}
.lives-text-1{
    background: #6137F71A;
    border-bottom: 1px solid #6137F7;
    padding: 12px 4px;
}
@media(min-width:768px){
    .lives-text-1{
        padding: 12px 40px 13px 39px;
    }
}
/* lives-sec end */

/* not-anymore-sec start */
.not-anymore-sec{
    background: #EDECFF;
}
.not-anymore-sec-card{
    border-radius: 100px;
    border: 1px solid rgba(255, 44, 44, 0.5);
    background: #FFF;
    padding: 10px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.blue-brush {
    padding: 10px 20px;
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/purple-brush.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
}
@media (min-width: 768px) {
    .not-anymore-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/gptappsengine/jv/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
        padding-top: 130px;
    }
    .not-anymore-sec-card{
        padding: 15px 40px 15px 15px;
    }
    .blue-brush {
        padding: 10px 41px 10px 141px;
    }
    .blue-brush::after {
        content: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/excited-emoji.webp);
        position: absolute;
        top: 30px;
        left: 40px;
        transform: translateY(-50%);
    }
}
/* not-anymore-sec end */

/* expensive-section start */
.expensive-h{
    /* background: var(--purple-clr); */
    border-radius: 10px;
    padding: 4px 10px;
    display: inline-block;
}
.red-line{
    border-bottom: 2px dashed #FF2C2C;
}

.expensive-card{
    border-radius: 20px;
    background: linear-gradient(0deg, #EDECFF 0%, #FFEAEA 100%);
    padding: 20px;
    height: 100%;
}
.expensive-card-1{
    border-radius: 20px;
    background: linear-gradient(0deg, #FFEAEA 0%, #EDECFF 100%);
    padding: 20px;
    height: 100%;
}
.expensive-boxes{
    background: #FF2C2C;
    backdrop-filter: blur(50px);
    border-radius: 5px;
    padding: 8px 15px;
}
.expensive-black-box {
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .f-md-80{
        font-size: 80px;
    }
    .expensive-h{
        position: relative;
        padding: 10px 96px 10px 25px;
        display: inline-block;
    }
    .expensive-h::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/think-emoji.webp");
        top: -7px;
        right: -5px;
    }
    .expensive-card{
        padding: 37px 72px 30px;
    }
    .expensive-card-1{
        padding: 30px;
    }
    .red-box{
        background: #FF2C2C;
        border-radius: 5px;
        padding: 0px 5px;
    }
    .expensive-black-box {
        background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 40px 40px;
        border-radius: 0px;
    }
}
/* expensive-section end */

/* proudly sec start */
.proud-section{
    background: #010920;
    padding: 30px 0px;
}
.proud-section .heading {
    background: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/presenting-bg.webp");
    background-size: 100% 100%;
    padding: 8px 30px;
    display: inline-block;
}

@media (min-width: 768px) {
    .proud-section{
        background:  url("https://cdn.oppyotest.com/launches/gptappsengine/jv/proudly-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 180px;
    }
    .proud-text {
        border-bottom: 2px dashed #F06327;
    }
    .proud-section .heading {
        padding: 16px 40px;
    }
    .img-pop{
        transition: ease 0.3s;
    }
    .img-pop:hover{
        transform: scale(1.1);
    }
}
/* proudly sec end */

/* step-sec start */
.step-sec{
    background: #ffffff;
}

/* steps-card */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--purple-clr);
}
.heading-tabs:not(.collapsed) .steps-card{
    border-color: var(--purple-clr);
}
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    fill: white;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    transition: 0.5s ease-in-out;
    border: 2px solid transparent;
}

.steps-tabs{
    /* height: 750px; */
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .steps-card .steps-icon{
        min-width: 100px;
        min-height: 100px;   
    }
}
/*  */

.steps-card p{
    /* color: #101010; */
    color: rgba(25, 25, 25, 0.5);
}
/* .steps-section .media{
    position: relative;
    padding: 80px 0 ;
}
.steps-section .media img{
    position: relative;
    z-index: 2;
}

.steps-section .media::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    border-radius: 10px;
    background: url('https://cdn.oppyotest.com/launches/gptappsengine/jv/demo.webp'), lightgray 50% / cover no-repeat;
    filter: blur(15px);
    z-index: 0;
    opacity: 0.4;
    background-size: 100% 100%;
    background-repeat: no-repeat;
} */
.steps-card{
    transition: all .8s ease-in-out;
    border-radius: 20px;
    background: #EDECFF;
}
.heading-tabs{
    background: rgba(153, 88, 204, 0.10);    ;
    border: none;
    outline: none;
    padding: 0;
    text-align: left;
    border-radius: 20px;
}

/* .steps-section .nav-link.active .steps-card,
.steps-section .nav-link.active .steps-card .steps-icon{
    border: 1px solid var(--purple-clr);
}
.steps-section .nav-link.active .steps-card{
    height: 360px;
    border-left: 7px solid #0340f2;
}
.steps-section .nav-link.active .step-arrow{
    display:none !important;
} */

.cleint-frame {
    border: 5px solid var(--purple-clr);
    border-radius: 12px;
}
/* step-sec end */

/* demo section start */
.demo-sec{background:#EDECFF;}

@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/demo.webp) no-repeat center center;
        background-size: cover;
    }
}
/* demo section end */

/* deep-funnel start */
.deep-funnel-sec {
    background: #ffffff;
}
/* deep-funnel end */

/* prize sec start */

.prize-value {
    background: #0b0308;
}
@media (min-width: 768px) {
    .prize-value {
        background: url(https://cdn.oppyotest.com/launches/gptappsengine/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: #EDECFF;
}
/* @media(min-width:768px){
    .performer-sec{
        background: #fef6ff url(https://cdn.oppyotest.com/launches/gptappsengine/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: #0d0238;
}
@media(min-width:768px){
    .reciprocate-sec{
        padding: 100px 0px;
        background:url(https://cdn.oppyotest.com/launches/gptappsengine/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
}

/*  */

/* logos sec start */
.logos-sec{
    background: #EDECFF;
}
/* @media(min-width:768px){
.logos-sec {
    background: #0E0010 url("https://cdn.oppyotest.com/launches/gptappsengine/jv/proudly-bg.webp") no-repeat bottom center;
    background-size: cover; 
    background-attachment: fixed;
    padding: 100px 0px;
}
} */
/* 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/gptappsengine/jv/contact-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }
}

/*  */
/* term-sec start */
.term-sec{
    background: #EDECFF;
}
/* 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;
    }
}
.cleint-frame {
    border: 5px solid var(--purple-clr);
    background: var(--purple-clr);
    border-radius: 12px;
    /* padding: 20px; */
}
/* Footer Section End */



/* fixed-bar start */
.fixed-top-bar {
    background: var(--purple-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/gptappsengine/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/gptappsengine/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/gptappsengine/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/gptappsengine/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/gptappsengine/jv/performer-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed; */
    }
    /* .green-wave{
        position: relative;
    }
    .green-wave::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/gptappsengine/jv/green-wave.webp");
        bottom: 0px;
        left: 0px;
    } */
    .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(--purple-clr);
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
}
.promote-card2{
    background:url(https://cdn.oppyotest.com/launches/gptappsengine/jv/promote-card2.webp) no-repeat ;
    background-size: 100% 100%;
    padding: 30px 20px;
}
.promoate-card-text{
    background: url(https://cdn.oppyotest.com/launches/gptappsengine/jv/promote-tick.webp) no-repeat;
    padding: 0px 0px 0px 40px;
    background-position: 0px 0px;
}
/* promote section end */
