html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: #101315;
    font-size: 14px;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #E804BE 0%, #FF8038 100%);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}
.caveat{
    font-family: 'Caveat', cursive;
}

:root {
    --black-clr:#031528;
    --white-clr: #fff;
    --light-grey: #f1f1f1;
    --orange-clr: #FF6039;
    --orange-clr1: #FB591B;
    --purple-clr: #9347FF;
    --pink-clr:#DE3EBE;
    --red-clr:#FD3739;
    --red-clr1:#EF4748;
    --red-clr3:#FF361D;
    --blue-clr:#008AEE;
    --neon-clr: #00BBA3;
    --grey-clr:rgba(0, 0, 0, 0.75);
    --green-clr:#94E532;
    --green-clr1:#3EFFE6;
    --green-clr2: #459E00;
    --theme-gradient: linear-gradient(99deg, #FEB763 0%, #FD206C 86.08%);
    --theme-gradient1: linear-gradient(90deg, #FD206C 0%, #FEB763 100%);
}

/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-grey{
    color: var(--light-grey);
}
.orange-clr {
    color: var(--orange-clr);
}
.purple-clr {
    color: var(--purple-clr);
}
.pink-clr{color:var(--pink-clr);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr3{color:var(--red-clr3);}
.blue-clr{color:var(--blue-clr);}
.grey-clr{color:var(--grey-clr);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.theme-clr{
    background: linear-gradient(90deg, #FEB763 0%, #FD206C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr2{
    background: linear-gradient(90deg, #403FFB 0%, #03BEE8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr3{
    background: linear-gradient(90deg, #E804BE 0%, #FF8038 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.neon-clr{
    color: var(--neon-clr);
}

.clr-1{
    color: #FFD467;
}
.clr-2{
    color: #FF5EE2;
}
.clr-3{
    color: #31A9FF;
}

.clr-4{
    color: #3F70FF;
}

.clr-5{
    color: #EEBA00;
}

.clr-6{
    color: #F6A300;
}

/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid #E804BE;
    /* 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: #000;
    padding: 10px 0;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
}

.fixed-top-bar a {
    font-size: 15px;
    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 */

/* top sale tag css */
.sticky-top-animated{
    position: fixed;
    top: 150px;
    right: 1%;
    animation: 1000ms init forwards, 1000ms init-sign-move ease-out 1000ms, 3000ms sign-move 2000ms infinite;
    transform-origin: top;
    z-index: 1;
}

@media (min-width: 768px) {
    .sticky-top-animated{
        top: -15px;
    }
}

@media (max-width : 575px){
    .sticky-top-animated{
        zoom: 0.7;
    }
}
@keyframes init {
    0% {
      transform: scale(0);
    }
  
    40% {
      transform: scale(1.1);
    }
  
    60% {
      transform: scale(0.9);
    }
  
    80% {
      transform: scale(1.05);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
@keyframes init-sign-move {
100% {
    transform: rotatez(3deg);
}
}

@keyframes sign-move {
0% {
    transform: rotatez(3deg);
}

50% {
    transform: rotatez(-3deg);
}

100% {
    transform: rotatez(3deg);
}
}
/* top sale tag css */

a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    font-size: 22px;
    line-height: 100%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
}
a.cta-link-btn:hover {
    border-radius: 8px;
    background: var(--theme-gradient1);
    color: #ffffff;
}
@media (min-width: 768px) {
    a.cta-link-btn {
        font-size: 30px;
        padding: 35px 25px;
        display: inline-block;
    }
}

/* header section start */
/* Header CSS */

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn:hover {
    transition: all .3s ease;
    background: var(--theme-gradient1);
    color: var(--white-clr) !important;
}


.header-sec{
    background: #000000;
    padding: 30px 0px;
}

.pre-heading{
    border-radius: 10px;
    border: 1px solid #FD6E67;
    display: inline-block;
    background: #ffffff1a;
    padding: 10px;
}

.black-shape{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/black-shape.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 15px;
}
.header-ul{
    padding: 0px;
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 24px 34px;
}

.wave-line{
position: relative;
}
.wave-line::after{
    content: url("https://cdn.oppyotest.com/launches/maildaddy/special/wave-line.webp");
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.Exclusive-text{
    border-radius: 10px;
    border: 1px dashed #FD396A;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px;
}
/*  */

.main-heading {
    padding: 15px;
    border: 1px solid #632329;
    background: #0f0506;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 8px #FD5968);
    backdrop-filter: blur(10px);
}
.red-box{
    padding: 10px;
    border-radius: 10px;
    background: #FF361D;
}
.main-1,.main-2,.main-3{
    color: #ffce51;
}
@media(min-width:768px){
    .header-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/maildaddy/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 80px 0px 100px;
    }
    .pre-heading{
        border-radius: 35px;
        padding: 8px 20px;
    }

    .main-heading {
        padding: 35px 50px;
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/main-heading-shape.webp) no-repeat center center;
        background-size: 100% 100%;
        position: relative;
        border-radius: unset;
        border: unset;
        filter: unset;
        backdrop-filter: unset;
    }
    .main-1{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/main-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
        color: #000;
    }
    .main-2{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/main-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 13px;
        color: #000;
    }
    .main-3{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/main-3.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
        color: #000;
    }
    .posthead-1{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/posthead-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 15px;
    }
    .posthead-2{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/posthead-2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 10px;
    }
    .market-text::before {
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/market-text.webp);
        position: absolute;
        top: -45px;
        left: 20px;
    }
    .black-shape{
        padding: 10px 30px;
    }
    .theme-btn {
        padding: 27px 145px;
    }
    .Exclusive-text{
        padding: 15px 30px;
    }
    .red-box{
        padding: 10px 20px;
    }
}
/* header section end */


/* step sec start */
.step-section {
    background: #fdf4ff;
}
.pink-brush {
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush.webp) no-repeat;
    background-size: 100% 100%;
    padding: 1px 20px;
}
.step-card{
    border-radius: 20px;
    border: 1px solid #FEA564;
    background: linear-gradient(99deg, rgba(254, 183, 99, 0.20) 0%, rgba(253, 32, 108, 0.20) 86.08%);
    border-radius: 10px;
    padding: 20px 10px;
}
.step {
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/step.webp) no-repeat;
    background-size: 100% 100%;
    padding: 6px 20px 12px 23px;
    display: inline-block;
    margin-top: -26px;
}

@media (min-width: 768px) {
    .step-section {
        background: #fdf4ff url(https://cdn.oppyotest.com/launches/maildaddy/special/step-bg.webp) no-repeat top center;
        background-size: cover;
    }
    .pink-brush {
        padding: 1px 30px;
    }
    
    .step-card {
        padding: 0 30px 30px;
    }
    .step {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/step.webp) no-repeat;
        background-size: 100% 100%;
        padding: 6px 20px 12px 23px;
        display: inline-block;
        margin-top: -7px;
    }
}
/* step sec end */

/* email-sec start */
.email-sec{
    background: #0A0405;
}
.box{
    padding: 20px;
    height: 100%;
    border-radius: 20px;
}
.box-1{
    background: linear-gradient(270deg, #FF7294 0%, #E52453 100%);
}
.box-2{
    background: linear-gradient(270deg, #FF88EA 0%, #D438BF 100%);
}
.box-3{
    background: linear-gradient(270deg, #CC86F3 0%, #993AD5 100%);
}
.box-4{
    background: linear-gradient(270deg, #A174FF 0%, #6224E5 100%);
}
@media (min-width: 768px) {
    .box{
        padding: 30px;
    }
}
/* email-sec end */

/* tester sec start */
@media (max-width:767px) {
    .pink-brush2 {
        color: #FF5DE2;
    }
}
@media (min-width:768px) {
    .pink-brush2 {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 25px 0px 18px;
    }
}
/* tester sec end */

/* outclass sec start */
.outclass-sec{
    background: #F5F0F9;
}

/* compare section start */
.compare-card1{
    border-radius: 20px 0px 0px 20px;
    border-top: 5px solid rgba(253, 32, 108, 0.3);
    border-bottom: 5px solid rgba(253, 32, 108, 0.3);
    border-left: 5px solid rgba(253, 32, 108, 0.3);
    background: #FFF;
    /* height: 100%; */
}
.compare-head {
    border-radius: 20px 0px 0px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 21px 40px;
}
.compare-head4{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 31px 20px;
}
.compare-list li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 15px 20px;
    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;
    box-shadow: 0px 0px 20px 1px rgba(5, 184, 233, 0.25);
    margin-top: -49px;
}

.compare-card2{
    border-radius: 20px;
}
.compare-head2{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFE9F0;
    padding: 25px 20px 15px;
    border-radius: 20px 20px 0px 0px;
}
.compare-list2 li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFE9F0;
    padding: 15px 20px;
    list-style: none;
    position: relative;
}

.compare-list2 li:nth-child(1) {
    padding: 43px 20px !important;
}
.compare-list2 li:nth-child(3) {
    padding: 71px 20px !important;
}
.compare-list2 li:nth-child(5) {
    padding: 43px 20px !important;
}
.compare-list2 li:nth-child(6) {
    padding: 43px 20px !important;
}
.compare-list2 li:nth-child(7) {
    padding: 29px 20px !important;
}
.compare-list2 li:nth-child(8) {
    padding: 29px 20px !important;
}
.compare-list2 li:nth-child(12) {
    padding: 29px 20px !important;
}
.compare-list2 li:nth-child(13) {
    padding: 43px 20px !important;
}
.compare-list2 li:nth-child(14) {
    padding: 43px 20px !important;
}


.compare-card3{
    border-top: 5px solid rgba(253, 32, 108, 0.3);
    border-bottom: 5px solid rgba(253, 32, 108, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    /* height: 100%; */
}
.compare-head3{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 25px 20px;
}
.compare-head5{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 21px 20px 21px;
    border-radius: 0px 20px 0px 0px;
}
.compare-list3 li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 15px 20px;
    list-style: none;
}
.compare-list3 li:nth-child(1) {
    padding: 43px 20px !important;
}
.compare-list3 li:nth-child(3) {
    padding: 71px 20px !important;
}
.compare-list3 li:nth-child(4) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(5) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(6) {
    padding: 43px 20px !important;
}
.compare-list3 li:nth-child(7) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(8) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(9) {
    padding: 15px 20px !important;
}
.compare-list3 li:nth-child(11) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(12) {
    padding: 29px 20px !important;
}
.compare-list3 li:nth-child(13) {
    padding: 43px 20px !important;
}
.compare-list3 li:nth-child(14) {
    padding: 43px 20px !important;
}
.compare-card4{
    border-top: 5px solid rgba(253, 32, 108, 0.3);
    border-bottom: 5px solid rgba(253, 32, 108, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
}
.compare-card5 {
    border-radius: 0px 20px 20px 0px;
    border-top: 5px solid rgba(253, 32, 108, 0.3);
    border-bottom: 5px solid rgba(253, 32, 108, 0.3);
    border-right: 5px solid rgba(253, 32, 108, 0.3);
    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: var(--theme-gradient);
    padding: 36px 20px;
    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;}

/* comapre section end */


@media (max-width:767px) {
    .darkpink-brush {
        color: #FF5DE2;
    }
}
@media (min-width:768px) {
    .darkpink-brush {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/dark-pink-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 35px;
    }
}

@media (max-width:1124px) {
    .table-1{
        overflow-x: scroll;
        padding: 0px 15px;
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }

}

/* outclass sec end */

/* email marketing start  */

.emial-marketing{
    background: #ffffff;
}

@media (max-width: 767px) {
    .red-brush{
        color: var(--red-clr);
    }
}


@media (min-width: 768px) {
    .emial-marketing{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/email-markeing-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .red-brush{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/red-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 30px;
    }
    
}

/* email marketing end  */


/* paying start */

.paying-section{
    background: #ffdfdb;
}

.money-box{
    background: #ffffff;
    border: 2px solid rgba(255, 54, 29, 0.5);
    padding: 10px;
    border-radius: 10px;
    height: 100%;
}

@media (min-width: 768px) {
    .paying-section{
        background: #ffdfdb url(https://cdn.oppyotest.com/launches/maildaddy/special/money-sec-bg.webp) no-repeat center center;
        background-size: cover;
    }
}


/* paying end */


/* with sec start */
.with-section{
    background: #fff;
}
@media (max-width:767px) {
    .pink-brush1 {
        color: #FF5DE2;
    }
}
@media (min-width:768px) {
    .with-section{
        background: #fff url("https://cdn.oppyotest.com/launches/maildaddy/special/with-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .pink-brush1 {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
    }
    .video-frame-1{
        border: double 8px transparent;
        background-image: linear-gradient(#ffffff, #ffffff), var(--theme-gradient);
        background-origin: border-box;
        background-clip: content-box, border-box;
        border-radius: 20px;
    }
    .pink-line{
        position: relative;
    }
    .pink-line::before{
        content: url("https://cdn.oppyotest.com/launches/maildaddy/special/pink-line.webp");
       position: absolute;
       bottom: 3px;
       left: 50px;
    }
}
/* with sec end */

/* testimonials start */

.testimonial{
    background: #f5f0f9;
}

.testimonial-gradiant {
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(to bottom, #FEB763 0%, #FD206C 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    height: 100%;
}

 .testimonial-gradiant-1{
    padding:30px 10px;
 }

 .mt-top{
    margin-top: -65px;
 }

 @media (min-width: 768px) {

    .testimonial{
        background: #f5f0f9 url(https://cdn.oppyotest.com/launches/maildaddy/special/testimonials-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .testimonial-gradiant-1{
        padding:60px 30px 30px;
     }

     .mt-top{
        margin-top: -90px;
     }
 }

/* testimonials end */

/* warning section start */
.warning-section{
    background: linear-gradient(90deg, #000000 0%, #000A0E 100%);
}
.warning-card{
    background: #fff;
    border: 5px dotted #FF361D;
    border-radius: 20px;
    padding: 0px 10px 30px;
}
.warning-shape{
    background: #FF361D;
    border-radius: 41px;
    padding: 0px 36px 8px;
    display: inline-block;
    margin-top: -20px;
}
@media (min-width: 768px) {
    .warning-section{
        background: #0a0102 url(https://cdn.oppyotest.com/launches/maildaddy/special/warning-bg.webp) no-repeat top center;
        background-size: 100% 100%;
    }
    .warning-card{
        padding: 0px 50px 40px;
        position: relative;
    }
    .warning-shape{
        margin-top: -40px;
    }
    .warning-card:before{
        position: absolute;
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/warning-img.webp);
        bottom: -103px;
        left: -205px;
    }
}
/* warning section end */

/* banned sec start */
.banned-sec{
    background: #E9DBF9;
}
.google-text{
    background: #FF361D;
    border: 3px solid #FF361D;
    border-radius: 10px;
    padding: 10px;
}
@media (max-width: 767px) {
    .banned-text{
       color: #FF361D;
    }
}
@media (min-width: 768px) {
    .banned-sec{
        background: #E9DBF9 url(https://cdn.oppyotest.com/launches/maildaddy/special/banned-bg.webp) no-repeat bottom center;
        background-size: cover;
        background-attachment: fixed;
    }
    .red-brush1{
        background: url("https://cdn.oppyotest.com/launches/maildaddy/special/red-brush1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 50px;
    }
    .banned-text{
        position: relative;
    }
    .banned-text::before{
        content: url("https://cdn.oppyotest.com/launches/maildaddy/special/left-cross.webp");
        position: absolute;
        top: 0px;
        left: 25px;
    }
    .banned-text::after{
        content: url("https://cdn.oppyotest.com/launches/maildaddy/special/right-cross.webp");
        position: absolute;
        top: 0px;
        right: 25px;
    }
    .google-text{
        border-radius: 20px;
        padding: 20px 30px;
    }
}
/* banned sec end */


/* opetion section start */
.option-section{background: #ffffff;}
.option-red-card{
    background:url(https://cdn.oppyotest.com/launches/maildaddy/special/option-red-card.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 15px 80px;
    position: relative;
}
/* .option-red-card:before{
    position: absolute;
    content: url(https://cdn.oppyotest.com/launches/maildaddy/special/sad.webp);
    top:0px;
    left:10px;
} */
.option-blue-card{
    background:url(https://cdn.oppyotest.com/launches/maildaddy/special/option-pink-card.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 15px 80px;
    position: relative;
}
/* .option-blue-card:after{
    position: absolute;
    content: url(https://cdn.oppyotest.com/launches/maildaddy/special/cool.webp);
    top:0px;
    right:0px;
} */
.lightorange-clr{
    color: #FF5E4A;
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
}
.lightpink-clr{
    color: #D438BF;
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
}
@media (min-width: 768px) {
    .option-red-card{
        padding: 30px 30px 80px;
    }
    .option-blue-card{
        padding: 30px 30px 80px;
    }
    .lightorange-clr{
        display: inline-block;
        padding: 15px 80px;
        border-radius: 100px;
    }
    .lightpink-clr{
        display: inline-block;
        padding: 15px 80px;
        border-radius: 100px;
    }
}
/* option section end */

/* cta btn section start */
.cta-section {
    background: #000000;
}
@media (min-width: 768px) {
    .cta-section {
        background: #000000 url(https://cdn.oppyotest.com/launches/maildaddy/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* cta btn section end */


/* limited time section start */
.limited-time-sec {
    padding: 10px 0px 10px 0px;
    background: #FF2C2C;
}
/* limited time section end */

/* wave sec start */
.wave-sec{
    background: #000000;
    padding: 120px 0px 30px;
}
.wave{
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(to bottom, #FEB763 0%, #FD206C 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    height: 100%;
}
.wave-box{
    padding: 60px 30px 30px;
    position: relative;
}
.wave-img{
    margin-top: -146px;
}
@media (min-width: 768px) {
    .wave-sec {
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/wave-sec-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 250px 0px 60px;
    }
    .mt-md130{
        margin-top: 130px !important;
    }
}
/* wave sec end */

/* still-think-section start */
.still-think-section{
    background: #0A0305;
}
.clr-11{
    color: #58C2E1;
}
.clr-22{
    color: #F89A67;
}
.clr-33{
    color: #FF84C1;
}
.clr-44{
    color: #A9C900;
}
.clr-55{
    color: #9494FF;
}
.clr-66{
    color: #F89A67;
}
.clr-77{
    color: #1CC86B;
}
.clr-88{
    color: #58C2E1;
}

@media (min-width: 768px) {
    .still-think-section{
       padding: 100px 0px 150px;
    }
    .still-think-shape {
        border-radius: 10px;
        border: 2px solid #58C2E1;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape1 {
        border-radius: 10px;
        border: 2px solid #F89A67;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-right: 60px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape3 {
        border-radius: 10px ;
        border: 2px solid #FF84C1;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape4 {
        border-radius: 10px;
        border: 2px solid #A9C900;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-right: 60px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape5 {
        border-radius: 10px ;
        border: 2px solid #9494FF;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape6 {
        border-radius: 10px;
        border: 2px solid #F89A67;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-right: 60px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape7 {
        border-radius: 10px ;
        border: 2px solid #1CC86B;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-think-shape8 {
        border-radius: 10px;
        border: 2px solid #58C2E1;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        margin-right: 60px;
        margin-left: 60px;
        min-height: 130px;
    }
    .still-section-image {
        position: absolute;
        top: -92px;
        left: -35px;
    }
    .still-section-image1 {
        position: absolute;
        top: -92px;
        right: -75px;
    }
    .mt-md150{margin-top: 150px !important;}
    .mt-md200{margin-top: 200px !important;}
}
/* still-think-section end */

/* mandatory-sec starts */
.mandatory-sec-text-bg-2 {
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 10px;
    background: #000;
    position: relative;
}
.mandatory-sec-text-bg-3 {
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 10px;
    background: #ffffff;
    position: relative;
}
.mandatory-sec-text-bg-1 {
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 10px;
    background: #FF361D;
}
.mandatory-sec {
    background: #0c0310 ;
}
@media (min-width: 768px){
    .mandatory-sec-text-bg-2{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/mandatory-sec-text-bg-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px 85px;
        padding-right: 100px;
        border-radius: 0;
    }
    .mandatory-sec-text-bg-3{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/mandatory-sec-text-bg-3.webp) no-repeat;
        background-size: 100% 100%;
        padding: 30px 85px;
        border-radius: 0;
    }
    .mandatory-sec-text-bg-2::after {
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/mandatory-sec-thumbs-up.webp);
        position: absolute;
        top: 0%;
        right: -50px;
    }
    .mandatory-sec-text-bg-1 {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/mandatory-sec-text-bg-1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 15px 45px;
        border-radius: 0;
    }
    .mandatory-sec {
        background: #0c0310 url(https://cdn.oppyotest.com/launches/maildaddy/special/mandatory-sec-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* mandatory-sec ends */


/* influance-sec start */
.influance-sec{
    background: #f3dffb;
}
@media (max-width: 767px) {
    .pink-brush3 {
        color: #FF5DE2;
    }
}
@media (min-width: 768px) {
    .influance-sec{
        background: #f3dffb url(https://cdn.oppyotest.com/launches/maildaddy/special/influance-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .pink-brush3 {
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush3.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 22px;
    }
}
/* influance-sec end */


/* Charge sec start */

.charge-sec{
    background: #ffffff;
}

.charge-h{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/charge-h.webp) no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}


@media (min-width: 768px) {
    .charge-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/charge-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }

    .charge-h{
        padding: 30px 124px 50px;
    }
}

/* Charge sec start */


/* doubts sec start */

.doubts-sec{
    background: #f8effa;
}

.pink-brush-1{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    padding: 15px;
}

.doubt-h{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/charge-h.webp) no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}

@media (min-width: 768px) {
    .doubts-sec{
        background: #f8effa url(https://cdn.oppyotest.com/launches/maildaddy/special/doubts-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .pink-brush-1{
        padding: 10px 75px 10px 53px;
    }

    .pink-brush-1:after{
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/doubt-emoli.webp);
        position: absolute;
        top: -15px;
        right: -30px;
    }

    .doubt-h{
        padding: 39px 89px 42px;
    }
    
    
}

/* doubts sec end */

/* google sec start */
.google-sec{
    background: #fff;
}
@media (min-width: 768px) {
    .google-sec{
        background: #fff url(https://cdn.oppyotest.com/launches/maildaddy/special/google-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
}
/* google sec end */

/* futuer sec start */
.future-sec {
    background: #f2e6fa;
}

.future-h1{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/future-h1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    padding: 10px;
}

.future-h2{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/future-h2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}

@media (min-width: 768px) {
    .future-sec {
        background: #f2e6fa url(https://cdn.oppyotest.com/launches/maildaddy/special/future-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .future-h1{
        padding: 20px 40px 20px 102px;
    }

    .future-h2{
        padding: 50px;
    }

    .future-h1:before{
        content:url(https://cdn.oppyotest.com/launches/maildaddy/special/thumb-emoji.webp);
        position: absolute;
        top: -20px;
        left: -65px;
    }
}
/* futuer sec end */

/* problem sec start */
.problem-sec{
    background: #ffffff;
}
.but-text{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/but-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 11px 61px 11px 30px;
    position: relative;
}
.but-text::after {
    content: url("https://cdn.oppyotest.com/launches/maildaddy/special/but-emoji.webp");
    position: absolute;
    top: -5px;
    right: -20px;
}
.problembox-1{
    background: #FFE8E5;
    border: 1px solid #FF361D;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(186, 40, 40, 0.2);
    padding: 20px;
    height: 100%;
}

.scary-text{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/scary-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 16px 35px 16px 30px;
}
@media (min-width: 768px) {
    .problem-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/maildaddy/special/problem-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .but-text::after {
        top: 15px;
        right: -20px;
    }
    .problembox-1{
        padding: 30px;
    }

}
/* problem sec end*/

/* inbox-sec start */
.inbox-sec{
    background: #F5F0F9;
}
.inbox-text{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/inbox-text.webp") no-repeat;
    background-size: 100% 100%;
    padding:  10px;
}
.without-box {
    background: #ffffff;
    border: 2px solid #FFC3BC;
    padding: 20px 16px;
    border-radius: 20px;
    height: 100%;
}
@media (min-width: 768px) {
    .inbox-sec{
        background: #F5F0F9 url("https://cdn.oppyotest.com/launches/maildaddy/special/inbox-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .inbox-text{
        padding: 23px 40px 32px 31px;
    }
}
/* inbox-sec end */


/* presenting-sec start */
.presenting-sec{
    background: #050212;
}
.prudly-text{
    background: var(--theme-gradient);
    display: inline-block;
    border-radius: 40px;
    padding: 10px;
}
@media (min-width: 768px) {
    .presenting-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/maildaddy/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 120px 0px 180px;
    }
    .prudly-text{
        padding: 10px 30px
    }
}
/* presenting-sec end */


/* maildaddy without sec start */

.without-sec {
    background: #f5f0f9;
}
.without-box-1{
    background: #ffffff;
    border: 2px solid rgba(255, 54, 29, 1);
    height: 100%;
    position: relative;
    border-radius: 15px;
}
.without-box-1:before{
    content: url(https://cdn.oppyotest.com/launches/maildaddy/special/without-img.webp);
    position: absolute;
    top: 22px;
    left: -6px;
}
.without-text{
    padding: 10px;
}
.pink-clr1{
    color: #FF5DE2;
}
@media (min-width: 768px) {
    .without-sec {
        background: #f5f0f9 url(https://cdn.oppyotest.com/launches/maildaddy/special/without-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .red-border:before{
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/red-border.webp);
        position: absolute;
        bottom: 0px;
        left: -5px;
    }
    .without-text{
        padding: 20px 20px 30px;
    }
}
/* maildaddy without sec end */

/* demo-sec start */
.demo-sec{
    background: #0A0305;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/maildaddy/special/demo-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 140px;
    }

}
/* demo-sec end */

/* testimonial-2 start */

.testimonial-2{
    background: #ffffff;
}
@media (min-width: 768px) {
    .testimonial-2{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/testimonials-2-bg.webp) no-repeat center center;
        background-size: cover;
    }
}
/* testimonial-2 end */

/* trusted sec start */

.trusted-sec {
    background: #0A0305;
}
.trusted-box1{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/trusted-box1.webp) no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 20px;
}
.trusted-box2{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/trusted-box2.webp) no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 20px;
}
.trusted-gradiant {
    border: 1px solid transparent;
    background-clip: content-box, border-box;
    background-origin: border-box;
    background-image: linear-gradient(#000000, #000000), linear-gradient(to right, #FEB763 0%, #FD206C 100%);
    border-radius: 20px;
}

.trusted-gradiant-1{
    padding: 10px;
}


@media (max-width: 767px) {
    .pink-long-brush{
        color: #FF5DE2;
    }
}

@media (min-width: 768px) {
    .trusted-sec {
        background: #0A0305 url(https://cdn.oppyotest.com/launches/maildaddy/special/trusted-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .pink-long-brush{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/pink-long-brush.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
    }
    .trusted-box1{
        padding: 30px 60px 30px 30px;
    }
    .trusted-box2{
        padding: 30px 30px 30px 60px;
    }

    .trusted-gradiant-1{
        padding: 30px 29px;
    }
}
/* trusted sec end */

/* crazy sec start */
.crazy-sec{
    background: #fff;
}
.crazy-text{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/pink-brush.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 20px;
    position: relative;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/maildaddy/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/maildaddy/special/cool-1.webp);
        position: absolute;
        top: -15px;
        right: -40px;
    }
    .p-line-1, .p-line-2{
        position: relative;
    }
    .p-line-1:before{
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/p-line-1.webp);
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .p-line-2:after{
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/p-line-2.webp);
        position: absolute;
        bottom: -4px;
        left: 0px;
    }

}
/* crazy sec end */

/* everyone sec start */

.everyone-sec{
    background: #ffffff;
}

@media (min-width: 768px) {
    .everyone-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/everyone-bg.webp) no-repeat center center;
        background-size: cover;
    }
}

/* everyone sec end */

/* savemoney sec start */
.savemoney-sec{
    background: #f6f2f9;
}
.savemoney-text{
    background: var(--theme-gradient);
    display: inline-block;
    border-radius: 25px;
    padding: 10px;
    position: relative;
}

.stress-frame{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/stress-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 10px;
}
.wait-text{
    border-radius: 10px;
    border: 2px solid  #FD3739;
    background: #FFF;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .savemoney-sec{
        background: #f6f2f9 url(https://cdn.oppyotest.com/launches/maildaddy/special/money-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .savemoney-text{
        background: var(--theme-gradient);
        display: inline-block;
        padding: 5px 30px 7px 50px;
    }
    .savemoney-text::before{
        content: url("https://cdn.oppyotest.com/launches/maildaddy/special/happy-emoji.webp");
        position: absolute;
        top: -15px;
        left: -55px;
    }
    .stress-frame{
        padding: 0px 20px;
    }
    .wait-text{
        padding: 10px 57px;
    }
}
/* savemoney sec end */


/* mailchimp sec start */

.mailchimp-sec{
    background: #ffffff;
}
.chimp-box{
    border: 1px solid transparent;
    background-clip: content-box, border-box;
    background-origin: border-box;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(to right, #FEB763 0%, #FD206C 100%);
    border-radius: 20px;
    height: 100%;
}
.chimp-box-1{
    padding: 10px;
}

@media (min-width: 768px) {
    .mailchimp-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/mailchimp-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .chimp-box-1{
        padding: 20px;
    }
}

/* mailchimp sec end */

/* remove-problem sec start */

.problem-sec{
    background: #ffffff;
}

.problem-ul{
    padding: 0px;
}
.problem-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/x-icon.webp") no-repeat;
    padding: 0px 0px 20px 40px;
}
.problem-ul li:nth-last-child(1){
    padding-bottom: 0px;
}
@media (max-width: 767px) {
    .green-brush{
        color: var(--green-clr2);
    }
}

@media (min-width: 768px) {
    .problem-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/problem-bg1.webp) no-repeat center center;
        background-size: cover;
    }
    .green-brush{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/green-brush-1.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
    }
}

/* remove-problem sec end */

/* reminder sec start */

.reminder-sec{
    background: #ffffff;
}

.reminder-h{
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/reminder-h.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    padding: 10px;
}

@media (max-width: 767px) {
.green-brush-2{
    color: var(--green-clr2);
}
}

@media (min-width: 768px) {
    .reminder-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/reminder-bg.webp) no-repeat center center;
        background-size: cover;
    }

    .reminder-h{
        padding: 0px 30px 0px 80px;
    }

    .reminder-h:before{
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/bell-icon.webp);
        position: absolute;
        top: -10px;
        left: -30px;
    }

    .green-brush-2{
        background: url(https://cdn.oppyotest.com/launches/maildaddy/special/green-brush-2.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 20px;
    }
}

/* reminder sec end */



/* kicks-out-sec start */
.kicks-out-sec{
    background-color: #fef3ff;
}
.kicks-out-sec-text{
    border-radius: 100px;
    background: var(--theme-gradient);
    padding: 5px 10px;
    display : inline-block;
    position: relative;
}
.kicks-out-points{
    padding: 15px 20px;
    padding-left: 70px;
    border-radius: 10px;
    border: 1px solid #FF361D;
    background: #FFF;
    box-shadow: 0px 5px 15px 0px rgba(255, 54, 29, 0.20);
    background-image: url(https://cdn.oppyotest.com/launches/maildaddy/special/delete-icon.webp);
    background-repeat: no-repeat;
    background-position: 20px 15px;
}
@media (min-width: 768px){
    .kicks-out-sec{
        background:#fef3ff url("https://cdn.oppyotest.com/launches/maildaddy/special/kicks-out-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .kicks-out-sec-text{
        padding: 5px 30px;
        padding-left: 100px;
    }
    .kicks-out-sec-text::after {
        content: url(https://cdn.oppyotest.com/launches/maildaddy/special/smily-thumbs-up.webp);
        position: absolute;
        top: -20px;
        left: -50px;
    }
}
/* kicks-out-sec end */

/* excel-sec start */
.excel-sec{
    background: #ffffff;
}
.holding-text{
    background: url("https://cdn.oppyotest.com/launches/maildaddy/special/holding-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
@media (min-width: 768px) {
    .excel-sec{
        background: #ffffff url(https://cdn.oppyotest.com/launches/maildaddy/special/excel-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .holding-text{
        padding: 0px 20px;
    }
}
/* excel-sec end */

/* fear sec start */
.fair-text {
    border: 2px solid #FF361D;
    background: rgba(255, 54, 29, 0.1);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
@media (min-width: 768px) {
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
}
/* fear sec end */

/* bonusess-sec start */
.bonusess-sec{
    background: #1c0013;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background: #F5F0F9 url("https://cdn.oppyotest.com/launches/maildaddy/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 50px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #F5F0F9;
}
.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: #0c0918 ;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #0c0918  url("https://cdn.oppyotest.com/launches/maildaddy/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
}
/* moneyback sec end */


/* pricing tabel start */
.pricing-section {
    background: #F6EFFF;
}
.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(https://cdn.oppyotest.com/launches/maildaddy/special/start-plan-bg.webp) no-repeat bottom center;
    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/maildaddy/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 57px;
    background-position: 20px 25px;
    line-height: 150%;
    text-transform: capitalize;
}
.table-list li.headline {
    background: var(--theme-gradient);
    padding: 26px 0px 20px 0px;
    background-position: 0px 18px;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    font-size: 22px;
    line-height: 100%;
    color: #ffffff;
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
}
a.cta-link-btn:hover {
    border-radius: 8px;
    background: var(--theme-gradient1);
    color: #ffffff;
}
.table-btn {
    padding: 30px 20px;
    text-align: center;
}
.table-border-content {
    background: #fff;
    border: 3px dashed #999;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    overflow: auto;
    padding-bottom: 10px;
}
.tb-check {
    background: #FEFE9B;
    padding: 20px;
}
@media (min-width: 768px) {
    .table-wrap {
        padding-bottom: 100px;
    }
    .table-head {
        padding: 40px 30px 80px 30px;
        text-align: center;
        min-height: 568px;
    }
    .table-list li {
        padding: 20px 15px 20px 57px;
    }
    a.cta-link-btn {
        font-size: 32px;
        padding: 35px 25px;
        display: inline-block;
    }
    .table-border-content {
        max-width: 75%;
    }
    .f-md-80 {
        font-size: 80px;
    }
}
/* pricing tabel end */


/* inside sec start */
.inside-section {
    background: #ffffff;
}

/* inside sec end */

/* faq sec start */
.faq-section {
    padding: 30px 0px;
    background-color: #F5F0F9;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/maildaddy/special/faq-icon.webp) no-repeat top left;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid #031528;
    border-radius: 20px;
}
@media (min-width: 768px){
    .faq-section {
        padding: 100px 0px;
    }
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #0A0305;
    padding: 30px 0;
}

.final-shape {
    background: linear-gradient(180deg, #F97B40 0%, #FF511A 100%);
    border-radius: 15px;
    padding: 8px 30px;
    display: inline-flex;
    position: relative;
    align-items: center;
}
@media (min-width: 768px){
    .cta-section-white {
        background: #0A0305 url(https://cdn.oppyotest.com/launches/maildaddy/special/demo-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 100px 0px;
    }
    .final-shape {
        padding: 15px 40px;
        border-radius: 100px;
    }
}
/* final-call end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.footer-ul .t-decoration-none:hover {
    color: #fff;
}
@media(min-width:768px) {
    .footer-section {
        padding: 70px 0px;
    }
}

/* footer end */