html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #101315;
    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, #049BF4 0%, #00FFFF 100%);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat {
    font-family: "Caveat", cursive;
  }
.aclonica{
    font-family: "Aclonica", sans-serif;
}
.poppins{
    font-family: "Poppins", sans-serif;
}

:root {
    --black-clr:#031528;
    --white-clr: #fff;
    --light-grey: #f1f1f1;
    --orange-clr: #FF6039;
    --orange-clr1: #FF5E4A;
    --purple-clr: #9347FF;
    --pink-clr:#DE3EBE;
    --red-clr:#FF351C;
    --red-clr1:#EF4748;
    --red-clr3:#FF361D;
    --blue-clr:#00A8FF;
    --neon-clr: #00BBA3;
    --grey-clr:rgba(0, 0, 0, 0.75);
    --green-clr:#94E532;
    --green-clr1:#46C10B;
    --green-clr2: #6BE532;
    --theme-gradient: linear-gradient(91deg, #0AABFF 0%, #0AABFF 100%) !important;
    --theme-gradient1: linear-gradient(91deg, #079dee 0%, #079dee 100%) !important;
    --theme-gradient2: linear-gradient(90deg, #049BF4 0%, #00FFFF 100%) !important;
    --theme-gradient3: linear-gradient(90deg, #049BF4 40%, #00FFFF 99.99%) !important;
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.blue-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);
}
.orange-clr1 {
    color: var(--orange-clr1);
}
.purple-clr {
    color: var(--purple-clr);
}
.pink-clr{color:var(--pink-clr);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr3{color:var(--red-clr3);}
.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-gradient2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.br-theme {
    border-bottom: 2px solid transparent;
    border-image: var(--theme-gradient2);
    border-image-slice: 1;
    width: 100%;
}
/* .theme-clr2{
    background: linear-gradient(90deg, #403FFB 0%, #03BEE8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr3{
    background: linear-gradient(90deg, #E804BE 0%, #FF8038 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.neon-clr{
    color: var(--neon-clr);
}

.yellow-clr{
    color: #FFFA36;
}
.yellow-clr1{
    color: #FF9900;
}
/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid #00A8FF;
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Section Padding End */
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;
}


/* sticky bar start */
.fixed-top-bar {
    background: #371418;
    padding: 20px 0px 30px;
    position: sticky;
    top: 0;
    z-index: 99
}

.fixed-top-bar a {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background-image: var(--theme-gradient);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 9px 10px;
    text-decoration: none;
}
@media (min-width: 768px) {
    .fixed-top-bar {
    background: #371418;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
    }
}
/* stick bar end */

a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    font-size: 22px;
    line-height: 100%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
}
a.cta-link-btn:hover {
    border-radius: 8px;
    background: var(--theme-gradient1);
    color: #ffffff;
}
@media (min-width: 768px) {
    a.cta-link-btn {
        font-size: 30px;
        padding: 35px 25px;
        display: inline-block;
    }
}

/* header section start */
/* Header CSS */

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn:hover {
    transition: all .3s ease;
    background: var(--theme-gradient1);
    color: var(--white-clr) !important;
}


.header-sec{
    background: #000000;
    padding: 30px 0px;
}

.pre-heading{
    border-radius: 31px;
border-bottom: 3px solid #FFF;
    background: #191919;
    display: inline-block;
    padding: 10px;
}

.black-shape{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/black-shape.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 15px;
}
.header-ul{
    padding: 0px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 24px 34px;
}
.wave-line{
position: relative;
}
.wave-line::after{
    content: url("https://cdn.oppyotest.com/launches/autonichepro/special/wave-line.webp");
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.Exclusive-text{
    border-radius: 10px;
    border: 1px dashed #FFFA36;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px;
}
/*  */

.main-1{
    color: #FFFA36;
}
.under{
    border-bottom: 1px solid #fff;
}
.posthead{
    border-radius: 10px;
    background: #262626;
    padding: 10px 20px;
}
.yellow-box{
    border-radius: 15px;
    background: #FFFA36;   
    display: inline-block;
    padding: 10px;
}
@media(min-width:768px){
    .header-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/autonichepro/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 80px 0px 170px;
        position: relative;
    }
    .pre-heading{
        border-radius: 20px;
        padding: 10px 30px;
    }
    .main-1{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/main-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 7px 20px 0px;
        color: #000;
    }
    .posthead{
        padding: 10px 20px;
        display: inline-block;
    }
    .black-shape{
        padding: 10px 30px;
    }
    .theme-btn {
        padding: 27px 145px;
    }
    .Exclusive-text{
        padding: 15px 30px;
    }
    .yellow-box{
        border-radius: 30px;  
        padding: 5px 25px;
    }
}
/* header section end */


/* step sec start */
.step-section {
    background: #000000;
}
.yellow-brush {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/yellow-brush.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
.step-card{
    border-radius: 20px;
    border: 1px solid #00A8FF;
    background: linear-gradient(90deg, rgba(4, 155, 244, 0.20)0%, rgba(0, 255, 255, 0.20)99.99%);
    border-radius: 10px;
    padding: 20px 10px;
}
.step {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/step.webp) no-repeat;
    background-size: 100% 100%;
    padding: 6px 20px 12px 23px;
    display: inline-block;
    margin-top: -26px;
}
.video-frame {
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 9px 54px 40px 57px;
}
@media (min-width: 768px) {
    .step-section {
        background: #000000 url(https://cdn.oppyotest.com/launches/autonichepro/special/step-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
        padding: 200px 0px 100px;
        margin-top: -142px;
    }
    .yellow-brush {
        padding: 1px 30px;
    }
    
    .step-card {
        padding: 0 30px 30px;
    }
    .step {
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/step.webp) no-repeat;
        background-size: 100% 100%;
        padding: 6px 20px 12px 23px;
        display: inline-block;
        margin-top: -7px;
    }
    .video-frame {
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 18px 110px 79px 112px;
    }
}
/* step sec end */

/* wasting sec start */
.green-brush {
    color: #46C10B;
}
.wasting{
    padding: 20px 10px;
    height: 100%;
}
.wast-box-1{
    border-radius: 20px;
    border-top: 1px solid #96A1FF;
    border-right: 5px solid #96A1FF;
    border-bottom: 5px solid #96A1FF;
    border-left: 1px solid #96A1FF;
    background: rgba(150, 161, 255, 0.10);
}
.wast-box-2{
    border-radius: 20px;
    border-top: 1px solid #67CBFF;
    border-right: 5px solid #67CBFF;
    border-bottom: 5px solid #67CBFF;
    border-left: 1px solid #67CBFF;
    background: rgba(103, 203, 255, 0.10);
}
.wast-box-3{
    border-radius: 20px;
    border-top: 1px solid #FFD16F;
    border-right: 5px solid #FFD16F;
    border-bottom: 5px solid #FFD16F;
    border-left: 1px solid #FFD16F;
    background: rgba(255, 209, 111, 0.10);
}
.wast-box-4{
    border-radius: 20px;
    border-top: 1px solid #FB8570;
    border-right: 5px solid #FB8570;
    border-bottom: 5px solid #FB8570;
    border-left: 1px solid #FB8570;
    background: rgba(251, 133, 112, 0.10);
}
.wast-box-5{
    border-radius: 20px;
    border-top: 1px solid #9FC754;
    border-right: 5px solid #9FC754;
    border-bottom: 5px solid #9FC754;
    border-left: 1px solid #9FC754;
    background: rgba(159, 199, 84, 0.10);
}
@media (min-width: 768px) {
    .green-brush {
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/green-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
        color: #fff;
    }
    .wasting{
        padding: 30px 20px;
    }
}
/* wasting sec end */

/* template-sec start */
.template-sec{
    background: #ECF7FA;
}
.temp-box{
    border-radius: 10px;
    background: #00A8FF;
    padding: 10px 30px;
    display: inline-block;
}

.website-theme {
    border: 2px solid #00A8FF;
    border-radius: 20px;
    height: 300px;
    overflow: hidden;
    /* border-radius: 4px; */
}
.website-theme img {
    object-fit: cover;
    transition: all linear 2s;
    position: relative;
    top: 0;
    border-radius: 10px;
}
.website-theme:hover img {
    transform: translateY(calc(-100% + 300px));
}
.blue-brush-4{
    color: #00A8FF;
}
@media (min-width: 768px) {
    .template-sec{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/template-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .blue-brush-4{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/blue-brush-4.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 22px;
        color: #fff;
    }
    .temp-box{
        padding: 11px 50px;
    }
    .website-theme {
        width: 100%;
        height: 350px;
    }
    .website-theme img {
        width: 100%;
    }
    .website-theme:hover img {
        transform: translateY(calc(-100% + 350px));
    }
    /* .website-theme:hover .img-1 {
        top: -100%;
    } */
}
/* template-sec end */

/* income-sec start */
.income-sec{
    background: #ffffff;
}
@media (min-width: 768px) {
    .income-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/income-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .green-line{
        position: relative;
    }
    .green-line::before{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/autonichepro/special/green-line.webp");
        bottom: 0px;
    }
}
/* income-sec end */

/* income-2 sec start */
.income-sec-2{
    background: linear-gradient(180deg, #FFF5 0%, #CEF3CD 100%);
}
@media (min-width: 768px) {
    .income-sec-2{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/income-bg-2.webp") no-repeat bottom center;
        background-size: cover;
        padding-bottom: 200px;
    }
}
/* income-2 sec end */

/*outclass sec start */
.outclass-sec{
    background: #fff;
}
.blue-brush{
    color: #00A8FF;
}
@media (min-width: 768px) {
    .outclass-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/outclass-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .blue-brush{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/blue-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 22px;
        color: #fff;
    }
}
/*outclass sec end */

/* testimonials start */

.testimonial{
    background: #ECF7FA;
}
.pink-brush{
    color: #F74F73;
}

.testimonial-gradiant {
    border-radius: 20px;
    border-top: 1px solid #67CBFF;
    border-right: 5px solid #67CBFF;
    border-bottom: 5px solid #67CBFF;
    border-left: 1px solid #67CBFF;
    background: #FFF;
    height: 100%;
}

 .testimonial-gradiant-1{
    padding: 30px 10px;
 }

 .mt-top{
    margin-top: -65px;
 }

 @media (min-width: 768px) {

    .testimonial{
        background: #ECF7FA url(https://cdn.oppyotest.com/launches/autonichepro/special/testimonials-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .pink-brush{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/pink-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
        color: #fff;
    }
    .testimonial-gradiant-1{
        padding:60px 30px 30px;
     }

     .mt-top{
        margin-top: -90px;
     }
 }

/* testimonials end */

/* checkout sec start */
.checkout-sec{
    background: #000000;
}
.theme-brush{
    color: #ffffff;
}
@media (min-width: 768px) {
    .checkout-sec{
        background: #000000 url(https://cdn.oppyotest.com/launches/autonichepro/special/checkout-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .theme-brush{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/theme-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 5px 25px;
        color: #000;
    }
}
/* checkout sec end */


/* granddaddy-sec start */
.granddaddy-sec{
    background: #ffffff;
}
.box{
    padding: 20px;
    height: 100%;
    border-radius: 20px;
}
.box-1{
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    border-right: 5px solid rgba(0, 0, 0, 0.30);
    border-bottom: 5px solid rgba(0, 0, 0, 0.30);
    border-left: 1px solid rgba(0, 0, 0, 0.30);
    background: #00A8FF;
}
.box-2{
    border-top: 1px solid #00A8FF;
    border-right: 5px solid #00A8FF;
    border-bottom: 5px solid #00A8FF;
    border-left: 1px solid #00A8FF;
    background: #FFF;
}
@media (min-width: 768px) {
    .granddaddy-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/autonichepro/special/granddaddy-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .box{
        padding: 30px;
    }
}
/* granddaddy-sec end */

/* help sec start */
.help-sec{
    background: #D4EBFE;
}
.help-text{
    border-radius: 20px;
    background:  #46C10B;
    display: inline-block;
    padding: 10px 15px;
}
.help-box{
    border-radius: 50px;
    border-top: 1px solid #00A8FF;
    border-right: 5px solid #00A8FF;
    border-bottom: 5px solid #00A8FF;
    border-left: 1px solid #00A8FF;
    background: #FFF;
    padding: 20px 15px;
}
@media (min-width: 768px) {
    .help-sec{
        background: #D4EBFE url("https://cdn.oppyotest.com/launches/autonichepro/special/help-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .help-text{
        padding: 10px 30px;
    }
    .help-box{
        padding: 50px 27px;
    }
}
/* help sec end */

/* choice sec start */
.choice-sec{
    background: #fff;
}
.choicebox-1{
    background: #FF5E4A;
    padding: 50px 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    height: 100%;
    transform-origin: top;
    scale: 0.8;
}
.choicebox-2{
    background: #00A8FF;
    padding: 50px 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    height: 100%;
}
.choicetext-1{
    background: #FFFFFF;
    padding: 15px 82px;
    display: inline-block;
    border-radius: 100px;
}
@media (min-width: 768px) {
    .choicebox-1{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/choicebox-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 30px 60px;
        box-shadow: none;
    }
    .choicebox-2{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/choicebox-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 30px 60px;
        box-shadow: none;
    }
}
/* choice sec end */

/* warning section start */
.warning-section{
    background: linear-gradient(90deg, #000000 0%, #000A0E 100%);
}
.warning-card{
    background: #fff;
    border: 5px dotted #FF361D;
    border-radius: 20px;
    padding: 0px 10px 30px;
}
.warning-shape{
    background: #FF361D;
    border-radius: 41px;
    padding: 0px 36px 8px;
    display: inline-block;
    margin-top: -20px;
}
@media (min-width: 768px) {
    .warning-section{
        background: #0a0102 url(https://cdn.oppyotest.com/launches/autonichepro/special/warning-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .warning-card{
        padding: 0px 50px 40px;
        position: relative;
    }
    .warning-shape{
        margin-top: -40px;
    }
    .warning-card:before{
        position: absolute;
        content: url(https://cdn.oppyotest.com/launches/autonichepro/special/warning-img.webp);
        bottom: -105px;
        left: -205px;
    }
}
/* warning section end */

/* grow sec start */
.grow-sec{
    background: #D4EBFE;
}
.blue-brush-2{
    color: #00A8FF;
}
@media (min-width: 768px) {
    .grow-sec{
        background: #D4EBFE url("https://cdn.oppyotest.com/launches/autonichepro/special/grow-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .blue-brush-2{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/blue-brush-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 25px 0px 18px;
        color: #fff;
    }
}
/* grow sec end */

/* grow sec start */
.earn-sec{
    background: #fff;
}
.green-brush-2{
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/green-brush-2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 0px 10px;
}
.earn-box{
    position: relative;
}
.earn-img{
    margin-top: -38px;
}
.earn-box-1{
    border-radius: 20px;
    border-top: 1px solid #818EF8;
    border-right: 5px solid #818EF8;
    border-bottom: 5px solid #818EF8;
    border-left: 1px solid #818EF8;
    background: rgba(150, 161, 255, 0.10);
    padding: 0px 0px 30px;
}
.earn-1{
    background: #818EF8;
}
.earn-box-2{
    border-radius: 20px;
    border-top: 1px solid #F9945E;
    border-right: 5px solid #F9945E;
    border-bottom: 5px solid #F9945E;
    border-left: 1px solid #F9945E;
    background: rgba(249, 148, 94, 0.10);
    padding: 0px 0px 30px;
}
.earn-2{
    background: #F9945E;
}
.earn-box-3{
    border-radius: 20px;
    border-top: 1px solid #1CC86B;
    border-right: 5px solid #1CC86B;
    border-bottom: 5px solid #1CC86B;
    border-left: 1px solid #1CC86B;
    background: rgba(150, 161, 255, 0.10);
    padding: 0px 0px 30px;
}
.earn-3{
    background: #1CC86B;
}
.earn-box-4{
    border-radius: 20px;
    border-top: 1px solid #9CB904;
    border-right: 5px solid #9CB904;
    border-bottom: 5px solid #9CB904;
    border-left: 1px solid #9CB904;
    background: rgba(150, 161, 255, 0.10);
    padding: 0px 0px 30px;
}
.earn-4{
    background: #9CB904;
}
.earn-box-5{
    border-radius: 20px;
    border-top: 1px solid #FF84C1;
    border-right: 5px solid #FF84C1;
    border-bottom: 5px solid #FF84C1;
    border-left: 1px solid #FF84C1;
    background: rgba(249, 148, 94, 0.10);
    padding: 0px 0px 30px;
}
.earn-5{
    background: #FF84C1;
}
.earn-box-6{
    border-radius: 20px;
    border-top: 1px solid #58C2E1;
    border-right: 5px solid #58C2E1;
    border-bottom: 5px solid #58C2E1;
    border-left: 1px solid #58C2E1;
    background: rgba(150, 161, 255, 0.10);
    padding: 0px 0px 30px;
}
.earn-6{
    background: #58C2E1;
}
.earn-img{
margin-top: -38px;
}
.holding-text{
    background: #00A8FF;
    border-radius: 15px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .earn-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/earn-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .green-brush-2{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/green-brush-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 25px 0px 18px;
    }
    .holding-text{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/holding-bg.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 85px 10px 46px;
        position: relative;
    }
    .holding-text::after {
        content: url("https://cdn.oppyotest.com/launches/autonichepro/special/confuse-icon.webp");
        position: absolute;
        top: -28px;
        right: -56px;
    }
}
/* grow sec end */

/* cta btn section start */
.cta-section {
    background: #000000;
}
@media (min-width: 768px) {
    .cta-section {
        background: #000000 url(https://cdn.oppyotest.com/launches/autonichepro/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* cta btn section end */

/* limited time section start */
.limited-time-sec {
    padding: 10px 0px 10px 0px;
    background: #FF2C2C;
}
/* limited time section end */

/* marketer sec start */
.marketer-sec{
    background: #fff;
}
.green-brush-3{
    color: #46C10B;
}
.market-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/blue-brush-3.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 25px;
}
@media (min-width: 768px) {
    .marketer-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/marketer-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .green-brush-3{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/green-brush-3.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 28px;
        color: #fff;
    }
    .market-text{
        padding: 14px 69px 14px 68px;
    }
}
/* marketer sec end */

/* Charge sec start */

.charge-sec{
    background: #ECF7FA;
}

.pink-brush-2{
    color: #F74F73;    
}

@media (min-width: 768px) {
    .charge-sec{
        background: #ECF7FA url(https://cdn.oppyotest.com/launches/autonichepro/special/charge-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .pink-brush-2{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/pink-brush-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 13px 0px 32px;
        color: #fff;
    }
}

/* Charge sec start */

/* doubts sec start */

.doubts-sec{
    background: #fff;
}

.pink-brush-3{
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/pink-brush-3.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    padding: 15px;
}

@media (max-width: 767px) {
    .doubt-h{
        background: rgba(0, 0, 0, 0.80);;
        border: 5px solid #46C10B;
        border-radius: 20px;
        padding: 10px;
    }
}
@media (min-width: 768px) {
    .doubts-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/autonichepro/special/doubts-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }

    .pink-brush-3{
        padding: 10px 75px 10px 53px;
    }

    .pink-brush-3:after{
        content: url(https://cdn.oppyotest.com/launches/autonichepro/special/confuse-icon.webp);
        position: absolute;
        top: -34px;
        right: -58px;
    }
    .doubt-h{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/charge-h.webp) no-repeat;
        background-size: 100% 100%;
        padding: 36px 31px;
    }
}

/* doubts sec end */

/* futuer sec start */
.future-sec {
    background: #f2e6fa;
}

.future-h1{
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/future-h1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    padding: 10px;
}

@media (max-width: 767px) {
    .future-h2{
        border-radius: 20px;
        border-top: 1px solid #00A8FF;
        border-right: 5px solid #00A8FF;
        border-bottom: 5px solid #00A8FF;
        border-left: 1px solid #00A8FF;
        background: #FFF;
        padding: 10px;
    }
}
@media (min-width: 768px) {
    .future-sec {
        background: #f2e6fa url(https://cdn.oppyotest.com/launches/autonichepro/special/future-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .future-h1{
        padding: 20px 40px 20px 102px;
    }

    .future-h2{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/future-h2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px 50px;
    }

    .future-h1:before{
        content:url(https://cdn.oppyotest.com/launches/autonichepro/special/thumb-emoji.webp);
        position: absolute;
        top: -9px;
        left: -65px;
    }
}
/* futuer sec end */

/* problem sec start */
.problem-sec{
    background: #ffffff;
}
.but-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/but-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 11px 61px 11px 30px;
    position: relative;
}
.but-text::after {
    content: url("https://cdn.oppyotest.com/launches/autonichepro/special/but-emoji.webp");
    position: absolute;
    top: -5px;
    right: -20px;
}
.problembox-1{
    border-radius: 20px;
    border: 1px solid  #FF361D;
    background: #FFE8E5;
    box-shadow: 0px 10px 30px 0px rgba(186, 40, 40, 0.20);
    padding: 10px;
    height: 100%;
}

.scary-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/scary-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 16px 35px 16px 30px;
}
@media (min-width: 768px) {
    .problem-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/autonichepro/special/problem-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .but-text::after {
        top: 15px;
        right: -20px;
    }
    .problembox-1{
        padding: 25px 20px 20px;
    }

}
/* problem sec end*/

/* inbox-sec start */
.inbox-sec{
    background: #DBECF9;
}
.without-box {
    background: #ffffff;
    border: 2px solid #FFC3BC;
    padding: 20px 16px;
    border-radius: 20px;
    height: 100%;
}
@media (max-width: 767px) {
    .inbox-text{
        border-radius: 20px;
        border-top: 1px solid #00A8FF;
        border-right: 5px solid #00A8FF;
        border-bottom: 5px solid #00A8FF;
        border-left: 1px solid #00A8FF;
        background: #FFF;
        padding: 10px;
    }
}
@media (min-width: 768px) {
    .inbox-sec{
        background: #DBECF9 url("https://cdn.oppyotest.com/launches/autonichepro/special/inbox-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .inbox-text{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/inbox-text.webp") no-repeat;
        background-size: 100% 100%;
        padding: 23px 40px 32px 31px;
    }
}
/* inbox-sec end */

/* presenting-sec start */
.presenting-sec{
    background: #000;
}
.prudly-text{
    background: var(--theme-gradient3);
    display: inline-block;
    border-radius: 40px;
    padding: 10px;
}
@media (min-width: 768px) {
    .presenting-sec{
        background: url("https://cdn.oppyotest.com/launches/autonichepro/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 120px 0px 150px;
        position: relative;
    }
    .prudly-text{
        padding: 10px 30px
    }
}
/* presenting-sec end */

/* demo-sec start */
.demo-sec{
    background: #fff;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/demo-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 140px;
    }

}
/* demo-sec end */

/* third section start */
.third-section{
    background: #000000;
}

.third-section li::marker{
    color: #FF361D;
}
@media(min-width:768px){
    .third-section{
        background: #000000 url(https://cdn.oppyotest.com/launches/autonichepro/special/third-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
}
/* third section end */

/* tons sec start */
.tons-sec{
    background: #ECF7FA;
}
@media(min-width:768px){
    .tons-sec{
        background: #ECF7FA url(https://cdn.oppyotest.com/launches/autonichepro/special/tons-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* tons sec end */

/* crazy sec start */
.crazy-sec{
    background: #fff;
}
.crazy-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/blue-brush-5.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 20px;
    position: relative;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/crazy-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .crazy-text{
        padding: 0px 75px 0px 30px;
    }
    .crazy-text::after{
        content: url(https://cdn.oppyotest.com/launches/autonichepro/special/cool-1.webp);
        position: absolute;
        top: -15px;
        right: -40px;
    }
    .p-line-1{
        position: relative;
    }
    .p-line-1:before{
        content: url(https://cdn.oppyotest.com/launches/autonichepro/special/p-line-1.webp);
        position: absolute;
        bottom: -4px;
        left: 0px;
    }
}
/* crazy sec end */

/* everyone sec start */

.everyone-sec{
    background: #DFEAED;
}
.pink-brush-4 {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/pink-brush-4.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: #DFEAED url(https://cdn.oppyotest.com/launches/autonichepro/special/everyone-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .pink-brush-4 {
        padding: 1px 30px;
    }
}

/* everyone sec end */

/* compare-sec start */
.compare-sec{
    background: #000000;
}
.faster-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/faster-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 15px;
}
.compare-1{
    background: linear-gradient(90deg, #FF361D 0%, #992011 100%);
    border-radius: 10px 10px 0px 0px;
    position: relative;
    padding: 47px 42px 46px 43px;
}
.sad-girl,.happy-girl{
    margin-bottom: -100px;
}
.without-marketing{
    border: 8px solid #FF361D;
    background: #FFE4E4;
    border-top: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 20px 20px;
    position: relative;
    padding: 20px 10px;
}
.compare-list-1 li {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/sad-icon.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 0px 0px 30px 48px;
    background-position: 6px 3px;
}
.compare-list-1 li:nth-last-child(1){
    padding-bottom: 0px;
}
/*  */
.compare-2{
    background: #3CB006;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    padding: 47px 42px 46px 43px;
}
.with-marketing{
    background: #E6FFC7;
    border-radius: 0px 0px 20px 20px;
    position: relative;
    padding: 20px 10px;
    border: 7px solid #3CB006;
    border-top: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.compare-list-2 li {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/happy-icon.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 0px 0px 30px 48px;
    background-position: 6px 4px;
}
.compare-list-2 li:nth-last-child(1){
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .compare-sec{
        background: #000000 url("https://cdn.oppyotest.com/launches/autonichepro/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .without-marketing{
        padding: 40px 45px 40px 40px;
    }
    .with-marketing{
        padding: 40px 45px 40px 40px;
    }
}
/* compare-sec end */


/* stress-sec start */
.stress-sec{
    background: linear-gradient(180deg, #FFF 50%, #CEF3CD 100%);
}
.stress-text{
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/stop-frame.webp") no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
}
@media (min-width: 768px) {
    .stress-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/autonichepro/special/stress-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding-bottom: 170px;
    }
    .stress-text{
        padding: 10px 96px 10px 39px;
    }
    .stress-text::after {
        content: url("https://cdn.oppyotest.com/launches/autonichepro/special/stop-icon.webp");
        position: absolute;
        top: -26px;
        right: -44px;
    }
}
/* stress-sec end */

/* remove-problem sec start */

.problem-sec{
    background: #ffffff;
}

.problem-ul{
    padding: 0px;
}
.problem-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/autonichepro/special/x-icon.webp") no-repeat;
    padding: 0px 0px 20px 40px;
}
.problem-ul li:nth-last-child(1){
    padding-bottom: 0px;
}
.green-brush-4{
    color: #49AE3C;
}
@media (min-width: 768px) {
    .problem-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/autonichepro/special/problem-bg1.webp) no-repeat bottom center;
        background-size: cover;
    }
    .green-brush-4{
        background: url(https://cdn.oppyotest.com/launches/autonichepro/special/green-brush-4.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
        color: #fff;
    }
}

/* remove-problem sec end */

/* fear sec start */
.fair-text {
    border: 2px solid #FF361D;
    background: rgba(255, 54, 29, 0.1);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.pink-brush-5 {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/pink-brush-5.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/autonichepro/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .pink-brush-5 {
        padding: 1px 30px;
    }
}
/* fear sec end */






















/* bonusess-sec start */
.bonusess-sec{
    background: #1c0013;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #DFEAED url("https://cdn.oppyotest.com/launches/autonichepro/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 50px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #DFEAED;
}
.bonus {
    background: var(--theme-gradient);
    padding: 8px 30px;
    border-radius: 40px;
    display: inline-block;
}
.bonus-text{
    background: var(--theme-gradient);
    border-radius: 200px;
    display: inline-block;
    padding: 20px;
}
@media (min-width:768px) {
    .bonus-text{
        padding: 30px 48px;
    }
}
/* bonus sec end */

/* moneyback sec start */
.moneyback-sec{
    background: #01070e ;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #01070e  url("https://cdn.oppyotest.com/launches/autonichepro/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* moneyback sec end */


/* pricing tabel start */
.pricing-section {
    background: #000000;
}
.table-wrap {
    background: #ffffff;
    width: 100%;
    float: left;
    border-radius: 10px;
    /* border: solid 1px #cacaca; */
    overflow: hidden;
    box-shadow: 0px 0px 22px 0px rgb(0 0 0 / 20%);
    padding-bottom: 30px;
}
.table-head {
    /* background: url(https://cdn.oppyotest.com/launches/autonichepro/special/start-plan-bg.webp) no-repeat bottom center; */
    background: var(--theme-gradient2);
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 10px 10px 0px 0px;
    padding: 40px 30px 30px 30px;
    text-align: center;
    min-height: 350px;
}
/* .table-list li:nth-child(odd) {
    background-color: #F6EFFF !important;
} */
.table-list li {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 57px;
    background-position: 25px 20px;
    line-height: 150%;
    text-transform: capitalize;
    /* border-bottom: 1px solid #5d5d55; */
}
.table-list li:nth-last-child(8){
    padding-bottom: 20px;
}
.table-list li.headline {
    background: var(--theme-gradient);
    padding: 26px 0px 20px 0px;
    background-position: 0px 18px;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    font-size: 22px;
    line-height: 100%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 15px;
    border: 5px solid rgba(255, 255, 255, 0.30);
}
a.cta-link-btn:hover {
    border-radius: 8px;
    background: var(--theme-gradient1);
    color: #ffffff;
}
.table-btn {
    padding: 30px 20px;
    text-align: center;
}
.table-border-content {
    background: #fff;
    border: 3px dashed #999;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: auto;
    padding-bottom: 10px;
}
.tb-check {
    background: #FEFE9B;
    padding: 18px;
}
.table-img{
    margin-top: -190px;
}
@media (min-width: 768px) {
    .pricing-section {
        background: #000000 url("https://cdn.oppyotest.com/launches/autonichepro/special/step-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }

    .table-wrap {
        padding-bottom: 100px;
    }
    .table-head {
        padding: 30px 30px 20px 30px;
        text-align: center;
        min-height: 365px;
    }
    .table-list li {
        background-position: 97px 25px;
        padding: 20px 96px 0px 133px;
    }
    a.cta-link-btn {
        font-size: 32px;
        padding: 26px 80px;
        display: inline-block;
    }
    .table-border-content {
        max-width: 75%;
    }
    .f-md-80 {
        font-size: 80px;
    }
    .f-md-70 {
        font-size: 70px;
    }
    .f-md-100 {
        font-size: 100px;
    }

}
/* pricing tabel end */


/* inside sec start */
.inside-section {
    background: #ffffff;
}

/* inside sec end */

/* faq sec start */
.faq-section {
    padding: 30px 0px;
    background-color: #DFEAED;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/autonichepro/special/faq-icon.webp) no-repeat top left;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid #031528;
    border-radius: 20px;
}
@media (min-width: 768px){
    .faq-section {
        padding: 100px 0px;
    }
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #020715;
    padding: 30px 0;
}

.final-shape {
    background: linear-gradient(180deg, #F97B40 0%, #FF511A 100%);
    border-radius: 15px;
    padding: 8px 30px;
    display: inline-flex;
    position: relative;
    align-items: center;
}
@media (min-width: 768px){
    .cta-section-white {
        background: #020715 url(https://cdn.oppyotest.com/launches/autonichepro/special/step-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 100px 0px;
    }
    .final-shape {
        padding: 15px 40px;
        border-radius: 100px;
    }
}
/* final-call end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.footer-ul .t-decoration-none:hover {
    color: #fff;
}
@media(min-width:768px) {
    .footer-section {
        padding: 70px 0px;
    }
}

/* footer end */

/* temp video */
@media(min-width:768px) {
    .temp-video{
        position: relative;
    }
    .temp-video::before {
        content: url("https://cdn.oppyotest.com/launches/autonichepro/special/temp-video.gif");
        position: absolute;
        border-radius: 6px;
        border: 3px solid #00A8FF;
        bottom: -50px;
        left: 0px;
    }
}

/* fe-box */
.fe-box{
    padding: 20px;
}
@media(min-width:768px) {
    .fe-box{
        border-radius: 10px;
        border: 2px solid  #00A8FF;
        background: #FFF;
        padding: 40px;
    }
}