html {
    scroll-behavior: smooth;
}

body {
    font-family: "Urbanist", sans-serif;
    color: #000000;
    font-size: 14px;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--theme-gradient);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}

.caveat{
    font-family: "Caveat", system-ui;
}
.comic{
    font-family: "Comic Neue", cursive;
}


.italic {
    font-style: italic;
}
:root {
    --black-clr:#000000;
    --white-clr: #fff;
    --light-grey: #FFFFFFCC;
    --light-white: #01010199;
    --blue-clr:#2571FF;
    --blue-clr1:#0BAEFF;
    --orange-clr: #FF7520;
    --red-clr: #FF373C;
    --red-clr1: #FF4F70;
    --red-clr2: #FF373C;
    --green-clr:#26AF00;
    --green-clr1:#799921;
    --green-clr2:#33FF10;
    --pink-clr:#EB00D0;
    --grey-clr:#555555;
    --yellow-clr: #F29500;
    --yellow-clr1: #FFD341;
    --theme-gradient: linear-gradient(90.41deg, #34972B 4.59%, #D3D340 99.83%);
    --theme-gradient1: linear-gradient(90deg, #AC2FFF 31.86%, #FF4F70 101.83%);
    --theme-gradient2: linear-gradient(175deg, #FF4F70 21.76%, #A020F0 80.53%, #4A00FF 144.53%);


}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{color: var(--light-grey);}
.light-white{color: var(--light-white);}
.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.orange-clr{color:var(--orange-clr);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.pink-clr{color:var(--pink-clr);}
.yellow-clr{color:var(--yellow-clr);}
.yellow-clr1{color:var(--yellow-clr1);}
.grey-clr{color:var(--grey-clr);}

.theme-clr{
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr1{
    background: var(--theme-gradient2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-br {
    border-bottom: 4px solid transparent;
    border-image: var(--theme-gradient);
    border-image-slice: 1;
    width: 100%;
}

/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /* border: 5px solid #A0D3FF; */
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .mt-md118{
        padding-top: 118px;
    }
}

/* 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;
}

/* cta-border-sec start */
.cta-btn-bg {
    background: linear-gradient(90.41deg, #064200 4.59%, #333300 99.83%);
    border: 5px dotted #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
}
.cta-btn-border {
    /* border: 3px dashed #000000; */
    border-radius: 10px;
    padding: 0px;
}
@media (min-width: 768px) {
    .cta-btn-bg {
        background: url(..//images/cta-btn-border.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 25px;
        border-radius: 20px;
        border: unset;
        border-radius: unset;
    }
    .cta-btn-border {
        border-radius: 33px;
        padding: 0px;
    }
}
/* cta-border-sec end */

/* bttn css */
.play-btn{
    position:absolute;
    top:80%;
    left:50%;
    transform:translate(-50%, -50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:var(--green-clr1);
    backdrop-filter: blur(6px);

    transition:all 0.3s ease;

    /* pulse animation */
    animation:pulse 2s infinite;
}

/* pulse glow */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 var(--green-clr1);
    }
    70%{
        box-shadow:0 0 0 15px rgba(128,0,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(128,0,255,0);
    }
}

/* hover zoom */
.play-btn:hover{
    transform:translate(-50%, -50%) scale(1.2);
}

/* icon rotate animation */
.play-btn i{
    transition: transform 0.4s ease;
}

.play-btn i.fa-pause{
    transform: rotate(180deg);
}

/* ripple background */
.play-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    animation:ripple 2s infinite;
    z-index:-1;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(2);
        opacity:0;
    }
}

/* Button Hidden when Playing */
.hide {
    opacity: 0;
    pointer-events: none;
}

/* Play/Pause Icons */
.play-btn i {
    color: white;
    font-size: 30px;
}
/* .fu-frame video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
} */
 .explore-box {
    border-radius: 10px;
    position: relative;
}

@media (min-width: 768px) {
     .play-btn {
        top: 50%;
    }
  .play-btn {
        /* left: 27%; */
        width: 60px;
        height: 60px;
    }
        .explore-box {
        border-radius: 10px;
        /* height: 100%; */
    }
}

/* sticky bar start */
.fixed-top-bar {
    background: var(--green-clr1);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    z-index: 99;
    text-transform: lowercase;
}

.fixed-top-bar a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    background: var(--white-clr);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 9px 10px;
    text-decoration: none;
    animation: blink 1.5s linear infinite;
}
@keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
 }
/* stick bar end */

/* header section start */

.theme-btn {
    background: var(--theme-gradient);
    border: 4px solid #34972B;
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
    padding: 12px 9px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s linear;
    background-size: 100% 100%;
}
.theme-btn:hover {
    transition: all .3s linear;
    transform: scale(1.03);
}

.header-sec{
    background: linear-gradient(180deg, #FFFFFF 38.87%, #EEFBE1 92.11%);
    padding: 30px 0px;
}
.main-text{
    background: #ECFFD9;
    border-bottom: 2px solid var(--green-clr1);
    border-radius: 10px 10px 0px 0px;
    padding: 0px 10px;
}
.fe-text{
    background: #fff;
    border: 1px solid #7A972B66;
    padding: 5px 10px;
    border-radius: 5px;
}
.fe-text1{
    background: #fff;
    border: 1px solid #7A972B66;
    padding: 5px 8px;
    border-radius: 5px;
}

.pre-head {
    padding: 10px 10px;
    background: #79992117;
    border: 2px dashed var(--green-clr1);
    /* box-shadow: 0px 2px 10px 0px #00000042; */
    backdrop-filter: blur(25px);
    border-radius: 20px;
    display: inline-block;
}
.main-heading {
    background: #ffffff;
    border: 2px solid #799921;
    /* box-shadow: 0px 0px 20px 0px #2495FF80 inset; */
    border-radius: 20px;
    padding: 10px;
}

.video-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid var(--green-clr1); 
    backdrop-filter: blur(15px);
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    border-radius: 15px;
    /* padding: 10px; */
}
.payment-box{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    padding: 10px;
    border-radius: 10px;
}
.header-ul{
    padding: 20px 10px;
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/ul-box.webp);
    background-size: 100% 100%;
    /* border: 2px solid #FFFFFF4D; */
    /* backdrop-filter: blur(15px);
    box-shadow: 0px 10px 20px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    border-radius: 20px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/tick.webp") no-repeat;
    background-position: 0px 3px;
    padding: 0px 0px 15px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.red-frame{
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.Exclusive-text{
    background: #FFFFFF;
    border: 2px dotted #7A972B;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    border-radius: 20px;
    padding: 10px;
}
.green-price {
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/green-price.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.month-text{
    background: var(--red-clr);
    border-radius: 100px;
    padding: 2px 6px;
}
.post-head{
    background: linear-gradient(90deg, rgba(236, 255, 217, 0.2) 0%, #ECFFD9 45.19%, rgba(236, 255, 217, 0.2) 100%);
    padding: 10px;
}
/* .ul-box{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/);
} */

@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 180px;
    }
    .pre-head {
        padding: 10px 66px;
        border-radius: 100px;
    }
    .main-heading {
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 45px 60px 40px 70px;
        border-radius: unset;       
        border: unset;
        box-shadow: unset;
    }
    .typing-text {
        padding: 12px 24px;
        width: 835px;
    }
.ele1 {
    position: absolute;
    top: 120px;
    left: -63px;
}
.ele2 {
    position: absolute;
    top: 89px;
    right: -25px;
}

.ele3 {
    position: absolute;
    top: 870px;
    left: 44px;
}
.ele4 {
    position: absolute;
    top: 1277px;
    right: -33px;
}
.ele5 {
    position: absolute;
    bottom: -1687px;
    left: 45px;
}
.ele6 {
    position: absolute;
    bottom: -1659px;
    right: 7px;
}
    .post-head{
    padding: 25px 70px;
}
    .green-price {
        padding: 0px 8px;
    }
    .header-ul{
        padding: 40px 20px;
    }
    .header-ul li{
        padding: 0px 0px 22px 37px;
    }
    .payment-box{
        padding: 28px 15px;
    }
    .theme-btn {
        padding: 30px 55px;
    }
    .Exclusive-text{
        padding: 20px 25px;
    }
}
/* header section end */


/* step-2 sec start */
.step-section-1 {
    background: #FFFFFF;
}
.step-section {
    background: #ffffff;
}

.step-card-11 {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/step-card-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
}
.step-card-22 {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/step-card-2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
    height: 100%;
}
.step-card-33 {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/step-card-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
}
.step-frame {
    background: #2571ff1a;
    border: 1px dashed var(--blue-clr);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.step-frame-1 {
    background: var(--orange-clr);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}

/*  */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--blue-clr);
}
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    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;
    padding: 10px;
    margin-bottom: 20px;
}

.steps-tabs{
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
}
.step-text{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.steps-card1{
    padding: 10px;
}
.nav-link.active .steps-card{
     background: linear-gradient(180deg, rgba(236, 255, 217, 0) 0%, #ECFFD9 100%);
}
.step-ul li {
    list-style: none;
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/tick1.webp) no-repeat;
    background-position: 10px 15px;
    padding: 15px 0px 0px 40px;
}
.step-text-box{
    background: #FFFFFF80;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
.step-text-box1{
    background: #FFFFFF80;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .step-section-1{
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/step-bg.webp") no-repeat center center;
        background-size: cover;
        padding-bottom: 100px 0px;
    }
    .step-section{
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/step-sec-bg-1.webp") no-repeat center center;
        background-size: cover;
    }
    .step-card-11 {
        padding: 51px 30px 30px;
    }
        .step-card-22{
        padding: 37px 20px 30px;
    }
        .step-card-33{
        padding: 51px 20px 97px;
    }
    .step-frame{
        border-radius: 20px;
        padding: 6px 30px 4px 30px;
    }
    .step-frame-1{
        border-radius: 1000px;
        padding: 0px 44px;
    }
    /* .steps-card{
        padding: 40px 30px;
    } */
     .step-text{
    padding: 8px 25px;
}
    .steps-card .steps-icon{
        padding: 20px;
    }
            .steps-card1{
        padding: 30px;
    }
        .step-text-box{
    padding: 20px 15px;
}
    .step-text-box1{
    padding: 5px 70px 20px 31px;
}
}
    /*  */
.steps-card p{
    color: rgba(25, 25, 25, 0.7);
}

.steps-card{
    transition: all .8s ease-in-out;
    border: double 1px transparent;
    border-bottom: double 5px transparent;
    background-image: linear-gradient(#fff, #fff), var(--theme-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 20px;
}
.heading-tabs{
    background: transparent; 
    border: none;
    outline: none;
    padding: 0;
    text-align: center;
    border-radius: 20px;
}

/* .cleint-frame1 {
    border: 5px solid #FF4F70;
    border-radius: 20px;
} */
/* step-2 sec end */

/* compare-sec-start */
.compare-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.compare-text{
    background: #FFFFFF;
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
}
.compare-red{
    background: #FF0000;
    border-radius: 15px;
    padding: 10px 20px;
}
.compare-green{
    background: #26AF00;
    border-radius: 15px;
    padding: 10px 20px;
}
.compare-red-box{
    background: #ffffff;
    border: 2px solid #FF00004D;
    border-radius: 20px;
    padding: 40px 5px 0px;
}
.compare-green-box{
    background: #ffffff;
    border: 2px solid #26AF004D;
    border-radius: 20px;
    padding: 0px 0px 0px;
}
@media (min-width: 768px) {
    .compare-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/compare-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .compare-text{
        padding: 15px 25px;
    }
    .compare-red{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/compare-red.webp) no-repeat;
        background-size: 100% 100%;
        padding: 15px 20px 40px;
        border-radius: unset;
    }
    .compare-green{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/compare-green.webp) no-repeat;
        background-size: 100% 100%;
        padding: 15px 0px 40px;
        position: relative;
    }
    .compare-green::before{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/vs-icon.webp);
        top: 290px;
        left: -65px;
        position: absolute;
        z-index:1;
    }
}
/* compare-sec-end */

/* branded-sec-start */
.branded-sec{
    background: #FFFFFF;
}
.branded-text{
    background: #799921;
    border-radius: 10px;
    display: inline-block;
}
.branded-inner{
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 10px;
}
.branded-hub{
    background: #7999211A;
    border: 2px dashed #799921;
    padding: 15px 30px;
    border-radius: 100px;
    display: inline-block;
}
@media (min-width: 768px) {
    .branded-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/branded-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .branded-inner{
        padding: 10px 80px;
        position: relative;
    }
    .branded-inner::before{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/no-hand-left.webp);
        top: -5px;
        left: -15px;
        position: absolute;
    }
    .branded-inner::after{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/no-hand-right.webp);
        top: -5px;
        right: -15px;
        position: absolute;
    }
}
/* branded-sec-end */

/* interactive-sec-start */
.interactive-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.interactive-frame{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/interactive-text.webp) no-repeat;
    background-size: 100% 100%;
    padding: 40px 10px 25px;
}
.interactive-hub{
    background: #FFFFFF;
    border: 2px dashed #799921;
    padding: 15px 30px;
    border-radius: 100px;
    display: inline-block;
}
@media (min-width: 768px) {
    .interactive-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/interactive-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .interactive-frame{
    padding: 110px 162px 50px;
}
}
/* interactive-sec-end */

/* animated-sec-start */
.animated-sec{
    background: #ffffff;
}
.animated-hub{
    background: #79992133;
    border: 2px dashed #799921;
    padding: 15px 30px;
    border-radius: 100px;
    display: inline-block;
}
@media (min-width: 768px) {
    .animated-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/animated-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 100px 0px 200px 0px;
    }
}
/* animated-sec-end */

/* fun-sec-start */
    .fun-sec{
        background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
    }
.fun-hub{
    background: #FFFFFF;
    border: 2px dashed #799921;
    padding: 15px 30px;
    border-radius: 100px;
    display: inline-block;
}
.audio-frame{
    background: #799921;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.audio-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
audio {
    width: 165px !important;
    height: 54px !important;
}
@media (min-width: 768px) {
    .fun-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/fun-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .audio-frame{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/audio-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 30px 50px 30px 30px;
}
.audio-box{
    gap: 30px;
}
audio {
    width: 300px !important;
    height: 54px !important;
}
}
/* fun-sec-end */

/* audio-sec-start */
.audio-sec{
    background: #ffffff;
}
.audio-frame1{
    background: linear-gradient(180deg, rgba(236, 255, 217, 0) 0%, #ECFFD9 100%);
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 30px;
    display: inline-block;
    padding: 20px
}
@media (min-width: 768px) {
    .audio-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/audio-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* audio-sec-end */

/* characters-sec-start */
.characters-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
@media (min-width: 768px) {
    .characters-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/characters-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .arrow-img{
        position: relative;
    }
    .arrow-img::before{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/green-round-arrow.webp);
        top: -125px;
        left: 230px;
        position: absolute;
    }
}
/* characters-sec-end */

/* printables-sec-start */
.printables-sec{
    background: #ffffff;
}
@media (min-width: 768px) {
    .printables-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/printables-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* printables-sec-end */

/* tutor-sec-start */
.tutor-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.tutor-frame{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    padding: 20px;
    border-radius: 40px;
    border: 1px solid #799921;
}
@media (min-width: 768px) {
    .tutor-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/tutor-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .tutor-frame{
        padding: 20px;
    }
}
/* tutor-sec-end */

/* blog-sec-start */
.blog-sec{
    background: #FFFFFF;
}
.blog-frame{
    background: #F3F3F3;
    border: 1px solid #799921;
    border-radius: 20px;
    padding: 20px;
}
.blog-text{
    background: #79992133;
    border: 2px dotted #799921;
    border-radius: 100px;
    display: inline-block;
    padding: 15px 30px;
}
.blog-frame1{
    background: linear-gradient(180deg, rgba(236, 255, 217, 0) 0%, #ECFFD9 100%);
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    display: inline-block;
    border-radius: 20px;
    padding: 25px 10px;
}

@media (min-width: 768px) {
    .blog-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/blog-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .blog-frame1{
    padding: 25px 101px;
}
}

/* blog-sec-end */

/* without-sec-start */
.without-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.without-text{
    background: #FF373C;
    border-radius: 10px;
    display: inline-block;
}
.without-inner{
    padding: 10px 20px;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
}
.without-box{
    background: #FFFFFF;
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 30px;
    padding: 20px;
}
@media (min-width: 768px) {
    .without-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-box{
        padding: 20px 20px 30px;
    }
}
/* without-sec-end */

/* income-sec-start */
.income-sec{
    background: linear-gradient(90.41deg, #064200 4.59%, #333300 99.83%);
}
.income-text{
    background: #799921;
    display: inline-block;
    border-radius: 10px;
}
.income-inner{
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 10px;
}
.income-logos{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}
.income-hub{
    background: #799921;
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}
.income-box{
    background: #FFFFFF;
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 20px;
    padding: 10px;
}
@media (min-width: 768px) {
    .income-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
        .income-inner {
        padding: 0px 20px 0px 37px;
    }
    .income-logos{
        padding: 20px 65px;
    }
    .income-hub{
        padding: 15px 30px;
    }
    .income-box{
    border-radius: 100px;
    padding: 20px 35px
}
}
/* income-sec-end */

/* earning-sec-start */
.earning-sec{
    background: #FFFFFF;
}
@media (min-width: 768px) {
    .earning-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/earning-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .earning-logo{
        position: relative;
    }
    .earning-logo::before{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/green-round1.webp);
        top: -18px;
        left: 140px;
        position: absolute;
    }
    .earning-logo::after{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/green-round2.webp);
        top: -18px;
        right: 140px;
        position: absolute;
    }
}
/* earning-sec-end */

/* coming-sec-start */
.coming-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.coming-text{
    background: #799921;
    display: inline-block;
    border-radius: 10px;
}
.coming-inner{
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 10px;
}
.why-text{
    background: #799921;
    display: inline-block;
    border-radius: 30px;
}
.why-inner{
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
}
.coming-watch{
    background: #FFFFFF;
    border: 2px solid #799921;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .coming-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/coming-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .why-text{
        border-radius: 100px;
        position: relative;
    }
    .why-inner{
        padding: 20px 40px;
        border-radius: 100px;
    }
    .why-text::before{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/point-hand-left.webp);
        top: 35px;
        left: -70px;
        position: absolute;
    }
    .why-text::after{
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/point-hand-right.webp);
        top: 35px;
        right: -70px;
        position: absolute;
    }
    .coming-watch{
        padding: 25px 90px;
    }
}
/* coming-sec-end */

/* btn-sec start */
.btn-sec{
    background: linear-gradient(90.41deg, #064200 4.59%, #333300 99.83%);
    position: relative;
    /* z-index: -1; */
}

@media(min-width:768px){
    .btn-sec{
        background: #0a0c2b url(https://cdn.oppyotest.com/launches/kidsempire/special/btn-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 80px 0px;
    }
}
/* btn-sec end */

/* everywhere-sec-start */
.everywhere-sec{
    background: #ffffff;
}
.everywhere-box{
    background: #799921;
    border: 2px dotted #FFFFFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.everywhere-text{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 10px;
    padding: 10px;
}
.everywhere-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.everywhere-frame{
    background: #F1FFE5;
    border: 1px solid #799921;
    border-radius: 30px;
    padding: 10px;
}

@media(min-width:768px){
    .everywhere-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/everywhere-bg.webp) no-repeat center center;
    background-size: 100% 100%;
}
.everywhere-text{
    padding: 10px 20px;
}
.everywhere-flex{
    gap: 10px;
}
.everywhere-box{
    padding: 15px 30px;
    position: relative;
}
.everywhere-box::before {
    content: url(https://cdn.oppyotest.com/launches/kidsempire/special/stars-left.webp);
    top: 0px;
    left: -65px;
    position: absolute;
}
    .everywhere-box::after{
    content: url(https://cdn.oppyotest.com/launches/kidsempire/special/stars-right.webp);
    top: 0px;
    right: -65px;
    position: absolute;
    }

    .everywhere-frame{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/everywhere-frame.webp) no-repeat;
    background-size: 100% 100%;
    padding: 40px 0px 0px 40px;
    border: unset;
    border-radius: unset;
}
}
/* everywhere-sec-end */

/* winning-sec-start */
.winning-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.winning-frame{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 40px;
    padding: 10px;
}

.winning-text1{
    background: #FFFFFF;
    border: 2px dotted #799921;
    border-radius: 100px;
    padding: 10px;
}
.brand-box{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 100px;
    display: inline-block;
    padding: 20px;
}

@media(min-width:768px){
    .winning-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/winning-bg.webp) no-repeat center center;
    background-size: cover;
}
.winning-frame{
    padding: 55px 50px;
}
.winning-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.winning-text1{
    padding: 10px 20px;
}
.brand-box{
    padding: 10px 80px;
}
}
/* winning-sec-end */

/* brand-sec-start */
.brand-sec{
    background: #ffffff;
}
.built-box{
    background: #799921;
    border: 2px dotted #FFFFFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}


@media(min-width:768px){
    .brand-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/brand-bg.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.built-box{
    padding: 15px 50px;
}
.brand-flex{
    display: flex;
    align-items: center;
    gap: 40px;
}
}

/* brand-sec-end */

/* selling-sec-start */
.selling-sec{
    background: #D2EBB6CC;
}
.selling-box{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 40px;
    display: inline-block;
    padding: 10px;
}

@media(min-width:768px){
    .selling-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/selling-bg.webp) no-repeat center center;
    background-size: 100% 100%;
}
.selling-box{
    padding: 40px 80px;
}

}

/* selling-sec-end */

/* problem sec start */
.problem-sec{
    background: #FFE2E2;
}
.problem-text{
    background: #FF373C;
    border: 2px dotted #FFFFFF;
    border-radius: 100px;
    display: inline-block;
    padding: 10px;
}
.problem-text1{
    background: #FFFFFF;
    border: 1px dotted #FF373C;
    border-radius: 100px;
    display: inline-block;
    padding: 10px;
}
.problem-box{
    padding: 20px 10px 20px;
    z-index: 1;
    position: relative;
}
.problem-box::after {
    position: absolute;
    content: '';
    border-radius: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FF373C;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.problem-box2{
    padding: 20px 10px 20px;
    z-index: 1;
    position: relative;
}
.problem-box2::after {
    position: absolute;
    content: '';
    border-radius: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FF373C;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.problem-f{
    background: #FF373C;
    border: 2px dotted #ffffff;
    border-radius: 100px;
    padding: 17px 43px;
}
.problem-f1{
    background: #FFFFFF;
    border: 2px dotted #FF373C;
    border-radius: 20px;
    padding: 30px 26px;
}

.problem-box1{
    padding: 20px 10px 20px;
    z-index: 1;
    position: relative;
}
.problem-box1::after {
    position: absolute;
    content: '';
    border-radius: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FF373C;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.tools-box1{
    background: #FF373C;
    border: 2px dotted #ffffff;
    border-radius: 100px;
    padding: 10px 20px;
}
.tools-box2{
    background: #FF373C;
    border: 2px dotted #ffffff;
    border-radius: 100px;
    padding: 10px 20px;
}
.red-box{
    background: #FF373C;
    padding: 15px 20px;
    border-radius: 100px;
    display: inline-block;
}
.problem-truth{
    background: #FFFFFF;
    border: 1px dashed #FF373C;
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-block;
}
.problem-bottom{
    background: #FFFFFF;
    border: 2px dashed #FF373C;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
}
@media(min-width:768px){
.problem-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/problem-bg.webp) no-repeat center center;
    background-size: cover;
}
.problem-box::after {
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/problem-box-1.webp") no-repeat center center;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border: unset;
    border-radius: unset;
}
.problem-box{
    padding: 50px;
}
.problem-box1::after {
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/problem-box-2.webp") no-repeat center center;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border: unset;
    border-radius: unset;
}
.problem-box2::after {
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/problem-box-3.webp") no-repeat center center;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border: unset;
    border-radius: unset;
}
.problem-box2{
    padding: 50px;
}
.problem-box1{
    padding: 50px;
}
.problem-text{
    padding: 20px 70px;
}
.problem-text1{
    padding: 13px 50px;
}
.tools-box1{
    padding: 15px 100px;
}
.tools-box2{
    padding: 15px 50px;
}
.problem-truth{
    padding: 15px 35px;
    position: relative;
}
.problem-truth::before{
    content: url(https://cdn.oppyotest.com/launches/kidsempire/special/point-hand-left.webp);
    top: 15px;
    left: -62px;
    position: absolute;
}
.problem-truth::after{
    content: url(https://cdn.oppyotest.com/launches/kidsempire/special/point-hand-right.webp);
    top: 15px;
    right: -62px;
    position: absolute;
}
.problem-bottom{
    padding: 40px 60px;
}
}

/* problem sec end */

















/* presenting-sec start */
.presenting-sec{
    background: #2c420d;
}
.presenting-head{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 100px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .presenting-sec{
        background: #F1F5FC url("https://cdn.oppyotest.com/launches/kidsempire/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 240px;
    }
        .presenting-head{
    padding: 10px 50px;
}
}
/* presenting-sec end */


/* demo section start */
.demo-sec{
    background: #ffffff;
}
.demo-text{
    background: var(--blue-clr);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
.border-frame {
    background: #151515;
    border: 2px solid #8F77FD80;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
.border-frame1 {
    background: #ffffff;
    border: 2px solid ;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 50px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .border-frame1 {
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/magic-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }

}
/* demo section end */

/* features section start */
.feature-sec{
    background: #000000;
}
.features-heading{
   position: relative;
}
.feature-card-1 {
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.feature-card-2 {
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.black-feature-card{
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.black-feature-card-1{
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.white-feature-card, .white-feature-card-1{
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
@media (min-width:768px) {
   .feature-sec{
       background: url("https://cdn.oppyotest.com/launches/kidsempire/special/feature-bg.webp") no-repeat top center;
       background-size: cover;
   }
   .features-heading:before{
       background: url(https://cdn.oppyotest.com/launches/kidsempire/special/power-icon-left.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       left:200px;
       content: '';
   }
   .features-heading:after{
       background: url(https://cdn.oppyotest.com/launches/kidsempire/special/power-icon-right.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       right:200px;
       content: '';
   }
   .feature-card-1{
        border-radius: 20px;
        padding: 40px 50px;
   }
   .feature-card-2{
        border-radius: 20px;
        padding: 25px 30px 30px;
   }
   .black-feature-card{
        border-radius: 20px;
        padding: 40px 50px;
   }
   .black-feature-card-1{
       border-radius: 20px;
       padding: 25px 30px 30px;
    }
    .white-feature-card{
        border-radius: 20px;
        padding: 40px 50px;
    }
   .white-feature-card-1{
        border-radius: 20px;
        padding: 25px 30px 30px;
   }

}
/* features section end */

/* tools sec start */
.tools-sec{
    background: #ffffff;
}

@media (min-width: 768px){
    .tools-sec{
    background:#ffffff url(https://cdn.oppyotest.com/launches/kidsempire/special/tools-bg.webp) no-repeat center center;
    background-size: cover;
}
}

/* tools sec end */

/* streams sec start */
.streams-sec{
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.streams-text{
    background: #799921;
    border: 2px dotted #ffffff;
    border-radius: 10px;
    display: inline-block;
    padding: 15px 30px;
}
.streams-box{
    background: linear-gradient(180deg, rgba(236, 255, 217, 0) 0%, #ECFFD9 100%);
    border: 1px solid #799921;
    border-bottom: 5px solid #799921;
    border-radius: 30px;
    padding: 20px 20px 30px;
    height: 100%;
}
.streams-f{
    background: #ffffff;
    border: 2px dotted #799921;
    border-radius: 100px;
    padding: 10px 30px;
}

@media (min-width: 768px){
.streams-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/streams-bg.webp) no-repeat center center;
    background-size: cover;
}
}

/* streams sec end */

/* licensed sec start */
.licensed-sec{
    background: #ffffff;
}
.licensed-text{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 15px 30px;
}

@media (min-width: 768px){
.licensed-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/licensed-bg.webp) no-repeat center center;
    background-size: cover;
}
}


/* licensed sec end */

/* potential-sec start */
.potential-sec{
    background: #F1F5FC;
}
.gap30 {
	--bs-gutter-y: 30px;
}
.feature-list-box {
    padding:    40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: #FFFFFF;
    border-bottom: 5px solid #799921;
    border-radius: 10px;
    box-shadow: 0px 6.49px 11.12px 0px #00000033;
}
.feature-list-box img {
    /* border-radius: 50%; */
    background: #F1F5FC;
}
.potential-box{
    background: #799921;
    border: 2px dotted #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}
.feature-list-box:hover{
	-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}
@-webkit-keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  
  @keyframes wobble {
	0% { transform: rotate(0); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  85% { transform: rotate(-2deg); }
  92% { transform: rotate(1deg); }
  100% { transform: rotate(0); }
  }
  .support-img:hover img{-webkit-animation-name: wobble;
    animation-name: wobble;    
    -webkit-animation-duration:          0.8s;
    -webkit-animation-iteration-count:   infinite;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}

@media(min-width:768px){
    .potential-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/potential-bg.webp) no-repeat center center;
    background-size: cover;
}
	.gap30 {
		--bs-gutter-x: 30px;
		--bs-gutter-y: 30px;
	}
	.feature-list-box {
		height: 100%;
		padding: 30px 15px;
	}
    .potential-box{
    padding: 20px 30px;
}

}
/* potential-sec end */

/*compare section start*/
.compare-section{
    background: #ffffff;
}

.winning-box{
    padding: 36px 110px;
    border-top: 1px solid #378E00;
    border-left: 1px solid #378E00;
    border-right: 1px solid #378E00;
    border-width: 1px, 0px, 1px, 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #378E00;
    border-radius: 20px 20px 0px 0px;
    box-shadow: -5px 4px 30px 0px #00000026;
    margin-top: -24px;
}
.compare-list-1{
    box-shadow: -5px 4px 30px 0px #00000026;
    border-radius: 0px 0px 0px 20px;
}
.compare-list-1 li {
    list-style: none;
    text-align: left;
    padding: 25px 25px 25px 70px;
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/happy-tick.webp") no-repeat;
    background-position: 23px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid #378E00;
    background-color: #FFFFFF;
}
.compare-list-1 li:nth-child(odd){  
    background-color: #E6FFC7;
}
.compare-list-1 li:last-child{
     border-bottom: 1px solid #378E00;
    border-radius: 0px 0px 0px 20px;
}
.losing-box {
    padding: 24px 110px;
    background: #FF361D;
    border: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px 20px 0px 0px;
}
.compare-list-2 li {
    list-style: none;
    text-align: left;
    background: url("https://cdn.oppyotest.com/launches/kidsempire/special/sad-tick.webp") no-repeat;
    background-position: 23px 25px;
    padding: 25px 25px 25px 70px;
    border-right: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FCDDDA;
}
.compare-list-2 li:nth-child(3), .compare-list-2 li:nth-child(5){
    padding: 25px 41px 25px 65px;
    background-position: 23px 25px;
}
.compare-list-2 li:nth-child(even){  
    background-color: #FFEBE9;
}
.compare-list-2 li:last-child{
    border-radius: 0px 0px 20px 0px;
    border-bottom: 1px solid #FF361D;
    /* padding: 25px 35px 25px 65px; */
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
    }
    .table-1>div{
        width:1170px;
    }
}
@media(min-width:768px){
    .compare-section{
        background:  url("https://cdn.oppyotest.com/launches/kidsempire/special/compare-bg1.webp") no-repeat center center;
        background-size: cover;
    }
    .px-md-14{
        padding-left: 14px;
        padding-right: 14px;
    }
    .mt-md165{
        margin-top: 165px !important;
    }
}

/* compare section end */

/* bonusess-sec start */
.bonusess-sec{
    background: #7a9922;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #f3ffe5 url("https://cdn.oppyotest.com/launches/kidsempire/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 45px 0px 183px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: linear-gradient(113.96deg, #F1FFE5 10.74%, #FEFFE3 97.85%);
}
.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 10px;
    border: 2px solid #799921;
    background: #FFFFFF ;
    box-shadow: 0px 0px 30px 0px #799921 inset;
    height: 100%;
    padding: 20px;
}

.margin-t-30 {
    margin-top: -30px;
}
.bonus-headline-top {
    padding: 4px 55px;
    display: inline-block;
    text-align: center;
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/bonus-head.webp) no-repeat center center;
    background-size: 100% 100%;
}
@media (min-width: 768px){
    .margin-t-78 {
        margin-top: -66px;
    }
    .bonus-section-shape {
        padding: 55px 30px 30px;
    }
}
/* bonus sec end */

/* moneyback sec start */
.moneyback-sec{
    background: #ffffff;
}
.moneyback-h{
    background: var(--theme-gradient);
    /* border: 2px solid var(--blue-clr); */
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 100px;
    padding: 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/kidsempire/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .moneyback-h {
        padding: 10px 90px 10px 40px;
        position: relative;
    }
    .moneyback-h::after {
        content: url(https://cdn.oppyotest.com/launches/kidsempire/special/think-icon.webp);
        position: absolute;
        top: -15px;
        right: -15px;
    }
}
/* moneyback sec end */

/* Table Section Start */

.table-section {
    background: #000000;
    padding: 30px 0
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: solid 10px #FDF1FF;
}

.tbbg2 {
    background: #FDF1FF;
    padding: 30px;
    background-size: cover;
    border-radius: 8px 8px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}

.myfeatureslast {
    float: left;
    padding: 20px;
    width: 100%;
    min-height: 69px;
    color: #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}

ul.grey-tick-last li:last-child {
    border-bottom: 0
}

ul.grey-tick-last li:nth-child(odd) {
    background-color: #f1f1f1;
}

ul.grey-tick-last li:nth-child(even) {
    background-color: #fff;
}

.tablebox3 {
    width: 100%;
    /* height: 100%; */
    float: left;
    border-radius: 35px 35px 20px 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    padding: 15px;
    /* border: 5px solid #000; */
    background: var(--white-clr);
}

.tbbg3 {
    background: #000;
    /* background: url(https://cdn.oppyotest.com/launches/kidsempire/special/table-frame.webp) no-repeat bottom center; 
    background-size: 100% 100%;*/
    padding: 20px;
    border-radius: 8px 8px 0 0;
    /* min-height: 210px; */
}
.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/kidsempire/special/tick.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);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
ul.vgreytick li:nth-child(1) {
    border-radius: 15px 15px 0px 0px;
}
ul.vgreytick .list-close {
    background: #fff url(https://cdn.oppyotest.com/launches/kidsempire/special/list-cross.webp) no-repeat;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
}
/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 20px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background: #FCEE53;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 8px 11px;
    display: inline-block;
}
.commercial2 {
    background: var(--blue-clr);
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 8px 11px;
    display: inline-block;
}
.table-sale {
    background: var(--green-clr1);
    border-radius: 48px;
    padding: 2% 5%;
    display: inline-block;
}
/* .table-sale {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
} */
.mt-top{
    margin-top: -77px;
}
.vgreytick li.headline1 {
    background: #FFDFDF;
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #FF0000;
}
.vgreytick li.headline2 {
    background: var(--black-clr);
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
}
ul.vgreytick3 li {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/cross2.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.table-text {
    background: var(--blue-clr);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border: 2px solid #FFFFFF4D;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
.tbbg4  {
    background: #000;
    padding: 20px 10px;
    border-radius: 8px 8px 0 0;
}
@media(min-width:768px){
    .table-section {
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/table-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .table-text{
        background: url(https://cdn.oppyotest.com/launches/kidsempire/special/blue-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        box-shadow: unset;
        padding: 8px 40px 8px;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    ul.vgreytick .list-close {
        padding: 20px 15px 20px 65px;
        background-position: 30px 24px;
    }
    .tbbg3 {
        padding: 30px;
        /* min-height: 500px; */
        /* background-size: 100% 100%; */
    }    
    .tbbg4 {
        padding: 100px 30px 30px !important;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px 25px;
    }
    /* .table-sale {
        padding: 11px 70px;
    } */
    .mt-top{
        margin-top: -79px;
    }
    ul.vgreytick3 li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .commercial1{
        padding: 8px 29px;
    }
    .commercial2{
        padding: 8px 29px;
    }
}

/* Table Section End */

/* ticking sec start */
.ticking-sec{
    background: #F1F5FC;
}
.ticking-text{
     background: var(--theme-gradient);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .ticking-sec{
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/ticking-bg.webp) no-repeat center center;
    background-size: cover;
}
}
/* ticking sec end */

/* contact-sec start */
.contact-section {
    background-color: #ffffff;
}
.contact-text {
    background: var(--theme-gradient);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .contact-section {
        background: #ffffff url(https://cdn.oppyotest.com/launches/kidsempire/special/contact-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .contact-text {
        background: url("https://cdn.oppyotest.com/launches/kidsempire/special/dark-purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 60px;
        border-radius: unset;
        position: relative;
    }
    
}
/* contact-sec end */

/* fear sec start */
.fear-sec{
    background: #F1F5FC;
}
.fair-text {
    border: 2px solid #FFFFFF;
    background: #FF361D;
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.theme-brush {
    background: #ffffff;
    border: 3px solid #FF361D;
    border-radius: 70px;
    padding: 0 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #FFA3A366 url(https://cdn.oppyotest.com/launches/kidsempire/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .theme-brush {
        padding: 0px 20px;
    }
}
/* fear sec end */

/* faq sec start */
.faq-section {
    background: #ffffff;
    padding: 30px 0px;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/kidsempire/special/faq-icon.webp) no-repeat top left;
    background-color: #ffffff;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid var(--green-clr1);
    border-radius: 20px;
}
@media (min-width: 768px){
    .faq-section {
        padding: 100px 0px;
    }
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #ffffff;
    padding: 30px 0;
}
.final-text{
    background: var(--orange-clr);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px){
    .cta-section-white {
        padding: 80px 0px;
    }
    .final-text{
        border-radius: 100px;
        padding: 0px 44px;
    }
}
/* 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 */


@media (min-width: 768px) {
    .f-md-80 {
        font-size: 80px;
    }
}
/*  */





/* slider up start */
.bx-wrapper {
    border: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    max-width: auto !important;
}
.bx-viewport {
    position: relative !important;
}
.bxslider {
    background: transparent !important;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    border: 0px !important;
    font-weight: 800;
    position: relative;
}
.bxslider li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 76px;
    line-height: 32px;
    text-align: center;
}
.bx-wrapper img {
    display: inline !important;
}
@media (min-width: 768px){
    .bxslider li {
        justify-content: center;
        min-width: 100%;
        float: left !important;
        width: auto !important;
    }
}
/* slider up end */