html {
    scroll-behavior: smooth;
}
body {
    font-family: "Nunito", sans-serif;
    color: #010101;
    font-size: 14px;
}
.caveat {
    font-family: "Caveat", system-ui;
}
.mina {
    font-family: "Mina", sans-serif;
}

  html::-webkit-scrollbar {
    width: 8px; 
 }
html::-webkit-scrollbar-thumb {
    background: var(--theme-clr);
    border-radius: 25px;
  }
/* color */
:root {
    /* --theme-gradient: #BBF300; */
    --theme-clr: linear-gradient(268.12deg, #1D5FE9 12.87%, #1C93EC 57.6%, #1DCAF5 96.69%);
    --gold-theme: linear-gradient(283.38deg, #FFB01D 0%, #DA8D0F 47.6%, #B16700 100%);
    --blue-clr: #1D7EEB;
    --white-clr: #ffffff;
    --black-clr: #010101;
    --red-clr: #FF373C;
    --red-clr1: #FF4E4E;
    --brown-clr: #6A1010;
    --pink-clr: #F75282;
    --orange-clr: #F07239;
}

/* gradient-color start */
.theme-clr{
    background: var(--theme-clr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold-theme {
    background: var(--gold-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-br{
    border-bottom: 3px solid transparent;
    border-image: var(--theme-clr);
    border-image-slice: 1;
    width: 100%;
}
/* gradient-color end */
.white-clr {
    color: var(--white-clr);
}
.black-clr {
    color: var(--black-clr);
}
.blue-clr {
    color: var(--blue-clr);
}
.red-clr{
    color: var(--red-clr);
}
.red-clr1{
    color: var(--red-clr1);
}
.brown-clr{
    color: var(--brown-clr);
}
.pink-clr{
    color: var(--pink-clr);
}


/* padding */
.sec-pd{
    padding-top: 40px;
    padding-bottom: 40px;
}
.under{
    border-bottom: solid #000;
}

@media (min-width:768px) {
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .f-md-58{
        font-size: 58px !important;
    }
}
/* padding */

/* img animation start */
.vert-move {
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
/* img animation end */


/* Header sec start */
.header-section{
    background: linear-gradient(180deg, #FFFFFF 0%, #92D5FF 100%);
    position: relative;
    overflow: hidden;
}
.main-heading {
    background: #fff6ee;
    border: 3px solid rgba(29, 202, 245, 0.5);
    border-radius: 20px;
    padding: 45px 10px 0px;
    display: inline-block;
    position: relative;
}
.pre-head {
    padding: 10px;
    background: linear-gradient(90deg, rgba(0, 89, 242, 0) 0%, rgba(0, 89, 242, 0.2) 50%, rgba(0, 89, 242, 0) 100%);
    display: inline-block;
}
.main-1 {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--orange-clr);
    border-radius: 17.5px 0 17.5px 0;
    padding: 2px 42px 2px 27px;
    display: inline-block;
}
.main-heading::before, .main-heading-1::before {
    position: absolute;
    top: 10px;
    left: 114px;
    z-index: 2;
    content: url("https://cdn.oppyotest.com/launches/mailempireai/jv/arrow-1.webp");
}

.main-text {
    background: var(--theme-clr);
    border-radius: 20px 20px 0 0;
    padding: 13px 22px 7px;
    display: inline-block;
}

.post-head{
    border: 1px dashed #1D7EEB;
    background: #EDF9FF;
    border-radius: 10px;
    display: inline-block;
    padding: 15px;
}


.date-box{
    border-radius: 30px;
    border: 5px solid #FFF;
    background: #03110E;
}

.header-section ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.header-section ul.leader-ul li {
    display: inline-block;
    padding: 0px 5px;
    font-weight: 400;
}

/*  */
.header-white-box{
    background: #ffffff;
    padding: 50px 20px 30px;
    border-radius: 20px;
    position: relative;
}
.main-date-1 {
    background: #1D7EEB1A;
    border: 2px solid #1D7EEB80;
    border-radius: 27px;
    padding: 0px 10px 30px;
}
.launch-start{
    background: #1D7EEB;
    padding: 7px 31px;
    display: inline-block;
    border-radius: 100px;
}
.time-box-1 {
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 5.48px 13.7px 0px #0000004D;
}
.time-box-2 {
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 5.48px 13.7px 0px #0000004D;
}
.main-date-2{
    background: #FD29291A;
    border: 2px solid #FD292980;
    border-radius: 27px;
    padding: 0px 10px 30px;
}
.launch-end{
    background: #FD2929;
    padding: 7px 29px;
    display: inline-block;
    border-radius: 100px;
}

.mt-top{
    margin-top: -30px;
}
.date sup {
    font-size: 30px;
    top: -1em;
}
.gradiant-frame{
    background: var(--theme-clr);
    padding: 0px 25px;
    display: inline-block;
    border-radius: 10px;
}


@media (min-width:768px) {
    
    .header-section{
        background: #ffffff url("https://cdn.oppyotest.com/launches/mailempireai/jv/header-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .main-heading{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/main-head.webp") no-repeat;
        background-size: 100% 100%;
        padding: 55px 34px 40px;
        border: unset;
        border-radius: unset;
    }
    .main-1 {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--orange-clr);
        border-radius: 17.5px 0 17.5px 0;
        padding: 0px 42px 0px 27px;
        display: inline-block;
    }
    .main-heading::before , .main-heading-1::before {
        top: 25px;
        left: 150px;
    }
    .blue-wave{
        position: relative;
    }
    .blue-wave::after {
        position: absolute;
        top: 22px;
        left: 0;
        content: url("https://cdn.oppyotest.com/launches/mailempireai/jv/blue-wave.webp");
    }
    .main-text {
        margin-bottom: 2.9px;
    }
    .pre-head {
        padding: 8px 147px;
    }
    .post-head{
        padding: 20px 49px;
    }
    .header-white-box{
        padding: 77px 80px;
    }
    .time-box-1 {
        padding: 12px 37px;
    }
    .time-box-2 {
        padding: 12px 42px;
    }
    .launch-end{
        padding: 13px 29px;
    }
    .main-date-1 {
        padding: 0px 22px 30px;
    }
    .main-date-2{
        padding: 0px 22px 30px;
    }




    .wave-line{
        position: relative;
    }
    .wave-line::after {
        content: url("https://cdn.oppyotest.com/launches/mailempireai/jv/wave-line.webp");
        position: absolute;
        bottom: -20px;
        left: 0px;
    }
    .yellow-border{
        position: relative;
    }
    .yellow-border::after {
        content: url(https://cdn.oppyotest.com/launches/mailempireai/jv/yellow-border.webp);
        /* padding: 0px 10px 0px 0px; */
        position: absolute;
        top: -4px;
        right: -25px;
    }
    .mock-box{
        position: relative;
    }
    .mock-box-1 {
        position: absolute;
        bottom: 20px;
        left: 30px;
    }
    .date-box{
        margin-top: -300px;
    }

/* date style */
.date sup {
    font-size: 30px;
    top: -2em;
    /* left: -.1em; */
}

.launch-start{
    padding: 13px 31px;
}
/* date style */
}

/* Header sec end */

/* live sec start */
.live-section {
    background: #ffffff;
    padding: 30px 0px;
}

.left-live-box {
    border: 5px solid #1D7EEB33;
    background: #D1E4FF;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}
.form-btn input[type="submit"] {
    text-decoration: none;
    border: none;
    color: #ffffff;
    text-align: center;
    display: block;
    width: 100%;
    z-index: 9999;
    padding: 15px 10px;
    line-height: 20px;
    font-weight: 600;
    outline: none;
    white-space: normal;
    cursor: pointer;
    background: var(--blue-clr);
    border-radius: 5px;
    transition: all .3s ease;
}
/* .form-btn input[type="submit"]:hover {
    background: var(--theme-gradient1) !important;
} */
.right-live-box {
    border-radius: 10px;
    border: 5px solid #E96C2780;
    background: #FFFFFF;
    padding: 15px;
    height: 100%; 
}
.request-affiliate a {
    background: var(--theme-gradient);
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #000000;
}
/* .request-affiliate a:hover {
    background: var(--theme-gradient1);
    color: #fff !important;
} */
.request-affiliate-1{
    display: inline-block;
}
.request-affiliate-1 a {
    background: #6A1010;
    border-radius: 5px;
    width: 100%;
    display: block;
    padding: 15px 10px;
    text-decoration: none;
}
/* .request-affiliate-1 a:hover{
    color: #fff;
    background: var(--theme-gradient1);
} */
a.promo-link-1, a.promo-link-2, a.promo-link-3 {
    max-width: 100%;
    padding: 15px 30px;
    border-radius: 5px;
}
a.promo-link-1:hover, a.promo-link-2:hover, a.promo-link-3:hover {
    text-decoration: none;
    color: #ffffff;
}
a.promo-link-1{
    background: #EC750D;
}
a.promo-link-2 {
    background: #0AABFF;
}
a.promo-link-3 {
    background: #E55AFB;
}
.promo-link-1:active, .promo-link-2:active, .promo-link-3:active {
    transform: scale(0.96);
  }
.form-frame{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/form-frame.webp) no-repeat center center;
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
}
/* .live-box{
    padding: 20px 15px;
} */

@media (min-width: 768px) {
    .live-section {
        padding: 310px 0px 100px;
    }
    .form-frame{
        padding: 1px 100px 80px 100px;
    }
    .left-live-box {
        padding: 50px 40px;
    }
    .mb-md5 {
        margin-bottom: 5px!important;
    }
    .form-control.input-field {
        height: 60px;
        font-size: 15px;
    }
    .right-live-box {
        padding: 50px 25px;
    }
    .request-affiliate-1 a {
        padding: 15px 95px;
    }
    .request-affiliate a {
        font-size: 20px;
        padding: 15px 20px;
        display: inline-block;
        width: auto;
    }
    /* .live-box{
        padding: 0px 100px 50px;
    } */
    .form-text-1{
        margin-top: -210px;
    }
}
/* live sec end */

/* profit-sec start */
.profit-sec{
    background: linear-gradient(270.14deg, #EAF1FF 17.47%, #71C9FF 212%);
}

@media (min-width: 768px) {
    .profit-sec{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/profit-sec-bg.webp") no-repeat bottom center;
        background-size: 100% 100%;
        padding: 120px 0 170px;
        position: relative;
    }
    .convert-text {
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/gold-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 5px 15px;
        color: #fff;
        -webkit-text-fill-color: unset;
    }
}

/* profit-sec end */

/* marketing-sec start */
.marketing-sec{
    background: #ffffff;
}
.white-mail{
    background: #ffffff;
    border-radius: 5px;
    padding: 1px 11px 7px 8px;
}
.mail-h{
    background: rgba(29, 126, 235, 0.1);
    border: 1px dashed #1D7EEB;
    border-radius: 10px;
    display: inline-block;
    padding: 26px 16px;
}
.marketing-frame-1{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/market-frame-1.webp) no-repeat;
    background-size: 100% 100%;
}
.marketing-frame-2{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/market-frame-2.webp) no-repeat;
    background-size: 100% 100%;
}
.marketing-frame-3{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/market-frame-3.webp) no-repeat;
    background-size: 100% 100%;
}
.marketing-frame-4{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/market-frame-4.webp) no-repeat;
    background-size: 100% 100%;
}
.marketing-frame-5{
    background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/market-frame-5.webp) no-repeat;
    background-size: 100% 100%;
}
.marketing-p{
    padding: 15px;
    height: 100%;
}
.mail-b{
   background: #1D7EEB;
   border-radius: 10px;
   padding: 10px;
}
.mail-bottom{
    background: rgba(29, 126, 235, 0.1);
    border: 1px dashed #1D7EEB;
    border-radius: 10px;
    display: inline-block;
    padding: 11px 20px;
}

@media (min-width: 768px) {
    .marketing-sec{
        background:#fff url(https://cdn.oppyotest.com/launches/mailempireai/jv/marketing-bg.webp) center center;
        background-size: cover;
    }
    .marketing-p{
        padding: 30px 24px;
    }
    .mail-b{
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/mail-b.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        border-radius: unset;
        padding: 23px 75px;
    }
}

/* marketing-sec end */


/* proudly-section start */
.proudly-sec{
    background: #0b0402;
    padding: 30px 0px;
}
.presenting-head{
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #1D5FE9;
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 8px 26px;
}
.main-heading-1 {
    background: linear-gradient(268.12deg, rgba(29, 95, 233, 0.15) 12.87%, rgba(28, 147, 236, 0.15) 57.6%, rgba(29, 202, 245, 0.15) 96.69%);
    border: 3px solid rgba(29, 202, 245, 0.5);
    border-radius: 20px;
    padding: 45px 10px 0px;
    display: inline-block;
    position: relative;
}
@media (max-width: 767px) {
    .proudly-logo{
        max-height: 90px;
    }
}
@media (min-width: 768px) {
    .proudly-sec {
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/proudlybg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 120px;
        /* margin-top: -120px; */
    }
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/presenting-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 6px 31px 8px;
    }
    .main-heading-1 {
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/main-head-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 55px 34px 40px;
        border: unset;
        border-radius: unset;
    }
}
/* proudly-section end */

/* step-sec start */
.step-sec{
    background: #E4F5FF;
}
.step-text{
    background: #4B76BA;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}
.step-card1{
    border: 3px solid #2B9EDE;
    background: #ffffff;
    box-shadow: 5px 0px 20px 0px #3470F980;
    border-radius: 10px;
    padding: 20px 10px;
    display: inline-block;
}
.step-card2{
    border: 3px solid #3470F9;
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px #3470F980;
    border-radius: 10px;
    padding: 20px 10px;
    display: inline-block;
}
.step-card3{
    border: 3px solid #FD346E;
    background: #ffffff;
    box-shadow: 5px 0px 20px 0px #fd346e80;
    border-radius: 10px;
    padding: 20px 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .step-sec {
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/step-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .step-text{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/step-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 11px 43px 8px 40px;
        border-radius: unset;
    }
    .step-card1{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/step-card1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 100px 28px 108px;
        box-shadow: unset;
        border-radius: unset;
        border: unset;
    }
    .step-card2{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/step-card2.webp") no-repeat;
        background-size: 100% 100%;
        padding: 90px 24px;
        box-shadow: unset;
        border-radius: unset;
        border: unset;
    }
    .step-card3 {
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/step-card3.webp") no-repeat;
        background-size: 100% 100%;
        padding: 100px 28px 136px;
        box-shadow: unset;
        border-radius: unset;
        border: unset;
    }
}
/* step-sec end */

 /* ground-breaking  */
 .ground-breaking {
    padding: 30px 0px;
    background: linear-gradient(270.14deg, #EAF1FF 17.47%, #71C9FF 212%);
}
.features-box-1 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-1.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-2 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-2.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-3 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-3.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-4 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-4.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-5 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-5.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-6 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-6.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-7 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-7.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-8 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-8.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-box-9 {
    height: 100%;
    background:  url(https://cdn.oppyotest.com/launches/mailempireai/jv/features-box-9.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 35px 30px;
    transition: transform .2s;
    cursor: pointer;
}
.features-list-bg img{
    transition: 0.4s ease;
}
.features-list-bg:hover img{
    transform: scale(1.1);
}
@media (min-width:768px) {
    .ground-breaking {
        padding: 50px 0px 100px 0px;
    }
    /* .features-list-bg {
        min-height: 254px;
    } */
}
/* ground-breaking  */


/* demo sec start */
.demo-sec{
    background: #ffffff;
    padding: 30px 0px;
    overflow: hidden;
}
.border-frame{
    background: linear-gradient(283.38deg, #FFB01D 0%, #DA8D0F 47.6%, #B16700 100%);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/demo-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 100px 0px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .purple-shade{
        padding: 0px 45px;
    }
}

/* demo sec end */

/* prize sec start */

.prize-sec{
    background: linear-gradient(270.29deg, #EAF1FF 17.42%, #71C9FF 211.43%);
}

.prize-box{
    background: #ffffff;
    border: 1px solid #1D7EEB;
    box-shadow: 0px 0px 20px 0px #0000001A;
    border-radius: 10px;
    padding: 10px;
}

.gradiant-box{
    border-radius: 10px;
    background: var(--theme-clr);
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .prize-sec{
        background: #71C9FF url(https://cdn.oppyotest.com/launches/mailempireai/jv/prize-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .prize-box{
        padding: 60px 100px 40px;
    }
    .gradiant-box{
        padding: 27px 28px;
    }
}

/* prize sec end */

/* funnel-text start */
.funnel-text{
    background: #EC750D;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .funnel-text{
        border-radius: 100px;
        padding: 20px 70px;
    }
}
/* funnel-text end */

/* ranked-sec start */
.ranked-sec{
    background: linear-gradient(270.34deg, #EAF1FF 17.49%, #71C9FF 211.33%);
}
.ranked-text {
    border-radius: 10px;
    background: linear-gradient(283.38deg, #FFB01D 0%, #DA8D0F 47.6%, #B16700 100%);
    /* border: 1px solid #1DBBFF; */
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .ranked-sec{
        background: url(https://cdn.oppyotest.com/launches/mailempireai/jv/ranked-bg.webp) no-repeat bottom center;
        background-size: cover;
        position: relative;
        padding-bottom: 150px;
    }
    .ranked-text{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/ranked-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 37px 82px 17px 81px;
        border-radius: unset;
        border: unset;
    }
}
/* ranked-sec end */

/* product sec start */
.product-list {
    background: #ffffff;
}

.glimpse-text{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #C04747;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px){
    .product-list{
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/sales-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        margin-top: -55px;
        padding-top: 160px;
    }
    .theme-wave{
        position: relative;
    }
    .theme-wave::before{
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/mailempireai/jv/theme-wave.webp") no-repeat;
        bottom: -8px;
        left: 0;
        width: 102%;
        height: 14px;
    }
    .glimpse-text{
        border-radius: 35px;
        padding: 8px 54px;
    }
}
/* product sec end */

/* reciprocate-sec start */
.reciprocate-sec {
    background-color: #051330;
}
.dominat-text {
    border-radius: 10px;
    background: var(--theme-clr);
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .reciprocate-sec {
        background: #051330 url(https://cdn.oppyotest.com/launches/mailempireai/jv/reciprocate-sec.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .dominat-text {
        padding: 20px 43px;
        border-radius: 0px 50px 0px 50px;
    }
}
/* reciprocate-sec end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.white-clr, a.white-clr {
    color: #ffffff;
}
@media (min-width: 768px) {
    .footer-section {
        padding: 70px 0px;
    }

}
/* footer end */

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    box-shadow: 0px 0px 1px 0px rgba(208, 219, 227, 0.58);
    /* border-radius: 5px; */
}

/* fixed-bar start */
.fixed-top-bar {
    background: var(--theme-clr);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
}
ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    /* font-weight: 500; */
    color: var(--white-clr);
}
a.affiliate-link-btn {
    border-radius: 10px;
    border-radius: 10px;
    background: #ffffff;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    font-size: 18px;
    color: #000;
    font-weight: 600 !important;
}
@media (min-width: 768px) {
    .fixed-top-bar {
        padding: 5px 0;
    }
    a.affiliate-link-btn {
        padding: 10px 20px !important;
        font-size: 18px;
    }
}
/* fixed-bar end */



/* header-icon css start */
.icon-1{
    position: absolute;
    top: 1%;
    left: -1%;
}
.icon-2 {
    position: absolute;
    top: 5%;
    right: 6%;
}
.icon-3 {
    position: absolute;
    top: 38%;
    left: 3%;
}
.icon-4 {
    position: absolute;
    top: 36%;
    right: 0;
}
/* header-icon css end*/

/* animation css start */
.slideskew {
    animation: 5s ease 0s normal none infinite running slideskew; }
  
  @keyframes slideskew {
    0% {
      transform: translateY(0px);
      opacity: 1; }
    50% {
      transform: translateY(20px);
      -moz-transform: translateY(20px);
      -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
      -o-transform: translateY(20px); }
    100% {
      transform: translateY(0);
      -moz-transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0); } 
}
.icon-1 {
    animation: 3s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
    0% {
      transform: translateX(0px); }
    50% {
      transform: translateX(20px);
      -moz-transform: translateX(20px);
      -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
      -o-transform: translateX(20px); }
    100% {
      transform: translateX(0);
      -moz-transform: translateX(0);
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0); } 
    }

.icon-2{
    animation: 3s ease 0s normal none infinite running pulse;
}
@keyframes pulse {
    0% {
        transform: scale(0.8);
     }
    50% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1); 
    } 
    100% {
        transform: scale(0.8);
        -moz-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
}
  


.icon-3 {
    animation: 3s ease 0s normal none infinite running hithere;
}
@keyframes hithere {
    30% {
        transform: scale(1.2);
    }
    40%, 60% {
        transform: rotate(-10deg) scale(1.2);
    }
    50% {
        transform: rotate(10deg) scale(1.2);
    }
    70% {
        transform: rotate(0deg) scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
/* animation css end */
