/* 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: linear-gradient(90deg, #015AF1 0%, #24DFBA 100%);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}

:root {
    --black-clr:#050A19;
    --white-clr: #fff;
    --light-grey: #f1f1f1;
    --orange-clr: #FF7C59;
    --orange-clr1: #FB591B;
    --purple-clr: #7679FF;
    --lightpurple-clr: #71A2FB;
    --skyblue-clr:#3DC2EC;
    --red-clr:#FF2C2C;
    --blue-clr:#1479FF;
    --grey-clr:#555555;
    --lightgreen-clr: #4CDF9B;
    --pink-clr: #FF6AAE;
    --green-clr: #22d9bc;
    --green-clr2: #00DA23;
    --green-clr2: #26D826;
    --theme-gradient: linear-gradient(90deg, #1650E5 0%, #00DFED 99.98%);
    --theme-gradient1: linear-gradient(90deg, #00DFED 0%, #1650E5 100%);
    --sky-gradient: linear-gradient(90deg, #43C5ED 0%, #43EDB8 100%);
    --bs-font-sans-serif:"Asul", serif, "Work Sans", sans-serif;
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{
    color: var(--light-grey);
}
.orange-clr {
    color: var(--orange-clr);
}
.purple-clr {
    color: var(--purple-clr);
}
.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-clr2{color:var(--green-clr2)}
.theme-clr{
    background: linear-gradient(90deg, #015AF1 0%, #24DFBA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.br-theme {
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #015AF1 0%, #24DFBA 100%);
    border-image-slice: 1;
    width: 100%;
}
.clr-1{
    color: #4494FF;
}
.clr-2{
    color: #0ABEFF;
}
.clr-3{
    color: #8978F0;
}
.clr-4{
    color: #1CCE8E;
}
.clr-5{
    color: #FF8352;
}
/* 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: #ffffff;
}
.live-section .gradiant-box{    
    border-radius: 20px;
    background: var(--theme-gradient);
    padding: 50px 20px;
}
.lc-orange{
    color: #D99904;
}
.lc-bg-orange{
    background: #F1EBDB;
}
.lc-purple{
    color: #9550FA;
}
.lc-bg-purple{
    background: #F1E9FD;
}

.lc-sky-blue{
    color: #3A76CB;
}
.lc-bg-sky-blue{
    background: #ECF3FC;
}
.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(--white-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 a{
    background: #E76D24;
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
}
@media(min-width:768px){
    .live-section{
    padding: 100px 0px 40px;
    }
    .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;
    }
    .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 */
/* Header CSS */

.header-section {
    background: linear-gradient(180deg, #FFF 27.3%, #CDEFF6 100%);
    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:var(--theme-gradient);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    font-size: 18px;
    color: var(--white-clr);
    font-weight: 600 !important;
    transition: all .3s ease;
}
a.affiliate-link-btn:hover {
    transition: all .3s ease;
    background: var(--theme-gradient1);
    color: var(--white-clr) !important;
}
.pre-heading{
    border-radius: 10px;
    border: 1px solid #FF8252;
    backdrop-filter: blur(25px);
    padding: 10px;
    display: inline-block;
}
.post-heading{
    border-radius: 10px;
    background: rgba(20, 121, 255, 0.10);
    backdrop-filter: blur(25px);
    padding:7px 10px;
    display: inline-block;
}
.post-heading2{
    border-radius: 10px;
    background: #FB591B;
    padding:7px 10px;
    display: inline-block;
}
.header-card{
    border-radius: 10px;
    background: #FFF;
    padding: 15px;
}
.header-li li{
    background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/header-li.webp) no-repeat;
    padding: 10px 0px 10px 32px;
    background-position: 0px 15px;
    list-style: none;
}
.review-card {
    background: url("https://cdn.oppyotest.com/launches/aipixelperfect/jv/review-card-bg.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
}
@media(min-width:768px){
    .f-md-54{
        font-size: 54px;
    }
    .header-section {
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/header-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 35px 0px 120px 0px;
        position: relative;
    }
    .review-card {
        padding: 25px 40px;
    }
    a.affiliate-link-btn {
		padding: 15px 20px !important;
        font-size: 20px;
	}
    .pre-heading{
        padding: 10px 25px;
    }
    .post-heading{padding: 15px 25px;}
    .post-heading2{padding: 7px 30px;}

    .header-card {
        padding: 30px 34px 30px 34px;
    }
}
/* header section end */

/* forth section end */
.forth-section{background: #E9F8FB;}

.fe-card{
    border-radius: 10px;
    border: 1px solid rgba(20, 121, 255, 0.50);
    background: #FFF;
    padding: 10px;
    height: 100%;
}

@media(min-width:768px){
    .forth-section{
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/without-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 140px 0px 100px;
    }
    .fe-card{
        padding:20px;
    }
}
/* forth section start */

/* wihtout-sec start */
.wihtout-sec{
    background: #ffffff;
}
.without-box{
    border-radius: 10px;
    border: 1px solid rgba(20, 121, 255, 0.30);
    background: #FFF;
    padding: 10px;
    height: 100%;
}
@media(min-width:768px){
    .without-box{
        padding: 20px;
    }
}
/* wihtout-sec end*/
/* proudly sec start */
.clr-6{
    color: #04A5FF;
}
.proud-section{
    background: #020D11;
    padding: 30px 0px;
}
.proud-section .heading {
    background: url("https://cdn.oppyotest.com/launches/aipixelperfect/jv/presenting-bg.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 12px;
}
@media (min-width: 768px) {
    .proud-section{
        background: url("https://cdn.oppyotest.com/launches/aipixelperfect/jv/proudly-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 140px;
    }
    .proud-section .heading {
        padding: 9px 50px;
    }
}
/* proudly sec end */

/* fifth Section Start */

.fifth-section{
    background: #ffffff;
}

/* steps-card */

.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 var(--blue-clr);
}

.steps-tabs{
    /* height: 750px; */
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 2px solid var(--blue-clr);
}

@media (min-width: 768px) {
    .steps-card .steps-icon{
        min-width: 100px;
        min-height: 100px;   
    }
}
/*  */

.steps-card p{
    color: #555;
}
.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/bookcreator/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;
}
.heading-tabs{
    background: #EAFEFD;
    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;
}
/* 
.steps-section .nav-link.active .steps-card h4,
.steps-section .nav-link.active .steps-card p{
    color: #fff!important;
} */

/* fifth Section End */


/* demo section start */
.demo-sec{background:#F1FCFF;}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/demo.webp) no-repeat top center;
        background-size: cover;
    }
}
/* demo section end */

/* power sec start */
.power-sec {
    background: #EAFEFD;
}
.features-heading {
    position: relative;
}
.features-card-inner,    .features-card-inner-2 {
    padding: 15px;
}
.features-card {
    border-radius: 20px;
    border: double 1px transparent;
    background-image: linear-gradient(#fff,#fff), linear-gradient(to right, #015AF1 0%, #24DFBA 100% );
    background-origin: border-box;
    background-clip: content-box, border-box;
    height: 100%;
}
@media (min-width: 768px) {
    .features-heading:before {
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/power-icon-left.webp) no-repeat;
        position: absolute;
        width: 65px;
        height: 65px;
        top: 12px;
        left: 130px;
        content: '';
    }
    .features-heading:after {
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/power-icon-right.webp) no-repeat;
        position: absolute;
        width: 65px;
        height: 65px;
        top: 12px;
        right: 130px;
        content: '';
    }
    .features-card-inner {
        padding: 40px 30px 30px;
    }
    .features-card-inner-2 {
        padding: 40px 0px 0px 30px;
    }
    .work-flow-sec{
        padding-bottom: 100px;
    }
}
/* power sec end */




/* deep-funnel start */
.deep-funnel-sec {
    background: #ffffff;
}
/* deep-funnel end */

/* launch-section start */
.launch-section{
    background: #EAFEFD;
}
/* launch-section end */

/* prize sec start */

.prize-value {
    background: #0b0308;
}
@media (min-width: 768px) {
    .prize-value {
        background: #fff url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/prize-value.webp) no-repeat top center;
        background-size: cover;
        position: relative;
    }
}
/* prize sec end */

/* contact section start */
.contest-sec{
    padding: 30px 0px;
    background: #f2eded;
}
@media(min-width:768px){
    .contest-sec{
        padding: 100px 0px;
        background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/contest-section-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* contact section 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/aipixelperfect/jv/reciprocate-bg.webp) no-repeat center center;
        background-size: cover;
    }
}

/*  */


/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: #F1F7FA;
}
.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/aipixelperfect/jv/contact-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }


}

/*  */

/* 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 {
    /* background: url(https://cdn.oppyotest.com/launches/aipixelperfect/jv/client-frame.webp) no-repeat;
    background-size: 100% 100%; */
    border: 5px solid var(--blue-clr);
    border-radius: 12px;
    /* padding: 7px; */
}
/* Footer Section End */

/* drag and drop start */

.dragme{
    position: absolute;
    margin: 10px 0;
    top: 0;
    left: 0;
}

.drag-drop-sec .dragme:nth-child(2) {
    top: 20%;
    left: 3%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(3) {
    top: 20%;
    left: 15%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(4) {
    top: 60%;
    left: 17%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(5) {
    top: 18%;
    left: 50%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(6) {
    top: 55%;
    left: 84%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(7) {
    top: 15%;
    left: 79%;
    cursor: pointer;
}
.drag-drop-sec .dragme:nth-child(8) {
    top: 80%;
    left: 40%;
}

/* hover */
.drag-drop-sec .dragme:nth-child(2):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}
.drag-drop-sec .dragme:nth-child(3):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}
.drag-drop-sec .dragme:nth-child(4):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}
.drag-drop-sec .dragme:nth-child(5):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}

.drag-drop-sec .dragme:nth-child(6):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}
.drag-drop-sec .dragme:nth-child(7):hover{
    transform: scale(1.1);
    transition: all ease .5s;
}

@media (min-width: 768px) {
    .drag-drop-sec{
        background: url("https://cdn.oppyotest.com/launches/aipixelperfect/jv/drag&drop-bg.webp") no-repeat center center;
        background-size: 100% 100%;
        height: 90vh;
        position: relative;
    }
}

/* drag and drop end */

/* Floating Btn */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--theme-gradient);
    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)";
}

/*  */