html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #191919;
    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, #5F1EFF 0%, #D865FF 100%);
    border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: "Caveat", system-ui;
}
.Passero{
    font-family: "Passero One", sans-serif;
}

:root {
    --black-clr:#191919;
    --white-clr: #fff;
    --light-grey: #f1f1f1;
    --light-grey-1: rgba(1, 1, 1, 0.6);
    --blue-clr: #56D2FF;
    --blue-clr1: #29B6FF;
    --blue-clr2: #066CF1;
    --yellow-clr: #FFF833;
    --red-clr1:#FF462F;
    --red-clr2:#FF7F68;
    --red-clr6:#ff694e;
    --orange-clr: #F4A638;
    --purple-clr: #8A5BFF;



    --red-clr:#F26159;
    --red-clr3:#FF361D;
    --red-clr4:#FF2C2C;
    --red-clr5:#FF5E4A;
    --orange-clr-1: #FF8000;
    --orange-clr1: #FFAA33;
    --neon-clr: #31E3BE;
    --grey-clr:#555555;
    --green-clr:#1FBA24;
    --green-clr1:#21AF21;
    --green-clr2:#3cb006;

    --yellow-clr1: #FFCB34;
    --theme-gradient: linear-gradient(90deg, #5F1EFF 0%, #D865FF 100%);
    --theme-gradient1: linear-gradient(90deg, #D865FF 0%, #5F1EFF 100%);
    /* --theme-gradient2: linear-gradient(90deg, #102F5A 0%, #201656 100%); */
}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {color: var(--white-clr);}
.light-grey{color: var(--light-grey);}
.light-grey-1{color: var(--light-grey-1);}
.blue-clr{color: var(--blue-clr);}
.blue-clr1{color: var(--blue-clr1);}
.blue-clr2{color: var(--blue-clr2);}



.neon-clr{color: var(--neon-clr);}
.purple-clr {color: var(--purple-clr);}
.yellow-clr{color:var(--yellow-clr);}
.yellow-clr1{color:var(--yellow-clr1);}
.orange-clr{color:var(--orange-clr);}
.orange-clr-1{color:var(--orange-clr-1);}
.orange-clr1{color:var(--orange-clr1);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.red-clr4{color:var(--red-clr4);}
.red-clr5{color:var(--red-clr5);}
.red-clr6{color:var(--red-clr6);}
.grey-clr{color:var(--grey-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.theme-clr{
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 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;
    }
}

/* 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-color: transparent;*/
    /*background-image: var(--theme-gradient2);*/
    background: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
}

.fixed-top-bar a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background-image: var(--theme-gradient);
    border-radius: 5px 5px 5px 5px;
    padding: 12px 9px 12px;
    text-decoration: none;
    display: inline-block
}

/* stick bar end */

a.cta-link-btn-1 {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 25px;
    font-size: 22px;
    line-height: 160%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
}
a.cta-link-btn-1:hover {
    border-radius: 8px;
    background: var(--theme-gradient1);
    color: #ffffff;
}
@media (min-width: 768px) {
    a.cta-link-btn-1 {
        font-size: 38px;
        padding: 20px 86px;
        display: inline-block;
    }
}
/*  */


/* header section start */
.main-heading {
    padding: 10px;
    border-radius: 15px;
    border: 3px solid #8A5BFF;
    background: #8A5BFF26;
}

.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: #0e0926;
    padding: 30px 0px;
}
.pre-heading{
    background: #8A5BFF33;
    border: 1px dashed #FFFFFF4D;
    border-radius: 24px;
    display: inline-block;
    padding: 5px 10px;
}
.theme-frame{
    color: #D865FF;
}
.header-red-box{
    background: #FF462F;
    border-radius: 5px;
    padding: 6px 15px;
}
.post-heading{
    background: #00000066;
    border: 1px dashed #FFFFFF33;
    border-radius: 15px;
    padding: 10px;
}
.black-shape{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/black-shape.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 15px;
}
.yellow-frame{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/yellow-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.red-frame{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.Exclusive-text{
    background: #FFFFFF0D;
    border: 1px dashed #32FFE5;
    border-radius: 10px;
    padding: 10px;
}

.header-ul{
    padding: 0px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
    text-align: start;
}



@media(min-width:768px){
    .main-heading {
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 16px 34px;
        border-radius: 0px;
        border: none;
    }
    .header-sec{
        background: #0e0926 url("../../common_assets/images/bgimages/header-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .pre-heading{
        background: #8A5BFF33;
        border: 1px dashed #FFFFFF4D;
        padding: 6px 20px;
    }
    .theme-frame{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/theme-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 5px 25px;
        color: #fff;
    }
    .post-heading{
        padding: 10px 17px;
    }
    .black-shape{
        padding: 10px 30px;
    }
    .Exclusive-text{
        padding: 15px 30px 20px;
    }
    .theme-btn {
        padding: 20px 80px;
    }
    
}
/* header section end */

/* cta btn section start */
.cta-section {
    background: #0e0423;
}

@media (min-width: 768px) {
    .cta-section {
        background: #0e0423 url("../../common_assets/images/bgimages/cta-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .cta-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
}
/* cta btn section end */

/* limited time section start */
.limited-time-sec {
    padding: 10px 0px 10px 0px;
    background: #FF462F;
}
/* limited time section end */

/* step-2 sec start */
.step-section-1 {
    background: #ffffff;
}
.steps-frame {
    /* background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/steps-frame.webp) no-repeat;
    background-size: 100% 100%; */
    padding: 0px 12px 40px;
    display: inline-block;
    height: 100%;
}
.step-card-1 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/step-card-1.webp) no-repeat;
    background-size: 100% 100%;
}
.step-card-2 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/step-card-2.webp) no-repeat;
    background-size: 100% 100%;
}
.step-card-3 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/step-card-3.webp) no-repeat;
    background-size: 100% 100%;
}
.video-frame {
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 8px 40px 65px;
}

.mt-md-70{
    margin-top: -60px !important;
}
@media (min-width: 768px) {
    .step-section-1 {
        background: #ffffff url("../../common_assets/images/bgimages/step-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .mt-md-70{
        margin-top: -100px !important;
    }
    .steps-frame {
        padding: 6px 20px 12px 23px;
    }
    .step-card-1 {
        padding: 40px 20px 50px;
    }
    .step-card-2 {
        padding: 40px 20px 50px;
    }
    .step-card-3 {
        padding: 40px 20px 50px;
    }
    .theme-line{
        position: relative;
    }
    .theme-line::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/theme-line.webp") no-repeat;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 5px;
    }

    .video-frame {
        padding: 18px 66px 114px;
    }
}
/* step-2 sec end */

/* testimonial-sec start */
.testimonial-sec{
    background: #efeafe;
}
.testimonial-text{
    background: #E6DCFF;
    border: 1px solid #8A5BFF;
    border-radius: 20px;
    display: inline-block;
    padding: 15px 10px;
}
.testimonial-card{
    background: #FFFFFF;
    border: 2px solid #8A5BFF4D;
    display: inline-block;
    border-radius: 10px;
    padding: 20px 15px;
}
@media (min-width: 768px) {
    .testimonial-sec{
        background: #efeafe url("../../common_assets/images/bgimages/testimonial-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .testimonial-text{
        padding: 15px 55px;
        position: relative;
    }
    .testimonial-text::before{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/smily-start-emoji.webp");
        top: 25%;
        left: -40px;
    }
    .testimonial-text::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/smily-start-emoji.webp");
        top: 25%;
        right: -40px;
    }
    .testimonial-card{
        background:  url("https://cdn.oppyotest.com/launches/teachwiseai/special/testimonial-card.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px;
        border: unset;
        border-radius: 0px;
    }
    .test-1, .test-2{
        position: relative;
    }
    .test-1::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/round-arrow-left.webp");
        top: -55px;
        right: -10px;
    }
    .test-2::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/round-arrow-right.webp");
        top: -55px;
        left: -10px;
    }
}
/* testimonial-sec end */

/* Say hi sec start */
.sayhi-sec{
    background: #ffffff;
}
.sayhi-box1{
    background: rgba(150, 161, 255, 0.1);
    border: 1px solid #96A1FF;
    border-radius: 10px;
}
.sayhi-box2{
    background: rgba(103, 203, 255, 0.1);
    border: 1px solid #67CBFF;
    border-radius: 10px;
}
.sayhi-box3 {
    background: rgba(255, 209, 111, 0.1);
    border: 1px solid #FFD16F;
    border-radius: 10px;
}
.sayhi-box4 {
    background: rgba(251, 133, 112, 0.1);
    border: 1px solid #FB8570;
    border-radius: 10px;
}
.sayhi-box5 {
    background: rgba(159, 199, 84, 0.1);
    border: 1px solid #9FC754;
    border-radius: 10px;
}
.sayhi-box-p{
    padding: 10px;
    height: 100%;
}

@media (min-width: 768px) {
    .sayhi-sec{
        background:#ffffff url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .sayhi-box-p{
        padding: 20px;
    }
    .sayhi-box1{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-frame1.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
    .sayhi-box2{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-frame2.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
    .sayhi-box3{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-frame3.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
    .sayhi-box4{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-frame4.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
    .sayhi-box5{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/sayhi-frame5.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
}
/* Say hi sec end */

/* Education-sec start */
.education-sec{
    background: #ffffff;
}
.purple-box{
    background: rgba(138, 91, 255, 0.15);
    border: 1px solid #8A5BFF;
    border-radius: 15px;
    padding: 10px;
}
.purple-brush{
    color: #8a5bff;
}
.purple-box1{
    background: #8A5BFF;
    border-radius: 15px;
    display: inline-block;
    padding: 10px 25px;
}
.course-box1{
    background: rgba(138, 91, 255, 0.1);
    border: 1px solid rgba(138, 91, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.course-box2{
    background: rgba(41, 182, 255, 0.1);
    border: 1px solid rgba(41, 182, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.course-box3{
    background: rgba(146, 195, 55, 0.1);
    border: 1px solid rgba(146, 195, 55, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.image-hoverup-bx {
    overflow: hidden;
    height: 287px;
    position: relative;
}
.image-hoverup-bx img{
    height: auto;
    object-fit: contain;
    width: 100%;
    transition: 30s;
}
.image-hoverup-bx:hover img {
    transform: translateY(calc(-100% + 287px));
}
.course-box4{
    background: rgba(255, 127, 104, 0.1);
    border: 1px solid rgba(255, 127, 104, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.emoji-box{
    background: #8A5BFF;
    display: inline-block;
    border-radius: 15px;
    padding: 10px 15px;
}

@media (min-width: 768px) {
    .education-sec{
        background:#ffffff url("../../common_assets/images/bgimages/education-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .purple-box{
        padding: 15px 20px;
    }
    .purple-brush{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/purple-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 15px;
        color: #ffffff;
    }
    .course-box1{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-1.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .course-box2{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-2.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .course-box3{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-3.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .course-box4{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-4.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
}
/* Education-sec end */
/* Education-sec 2 start */
.update-sec{
    background:#efeafe;
}

@media (min-width: 768px){
    .update-sec{
        background:#ffffff url(https://cdn.oppyotest.com/launches/teachwiseai/special/update-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 160px 0px 100px;
    }
}
/* Education-sec 2 end */
/* Education-sec 3 start */
.sell-sec{
    background: #ffffff;
}

.custom-box1{
    background: rgba(138, 91, 255, 0.1);
    border: 1px solid rgba(138, 91, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.custom-box2{
    background: rgba(41, 182, 255, 0.1);
    border: 1px solid rgba(41, 182, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}

@media (min-width: 768px){
    .sell-sec{
        background:#ffffff url("../../common_assets/images/bgimages/sell-sec-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .custom-box1{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-5.webp) no-repeat;
        background-size: 100% 100%;
        padding: 25px 25px 30px;
        border: unset;
        border-radius: 0px;
    }
    .custom-box2{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-6.webp) no-repeat;
        background-size: 100% 100%;
        padding: 25px 25px 30px;
        border: unset;
        border-radius: 0px;
    }
}
/* Education-sec 3 end */

/* Education-sec 4 start */
.member-sec{
    background: #EFE9FE;
}
.member-box1{
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(138, 91, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.member-box2{
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(41, 182, 255, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.member-box3{
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(146, 195, 55, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.member-box4{
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(255, 127, 104, 0.5);
    border-radius: 10px;
    padding: 10px;
}
.member-sec.member-sec-style-2{
    background: #fff;
}
@media (min-width: 768px){
    .member-sec,.member-sec.member-sec-style-2{
        background:#fff url("../../common_assets/images/bgimages/members-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 160px 0px 100px;
    }
    .member-sec.member-sec-style-2{
        background:#fff url("../../common_assets/images/bgimages/members-bg-8.webp") no-repeat top center;
        background-size: cover;
    }
    .member-box1{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-7.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .member-box2{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-8.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .member-box3{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-9.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
    .member-box4{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/e-10.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px;
    }
}
/* Education-sec 4 end */

/* Education-sec 5 start */
.slider-sec{
    background: #efeafe;
}
.slider-main-image {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
}
.slider-main-image img {
    display: block;
    animation: slider-image-running 50s linear infinite;
    width: 300%;
}
@keyframes slider-image-running {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* Education-sec 5 end */

/* Education-sec 6 start */
.mentor-sec{
    background: #080063;
}
.mentor-sec-video-bx{
    padding: 5px;
    background: var(--purple-clr);
    border-radius: 5px;
}
.mentor-box{
    background: #8A5BFF;
    border: 1px solid #8A5BFF;
    display: inline-block;
    border-radius: 20px;
    padding: 10px 25px;
}
@media (min-width: 768px){
    .mentor-sec{
        background: #efeafe url("../../common_assets/images/bgimages/mentor-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 160px 0px 100px;
    }
    .mentor-sec-video-bx{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/mentor-sec-video-bx.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 20px;
        border-radius: unset;
    }
}
/* Education-sec 6 end */

/* Education-sec 7 start */
.education-sec-7-text{
    background: #FFFFFF;
    border: 2px solid #8A5BFF4D;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
@media (min-width: 768px) {
    .education-sec-7-text{
        background:  url("https://cdn.oppyotest.com/launches/teachwiseai/special/education-sec-7-text.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 30px;
        border: unset;
        border-radius: 0px;
    }
}
/* Education-sec 7 end */

/* much-more-sec start */
.much-more-sec{
    background: #efeafe;
}
.final-wall {
    border-radius: 15px;
    border: 2px solid #FF361D;
    background: #fff;
}
.final-img {
    position: relative;
}
.final-img img{
    width : 100%;
}
.final-img::before {
    position: absolute;
    top: 25px;
    left: -5px;
    content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/without.webp");
}
.final-content {
    padding: 20px;
}
@media (min-width: 768px) {
    .much-more-sec{
        background: #efeafe url("https://cdn.oppyotest.com/launches/teachwiseai/special/much-more-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .final-wall {
        height: 100%;
    }
    .final-content {
        padding: 20px 20px;
    }
}
/* much-more-sec end */

/* profit-sec start */
.profit-sec{
    background: #ebe8f9;
}
.profit-text{
    background: #ffffff;
    border: 1px solid #8A5BFF;
    border-radius: 10px;
    display: inline-block;
    padding:20px 10px;
}
@media (min-width:768px) {
    .profit-sec{
        background:#ebe8f9 url("../../common_assets/images/bgimages/profit-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .profit-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/profit-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 26px 28px;
        padding-top: 20px;
        border: unset;
        border-radius: 0px;
    }
}
/* profit-sec end */

/* real-people-sec start */
.real-people-sec{
    background: #EDECFF;
}
.real-people-sec-text{
    /* background: #FFFFFF; */
    border: 2px solid #8A5BFF4D;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.real-people-box{
    border-style: solid;
    border-width: 1px;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-radius: 20px;
    padding: 20px;
    padding-bottom: 30px;
}
@media (min-width:768px) {
    .real-people-sec{
        background:#EDECFF url(https://cdn.oppyotest.com/launches/teachwiseai/special/real-people-sec-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .real-people-sec-text{
        background:  url("https://cdn.oppyotest.com/launches/teachwiseai/special/real-people-text.webp") no-repeat;
        background-size: 100% 100%;
        padding: 10px 30px;
        border: unset;
        border-radius: 0px;
    }
}
/* real-people-sec end */

/* courses-sec start */
.courses-sec{
    background: #14052F;
}
.courses-box{
    border-radius: 20px;
    overflow: hidden;
}
.courses-box .courses-box-text{
    padding: 15px;
}
.courses-sec-text{
    color: var(--white-clr);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--purple-clr);
    display: inline-block;
}
@media (min-width:768px){
    .courses-box .courses-box-text{
        padding: 15px 50px;
    }
    .courses-sec{
        background:#14052F url(https://cdn.oppyotest.com/launches/teachwiseai/special/courses-sec-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .courses-sec-text{
        padding: 10px 30px;
        padding-right: 80px;
        position: relative;
    }
    .courses-sec-text::after{
        position: absolute;
        content: url(https://cdn.oppyotest.com/launches/teachwiseai/special/thanking-emoji.webp);
        top: -20px;
        right: -40px;
    }
}
/* courses-sec end */


/*freelancer sec start */
.freelancer-sec{
    background: #EDECFF;
}
.confuse-text{
    display: inline-block;
    position: relative;
    padding: 10px;
    background: #8A5BFF26;
    border: 1px solid #8A5BFF;
    border-radius: 10px;
}
.freelancer-text{
    background: rgb(9 20 50);
    border: 5px solid #2F60FF;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

.freelancer-box{
    padding: 15px;
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/freelancer-box-text.webp) no-repeat;
    background-size: 100% 100%;
    margin-top: -20px;
    margin-left: 5;
    margin-right: 5;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .freelancer-box{
        margin-left: 25px;
        margin-right: 25px;
        padding: 15px 35px;
    }
    .freelancer-sec{
        background: #EDECFF url("https://cdn.oppyotest.com/launches/teachwiseai/special/freelancer-bg.webp") no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/freelancer-frame.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 45px 30px;
    }
    .confuse-text{
        padding: 20px 30px;
        padding-right: 55px;
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/confuse-bg.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
    }
    .confuse-text::after{
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/confuse-emoji.webp");
        position: absolute;
        top: 50%;
        right: -50px;
        transform: translateY(-50%);
    }
}
/* freelancer  sec end */

/* choice sec start */
.choice-sec{
    background: #ffffff;
}
.choicebox-1{
    background: #FF5E4A;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    height: 100%;
}
.choicebox-2{
    background: #3CB006;
    padding: 20px;
    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) {
    .choice-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/teachwiseai/special/choice-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .green-line{
        position: relative;
    }
    .green-line::after{
        position: absolute;
        content: url(https://cdn.oppyotest.com/launches/teachwiseai/special/green-line.webp);
        bottom: 0px;
        left: -5px;
    }
    .choicebox-1{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/choicebox-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 30px 94px;
        box-shadow: none;
        /* transform-origin: top; */
        /* scale: 0.9; */
    }
    .choicebox-2{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/choicebox-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 30px 94px;
        box-shadow: none;
    }
}
/* choice sec end */

/* warning section start */
.warning-section{
    background: #fff;
}
.warning-card{
    background: #fff;
    border: 5px dotted #FF361D;
    border-radius: 20px;
    padding: 0px 10px 30px;
}
.warning-shape{
    background: #FF361D;
    border-radius: 41px;
    padding: 0px 28px 8px;
    display: inline-block;
    margin-top: -20px;
}
@media (min-width: 768px) {
    .warning-section{
        background: #fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/warning-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .warning-card{
        padding: 0px 50px 50px;
        position: relative;
    }
    .warning-shape{
        margin-top: -40px;
    }
}
/* warning section end */

/* trillion sec start */
.trillion-sec{
    background: #edecff;
}
.trillion-text{
    background: #8A5BFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.trillion-text-1{
    background: #066CF1;
    border-radius: 5px;
    padding: 5px;
}
.trillion-text-2{
    color: #066CF1;
}
@media (min-width: 768px){
    .trillion-sec{
        background: #edecff url(https://cdn.oppyotest.com/launches/teachwiseai/special/trillion-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .trillion-text{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/trillion-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 7px 35px 8px 34px;
    }
    .trillion-text-1{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/trillion-blue-shade.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 5px 20px;
    }
    .trillion-text-2{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/trillion-blue-shade-1.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        color: #fff;
        padding: 5px 15px;
    }
}
/* trillion sec end */

/* marketer sec start */
.marketer-sec{
    background: #fff;
}
.marketer-text{
    background: #46C10B;
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
.marketer-box{
    background: #E6DEFF;
    border: 1px solid #8A5BFF;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px){
    .marketer-sec{
        background:#fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/marketer-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .marketer-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/marketer-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 0px 25px;
    }
    .marketer-box{
        padding: 20px 79px 20px 39px;
        position: relative;
    }
    .marketer-box::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/rocket-icon-2.webp");
        top: 30px;
        right: 12px;
    }
}
/* marketer sec end */

/* Entrepreneurs sec start */
.Entrepreneurs-sec{
    background: #fff;
}
.Entrepreneurs-text{
    background: #FFFFFF;
    border: 1px solid #8A5BFF;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px){
    .Entrepreneurs-sec{
        background:#fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/Entrepreneurs-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .Entrepreneurs-text{
        padding: 11px 30px 11px 34px;
        border-radius: 100px;
    }
}
/* Entrepreneurs sec end */

/* money-sec start */
.money-sec{
    background:#fff;
}
.money-text{
    background: #8a5bff;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
@media (min-width: 768px){
    .money-sec{
        background:#fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/money-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .money-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/money-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 13px 42px 13px 76px;
        position: relative;
    }
    .money-text::before {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/up-icon.webp");
        top: -25px;
        left: -48px;
    }
}
/* money-sec end */

/* expensive-section start */
.expensive-section{
    background: #ffe8e9;
}
.expensive-h{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/red-frame-3.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px;
    display: inline-block;
}
.expensive-box{
    background: #FFFFFF;
    border: 1px solid #FF361D;
    border-radius: 20px;
    padding: 10px;
}

@media(min-width:768px){
    .expensive-section{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/expensive-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 140px 0px 100px;
    }
    .expensive-h{
        position: relative;
        padding: 14px 50px 16px 30px;
        display: inline-block;
    }
    .expensive-h::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/thanking-emoji.webp");
        top: -20px;
        right: -60px;
    }
    .expensive-box{
        padding: 30px 20px 20px;
    }
}
/* expensive-section end */

/* scary sec start */
.scary-sec{
    background: rgba(138, 91, 255, 0.2);
}
.blue-brush{
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/blue-brush.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}
.scary-box{
    background: #FFFFFF;
    border: 1px solid rgba(255, 44, 44, 0.5);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    padding: 20px 14px 20px 15px;
}

@media(min-width:768px){
    .blue-brush{
        padding: 10px 41px 10px 141px;
        position: relative;
    }
    .blue-brush::before{
        content: url(https://cdn.oppyotest.com/launches/teachwiseai/special/star-face-emoji.webp);
        position: absolute;
        top: -12px;
        left: 30px;
    }
}
/* scary sec end */

/* coach-sec start */
.coach-sec{
    background: #fcf0e4;
}
.coach-h{
    background: #8A5BFF;
    border-radius: 10px;
    padding: 10px;
}
@media(min-width:768px){
    .coach-sec{
        background: #fcf0e4 url(https://cdn.oppyotest.com/launches/teachwiseai/special/coach-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .coach-h{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/coach-h.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        border-radius: 0px;
        padding: 5px 40px;
    }
}
/* coach-sec end */

/* presenting-sec start */
.presenting-sec{
    background: #0c0117;
}
.prudly-text{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/presenting-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 9px 59px 17px;
}
@media (min-width: 768px) {
    .presenting-sec{
        background: #efeafe url("https://cdn.oppyotest.com/launches/teachwiseai/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 230px;
    }
}
/* presenting-sec end */

/* step-2 sec start */
.step-section-2 {
    background: #efeafe;
}
.step-1 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/step-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 6px 21px 12px 21px;
    display: inline-block;
    margin-top: -26px;
}
.step-card-11 {
    border-radius: 30px 0px 30px 30px;
    border: 1px solid #8A5BFF;
    background: #fff;
    padding: 20px 10px;
}
.video-frame {
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 9px 54px 40px 57px;
}
@media (min-width: 768px) {
    .step-section-2 {
        background: #efeafe url("https://cdn.oppyotest.com/launches/teachwiseai/special/step-section-2.webp") no-repeat center center;
        background-size: cover;
    }
    .step-1 {
        padding: 6px 20px 12px 23px;
        margin-top: -7px;
    }
    .step-card-11 {
        padding: 0 30px 30px;
    }
    .video-frame {
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 18px 110px 79px 112px;
    }
}
/* step-2 sec end */
 
/* demo-sec start */
.demo-sec{
    background: #edecff;
    padding: 30px 0px;
}
/* .border-frame{
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/border-frame.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px;
} */
@media (min-width: 768px) {
    .demo-sec{
        background: #edecff url("https://cdn.oppyotest.com/launches/teachwiseai/special/demo-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 100px 0px;
    }
    /* .border-frame{
        padding: 75px 100px;
    } */
    .cta-text-1{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/cta-frame-1.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
}
/* demo-sec end */

/* testimonial-sec .testimonial-sec-style-2 start */
.testimonial-sec.testimonial-sec-style-2{
    background: #fff;
}
.testimonial-sec.testimonial-sec-style-2 .testimonial-text {
    background: #fff;
    border: 1px solid #8A5BFF;
    border-radius: 20px;
    display: inline-block;
    padding: 15px 10px;
}
.testimonial-sec.testimonial-sec-style-2 .testimonial-card{
    background: #EDECFF;
    border: 2px solid #8A5BFF4D;
    display: inline-block;
    border-radius: 10px;
    padding: 20px 15px;
}
@media (min-width: 768px) {
    .testimonial-sec.testimonial-sec-style-2{
        background:  url("https://cdn.oppyotest.com/launches/teachwiseai/special/testimonial-bg-2.webp") no-repeat bottom center;
        background-size: cover;
    }
    .testimonial-sec.testimonial-sec-style-2 .testimonial-text {
        padding: 15px 55px;
        position: relative;
    }
    .testimonial-sec.testimonial-sec-style-2 .testimonial-card{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/testimonial-card-2.webp") no-repeat;
        padding: 30px;
        border: unset;
        border-radius: 0px;
        background-size: 100% 100%;
    }
}
/* testimonial-sec .testimonial-sec-style-2 end */

/* option-sec start */
.option-sec{
    background: #e9e6f7;
}
.option {
    padding: 8px 30px;
    border-radius: 40px;
    display: inline-block;
    box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.2);
}
.option-sec-head {
    padding: 10px;
    border-radius: 20px;
    border: 3px solid #8A5BFF;
    background: #FFFFFF;
}
.option-sec-text{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/option-sec-text.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 15px;
    color: var(--white-clr);
}
@media (min-width: 768px) {
    .option-sec{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/option-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .option-sec-head {
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/option-sec-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 58px 87px;
        border-radius: 0px;
        border: none;
    }
    .green-wave{
        position: relative;
    }
    .green-wave::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/green-wave-3.webp") no-repeat;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 8px;
    }
}
/* option-sec end */




/* features section start */
.features-section{
    background: #000705;
}
.feature-card2{
    border-radius: 20px;
    /* border: 2px solid #009AFA; */
    background: linear-gradient(90deg, #5F1EFF -0.95%, #D865FF 100.82%);
    padding: 20px;
    height:100%;
}
.feature-card1{
    border-radius: 20px;
    /* border: 2px solid #009AFA; */
    background: transparent;
    padding: 20px;
    position: relative;
    height: 100%;
}
.feature-card1:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: #8A5BFF;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.awesome-box {
    border-radius: 15px;
    border: 1px solid #8A5BFF;
    background: #8A5BFF26;
    /* box-shadow: 0px 0px 30px 0px rgba(49, 227, 190, 0.30) inset; */
    padding: 20px 10px;
}
@media (min-width: 768px){
    .features-section{
        background: #000705  url(https://cdn.oppyotest.com/launches/teachwiseai/special/features-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .feature-card1,.feature-card2{
        padding: 50px;
    }
    .awesome-box {
        padding: 30px;
    }
 
}
/* features section end */

/* robot-sec start */
.robot-sec{
    background: #fff;
}
.robot-text-1{
    border-radius: 10px;
    color: var(--purple-clr);
    display: inline-block;
}
.robot-text-2{
    border-radius: 10px;
    color: var(--purple-clr);
    display: inline-block;
}
.incom-box{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/robot-card-bg.webp") no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 15px;
    padding-bottom: 50px;
}
@media (min-width: 768px) {
    .incom-box{
        padding: 20px;
        padding-bottom: 50px;
    }
    .robot-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/teachwiseai/special/robot-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .robot-text-1{
        color: var(--white-clr);
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/robot-text-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 15px;
    }
    .robot-text-2{
        color: var(--white-clr);
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/robot-text-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 15px;
        margin: 10px 0;
    }
}
/* robot-sec end */

/* crazy sec start */
.crazy-sec{
    background: #edecff;
}
.crazy-text{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/crazy-text.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 20px;
    position: relative;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: #edecff url("https://cdn.oppyotest.com/launches/teachwiseai/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/teachwiseai/special/cool-1.webp);
        position: absolute;
        top: -15px;
        right: -40px;
    }
    .red-wave-2{
        position: relative;
    }
    .red-wave-2::after {
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/blue-border.webp");
        content: "";
        position: absolute;
        height: 8px;
        width: 100%;
        bottom: 0px;
        right: 0px;
    }

}
/* crazy sec end */

/* owner-sec start */
.owner-sec{
    background: #fff;
}
.red-frame-1{
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/red-frame-1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 20px;
}

@media (min-width: 768px){
    .owner-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/owner-bg.webp) no-repeat center center;
        background-attachment: fixed;
        background-size: cover;
    }
    
}
/* owner-sec end */

/* your-choice-sec start */
.your-choice-sec{
    background: #efecff;
}
.your-choice-text{
    background: #ff371d;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.compare-box-1{
    padding: 24px 125px 24px 30px;
    border-top: 3px solid rgba(153, 88, 204, 0.5);
    border-left: 3px solid rgba(153, 88, 204, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px 0px 0px 0px;
    background: #ffffff;
}
.compare-list-1 li{
    list-style: none;
    text-align: left;
    padding: 15px 30px;
    border-left: 3px solid rgba(153, 88, 204, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #ffffff;
}
.compare-list-1 li:nth-child(6),
.compare-list-1 li:nth-child(7),
.compare-list-1 li:nth-child(9),
.compare-list-1 li:nth-child(10),
.compare-list-1 li:nth-child(11){
    padding: 28px 30px;
}
.compare-list-1 li:last-child{
    border-bottom: 3px solid rgba(153, 88, 204, 0.5);
    border-radius: 0px 0px 0px 20px;
}
.compare-box-2{
    padding: 45px;
    border-top: 3px solid #FF2C2C;
    border-left: 3px solid #FF2C2C;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFEAEA;
    border-radius: 20px 0px 0px 0px;
    margin-top: -42px;
}
.compare-list-2 li {
    list-style: none;
    text-align: left;
    padding: 28px 30px 28px 73px;
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/unlike-icon.webp") no-repeat;
    background-position: 23px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 3px solid #FF2C2C;
    background-color: #FFEAEA;
}
/* .compare-list-1 li:nth-child(1){
 
} */
.compare-list-2 li:last-child{
    border-bottom: 3px solid #FF2C2C;
    background-image: none;
    padding-top: 45px;
    border-radius: 0px 0px 0px 20px;
}
.compare-box-3 {
    padding: 45px 55px 45px 55px;
    background: #F5FFF7;
    border: 3px solid #53C237;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0px 0px;
    margin-top: -71px;
}
.compare-list-3 li{
    list-style: none;
    text-align: left;
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/like-icon.webp") no-repeat;
    background-position: 23px 25px;
    padding: 28px 30px 28px 73px;
    border-left: 3px solid #53C237;
    border-right: 3px solid #53C237;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #F5FFF7;
   
}
.compare-list-3 li:last-child{
    border-radius: 0px 0px 20px 20px;
    border-bottom: 3px solid #53C237;
    background-image: none ;
    padding-top: 93px;
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
        /* padding: 0px 15px; */
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }
}
@media (min-width: 768px) {
    .your-choice-sec{
        background:#efecff url("https://cdn.oppyotest.com/launches/teachwiseai/special/your-choice-sec-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding-bottom: 180px;
    }
    .your-choice-text{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/your-choice-text.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 10px 40px;
    }
    .px-md-14{
        padding-left: 14px;
        padding-right: 14px;
    }
    .mt-md165{
        margin-top: 165px !important;
    }
    /* .compare-section{
        background:#ffffff url(https://cdn.oppyotest.com/launches/teachwiseai/special/compare-bg.webp) no-repeat center center;
        background-size: cover;
    } */
}
/* your-choice-sec end */

/* stress-free-sec start */
.stress-free-sec{
    background: #dffafe;
}
.stress-free-head{
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--purple-clr);
}
.stress-free-head2{
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 10px;
    background:var(--green-clr1);
}
@media (min-width: 768px) {
    .stress-free-sec{
        background: #dffafe url("https://cdn.oppyotest.com/launches/teachwiseai/special/stress-free-sec-bg.webp") no-repeat top center;
        background-size: cover;
        padding-top: 150px;
    }
    .purple-line{
        position: relative;
    }
    .purple-line::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/purple-line.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
    .stress-free-head{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/stress-free-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 38px;
        border-radius: 0;
        border: unset;
    }
    .stress-free-head::after {
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/smart-emoji.webp");
        position: absolute;
        top: 5px;
        right: -20px;
    }
    .stress-free-head2{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/stress-free-head2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 118px 20px 50px;
    }
    .stress-free-head2::after {
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/thinking-emoji.webp");
        position: absolute;
        top: -8px;
        right: 20px;
    }
}
/* stress-free-sec end */

/* fear sec start */
.fear-sec{
    background: #ffffff;
}
.fair-text {
    border: 2px solid #FF361D;
    background: rgba(255, 54, 29, 0.1);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.theme-brush {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/theme-brush.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/teachwiseai/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .theme-brush {
        padding: 1px 30px;
    }
}
/* fear sec end */

/* bonusess-sec start */
.bonusess-sec{
    background: #24013f;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/teachwiseai/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 50px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #ffffff;
}
.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: #1d072c;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #1d072c url("https://cdn.oppyotest.com/launches/teachwiseai/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* moneyback sec end */

/* out sec start */
.clr-3{
    color: #00ABF1;
}
.out-sec{
    background: #edecff;
}
.out-text {
    border: 2px solid #FF462F;
    background: rgba(255, 54, 29, 0.1);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
@media (min-width:768px) {
    .out-sec{
        background:#edecff url(https://cdn.oppyotest.com/launches/teachwiseai/special/out-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .out-text{
        background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/out-frame.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        border-radius: 0px;
        border: unset;
        padding: 11px 40px;
    }
    .out-border-1{
        position: relative;
    }
    .out-border-1::before{
        content: url(https://cdn.oppyotest.com/launches/teachwiseai/special/out-border-1.webp);
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
    
}
/* out sec end */ 

/* ticking sec start */
.ticking-sec{
    background: #fff;
}

@media (min-width:768px) {
    .ticking-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/teachwiseai/special/ticking-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* ticking sec end */


















































/* outclass sec start */
.feature-table-sec{
    background: #ffffff;
}

/* compare section start */
.compare-card1{
    border-radius: 20px 0px 0px 20px;
    border-top: 5px solid #6E4805;
    border-bottom: 5px solid #6E4805;
    border-left: 5px solid #6E4805;
    background: #FFF;
    /* height: 100%; */
}
.compare-head {
    border-radius: 20px 0px 0px 0px;
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    padding: 21px 40px;
}
.compare-head4{
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    padding: 28px 20px;
}
.compare-list li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 10px 12px;
    list-style: none;
}
.gradient-border{
    border-radius: 20px;
    /* border: double 2px transparent;
    background-image: linear-gradient(#ffffff, #ffffff), var(--theme-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box; */
    border: 3px solid #FFAA33;
    box-shadow: 0px 0px 20px 1px rgba(5, 184, 233, 0.25);
    margin-top: -88px;
}

.compare-card2{
    border-radius: 20px;
}
.compare-head2{
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF7DF;
    padding: 15px 18px;
    border-radius: 20px 20px 0px 0px;
}
.compare-list2 li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF7DF;
    padding: 24px 20px;
    list-style: none;
    position: relative;
}
.compare-list2 li:nth-child(2) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(3) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(4) {
    padding: 52px 20px !important;
}
.compare-list2 li:nth-child(6) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(8) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(10) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(11) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(14) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(16) {
    padding: 52px 20px !important;
}
.compare-list2 li:nth-child(19) {
    padding: 10px 20px !important;
}
.compare-list2 li:nth-child(21) {
    padding: 38px 20px !important;
}
.compare-list2 li:nth-child(22) {
    padding: 10px 20px !important;
}
.compare-card3{
    border-top: 5px solid #6E4805;
    border-bottom: 5px solid #6E4805;
    border-right: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    /* height: 100%; */
}
.compare-list3 li:nth-child(2) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(3) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(4) {
    padding: 52px 20px !important;
}
.compare-list3 li:nth-child(6) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(8) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(10) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(11) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(14) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(16) {
    padding: 52px 20px !important;
}
.compare-list3 li:nth-child(19) {
    padding: 10px 20px !important;
}
.compare-list3 li:nth-child(21) {
    padding: 38px 20px !important;
}
.compare-list3 li:nth-child(22) {
    padding: 10px 20px !important;
}
.compare-head3{
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    padding: 26px 20px 27px;
}
.compare-head5{
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    padding: 23px 20px;
    border-radius: 0px 20px 0px 0px;
}
.compare-list3 li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 24px 20px;
    list-style: none;
}
.compare-head6{
    border-bottom: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
    padding: 23px 20px;
}
.compare-card4{
    border-top: 5px solid #6E4805;
    border-bottom: 5px solid #6E4805;
    border-right: 1px solid rgba(25, 25, 25, 0.2);
    background: #FFF;
}
.compare-card5 {
    border-radius: 0px 20px 20px 0px;
    border-top: 5px solid #6E4805;
    border-bottom: 5px solid #6E4805;
    border-right: 5px solid #6E4805;
    background: #FFF;
    /* height: 100%; */
}
/* .compare-list3 li:nth-child(8),.compare-list3 li:nth-child(9) {
    padding: 13.3px 27px;
} */
.compare-card4 .compare-list li:nth-child(10) {
    padding: 24.5px 27px;
}
.compare-bottom{
    background: rgba(255, 54, 29, 0.15);
    padding: 15px 20px;
    border-radius: 0 0 0 15px;
}
.compare-bottom1{
    background: #FFAA33;
    padding: 20px 16px 17px;
    border-radius: 0 0 17px 17px;
}
.compare-bottom2{
    background: rgba(255, 54, 29, 0.15);
    padding: 30px 20px;
    /* border-radius: 0 0 17px 17px; */
}
.compare-bottom3{
    background: rgba(255, 54, 29, 0.15);
    padding: 30px 20px;
    border-radius: 0 0 15px 0px;
}
.compare-hr{border: 1px solid #000000;}
@media (min-width:768px) {
    .mt-md160{
        margin-top: 160px !important;
    }
}
/* comapre section end */


.yellow-shade{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/yellow-shade.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 30px;
}
.blue-shade{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/blue-shade.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 30px;
}
.pink-shade{
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/pink-shade.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 30px;
}
.cream-frame {
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/cream-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px 10px 8px;
}
@media (min-width:768px) {
    .feature-table-sec{
        background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/feature-table-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .cream-frame{
        padding: 25px 30px 15px;
    }
}

@media (max-width:1124px) {
    .table-1{
        overflow-x: scroll;
        padding: 0px 15px;
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }

}
/* feature-table sec end */

/* faq sec start */
.faq-section {
    padding: 30px 0px;
    background: #efeafe;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/faq-icon.webp) no-repeat top left;
    background-color: #ffffff;
    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: #ffffff;
    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;
}
.faster-text {
    background: url("https://cdn.oppyotest.com/launches/teachwiseai/special/demo-sec-text.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 15px;
}
@media (min-width: 768px){
    .cta-section-white {
        background: #ffffff url(https://cdn.oppyotest.com/launches/teachwiseai/special/fair-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 80px 0px;
    }
    .final-shape {
        padding: 15px 40px;
        border-radius: 100px;
    }
}
/* final-call end */

/* pricing tabel start */
.pricing-section {
    background: #ffffff;
}
.table-wrap {
    background: #ffffff;
    width: 100%;
    float: left;
    border-radius: 30px;
    /* border: solid 1px #cacaca; */
    overflow: hidden;
    box-shadow: 0px 0px 22px 0px rgb(0 0 0 / 20%);
    padding-bottom: 30px;
}
.table-head {
    background: url("../../common_assets/images/table-frame.webp") no-repeat bottom center;
    /* background: var(--theme-gradient1); */
    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: 250px;
}
/* .table-list li:nth-child(odd) {
    background-color: #F6EFFF !important;
} */
.table-list li {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 18px 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 14px;
    font-size: 22px;
    line-height: 160%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
    /* 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: 95%;
    margin: 0 auto;
    height: auto;
    overflow: auto;
    padding-bottom: 10px;
}
.tb-check {
    background: #FEFE9B;
    padding: 18px 18px 18px 10px;
}
.table-img{
    margin-top: -190px;
    
}
.table-img img{
    width: 60%;
}
@media (min-width: 768px) {
    .pricing-section {
        background: #ffffff url("../../common_assets/images/bgimages/pricing-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }

    .table-wrap {
        padding-bottom: 100px;
        border: 0px solid #ffffff33;
    }
    .table-head {
        padding: 60px 30px 20px 30px;
        text-align: center;
        min-height: 550px;
    }
    .table-list li {
        padding: 20px 96px 0px 133px;
        background-position: 97px 25px;
    }
    a.cta-link-btn {
        font-size: 37px;
        padding: 20px 80px;
        display: inline-block;
    }
    .table-border-content {
        max-width: 75%;
    }
    .f-md-80 {
        font-size: 80px;
    }
    .f-md-55 {
        font-size: 55px;
    }
    .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 */

/* 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;
}
@media (min-width: 768px){
    .bxslider li {
        justify-content: center;
        min-width: 100%;
        float: left !important;
        width: auto !important;
    }
}
/* slider up end */




/* compitition-sec start */
.compitition-sec{
    background: #ffffff;
}
.compitition-text{
   background: #FF462F;
   border-radius: 10px;
   display: inline-block;
   padding: 10px;
}
.competition-frame1 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/competition-frame1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 43px 30px 46px 29px;
    /* min-height: 518px; */
}
.competition-frame2 {
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/competition-frame2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 12px 20px;
}
.incredible-text{
    background: url(https://cdn.oppyotest.com/launches/teachwiseai/special/incredible-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding:20px;
}
@media (min-width:768px){
    .compitition-sec{
        background: #fff url("../../common_assets/images/bgimages/competition-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .competition-frame2 {
        padding: 27px 42px 29px 42px;
    }
    .compitition-text{
        border-radius: 100px;
        padding: 11px 50px;
    }
    .incredible-text{
        padding: 13px 91px 14px 40px;
        position: relative;
    }
    .incredible-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/teachwiseai/special/wow-emoji.webp");
        right: -35px;
        top: -8px;
    }
}
/* compitition-sec end */