html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #010101;
    font-size: 14px;
    overflow-x: hidden;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background: var(--theme-gradient);
  border-radius: 25px;
}
.object-fit-contain{
    object-fit: contain;
}

/* font-family */
.caveat{
    font-family: "Caveat", system-ui;
}
.zen{
    font-family: "Zen Dots", sans-serif;
}
.italic {
    font-style: italic;
}
.oswald{
     font-family: "Oswald", sans-serif;
}
/* font-family */

:root {
    --black-clr:#000000;
    --white-clr: #fff;
    --light-grey: #00000099;
    --light-white: #01010199;
    --blue-clr:#38A4FF;
    --blue-clr1:#3A6FFF;
    --orange-clr: #FF8114;
    --red-clr: #FF3D3D;
    --red-clr1: #FA2E2E;
    --red-clr2: #FF4646;
    --red-clr3: #FF5E4A;
    --green-clr:#30CA05;
    --green-clr1:#26AF00;
    --green-clr2:#28B800;
    --pink-clr:#EB00D0;
    --purple-clr:#C58EFF;
    --grey-clr:#555555;
    --yellow-clr: #FFB528;
    --yellow-clr1: #FFD341;
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);
    --theme-clr: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);

    /* --theme-gradient1: linear-gradient(90deg, #AC2FFF 31.86%, #FF4F70 101.83%);
    --theme-gradient2: linear-gradient(175deg, #FF4F70 21.76%, #A020F0 80.53%, #4A00FF 144.53%); */

}
/* Color CSS */

.black-clr {color: var(--black-clr)}
.white-clr,
a.white-clr {
    color: var(--white-clr);
}
.light-white1 {
    color: #ffffff99;
}
.light-grey{color: var(--light-grey);}
.light-white{color: var(--light-white);}
.blue-clr{color:var(--blue-clr);}
.blue-clr1{color:var(--blue-clr1);}
.orange-clr{color:var(--orange-clr);}
.red-clr{color:var(--red-clr);}
.red-clr1{color:var(--red-clr1);}
.red-clr2{color:var(--red-clr2);}
.red-clr3{color:var(--red-clr3);}
.green-clr{color:var(--green-clr)}
.green-clr1{color:var(--green-clr1)}
.green-clr2{color:var(--green-clr2)}
.pink-clr{color:var(--pink-clr);}
.yellow-clr{color:var(--yellow-clr);}
.yellow-clr1{color:var(--yellow-clr1);}
.grey-clr{color:var(--grey-clr);}
.purple-clr{color:var(--purple-clr);}

.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr{
    background: var(--theme-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr1{
    background: var(--theme-gradient2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-br {
    border-bottom: 4px solid transparent;
    border-image: var(--theme-gradient);
    border-image-slice: 1;
    width: 100%;
}

/* Responsive Video CSS */

.responsive-video {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    /* border: 5px solid #A0D3FF; */
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    backdrop-filter: blur(10px);
}

.responsive-video iframe,
.responsive-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section Padding Start */

.sec-pd{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .mt-md118{
        padding-top: 118px;
    }
}

/* Section Padding End */
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.gap20 {
    gap: 20px;
}

/* cta-border-sec start */
.cta-btn-bg {
    background: linear-gradient(90.41deg, #064200 4.59%, #333300 99.83%);
    border: 5px dotted #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
}
.cta-btn-border {
    /* border: 3px dashed #000000; */
    border-radius: 10px;
    padding: 0px;
}
@media (min-width: 768px) {
    .cta-btn-bg {
        background: url(..//images/cta-btn-border.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 25px;
        border-radius: 20px;
        border: unset;
        border-radius: unset;
    }
    .cta-btn-border {
        border-radius: 33px;
        padding: 0px;
    }
}
/* cta-border-sec end */

/* bttn css */
.play-btn{
    position:absolute;
    top:80%;
    left:50%;
    transform:translate(-50%, -50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:var(--green-clr1);
    backdrop-filter: blur(6px);

    transition:all 0.3s ease;

    /* pulse animation */
    animation:pulse 2s infinite;
}

/* pulse glow */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 var(--green-clr1);
    }
    70%{
        box-shadow:0 0 0 15px rgba(128,0,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(128,0,255,0);
    }
}

/* hover zoom */
.play-btn:hover{
    transform:translate(-50%, -50%) scale(1.2);
}

/* icon rotate animation */
.play-btn i{
    transition: transform 0.4s ease;
}

.play-btn i.fa-pause{
    transform: rotate(180deg);
}

/* ripple background */
.play-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    animation:ripple 2s infinite;
    z-index:-1;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(2);
        opacity:0;
    }
}

/* Button Hidden when Playing */
.hide {
    opacity: 0;
    pointer-events: none;
}

/* Play/Pause Icons */
.play-btn i {
    color: white;
    font-size: 30px;
}
/* .fu-frame video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
} */
 .explore-box {
    border-radius: 10px;
    position: relative;
}

@media (min-width: 768px) {
     .play-btn {
        top: 50%;
    }
  .play-btn {
        /* left: 27%; */
        width: 60px;
        height: 60px;
    }
        .explore-box {
        border-radius: 10px;
        /* height: 100%; */
    }
}

/* sticky bar start */
.fixed-top-bar {
    background: var(--theme-gradient);
    padding: 10px 0 20px;
    position: sticky;
    top: 0;
    z-index: 99;
    text-transform: lowercase;
}

.fixed-top-bar a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    background: var(--white-clr);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 9px 10px;
    text-decoration: none;
    animation: blink 1.5s linear infinite;
}
@keyframes blink {
    0% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}
 @media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
 }
/* stick bar end */

/* header section start */

.theme-btn {
    background: var(--theme-gradient);
    border: 4px solid #FFFFFF;
    box-shadow: 0px 8px 20px 0px #000000B2 inset, 0px -8px 20px 0px #FFFFFF inset;
    padding: 12px 9px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s linear;
    background-size: 100% 100%;
}
.theme-btn:hover {
    transition: all .3s linear;
    transform: scale(1.03);
}

.header-sec{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    padding: 30px 0px;
}
.main-text {
    background: var(--red-clr);
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}

.int-box {
    background: #FFB528;
    border-radius: 0px 0px 20px 30px;
    display: inline-block;
    padding: 10px;
}

.pre-head {
    padding: 10px 10px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
}
/* .main-heading {
    background: linear-gradient(181.37deg, rgba(112, 0, 0, 0.2) 1.06%, rgba(112, 0, 0, 0.2) 98.73%);
    border: 2px solid #DB3C3B;
    border-radius: 20px;
    padding:0px 10px 10px;
} */
.video-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid var(--blue-clr1); 
    backdrop-filter: blur(15px);
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    border-radius: 15px;
    padding: 15px;
}
.payment-box{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    border: 3px solid #FFFFFF;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    padding: 10px;
    border-radius: 10px;
}
.header-ul{
    padding: 20px 10px;
    background: url(https://cdn.oppyotest.com/launches/dexra/special/ul-box.webp);
    background-size: 100% 100%;
    /* border: 2px solid #FFFFFF4D; */
    /* backdrop-filter: blur(15px);
    box-shadow: 0px 10px 20px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    /* border-radius: 20px; */
}
.header-ul li {
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/dexra/special/tick.webp") no-repeat;
    background-position: 0px 1px;
    padding: 0px 0px 15px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0;
}
.green-frame{
    background: url("https://cdn.oppyotest.com/launches/dexra/special/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.red-frame{
    background: url("https://cdn.oppyotest.com/launches/dexra/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.Exclusive-text{
    background: #231C37;
    border: 1px dashed #7380F0;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    border-radius: 20px;
    padding: 10px;
}
.green-price {
    background: url("https://cdn.oppyotest.com/launches/dexra/special/green-price.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.month-text{
    background: var(--red-clr);
    border-radius: 100px;
    padding: 2px 6px;
}
.post-head{
    background: #231C37;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}

.booking-box{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    padding: 11px 30px 20px;
}

@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
        .main-text {
        padding: 10px 26px 15px;
    }
    .pre-head {
        padding: 12px 32px;
        border-radius: 50px;
    }
        .int-box {
        padding: 10px 28px 15px;
    }
    /* .main-heading {
        background: url("https://cdn.oppyotest.com/launches/dexra/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 43px 40px 56px;
        border-radius: unset;       
        border: unset;
        box-shadow: unset;
    } */
    /* .typing-text {
        padding: 12px 24px;
        width: 835px;
    } */
    .post-head{
        padding: 10px 80px;
}
    .green-price {
        padding: 0px 8px;
    }
    .header-ul{
        padding: 40px 20px;
    }
    .header-ul li{
        padding: 0px 0px 30px 37px;
    }
    .payment-box{
        padding: 70px 106px;
        border-radius: 50px;
    }
    .theme-btn {
        padding: 25px 90px;
    }
    .Exclusive-text{
        padding: 20px 25px;
    }
}
/* header section end */

/* efforts section start */
.efforts-sec{
    background: #FFFFFF;
}
.effort-text{
    border: 1px solid var(--blue-clr1);
    border-radius: 0px 10px 0px 10px;
    display: inline-block;
    padding: 0px 10px;
}
.effort-text1{
    background: var(--red-clr);
    border: 1px solid #DB3C3B00;
    border-radius: 100px;
    display: inline-block;
    padding: 10px 30px;
}
.effort-box{
    background: #D9F1FD;
    border: 1px solid #0BAEFF;
    border-radius: 20px;
    display: inline-block;
    padding: 15px 20px;
}

.effort-text2{
    background: #ffffff;
    border: 1px solid var(--red-clr);
    display: inline-block;
    border-radius: 0px 10px 0px 10px;
    padding: 0px 10px;
}

@media(min-width:768px){
    .efforts-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/efforts-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 40px 100px;
}
}

/* efforts section end */

/* imagine section start */
.imagine-sec{
    background: #FFF8EF;
}
.imagine-text{
    background: #DB3C3B;
    border: 1px solid #DB3C3B00;
    border-radius: 100px;
    padding:10px 20px;
    display: inline-block;
}
.imagine-box{
    background: #ffffff;
    border: 1px solid #DB3C3B;
    border-radius: 0px 10px 0px 10px;
    display: inline-block;
    padding: 10px;
}
.imagine-box1{
    background: #ffffff;
    border: 1px solid #DB3C3B;
    border-radius: 0px 10px 0px 10px;
    display: inline-block;
    padding: 10px;
}

@media(min-width:768px){
    .imagine-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/imagine-bg.webp) no-repeat center center;
    background-size: cover;
}
    .imagine-text{
    padding: 7px 56px 15px 30px;
    position: relative;
}
.imagine-text::before {
    content: url(https://cdn.oppyotest.com/launches/dexra/special/pensee-icon.webp);
    position: absolute;
    top: 10px;
    right: -35px;
}
.imagine-box{
    padding: 16px 25px;
}
.imagine-box1{
    padding: 14px 40px;
}
}

/* imagine section end */


/* step-2 sec start */
.step-section-1 {
    background: #FFFFFF;
}

.step-card1 {
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    padding: 30px 20px;
    /* height: 100%; */
}
.step-card2 {
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    padding: 30px 20px;
    /* height: 100%; */
}
.step-card3 {
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    padding: 30px 20px;
    /* height: 100%; */
}
.step-frame {
    background: #2571ff1a;
    border: 1px dashed var(--blue-clr);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.step-frame-1 {
    background: var(--orange-clr);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}

.step-box{
    background: #FFFFFF1A;
    border: 1px solid #7380F0;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 12px 15px 14px;
}

/*  */
.heading-tabs:not(.collapsed) .steps-icon{
    border-color: var(--blue-clr);
}
.steps-card .steps-icon{
    min-width: 80px;
    min-height: 80px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: white;
    fill: white;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
    transition: 0.5s ease-in-out;
    border: 2px solid transparent;
    padding: 10px;
    margin-bottom: 20px;
}

.steps-tabs{
    overflow: hidden;
}
.steps-card{
    height: auto;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
}
.step-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    display: inline-block;
    padding: 5px 10px;
}
.steps-card1{
    padding: 10px;
}
.nav-link.active .steps-card{
     background: #FFFFFF;
     border: 1px solid #DC414080;
}
.step-ul li {
    list-style: none;
    background: url(https://cdn.oppyotest.com/launches/dexra/special/tick1.webp) no-repeat;
    background-position: 10px 15px;
    padding: 15px 0px 0px 40px;
}
.step-text-box{
    background: #FFFFFF80;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
.step-text-box1{
    background: #FFFFFF80;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.step-btn-bg{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    padding: 20px 10px;
    border-radius: 10px;
}
.step-bg-box{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #7380F0;
    border-radius: 30px;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 20px 12px;
}

@media (min-width: 768px) {
    .step-section-1{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/step-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .step-btn-bg{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/step-btn-bg.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 59px 36px;
        border-radius: unset;
    }
    .step-card1{
        padding: 30px 20px;
    }
    .step-card2{
        padding: 30px 20px 45px;
    }
    .step-card3{
        padding: 30px 20px 43px;
        height: 100%;
    }
    .step-frame{
        border-radius: 20px;
        padding: 6px 30px 4px 30px;
    }
    .step-frame-1{
        border-radius: 1000px;
        padding: 0px 44px;
    }
    .step-bg-box{
    border-radius: 100px;
    padding: 12px 20px;
}
    /* .steps-card{
        padding: 40px 30px;
    } */
     /* .step-text{
    padding: 5px 30px 10px;
} */
    .steps-card .steps-icon{
        padding: 20px;
    }
            .steps-card1{
        padding: 30px;
    }
        .step-text-box{
    padding: 20px 15px;
}
    .step-text-box1{
    padding: 5px 70px 20px 31px;
}
}
    /*  */
.steps-card p{
    color: rgba(25, 25, 25, 0.7);
}

.steps-card{
    transition: all .8s ease-in-out;
    background: #FFFFFF80;
    border: 1px solid #DC414080;
    border-radius: 20px;
}
.heading-tabs{
    background: transparent; 
    border: none;
    outline: none;
    padding: 0;
    text-align: center;
    border-radius: 20px;
}

/* .cleint-frame1 {
    border: 5px solid #FF4F70;
    border-radius: 20px;
} */
/* step-2 sec end */

/* solution section start */
.solution-sec{
    background: #F0F3FF;
}

.solution-theme{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    display: inline-block;
    padding: 10px;
}
.solution-box{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .solution-text{
    background: #FF3D3D1A;
    border: 1px solid #FF3D3D;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
.solution-theme{
    padding: 7px 20px 12px;
}
.solution-box{
    padding: 20px 50px;
}
}

/* solution section end */

/* agent section start */
.agent-sec{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
}
.agent-text{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.3) 0%, rgba(54, 165, 255, 0.3) 100%);
    border: 1px solid #C562FF;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.agent-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    border-radius: 50px;
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px){
    .agent-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/agent-bg.webp) no-repeat center center;
    background-size: cover;
}
    .agent-text{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/agent-text.webp) no-repeat;
    background-size: 100% 100%;
    padding: 12px 30px;
    border: unset;
    border-radius: unset;
}
.agent-box{
    padding: 25px 45px;
}
}

/* agent section end */

/* team section start */
.team-sec{
    background: #ffffff;
}

.tm-frame{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/tm-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px){
    .tm-frame{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/tm-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 82px 52px 31px;
}
}

/* team section end */

/* business-sec start */
.business-sec{
   background: #F0F3FF;
}

.business-sec,
.container-fluid {
    overflow: visible;
}

.swiper {
    width: 100%;
    height: 500px;
    overflow: visible !important;
}

.swiper-wrapper {
    height: 100%;
    transition-timing-function: ease-in-out !important;
}


/* ================= DESKTOP ================= */

.swiper-slide {
    width: 750px;
    transition: all 0.5s ease;
    transform: scale(0.85);
    overflow: visible;
}

.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(0.9);
}

.swiper-slide-active {
    transform: scale(1.3);
    opacity: 1;
    z-index: 10;
}

.swiper-slide .box {
    padding: 10px;
}

/* media inside */
.swiper-slide video,
.swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}


/* ================= MOBILE ONLY ================= */

@media (max-width: 768px) {

    .swiper {
        height: auto !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }

    .swiper-wrapper {
        height: auto !important;
        align-items: center;
    }

    .swiper-slide {
        width: 100% !important;
        transform: scale(1) !important;
        opacity: 1 !important;
        margin-bottom: 0 !important;
    }

    .swiper-slide-active,
    .swiper-slide-prev,
    .swiper-slide-next {
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .swiper-slide .box {
        padding: 0 !important;
    }

    .swiper-slide video,
    .swiper-slide img {
        width: 100%;
        height: auto !important;
        max-height: 300px;
        object-fit: contain;
        border-radius: 10px;
    }
}


/* business-sec end */


/* team section start */
.voice-sec{
    background: #ffffff;
}

.vc-frame{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/tm-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}

.team-text {
  background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
  display: inline-block;
  border-radius: 30px;
  padding: 10px;
}

@media (min-width: 768px){
    .vc-frame{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/vc-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 82px 52px 31px;
}
.team-text {
  border-radius: 100px;
  padding: 12px 30px;
}
}

/* team section end */

/* interactive-section-start */
.interactive-sec{
    background: #F0F3FF;
}
.interactive-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 30px;
    padding: 10px;
    display: inline-block;
}
    .interactive-frame{
        background: linear-gradient(180deg, #070708 0%, #4B368F 100%);
        border-radius: 10px;
        display: inline-block;
        padding: 10px;
    }

@media (min-width: 768px){
    .interactive-frame{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/interactive-frame.webp) no-repeat;
        background-size:  100% 100%;
            display: inline-block;
        padding: 85px 50px 30px;
    }
    .interactive-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 100px;
    padding: 12px 30px;
    display: inline-block;
}
}
/* interactive-section-end */

/* embed-section-start */
.embed-sec{
    background: #ffffff;
}

.embed-text{
    background: #ffffff;
    border: #C562FF 1px solid;
    border-radius: 100px;
    padding: 10px 30px 4px 30px;
    display: inline-block;
}
.embed-blue{
    background: var(--blue-clr1);
    padding: 5px 10px;
    display: inline-block;
    border-radius: 10px;
}
.embed-bottom{
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px #3A6FFF80 inset;
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .embed-frame{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/interactive-frame.webp) no-repeat;
        background-size:  100% 100%;
        display: inline-block;
        padding: 85px 50px 30px;
    }
    .embed-text{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/embed-text.webp) no-repeat;
        background-size: 100% 100%;
        padding: 10px 30px 10px 30px;
        display: inline-block;
        border: unset;
    }
    .embed-bottom{
        padding: 40px 55px;
    }
}
/* embed-section-end */

/* without-sec-start */
.without-sec{
    background: #F0F3FF;
}
.without-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #8B8B8B4D;
    padding: 20px;
}
.check-box{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.3) 0%, rgba(54, 165, 255, 0.3) 100%);
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .without-sec{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-box{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/without-frame.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
    }
    .check-box{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/check-box.webp) no-repeat;
        background-size: 100% 100%;
        padding: 12px 20px;
    }
}
/* without-sec-end */

/* btn-sec start */
.cta-section {
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    position: relative;
    perspective: 1000px;
    padding: 30px 0px;
}
.cta-theme{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.3) 0%, rgba(54, 165, 255, 0.3) 100%);
    border: 1px solid #C562FF;
    border-radius: 100px;
    padding: 10px 20px;
}
@media (min-width: 768px) {
    .cta-section {
        background: #000000 url(https://cdn.oppyotest.com/launches/dexra/special/cta-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 90px 0px;
    }
    .cta-theme{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/cta-theme.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
    }
}
/* btn-sec end */

/* never-sec-start */
.never-sec{
    background: #ffffff;
}
.never-bottom{
   background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 3px solid #C562FF;
    border-radius: 30px;
    padding: 10px 20px;
}
@media (min-width: 768px) {
    .never-frame{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/never-frame.webp) no-repeat;
        background-size:  100% 100%;
        display: inline-block;
        padding: 120px 69px 64px;
    }
    .never-bottom{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/never-bottom.webp) no-repeat;
        background-size: 100% 100%;
            border-radius: 100px;
        padding: 25px 70px;
        border: unset;
    }
}
/* never-sec-end */

/* profit-sec-start */
.profit-sec{
    background: #000000;
}
.profit-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .profit-sec{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/profit-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .profit-text{
        padding: 10px 40px;
    }
    .profit-frame{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/profit-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 50px;
    }
}
/* profit-sec-end */

/* math-sec-start */
.math-sec{
    background: #ffffff;
}
.math-main-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.math-box{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.math-box1{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 2px solid #7380F0;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.math-box2{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border: 2px solid #7380F0;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.math-bottom{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 3px solid #36A5FF;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .math-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/math-bg.webp) no-repeat center center;
    background-size: cover;
}
.math-box{
    padding: 30px 78px;
}
.math-box1{
    padding: 50px 34px 31px;
}
.math-main-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
}
.math-box2{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/math-box1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 40px 215px;
    border: unset;
    border-radius: unset;
}
.math-bottom{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/math-box2.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 25px 30px;
    border: unset;
    border-radius: unset;
}

}

/* math-sec-end */

/* earning-sec-start */
.earning-sec{
    background: #F0F3FF;
}
.earning-text{
    background: #3A6FFF;
    display: inline-block;
    border-radius: 10px;
    padding: 16px 40px;
}

@media (min-width: 768px){
.earning-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/earning-bg.webp) no-repeat center center;
    background-size: cover;
}
}
/* earning-sec-end */

/* warning-sec-start */
.warning-sec{
    background: linear-gradient(180deg, #FFE9E9 0%, #ECFFEB 100%);
}
.warning-text{
    background: #FF3D3D;
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-block;
}
.warning-dot{
    background: #FFFFFF;
    border: 1px dashed #FF3D3D;
    border-radius: 10px;
    padding: 15px 25px;
    display: inline-block;
}
.warning-shadow{
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px #FF3D3D80 inset;
    border-radius: 30px;
    display: inline-block;
    padding: 20px;
}
.warning-box{
    background: #FFFFFF;
    border: 1px solid #FF3D3D;
    border-radius: 20px;
    padding: 20px 20px 30px;
    height: 100%;
}
.warning-box2{
    background: #FFFFFF;
    border: 1px solid #FF3D3D;
    padding: 10px 30px;
    border-radius: 20px;
}
.warning-check{
    background: #FFFFFF;
    border: 1px solid #28B800;
    border-bottom: 5px solid #28B800;
    border-radius: 20px;
    padding: 20px 15px 30px;
    height: 100%;
}
.warning-team{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
}
.warning-green{
    background: #28B800;
    border-radius: 100px;
    padding: 15px 20px;
    display: inline-block;
}
.purple-box{
    padding: 10px 20px;
    background: #3A6FFF;
    border-radius: 100px;
}
@media (min-width: 768px) {
    .warning-sec{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/warning-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }
    .warning-text{
        padding: 20px 50px;
    }
    .warning-shadow{
        padding: 40px 110px;
    }
    .warning-team{
        padding: 30px 90px;
    }
}
/* warning-sec-end */


















/* presenting-sec start */
.presenting-sec{
    background: #000000;
}
.presenting-head{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.3) 0%, rgba(54, 165, 255, 0.3) 100%);
    border: 2px solid var(--blue-clr1);
    border-radius: 30px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .presenting-sec{
        background: #F1F5FC url("https://cdn.oppyotest.com/launches/dexra/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 100px;
    }
    .presenting-head{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/presenting-head.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 30px 60px;
        border: unset;
        border-radius: unset;
}
}
/* presenting-sec end */

/* step-2 sec start */

.step-section {
    background: #ffffff;
}
.step-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    display: inline-block;
    border-radius: 100px;
    padding: 10px;
}
.step-text1{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid var(--blue-clr1);
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.step-frame1{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/step-frame.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}

@media (min-width: 768px) {
    .step-section{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/step-sec-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .step-text{
    padding: 7px 70px;
}
    .step-text1{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/step-text1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    border-radius: unset;
    border: unset;
    padding: 25px 40px;
}
}
/* step-2 sec end */


/* demo section start */
.demo-sec{
   background: #F0F3FF;
}
.demo-text{
    background: var(--theme-clr);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
.border-frame {
    background: #151515;
    border: 2px solid var(--theme-clr);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 50px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/dexra/special/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 100px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }

}
/* demo section end */

/* features section start */
.feature-sec{
    background: #000000;
}
.features-heading{
   position: relative;
}
.feature-card-1 {
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.feature-card-2 {
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.black-feature-card{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.black-feature-card-1{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.white-feature-card, .white-feature-card-1{
    background: linear-gradient(90deg, rgba(197, 98, 255, 0.1) 0%, rgba(54, 165, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
@media (min-width:768px) {
   .feature-sec{
       background: url("https://cdn.oppyotest.com/launches/dexra/special/feature-bg.webp") no-repeat top center;
       background-size: cover;
   }
   .features-heading:before{
       background: url(https://cdn.oppyotest.com/launches/dexra/special/power-icon-left.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       left:245px;
       content: '';
   }
   .features-heading:after{
       background: url(https://cdn.oppyotest.com/launches/dexra/special/power-icon-right.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       right:245px;
       content: '';
   }
   .feature-card-1{
        border-radius: 20px;
        padding: 40px 50px;
   }
   .feature-card-2{
        border-radius: 20px;
        padding: 25px 30px 30px;
   }
   .black-feature-card{
        border-radius: 20px;
        padding: 40px 50px;
   }
   .black-feature-card-1{
       border-radius: 20px;
       padding: 25px 30px 30px;
    }
    .white-feature-card{
        border-radius: 20px;
        padding: 40px 50px;
    }
   .white-feature-card-1{
        border-radius: 20px;
        padding: 25px 30px 30px;
   }

}
/* features section end */

/* streams-sec-start */
.streams-sec{
    background: #FFFFFF;
}

.streams-box{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/streams-box.webp) no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 20px 25px 30px;
    height: 100%;
}
.streams-bottom{
    background: #FFFFFF;
    border: 2px dashed #B173FF;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
}
@media(min-width:768px){
    /* .streams-sec{
        background: url(https://cdn.oppyotest.com/launches/dexra/special/streams-bg.webp) no-repeat center center;
        background-size: cover;
    } */
    .streams-bottom{
        padding: 20px 50px;
    }
}
/* streams-sec-end */

/* crazy sec start */
.crazy-sec{
    background: #F0F3FF;
}
.crazy-text{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/crazy-text.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
    position: relative;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/crazy-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .crazy-text{
        padding: 12px 138px 41px;
    }
    .crazy-text::after{
        content: url(https://cdn.oppyotest.com/launches/dexra/special/cool-1.webp);
        position: absolute;
        top: 0px;
        right: -60px;
    }
    .red-wave-2{
        position: relative;
    }
    .red-wave-2::after {
        background: url("https://cdn.oppyotest.com/launches/dexra/special/blue-border-1.webp");
        content: "";
        position: absolute;
        height: 8px;
        width: 100%;
        bottom: -8px;
        right: 0px;
    }

}
/* crazy sec end */

/* everyone sec start */
.everyone-sec{
    background: #FDF6F4;
}
.everyone-text{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    display: inline-block;
    padding: 10px;
    border-radius: 30px;
}
.everyone-box{
    background: linear-gradient(180deg, #000000 31.46%, #5C43AF 111.35%);
    /* display: inline-block; */
    border-radius: 20px;
    padding: 30px 25px 40px;
}
@media (min-width: 768px) {
    /* .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/everyone-bg.webp") no-repeat center center;
        background-size: cover;
    } */
    .everyone-text{
        padding: 7px 40px;
        border-radius: 100px;
    }
}
/* everyone sec end */

/*compare section start*/
.compare-section{
    background: #FDF6F4;
}
.choicebox-1{
    background: #FFF4F4;
    border: 2px solid #FF3D3D80;
    border-bottom: 10px solid #FF3D3D80;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicebox-2{
    background: #F1FFED;
    border: 2px solid #26AF0080;
    border-bottom: 10px solid #26AF0080;
    padding: 20px 10px;
    border-radius: 20px;
    /* height: 100%; */
}
.choicetext-1 {
    background: url("https://cdn.oppyotest.com/launches/dexra/special/choicetext-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choicetext-2{
     background: url("https://cdn.oppyotest.com/launches/dexra/special/choicetext-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px 65px 20px;
    display: inline-block;
}
.choise-list{
    background: #ffffff;
    border: 1px solid #FF000033;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list-1{
    background: #ffffff;
    border: 1px solid #21AF2133;
    padding: 20px !important;
    border-radius: 22px;
}
.choise-list li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/dexra/special/choice-cross.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list-1 li{
    list-style: none;
    background: url("https://cdn.oppyotest.com/launches/dexra/special/choice-right.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 31px 37px;
}
.choise-list li:nth-last-child(1), .choise-list-1 li:nth-last-child(1){
    border: unset;
    padding-bottom: 0px;
}
.choise-list li, .choise-list-1 li{
    position: relative;
}
.choise-list li::after {
    position: absolute;
    content: "";
    background: #FF000033;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list-1 li::after {
    position: absolute;
    content: "";
    background: #21AF2133;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
}
.choise-list li:last-child::after,
.choise-list-1 li:last-child::after {
    background: none;
    content: none; 
}

.choicebox-inner-text-1{
    background: #FFFFFF;
    border: 1px solid #FF3D3D;
    border-radius: 70px;
    padding: 10px 9px;
    display: inline-block;
}
.choicebox-inner-text-2{
    background: #FFFFFF;
    border: 1px solid var(--green-clr1);
    border-radius: 70px;
    padding: 10px 20px;
    display: inline-block;
}
.c-green-box {
    background: #1AB400;
    /* border: 6px solid #E6FFC7; */
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF373C;
    /* border: 6px solid #FCDDDA; */
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}

@media (min-width:768px) {
    .compare-section{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/compare-bg.webp") no-repeat center center;
        background-size: cover;
    }
        .choicebox-1{
        padding: 40px 40px 76px;
        border-radius: 40px;
    }
    .choicebox-2{
        padding: 40px;
        border-radius: 40px;
    }
    .choicetext-1{
        padding: 16px 65px 36px;
        border-radius: unset;
        display: inline-block;
    }
    .choicetext-2{
        padding: 16px 65px 36px;
        border-radius: unset;
        display: inline-block;
    }
    .choicebox-inner-text-1{
        padding: 16px 30px;
    }
    .choicebox-inner-text-2{
        padding: 16px 30px;
    }
    .c-green-box {
        border-radius: 100px;
        padding: 14px;
    }
    .c-red-box {
        border-radius: 100px;
        padding: 12px 36px;
    }
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
        /* padding: 0px 15px; */
    }
    .table-1>div{
        width:1170px;
        /* overflow-x: scroll; */
    }
}

/* compare section end */

/* bonusess-sec start */
.bonusess-sec{
    background: #3b6ffd;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background:#ffffff url("https://cdn.oppyotest.com/launches/dexra/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 45px 0px 100px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #ffffff;
}
.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 10px;
    background: url(https://cdn.oppyotest.com/launches/dexra/special/bonus-section-shape.webp) no-repeat;
    background-size: 100% 100%;
    height: 100%;
    padding: 20px;
}

.margin-t-30 {
    margin-top: -30px;
}
.bonus-headline-top {
    padding: 4px 55px;
    display: inline-block;
    text-align: center;
    background: url(https://cdn.oppyotest.com/launches/dexra/special/bonus-head.webp) no-repeat center center;
    background-size: 100% 100%;
}
@media (min-width: 768px){
    .margin-t-78 {
        margin-top: -66px;
    }
    .bonus-section-shape {
        padding: 55px 30px 30px;
    }
}
/* bonus sec end */

/* moneyback sec start */
.moneyback-sec{
    background: #000000;
}
.moneyback-h{
    background: var(--theme-gradient);
    /* border: 2px solid var(--blue-clr); */
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 100px;
    padding: 10px;
}
@media (min-width:768px) {
    .moneyback-sec{
        background: #ffffff url("https://cdn.oppyotest.com/launches/dexra/special/moneyback-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .moneyback-h {
        padding: 10px 90px 10px 40px;
        position: relative;
    }
    .moneyback-h::after {
        content: url(https://cdn.oppyotest.com/launches/dexra/special/think-icon.webp);
        position: absolute;
        top: -15px;
        right: -15px;
    }
}
/* moneyback sec end */

/* table section start */
.table-section {
    background: #fff;
}
.table-text{
    background: var(--red-clr);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
.tablebox2 {
    background: #fff;
    width: 100%;
    float: left;
    border-radius: 10px;
    border: 1px solid #232323;
}
.tbbg2 {
    background: url("https://cdn.oppyotest.com/launches/dexra/special/white-table.webp") no-repeat center center;
    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/dexra/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/dexra/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(even) {
    background-color: #a19fff45;
}
.tablebox2 ul.vgreytick li:nth-child(15) {
    background-color: #a19fff45;
}
.tablebox3 ul.vgreytick li:nth-child(odd) {
    background-color: #F0F3FF;
}
/* ul.cross-ul li:nth-child(1) {
    background-color: #e6e5ff ;
} */
ul.cross-ul li:nth-child(1) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(2) {
    background-color: #ffffff !important;
}
ul.cross-ul li:nth-child(3) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(4) {
    background-color: #ffffff !important;
}
ul.cross-ul li:nth-child(5) {
    background-color: #e6e5ff;
}
ul.cross-ul li:nth-child(6) {
    background-color: #ffffff !important;
}
.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;
    padding-bottom: 20px;
    background-color: #ffffff;
   
}
.tbbg3 {
    /* background: #080E20; */
    background:#ffffff url("https://cdn.oppyotest.com/launches/dexra/special/table-frame.webp") no-repeat bottom center;
    background-size: cover;
    padding: 11px 30px;
    background-size: 100% 100%;
    border-radius: 10px 10px 0 0;
    min-height: 250px;
}
ul.vgreytick li:nth-child(even) {
    background-color: #fff;
}

.myfeatureslast{
    background: #fff !important;
    border-radius: 0 0 9px 9px;
}
.table-sale{
    background: var(--green-clr);
    border-radius: 48px;
    padding: 2% 5%;
    display: inline-block;
}
.vgreytick li.headline {
    background: linear-gradient(90deg, #F8D13E 0%, #FF6A00 100%);
    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;
}
.table-border-content {
    background: #fff;
    border: 3px dashed #999;
    max-width: 95%;
    margin: 0 auto;
    height: auto;
    overflow: auto;
    padding-bottom: 10px;
}
.tb-check {
    background: #FEFE9B;
    padding: 18px 18px 18px 10px;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 28px;
    font-size: 22px;
    line-height: 160%;
    color: var(--white-clr);
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-clr);
    border-radius: 10px;
    /* border: 5px solid rgba(255, 255, 255, 0.30); */
}

.table-white-box{
    background: #ffffff;
}

@media (min-width: 768px){
    .table-section {
    background: url(https://cdn.oppyotest.com/launches/dexra/special/table-bg.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
    .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;
    }
    .tablebox3 {
        padding-bottom: 40px;
        border-radius: 30px;
    }
    .tbbg3 {
        padding: 25px 30px 25px 30px;
        background-size: 100% 100%;
        border-radius: 10px 10px 0 0;
        min-height: 550px;
    }
    .table-border-content {
        max-width: 80%;
    }
        a.cta-link-btn {
        font-size: 38px;
        padding: 22px 84px;
        display: inline-block;
    }
}
/* table section end */
/* ticking sec start */
.ticking-sec{
    background: #F1F5FC;
}
.ticking-text{
     background: var(--theme-gradient);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    padding: 0px 20px;
    display: inline-block;
}
@media (min-width: 768px){
    .ticking-sec{
    background: url(https://cdn.oppyotest.com/launches/dexra/special/ticking-bg.webp) no-repeat center center;
    background-size: cover;
}
}
/* ticking sec end */

/* contact-sec start */
.contact-section {
    background-color: #ffffff;
}
.contact-text {
    background: var(--theme-clr);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}
.contact-frame{
    background: #F2FCF0;
    border: 1px solid var(--blue-clr);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .contact-section {
        background: #ffffff url(https://cdn.oppyotest.com/launches/dexra/special/contact-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .contact-text {
        background: url("https://cdn.oppyotest.com/launches/dexra/special/dark-purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 91px 15px 63px;
        border-radius: unset;
        position: relative;
    }
    .contact-text::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/dexra/special/thinking-emoji1.webp");
        top: -22px;
        right: -43px;
    }
    .contact-frame{
        background: url("https://cdn.oppyotest.com/launches/dexra/special/contact-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 48px 30px;
        border-radius: unset;
        border: unset;
    }
}
/* contact-sec end */

/* fear sec start */
.fear-sec{
    background: #F0F3FF;
}
.fair-text {
    border: 2px solid #FFFFFF;
    background: var(--blue-clr1);
    border-radius: 20px;
    display: inline-block;
    padding: 0px 58px;
}
.theme-brush {
    background: #ffffff;
    border: 3px solid #FF361D;
    border-radius: 70px;
    padding: 0 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    /* .fear-sec{
        background: #FFA3A366 url(https://cdn.oppyotest.com/launches/dexra/special/fair-bg.webp) no-repeat bottom center;
        background-size: cover;
    } */
    .fair-text{
        border-radius: 40px;
        padding: 0px 30px;
    }
    .theme-brush {
        padding: 0px 20px;
    }
}
/* fear sec end */

/* faq sec start */
.faq-section {
    background: #ffffff;
    padding: 30px 0px;
}
.faq-list {
    background: url(https://cdn.oppyotest.com/launches/dexra/special/faq-icon.webp) no-repeat top left;
    background-color: #ffffff;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid var(--blue-clr1);
    border-radius: 20px;
}
@media (min-width: 768px){
    .faq-section {
        padding: 100px 0px;
    }
}
/* faq sec end */

/* final-call start */
.cta-section-white {
    background: #ffffff;
    padding: 30px 0;
}
.final-text{
    background: var(--orange-clr);
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media (min-width: 768px){
    .cta-section-white {
        padding: 80px 0px;
    }
    .final-text{
        border-radius: 100px;
        padding: 0px 44px;
    }
}
/* final-call end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.footer-ul .t-decoration-none:hover {
    color: #fff;
}
@media(min-width:768px) {
    .footer-section {
        padding: 70px 0px;
    }
}

/* footer end */


@media (min-width: 768px) {
    .f-md-80 {
        font-size: 80px;
    }
}
/*  */





/* slider up start */
.promo-text {
    /* background: linear-gradient(47.1deg, rgba(252, 238, 83, 0.1) 6.73%, rgba(41, 231, 254, 0.1) 83.23%); */
    /* border: 1px solid #FCEE534D; */
    /* border-radius: 100px; */
    /* display: inline-block; */
    height: 40px;
    width: 100%;
}
.promo-text1 {
    /* background: linear-gradient(47.1deg, rgba(252, 238, 83, 0.1) 6.73%, rgba(41, 231, 254, 0.1) 83.23%); */
    /* border: 1px solid #FCEE534D; */
    /* border-radius: 100px; */
    /* display: inline-block; */
    height: 40px;
    width: 100%;
}
.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;
    /* overflow: visible !important; */
}
.bxslider {
    background: transparent !important;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    border: 0px !important;
    font-weight: 700;
    position: relative;
}

.bxslider li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 72px !important;
    line-height: 64px;
    text-align: center;
    letter-spacing: 2px;
}
@media (max-width: 767px){
    .promo-text {
        /* background: linear-gradient(47.1deg, rgba(252, 238, 83, 0.1) 6.73%, rgba(41, 231, 254, 0.1) 83.23%); */
        /* border: 1px solid #FCEE534D; */
        /* border-radius: 100px; */
        /* display: inline-block; */
        height: 45px;
        width: 100%;
    }
    .promo-text1 {
        /* background: linear-gradient(47.1deg, rgba(252, 238, 83, 0.1) 6.73%, rgba(41, 231, 254, 0.1) 83.23%); */
        /* border: 1px solid #FCEE534D; */
        /* border-radius: 100px; */
        /* display: inline-block; */
        height: 45px;
        width: 100%;
    }
    .bxslider li {
        /* display: inline-flex; */
        align-items: center;
        min-height: 62px !important;
        line-height: 46px;
        text-align: center;
        vertical-align: text-top;
    }
}
@media (min-width: 768px){
    .promo-text {
        height: 82px;
        width: 345px;
        /* padding: 9px 15px;
        margin-top: 0px; */
        position: relative;
    }
    .promo-text1 {
        height: 80px;
        width: 250px;
        /* padding: 9px 15px;
        margin-top: 0px; */
        position: relative;
    }
    /* .yellow-wave{
        position: relative;
    }
    .yellow-wave::after {
        position: absolute;
        content: '';
        background: url("https://cdn.oppyotest.com/launches/syntraai/special/yellow-wave.webp") no-repeat;
        bottom: -14px;
        left: 0px;
        width: 100%;
        height: 8px;
    } */
    .bxslider li {
        justify-content: center;
        min-width: 100%;
        float: left !important;
        width: auto !important;
        min-height: 100% !important;
    }
}
/* slider up end */

/* typing-text start */
.typing-text {
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    /* display: inline-block; */
    padding: 10px 10px 0px;
    width: 335px;
    /* width: 100%; */
}
.bx-wrapper{
    background: unset !important;
    border: unset !important;
    box-shadow: unset !important;
    margin-bottom: 0px !important;
}
@media (min-width: 768px) {
    .typing-text {
        padding: 20px 0px;
        width: 550px;
        position: relative;
    }
}
/* typing-text end */