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(268.92deg, #29E7AB 8.72%, #1189DF 78.41%);
  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: #01010199;
    --purple-clr: #9347FF;
    --red-clr:#FF3E33;

    --blue-clr: #1189DF;
    --blue-clr1:#00A9A7;
    --blue-clr2: #0363D8;
    --blue-clr3:#0D87E7;
    
    --green-clr:#21AF21;
    --green-clr1:#14A9A7;
    --green-clr1:#29E7AB;
    --green-clr2:#00A773;
    --green-clr3:#45B03C;
    --green-clr4:#22BE8D;
    --orange-clr: #F78A0C;


    --red-clr1:#FF462F;
    --red-clr2:#FF3428;
    --red-clr3:#FF361D;
    --red-clr4:#FF2C2C;
    --red-clr5:#FF5E4A;
    --orange-clr-1: #FF8000;
    --orange-clr1: #FFAA33;
    --neon-clr: #31E3BE;
    --grey-clr:#555555;
    
    --yellow-clr: #FFFF48;
    --yellow-clr1: #FFCB34;
    --theme-gradient: linear-gradient(268.92deg, #29E7AB 8.72%, #1189DF 78.41%);
    --theme-gradient1: linear-gradient(268.92deg, #1189DF 8.72%, #29E7AB 78.41%);
    --theme-gradient2: linear-gradient(90deg, #102F5A 0%, #201656 100%);
    --theme-gradient3: linear-gradient(270deg, rgba(183, 228, 253, 0.5) 0%, rgba(188, 254, 228, 0.5) 100%);
    --theme-gradient4: linear-gradient(268.92deg, rgba(41, 231, 171, 0.5) 8.72%, rgba(17, 137, 223, 0.5) 78.41%);


}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{
    color: var(--light-grey);
}
.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);}
.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.blue-clr2{color:var(--blue-clr2);}
.blue-clr3{color:var(--blue-clr3);}
.grey-clr{color:var(--grey-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.green-clr3{color:var(--green-clr3)}
.green-clr4{color:var(--green-clr4)}
.theme-clr{
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* hehading color start  */
.clr-h1{
    color: #FD86E8;
}
.clr-h2{
    color: #FE9375;
}
.clr-h3{
    color: #32FFE5;
}
.clr-h4{
    color: #FD4845;
}
.clr-h5{
    color: #FFFF48;
}
.clr-h6{
    color: #5982FA;
}
/* 08-01-2025 */
.clr-11{
    color: #298be0;
}
.clr-22{
    color: #f64286;
}
.clr-33{
    color: #494df9;
}
/* hehading color end  */


/* 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: 18px;
    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;
}

/* 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 */

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 33px;
    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: linear-gradient(221.48deg, #FFFFFF 26.73%, #C9FFE6 81.5%, #1390DC 151.5%);
    padding: 30px 0px;
}
.main-heading {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #19C4A0;
    background: var(--theme-gradient3);
}
.header-ul{
    padding: 0px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}

.post-heading{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
}
.black-shape{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/black-shape.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 15px;
}
.blue-frame-2{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/blue-frame-2.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 10px;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.red-frame{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.Exclusive-text{
    background: var(--theme-gradient3);
    border: 1px dashed #19C4A0;
    border-radius: 10px;
    padding: 10px;
}
/* .gradiant-frame-1{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/gradiant-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    background: var(--theme-gradient);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
} */
.typing-text {
    background: var(--theme-gradient);
    display: inline-block;
    /* padding: 5px 10px; */
    border-radius: 10px;
    width: 100%;
}
@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .main-heading {
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 100px;
        border-radius: 0px;
        border: unset;
    }
    /* .gradiant-frame-1{
        padding: 0px 25px;
    } */
    .typing-text {
        padding: 4px 30px 0px;
        /* width: 540px; */
        width: 688px;
    }
    /* .blue-wave{
        position: relative;
    }
    .blue-wave::before {
        content: "";
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/blue-wave.webp") no-repeat;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8px;
    } */
    .red-wave{
        position: relative;
    }
    .red-wave::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/red-wave.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
    .theme-btn {
        padding: 20px 125px;
    }

    .wave-line{
        position: relative;
    }
    .wave-line::after{
        content: url("https://cdn.oppyotest.com/launches/talkingbooks/special/neon-wave.webp");
        position: absolute;
        bottom: -5px;
        left: -5px;
    }
    .post-heading{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/post-head-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 3px 20px;
    }
    .black-shape{
        padding: 15px 30px;
    }
    .blue-frame-2{
        padding: 2px 20px;
    }
    .Exclusive-text{
        padding: 20px 30px;
    }

}
/* header section end */

/* stop-sec-1 start */
.stop-sec-1{
    background: #fff;
}
@media(min-width:768px){
    .stop-sec-1{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/stop-sec-1-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* stop-sec-1 end */


/* step-2 sec start */
.step-section-1 {
    /* background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 43%, #A9C7FF 100%); */
    background: #fff;
}
.step-section-2 {
    background: linear-gradient(180deg, #FFFFFF 0%, #E1FFF1 43%, #A9C7FF 100%);
}
.steps-frame {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/steps-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 6px 21px 12px 21px;
    display: inline-block;
    margin-top: -26px;
}
.step-card-1 {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/step-card-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
}
.step-card-2 {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/step-card-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
}
.video-frame {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 9px 54px 40px 57px;
}
.video-frame-2 {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/video-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 9px 54px 40px 57px;
}
.step-frame{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/step-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 10px;
}
.green-wave{
    position: relative;
}
.green-wave::before{
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-wave.webp") no-repeat;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
}
.mt-md-70{
    margin-top: -40px !important;
}
.step-card-11 {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/step-card-11.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px 30px;
    height: 100%;
    min-height: 410px;
}
.step-card-22 {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/step-card-22.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px 30px;
    height: 100%;
    min-height: 410px;
}
.step-card-33 {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/step-card-33.webp) no-repeat;
    background-size: 100% 100%;
    padding: 20px 30px;
    height: 100%;
    min-height: 410px;
}
@media (min-width: 768px) {
    /* .step-section-1 {
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/step-section-1-bg.webp") no-repeat center center;
        background-size: cover;
    } */
    .step-section-2 {
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/step-section-2-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .steps-frame {
        padding: 6px 20px 12px 23px;
        margin-top: -7px;
    }
    .step-card-1 {
        padding: 0px 135px 25px 50px;
    }
    .step-card-2 {
        padding: 0px 50px 25px 120px;
    }
    .step-card-11 {
        padding: 0px 20px 90px;
        min-height: 465px;
    }
    .step-card-22 {
        padding: 0px 20px 105px;
        min-height: 465px;
    }
    .step-card-33 {
        padding: 0px 20px 105px;
        min-height: 465px;
    }
    .video-frame {
        padding: 18px 110px 79px 112px;
        margin-left: -150px;
    }
    .video-frame-2 {
        padding: 18px 110px 79px 112px;
        margin-right: -116px;
        position: relative;
        z-index: 9;
    }
    .step-frame{
        padding: 6px 30px 4px 30px;
    }
    .f-md-54 {
        font-size: 54px;
    }
}
/* step-2 sec end */

/* cta btn section start */
.cta-section {
    background: #071a18;
}

@media (min-width: 768px) {
    .cta-section {
        background: #071a18 url(https://cdn.oppyotest.com/launches/talkingbooks/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .cta-text{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/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: #FF3E33;
}
/* limited time section end */

/* compitition-sec start */
.compitition-sec{
    background: #ffffff;
}
.compitition-text{
   background: #FF361D;
   border-radius: 10px;
   display: inline-block;
   padding: 10px;
}
.competition-frame1 {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/competition-frame1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 45px 25px 25px;
    /* min-height: 518px; */
}
.competition-frame2 {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/competition-frame2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 12px 20px;
}
.incredible-text{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/incredible-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding:20px;
}
@media (min-width:768px){
    .compitition-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/competition-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .competition-frame2 {
        padding: 45px 25px 25px;
    }
    .compitition-text{
        border-radius: 100px;
        padding: 10px 60px;
    }
    .incredible-text{
        padding: 10px 30px 10px 147px;
        position: relative;
    }
    .incredible-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/talkingbooks/special/star-emoji.webp");
        left: 30px;
        top: -8px;
    }
}
/* compitition-sec end */

/* profit-sec start */
.profit-sec{
    background: #00130d;
}
.profit-text{
    background: #FFFFFF1A;
    backdrop-filter: blur(50px);
    border: 2px solid #00A9A7;
    border-radius: 10px;
    display: inline-block;
    padding: 20px 10px;
}
.profit-text-2{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/cream-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 30px 10px;
}
.profit-text-3{
    background: var(--theme-gradient);
    /* border: 2px solid #0D87E7; */
    display: inline-block;
    border-radius: 10px;
    padding: 10px 20px;
}

@media (min-width:768px) {
    .profit-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/profit-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 160px;
    }
    .profit-text{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/profit-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 28px 37px;
        border: unset;
        border-radius:  0px;
    }
    .profit-text-2 {
        padding: 23px 42px 15px 42px;
    }
    .profit-text-3{
        padding: 10px 20px;
    }
}
/* profit-sec end */

/* globally-sec start */
.globally-sec{
    background: #fff;
}
.globally-blue-box{
    background: #1189DF1A;
    border: 1px solid #1189DF;
    border-radius: 10px;
    padding: 10px 20px;
}
.globally-orange-box{
    background: #00A9A71A;
    border: 1px solid #29E7AC;
    border-radius: 10px;
    padding: 10px 20px;
}
.red-brush{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/red-brush.webp") no-repeat;
    background-size: 100% 100%;
    padding: 5px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .green-wave-3{
        position: relative;
    }
    .green-wave-3::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-wave-3.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
    .green-wave-4{
        position: relative;
    }
    .green-wave-4::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-wave-4.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
}
/* globally-sec end */


/* stop-sec start */
.clr-1{
    color: #FF9500;
}
.stop-sec{
    background: #ffffff;
}
.stop-frame{
    background: #00A9A7;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}
.stop-frame-1{
    background: #00A9A7;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}
.video-frame-1 {
    /* border: 8px solid rgba(255, 170, 51, 0.5); */
    border-radius: 20px;
    border: double 8px transparent;
    background-image: linear-gradient(#fff, #fff), var(--theme-gradient4);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.video-frame-1 video{
    border-radius: 10px;
}
.theme-frame-1 {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/theme-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 10px;
}
@media (min-width:768px) {
    .stop-sec{
        background:#ffffff url(https://cdn.oppyotest.com/launches/talkingbooks/special/stop-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .stop-frame{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/stop-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0;
        border: unset;
        padding: 5px 30px;
    }
    .stop-frame-1{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/stop-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0;
        border: unset;
        padding: 15px 25px;
    }
    .orange-border{
        position: relative;
    }
    .orange-border::before{
        content: url(https://cdn.oppyotest.com/launches/talkingbooks/special/orange-border.webp);
        position: absolute;
        left: 0px;
        bottom: 0px;
    }
    .green-border{
        position: relative;
    }
    .green-border::before{
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-border.webp") no-repeat;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    }
    .green-border-1{
        position: relative;
    }
    .green-border-1::before{
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-border-1.webp") no-repeat;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    }
    .theme-frame-1 {
        padding: 4px 30px;
    }
    .f-md-58{
        font-size: 58px;
    }
}
/* stop-sec end */

/* slider-sec start */
.slider-sec{
    background: linear-gradient(180deg, #002F5A 8.18%, #0D3925 71.74%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.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 30s linear infinite;
    width: 250%;
}
.slider-text{
    background: #00A9A7;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}
@keyframes slider-image-running {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
@media (min-width:768px) {
    .slider-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/talkingbooks/special/slider-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .slider-text{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/slider-text.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0;
        border: unset;
        padding: 10px 25px;
    }
}
/* slider-sec end */


/* industry-sec start */
.industry-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 43%, #A9C7FF 100%);
}
.digital-text{
    background: linear-gradient(270deg, rgba(183, 228, 253, 0.5) 0%, rgba(188, 254, 228, 0.5) 100%);
    backdrop-filter: blur(50px);
    border: 2px solid #00A9A7;
    border-radius: 10px;
    display: inline-block;
    padding: 20px 10px;
}

@media (min-width:768px) {
    .industry-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/industry-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .industry-text{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/industry-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 25px 64px;
        border: unset;
        border-radius: 0px;
    }
}
/* profit-sec end */

/* digital-sec start */
.digital-sec{
    background: #fff;
}
.digital-sec video{
    border-radius: 5px;
}
.digital-frame{
    background: #00A9A7;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}
.pd-box{
    padding: 10px;
    height: 100%;
    border-radius: 20px;
}
.ind-box1{
    background: #FFF5E6;
    border: 1px solid rgba(255, 149, 0, 0.5);
}
.ind-box2{
    background: #E7F3FD;
    border: 1px solid rgba(13, 135, 231, 0.5);
}
.ind-box3{
    background: #FEF0EF;
    border: 1px solid rgba(242, 97, 89, 0.5);
}
.ind-box4{
    background: #FBEFFF ;
    border: 1px solid rgba(208, 90, 255, 0.5);
}
@media (min-width:768px) {
    .digital-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/talkingbooks/special/digital-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .digital-frame{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/stop-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0;
        border: unset;
        padding: 5px 30px;
    }
    .pd-box{
        padding: 20px 20px 18px;
    }
}
/* digital-sec end */

/* without-sec start */
.without-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 31.51%, #DAE7FF 73.28%);
}
.without-frame{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/without-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 20px;
}
@media (min-width:768px) {
    .without-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/without-bg.webp") no-repeat top center;
        background-size: cover;
        padding-top: 140px;
    }
}
/* without-sec end */


/* makes-sec start */
.makes-sec{
    background: #02253d;
}
.wasting{
    padding: 20px 10px;
    height: 100%;
}
.clr-3{
    color: #808df9;
}
.clr-4{
    color: #47c0ff;
}
.clr-5{
    color: #edac22;
}
.clr-6{
    color: #ff5e41;
}.clr-7{
    color: #87b929;
}
.clr-8{
    color: #808df9;
}
.make-box-1{
    border-radius: 20px;
    border-top: 1px solid #96A1FF;
    border-right: 5px solid #96A1FF;
    border-bottom: 5px solid #96A1FF;
    border-left: 1px solid #96A1FF;
    background: rgba(150, 161, 255, 0.1);
}
.make-box-2{
    border-radius: 20px;
    border-top: 1px solid #67CBFF;
    border-right: 5px solid #67CBFF;
    border-bottom: 5px solid #67CBFF;
    border-left: 1px solid #67CBFF;
    background: rgba(103, 203, 255, 0.1);
}
.make-box-3{
    border-radius: 20px;
    border-top: 1px solid #FFD16F;
    border-right: 5px solid #FFD16F;
    border-bottom: 5px solid #FFD16F;
    border-left: 1px solid #FFD16F;
    background: rgba(255, 209, 111, 0.1);
}
.make-box-4{
    border-radius: 20px;
    border-top: 1px solid #FB8570;
    border-right: 5px solid #FB8570;
    border-bottom: 5px solid #FB8570;
    border-left: 1px solid #FB8570;
    background: rgba(251, 133, 112, 0.1);
}
.make-box-5{
    border-radius: 20px;
    border-top: 1px solid #9FC754;
    border-right: 5px solid #9FC754;
    border-bottom: 5px solid #9FC754;
    border-left: 1px solid #9FC754;
    background: rgba(159, 199, 84, 0.1);
}
.yellow-brush{
    color: #ffaa33;
}
.blue-brush1{
    color: #0c88e6;
}
.green-brush{
    color: #22bd8d;
}
.red-brush1{
    color: #f26159;
}
@media(min-width:768px){
    .makes-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/talkingbooks/special/makes-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 180px;
    }
    .wasting{
        padding: 30px 20px;
    }
    .yellow-brush{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/yellow-brush.webp) no-repeat;
        color: #ffffff;
        background-size: 100% 100%;
        display: inline-block;
        padding: 0px 30px;
    }
    .blue-brush1{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/blue-brush1.webp) no-repeat;
        color: #ffffff;
        background-size: 100% 100%;
        display: inline-block;
        padding: 0px 30px;
    }
    .green-brush{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/green-brush.webp) no-repeat;
        color: #ffffff;
        background-size: 100% 100%;
        display: inline-block;
        padding: 0px 30px;
    }
    .red-brush1{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/red-brush-1.webp) no-repeat;
        color: #ffffff;
        background-size: 100% 100%;
        display: inline-block;
        padding: 0px 30px;
    }
}
/* makes-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);
}
.choicebox-2{
    background: #3CB006;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.choicetext-1{
    background: #FFFFFF;
    padding: 15px 82px;
    display: inline-block;
    border-radius: 100px;
}
.gradiant-brush{
    background: var(--theme-gradient);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .choice-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/talkingbooks/special/choice-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .choicebox-1{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/choicebox-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 30px 84px;
        box-shadow: none;
        /* transform-origin: top; */
        /* scale: 0.9; */
    }
    .choicebox-2{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/choicebox-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 40px 30px 85px;
        box-shadow: none;
    }
    .green-wave-2{
        position: relative;
    }
    .green-wave-2::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-wave-2.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
    .gradiant-brush{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/gradiant-brush.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        display: inline-block;
        padding: 7px 30px;
    }
}
/* 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 36px 8px;
    display: inline-block;
    margin-top: -20px;
}
@media (min-width: 768px) {
    .warning-section{
        background: #fff url(https://cdn.oppyotest.com/launches/talkingbooks/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 */

/* market sec start */
.market-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 38.44%, #DAE7FF 89.4%);
}

@media (min-width: 768px){
    .market-sec{
        background:#ffffff url(https://cdn.oppyotest.com/launches/talkingbooks/special/market-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .blue-wave-3{
        position: relative;
    }
    .blue-wave-3::before{
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/blue-wave-3.webp") no-repeat;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 8px;
    }
    .market-border{
        position: relative;
    }
    .market-border::before{
        content: "";
        background:  url(https://cdn.oppyotest.com/launches/talkingbooks/special/market-border.webp) no-repeat;
        position: absolute;
        width: 100%;
        height: 8px;
        bottom: -3px;
        left: 0;
    }
}
/* market sec end */

/* experiences sec start */
.experiences-sec{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/experiences-bg.webp) no-repeat center center;
    background-size: cover;
}
.experiens-p{
    padding: 10px;
}
.experiens-box1{
    background: #E3F7FD;
    border: 1px solid #58C2E1;
    border-radius: 20px;
}
.experiens-box2{
    background: #EBFAF2;
    border: 1px solid #33CC79;
    border-radius: 20px;
}
.experiens-box3{
    background: #F9FDE4;
    border: 1px solid #A9C900;
    border-radius: 20px;
}
.experiens-box4{
    background: #FFF1F8;
    border: 1px solid #FF84C1;
    border-radius: 20px;
}
.gradiant-brush1{
    background: var(--theme-gradient);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px){
    .experiences-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/experiences-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .experiens-p{
        padding: 30px;
    }
    .gradiant-brush1{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/gradiant-brush.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        display: inline-block;
        padding: 12px 25px;
    }
}
/* experiences sec end */

/* authors-sec start */
.authors-sec{
    background: #000000;
}
.authors-frame-1{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px 0px;
}
.authors-frame-2{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-frame-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px 0px;
}
.authors-frame-3{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-frame-3.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px 0px;
}
.authors-frame-4{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-frame-4.webp") no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px 0px;
}
.a-clr1{
    color: #1BA0FF;
}
.a-clr2{
    color: #29E7AB;
}
.a-clr3{
    color: #FFAA33;
}
.a-clr4{
    color: #AB59EC;
}
.authors-images {
    position: relative;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
}

.authors-images img {
    margin-left: -16px;
    position: relative;
    z-index: 0;         
    transition: transform 0.1s ease-in-out, z-index 0.1s ease-in-out;
}

.authors-images img:first-child {
    margin-left: 0px; 
}

.authors-images img:hover {
    transform: translateY(-10px); 
    cursor: pointer;          
}
.authors-brush {
    background: var(--theme-gradient);
    display: inline-block;
    border-radius: 10px;
    padding: 10px 20px;
}
@media (min-width:768px) {
    .authors-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .authors-text{
        position: relative;
    }
    .authors-text::before{
    position: absolute;
    content: '';
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/authors-text-line.webp") no-repeat;
    background-size: 100% 100%;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    }
    .authors-frame-1, .authors-frame-2, .authors-frame-3{
        padding: 30px 30px 0px;
    }
    .authors-brush {
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/gradiant-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 10px 27px;
        border-radius: unset;
    }
}
/* authors-sec end */

/* globally-sec start */
.globally-sec-1{
    background: var(--theme-gradient3);
}
@media (min-width: 768px){
    .globally-sec-1{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/globally-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* globally-sec end */

/* imagine sec start */
.imagine-sec{
    background: #ffffff;
}
.blue-frame-1{
    background: #00A9A7;
    border-radius: 10px;
    padding: 10px;
}

@media (min-width: 768px){
    .imagine-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/imagine-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .blue-frame-1{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/blue-frame-1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 16px 30px 36px;
    }
}

/* imagine sec end */

/* expensive-section start */
.expensive-section{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 88.12%, #A9C7FF 118.29%);
}
.expensive-h{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/red-frame-3.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px;
    display: inline-block;
}

.expensive-red-box{
    padding: 30px;
    position: relative;
    z-index: 1;
}
.expensive-red-box::after{
    position: absolute;
    content: '';
    border-radius: 20px;
    background: rgba(255, 44, 44, 0.102);
    height: 100%;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.expensive-frame{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/expensive-frame.webp) no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 20px 10px;
}

@media(min-width:768px){
    .expensive-h{
        position: relative;
        padding: 14px 50px 16px 30px;
        display: inline-block;
    }
    .expensive-h::after{
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/talkingbooks/special/thanking-emoji.webp");
        top: -20px;
        right: -60px;
    }
    .expensive-frame{
        padding: 45px 52px 40px;
    }
    .expensive-red-box{
        padding: 50px 0px;
    }
    .expensive-red-box::after{
        width: calc(100% + 10%);
    }
    .mt-md300{
        margin-top: 300px !important;
    }
    .mb-min-md230{
        margin-bottom: -230px;
    }
}
@media(min-width:1400px){
    .expensive-red-box::after{
        width: calc(100% + 200px);
    }
}
/* expensive-section end */

/* scary sec start */
.scary-sec{
    background: #CDEBF6;
}
.blue-brush{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/special/star-face-emoji.webp);
        position: absolute;
        top: -12px;
        left: 30px;
    }
}

/* scary sec end */

/* presenting-sec start */
.presenting-sec{
    background: #000;
}
.prudly-text{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/proud-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}
.main-heading-1 {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #19C4A0;
    background: #fff;
}
/* .proudly-cta-text{
    background: #ff9601;
    padding: 5px;
    border-radius: 30px 0;
} */
/* .light-frame{
    background: #19C4A0;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 20px;
} */
@media (min-width: 768px) {
    .presenting-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 230px;
    }
    .prudly-text{
        padding: 9px 59px 17px;
    }
    .main-heading-1 {
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/main-headline-frame-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 35px 76px 30px 88px;
        border-radius: 0px;
        border: unset;
    }
    /* .proudly-cta-text{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/proudly-cta-text.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    } */
}
/* presenting-sec end */

/* demo-sec start */
.demo-sec{
    background: #fff;
    padding: 30px 0px;
}
.border-frame{
    /* background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/border-frame.webp) no-repeat;
    background-size: 100% 100%; */
    background: linear-gradient(270deg, rgba(183, 228, 253, 0.5) 0%, rgba(188, 254, 228, 0.5) 100%);
    border: 1px solid #19C4A0;
    backdrop-filter: blur(50px);
    border-radius: 20px;
    padding: 10px;
}
.demo-sec-text{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/demo-sec-text.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
@media (min-width: 768px) {
    .demo-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/demo-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 100px 0px;
    }
    /* .border-frame{
        padding: 75px 100px;
    } */
}
/* demo-sec end */

/* option-sec start */
.option-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 38.44%, #DAE7FF 89.4%);
}
.option {
    padding: 8px 30px;
    border-radius: 40px;
    display: inline-block;
    box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.2);
}
.option-sec{
    background: #fff;
}
.option-sec-head {
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
    border: 3px solid #19C4A0;
    background: linear-gradient(270deg, rgba(183, 228, 253, 0.5) 0%, rgba(188, 254, 228, 0.5) 100%);
}
.option-sec-text{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/special/option-sec-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .option-sec-head {
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/option-sec-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 34px 26px 43px 47px;
        border-radius: 0px;
        border: none;
    }
    .green-wave-5{
        position: relative;
    }
    .green-wave-5::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-wave-5.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
}
/* option-sec end */

/* power-sec start */
.power-sec{
    background: linear-gradient(180deg, #002F5A 8.18%, #0D3925 71.74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));    
}
.power-sec video{
    border-radius: 5px;
}
.p-card{
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(272.6deg, #1189DF 1.4%, rgba(17, 137, 223, 0.1) 97.35%);
    border: 1px solid #1189DF;
    backdrop-filter: blur(50px);
}
.p-card.p-card-style-2{
    background: linear-gradient(272.6deg, rgba(41, 231, 171, 0.1) 1.4%, #29E7AB 97.35%);
    border: 1px solid #29E7AB;
    backdrop-filter: blur(50px);
}
.growth-box {
    background: #FFFFFF1A;
    border: 1px solid #29E7AB;
    box-shadow: 0px 0px 30px 0px #29E7AB4D inset;
    border-radius: 20px;
    height: 100%;
    padding: 20px 20px 16px;
}
.power-sec-head2{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/power-sec-head2.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px) {
    .power-sec-head2{
        padding: 6px 30px 4px 30px;
    }
    .power-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/power-sec-bg.webp") no-repeat center center;
        background-attachment: fixed;
        background-size: cover;
    }
    .power-sec-head {
        /* background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/power-sec-head.webp") no-repeat;
        background-size: 100% 100%; */
        padding: 20px 80px;
    }
    .p-card{
        /* display: flex; */
        align-items: center;
        padding: 60px;
        border-radius: 20px;
    }
    .growth-box {
        padding: 30px 29px;
    }
    /* .p-card.p-card-style-2{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/p-card2.webp") no-repeat;
        background-size: 100% 100%;
        border: 0;
    } */
}
/* power-sec end */

/* income sec start */
.income-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 38.44%, #DAE7FF 89.4%);
}
.income-h{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/income-h.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 10px;
}
.incom-box{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/income-box.webp) no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 20px;
}

@media(min-width:768px){
    .income-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/income-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .black-border{
        position: relative;
    }
    .black-border::before{
        content: url(https://cdn.oppyotest.com/launches/talkingbooks/special/black-border.webp);
        position: absolute;
        left: 0px;
        bottom: 0px;
    }
    .incom-box{
        padding: 50px 22px 20px;
    }
}
/* income sec end */

/*freelancer sec start */
.freelancer-sec{
    background: #ffffff;
}
.freelancer-text{
    background: #01aaa7;
    /* border: 5px solid #2F60FF; */
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .freelancer-sec{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/freelancer-bg.webp") no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    }
    .freelancer-text{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/freelancer-frame.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 45px 30px;
        padding-top: 20px;
    }
}
/* freelancer  sec end */


/* crazy sec start */
.crazy-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 43%, #A9C7FF 100%);
}
.crazy-text{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/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: url("https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/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/talkingbooks/special/red-wave-2.webp");
        content: "";
        position: absolute;
        height: 8px;
        width: 100%;
        bottom: 0px;
        right: 0px;
    }

}
/* crazy sec end */




/* potential-sec start */
.potential-sec{
    background: #fff;
}
.gap30 {
	--bs-gutter-y: 30px;
}
.feature-list-box {
    padding: 15px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background: #E7FFF4;
	box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	border-bottom: 7px solid var(--blue-clr1);
}

.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){
	.gap30 {
		--bs-gutter-x: 50px;
		--bs-gutter-y: 50px;
	}
	.feature-list-box {
		height: 100%;
		padding: 30px;
	}
}
/* potential-sec end */

/* your-choice-sec start */
.your-choice-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 88.12%, #A9C7FF 118.29%);
}
.your-choice-text{
    background: #01aaa7;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .your-choice-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/special/your-choice-frame.webp") no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 10px 40px;
    }
}
/* your-choice-sec end */


/* stress-free-sec start */
.stress-free-sec{
    background: #ffffff;
}
.stress-free-head{
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 10px;
    background: #F26159;
}
.stress-free-head2{
    display: inline-block;
    position: relative;
    padding: 5px;
    border-radius: 10px;
    background:var(--green-clr);
}
@media (min-width: 768px) {
    .stress-free-sec{
        background: #E0F7DF url("https://cdn.oppyotest.com/launches/talkingbooks/special/stress-free-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .green-line{
        position: relative;
    }
    .green-line::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/green-line.webp") no-repeat;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 8px;
    }
    .stress-free-head{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/stress-free-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 20px 118px 20px 50px;
    }
    .stress-free-head::after {
        content: url("https://cdn.oppyotest.com/launches/talkingbooks/special/tounge-emoji.webp");
        position: absolute;
        top: -18px;
        right: -30px;
    }
    .stress-free-head2{
        background: url("https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/special/thinking-emoji.webp");
        position: absolute;
        top: -8px;
        right: 20px;
    }
}
/* stress-free-sec end */

/* fear sec start */
.fear-sec{
    background: #e4fff4;
}
.fair-text {
    border: 2px solid #FF361D;
    background: #FFFFFF;
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.theme-brush {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/theme-brush.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
@media (min-width: 768px) {
    .fear-sec{
        background: #e4fff4 url(https://cdn.oppyotest.com/launches/talkingbooks/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: #0c1b23;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/talkingbooks/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 */

/* cost sec start */
.cost-text {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/everyone-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 3px 0px 20px;
}

/* cost sec end */



/* moneyback sec start */
.moneyback-sec{
    background: #000f23;
}
.moneyback-h{
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/moneyback-h.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #000f23 url("https://cdn.oppyotest.com/launches/talkingbooks/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .moneyback-h{
        padding: 10px 96px 10px 49px;
        position: relative;
    }
    .moneyback-h::after{
        content: url(https://cdn.oppyotest.com/launches/talkingbooks/special/thanking-emoji-1.webp);
        position: absolute;
        top: -16px;
        right: -14px;
    }
}
/* moneyback sec end */


/* table section start */
.table-section {
    background: #fff;
}
.tablebox2 {
    background: #fff;
    width: 100%;
    float: left;
    border-radius: 10px;
    border: 1px solid #232323;
}
.tbbg2 {
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/white-table.webp") no-repeat;
    background-size: cover;
    padding: 50px 30px 30px 30px;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}
ul.vgreytick {
    padding: 0;
}
.tablebox2 ul {
    padding-left: 0;
    color: #010101;
}
ul.vgreytick li {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/vgreytick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
}
ul.cross-ul li {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/cross.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
}
.tablebox2 ul.vgreytick li:nth-child(odd) {
    background-color: #caf8ffcc;
}
.tablebox3 ul.vgreytick li:nth-child(odd) {
    background-color: #dfffef;
}
.tablebox3 {
    width: 100%;
    float: left;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    border: 1px solid #232323;
    /* background-color: #080E20; */
   
}
.tbbg3 {
    /* background: #080E20; */
    background: url("https://cdn.oppyotest.com/launches/talkingbooks/special/black-table.webp") no-repeat;
    background-size: cover;
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 10px 10px 0 0;
}
ul.vgreytick li:nth-child(even) {
    background-color: #fff;
}
.myfeatureslast{background: #fff;border-radius: 0 0 9px 9px;}
.table-sale{
    background: #fff;
    border-radius: 48px;
    padding: 2% 5%;
    display: inline-block;
}
.vgreytick li.headline {
    background: var(--theme-gradient);
    padding: 20px 0px 20px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}
.br-sec{
    border: 1px solid #43C5ED;
    border-radius: 10px;
}
@media (min-width: 768px){
    .tbbg2 {
        padding: 50px 30px 0px 30px;
        background-size: 100% 100%;
        border-radius: 10px 10px 0 0;
        min-height: 294px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    ul.cross-ul li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .tbbg3 {
        padding: 37px 30px 50px 30px;
        background-size: 100% 100%;
        border-radius: 10px 10px 0 0;
    }
}
/* table section end */

/* out sec start */
.clr-3{
    color: #00ABF1;
}
.out-sec{
    background: #ffffff;
}
.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:#ffffff url(https://cdn.oppyotest.com/launches/talkingbooks/special/out-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .out-text{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/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/talkingbooks/special/out-border-1.webp);
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
    
}
/* out sec end */

/* ticking sec start */
.ticking-sec{
    background: linear-gradient(180deg, #E1FFF1 0%, #FEECFF 38.44%, #DAE7FF 89.4%);
}
.brown-brush{
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/income-h.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 3px 20px;
}

@media (min-width:768px) {
    .ticking-sec{
        background: url(https://cdn.oppyotest.com/launches/talkingbooks/special/income-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* ticking sec end */

/* faq sec start */
.faq-section {
    padding: 30px 0px;
    background: #CDEBF6;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/talkingbooks/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 */

/* btn start */
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 39px;
    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;
}
@media (min-width: 768px) {
    a.cta-link-btn {
        font-size: 38px;
        padding: 20px 124px;
        display: inline-block;
    }
}
/* btn 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;
    }
    .f-md-55 {
        font-size: 55px;
    }
    .f-md-70 {
        font-size: 70px;
    }
    .f-md-100 {
        font-size: 100px;
    }
}
/*  */

/* 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 */
