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;
}
.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:#038CD0;
    --blue-clr1:#0BAEFF;
    --orange-clr: #FF7520;
    --red-clr: #DB3C3B;
    --red-clr1: #FA2E2E;
    --red-clr2: #FF4646;
    --green-clr:#30CA05;
    --green-clr1:#26AF00;
    --green-clr2:#239F00;
    --pink-clr:#EB00D0;
    --purple-clr:#B173FF;
    --grey-clr:#555555;
    --yellow-clr: #FFB528;
    --yellow-clr1: #FFD341;
    --theme-gradient: linear-gradient(246.78deg, #DB3C3B 13.12%, #DB3C3B 52.54%, #EE9507 81.96%);
    /* --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-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);}
.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-gradient);
    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(--red-clr);
    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 #DB3C3B;
    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, #181217 36.42%, #330000 100%);
    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: #79992117;
    border: 2px dashed var(--green-clr1);
    /* box-shadow: 0px 2px 10px 0px #00000042; */
    backdrop-filter: blur(25px);
    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;
    /* box-shadow: 0px 0px 20px 0px #2495FF80 inset; */
    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(--red-clr); 
    backdrop-filter: blur(15px);
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset; */
    border-radius: 15px;
    /* padding: 10px; */
}
.payment-box{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px solid #FFFFFF4D;
    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/socialclaw/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/socialclaw/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/socialclaw/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/socialclaw/special/red-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 5px 12px;
}
.Exclusive-text{
    background: #33070A;
    border: 2px dashed #DB3C3B;
    /* box-shadow: 0px 10px 10px 0px #FFFFFF33 inset; */
    border-radius: 20px;
    padding: 10px;
}
.green-price {
    background: url("https://cdn.oppyotest.com/launches/socialclaw/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: linear-gradient(181.37deg, rgba(112, 0, 0, 0.2) 1.06%, rgba(112, 0, 0, 0.2) 98.73%);
    padding: 10px;
    border-radius: 10px;
}
.social-box{
    background: #2C0506;
    border: 1px solid #5E0000;
    display: inline-block;
    border-radius: 20px;
    padding: 10px;
}

@media(min-width:768px){
    .header-sec{
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 180px;
    }
        .main-text {
        padding: 10px 26px 15px;
    }
    .pre-head {
        padding: 10px 66px;
        border-radius: 100px;
    }
        .int-box {
        padding: 10px 28px 15px;
    }
    .main-heading {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 43px 40px 56px;
        /* display: inline-block; */
        border-radius: unset;       
        border: unset;
        box-shadow: unset;
    }
    .typing-text {
        padding: 12px 24px;
        width: 835px;
    }
    .social-box{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/social-box.webp) no-repeat;
    background-size: 100% 100%;
    padding: 5px 31px;
    border: unset;
    border-radius: unset;
}
    .post-head{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/post-head.webp) no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 30px 135px 40px;
        border-radius: unset;
}
    .green-price {
        padding: 0px 8px;
    }
    .header-ul{
        padding: 40px 20px;
    }
    .header-ul li{
        padding: 0px 0px 22px 37px;
    }
    .payment-box{
        padding: 28px 15px;
    }
    .theme-btn {
        padding: 30px 55px;
    }
    .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/socialclaw/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/socialclaw/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/socialclaw/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-section {
    background: #FFF8EF;
}

.step-card-11 {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/step-card-1.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
}
.step-card-22 {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/step-card-2.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
    height: 100%;
}
.step-card-33 {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/step-card-3.webp) no-repeat;
    background-size: 100% 100%;
    padding: 30px 10px;
}
.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;
}

/*  */
.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: #DB3C3B;
    border: 2px solid #DB3C3B;
    border-radius: 0px 10px 0px 10px;
    display: inline-block;
    padding: 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/socialclaw/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;
}
@media (min-width: 768px) {
    .step-section-1{
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/step-bg.webp") no-repeat center center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .step-section{
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/step-sec-bg-1.webp") no-repeat center center;
        background-size: cover;
    }
    .step-card-11 {
        padding: 30px 30px 20px;
    }
        .step-card-22{
        padding: 30px 30px 20px;
    }
        .step-card-33{
        padding: 30px 30px 20px;
    }
    .step-frame{
        border-radius: 20px;
        padding: 6px 30px 4px 30px;
    }
    .step-frame-1{
        border-radius: 1000px;
        padding: 0px 44px;
    }
    /* .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 */

/* tool section start */
.tool-sec{
    background: linear-gradient(180deg, #000000 0.54%, #170000 94.55%);
}

@media (min-width: 768px){
    .tool-sec{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/tool-bg.webp) center center;
        background-size: cover;
        background-attachment: fixed;
    }
}

/* tool section end */

/* split-scroll sec start */
.split-sec{
    background: #ffffff;
}

.split-bg1{
    background: linear-gradient(180deg, #038CD0 0%, #038CD0 100%);
    padding: 10px 50px;
}
.split-bg2{
    background: #E5F6FF;
    padding: 10px 50px;
}
.split-bg3{
    background: #832DEF;
    padding: 10px 50px;
}
.split-bg4{
    background: #F2E8FF;
    padding: 10px 50px;
}
.split-bg5{
    background: #239F00;
    padding: 10px 50px;
}
.split-bg6{
    background: #D9FFCE;
    padding: 10px 50px;
}
.split-bg7{
    background: #DB3C3B;
    padding: 10px 50px;
}
.split-bg8{
    background: #FBE8E8;
    padding: 10px 50px;
}
.split-bg9{
        background: linear-gradient(180deg, #038CD0 0%, #038CD0 100%);
    padding: 10px 50px;
}
.split-bg10{
           background: #E5F6FF;
    padding: 10px 50px;
}
@media(min-width:768px){
    .split-sec{
    padding: 100px 0px 0px;
    }
    .split-bg1{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/split-bg1.webp) no-repeat;
    background-size: cover;
    padding: 58px 0px 58px 325px;
}
.split-bg2{
    padding: 70px;
}
.split-bg3{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/split-bg3.webp) no-repeat;
    background-size: cover;
    padding: 58px 112px 58px 325px;
}
.split-bg5{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/split-bg4.webp) no-repeat;
    background-size: cover;
    padding: 58px 112px 58px 325px;
}
.split-bg4{
    padding: 70px;
}
.split-bg6{
    padding: 70px;
}
.split-bg7{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/split-bg5.webp) no-repeat;
    background-size: cover;
    padding: 58px 112px 58px 325px;
}
.split-bg8{
    padding: 70px;
}
    .split-bg9{
            background: url(https://cdn.oppyotest.com/launches/socialclaw/special/split-bg1.webp) no-repeat;
    background-size: cover;
    padding: 58px 62px 58px 325px;
}
.split-bg10{
    padding: 70px 73px;
}
}
/* .tip-img{
    position: relative;
  } */
  .tip-clr-1{
    color: #297EEE;
  }
  .tip-clr-2{
    color: #AF39F4;
  }
  /* .tip-img::after {
    position: absolute;
    content: "";
    background: url("https://cdn.oppyotest.com/launches/prezentiq/special/tip-arrow.webp") no-repeat;
    bottom: -10px;
    right: 13px;
    width: 100%;
    height: 14px;
  } */
  .watch-frame{
    background: #ff8e0b;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
  }
  .split-text{
    background: #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}
  .split-text1{
    background: #239F001A;
    border: 1px solid #239F00;
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}

.split-blue{
    background: #038CD0;
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px 32px;
}

  @media(min-width:768px){

  .split-text{
    padding: 15px 30px 18px;
}
  .split-text1{
    padding: 15px 30px 20px;
}
  }
/* ========================= */

/* explore-sec start */

/* without-sec-start */
.without-sec{
    background: #FFF8EF;
}
.without-text{
    background: #DB3C3B;
    padding: 0px 10px;
    border-radius: 10px;
}
.without-box{
    background: #FFFFFF;
    border: 1px solid #DB3C3B;
    border-radius: 30px;
    padding: 20px;
    height: 100%;
}
.cta-btn-border {
    /* border: 3px dashed #000000; */
    border-radius: 10px;
    padding: 0px;
}
.cta-btn-bg {
    background: #000000;
    border: 5px dotted #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
}
@media(min-width:768px){
    .without-sec{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/without-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }
    .without-box{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/without-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 25px;
        border: unset;
        border-radius: unset;
    }
    .cta-btn-border {
        border-radius: 33px;
        padding: 0px;
    }
    .cta-btn-bg {
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/cta-btn-border.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 70px 25px;
        border-radius: 20px;
        border: unset;
        border-radius: unset;
    }
}
/* without-sec-end */


/* income-sec start */
.income-sec{
    background: #FFFFFF;
}

@media(min-width:768px){
    .income-sec{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/income-bg.webp) no-repeat center center;
    background-size: cover;
}
}
/* income-sec end */

/* earning-sec start */
.earning-sec{
    background: #000000;
}

.earning-text{
    background: #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    /* display: inline-block; */
    padding: 10px;
}

@media(min-width:768px){
.earning-sec{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/earning-bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.earning-text{
    padding: 20px 50px 30px;
}
}
/* earning-sec start */

/* clients-sec-end */
.clients-sec{
    background: #FFF8EF;
}
.clients-text{
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 0px 20px 0px 30px;
    padding: 20px;
    display: inline-block;
}
.why-box{
    background: #DB3C3B;
    border-radius: 100px;
    display: inline-block;
}
.why-inner{
    border: 2px dashed #FFFFFF;
    padding: 10px 20px;
    border-radius: 100px;
}
.clients-three{
    background: #FFFFFF;
    border: 2px dashed #DB3C3B;
    padding: 5px 15px 10px;
    border-radius: 10px;
}
.clients-bottom{
    background: #FFFFFF;
    border: 2px dashed #DB3C3B;
    border-radius: 30px;
    display: inline-block;
    padding: 20px;
}
@media(min-width:768px){
    .clients-sec{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/clients-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .clients-text{
        padding: 30px 40px;
    }
    .why-inner{
        padding: 15px 50px;
    }
    .clients-bottom{
        padding: 30px 70px;
    }
}
/* clients-sec-end */

/* empire-sec-start */
.empire-sec{
    background: #FFFFFF;
}
.empire-text{
    background: var(--red-clr);
    border: 2px dashed var(--white-clr);
    border-radius: 100px;
    display: inline-block;
    padding: 20px 40px;
}
.empire-box{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/empire-box.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px;
}
.empire-box1{
    background: #ffffff;
    border: 2px dashed var(--red-clr);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}

@media(min-width:768px){
    .empire-sec{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/empire-bg.webp) no-repeat center center;
    background-size: cover;
}
.empire-box{
    padding: 25px;
}
.empire-box1{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/empire-box1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 50px 234px;
    border: unset;
    border-radius: unset;
}
}

/* empire-sec-end */

/* ever-sec-start */
.ever-sec{
    background: #ffffff;
}
.ever-text{
    background: #FFFFFF;
    border: 1px dashed var(--red-clr);
    border-radius: 0px 20px 0px 30px;
    padding: 10px;
    display: inline-block;
}
.ever-box{
    background: #DB3C3B;
    border: 2px dashed #ffffff;
    border-radius: 100px;
    display: inline-block;
    padding: 16px 37px;
}
.ever-box1{
    background: #FFFFFF;
    border: 1px solid var(--red-clr);
    border-radius: 0px 10px 0px 10px;
    padding: 10px;
    display: inline-block;
}

@media(min-width:768px){
    .ever-sec{
    background:#FFF8EF url(https://cdn.oppyotest.com/launches/socialclaw/special/ever-bg.webp) no-repeat bottom center;
    background-size: cover;
    padding: 100px 0px 140px
}
.ever-text{
    padding: 10px 40px 0px;
}
.ever-box1{
    padding: 15px 30px;
}

}

/* ever-sec-end */

/* gold-mine-sec start */
.gold-mine-sec{
    background: #FFF8EF;
}
.gold-text{
    background: #FFFFFF;
    border: 1px solid var(--red-clr);
    border-radius: 0px 20px 0px 30px;
    padding: 10px;
    display: inline-block;
}
.gold-text1{
    background:#239F001A;
    border: 1px solid #239F00;
    border-radius: 0px 10px 0px 10px;
    padding: 10px;
    display: inline-block;
}

@media(min-width:768px){
    .gold-mine-sec{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/gold-mine-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 48px 0px 100px;
}
.gold-text{
    padding: 10px 23px 0px 30px;
}
.gold-text1{
    padding: 15px 25px;
}
}
/* gold-mine-sec end */

/* creators-sec-start */
.creators-sec{
    background: #ffffff;
}
.brand-box{
    background: #239F001A;
    border: 1px solid #239F00;
    border-radius: 0px 10px 0px 10px;
    padding: 15px 20px;
    display: inline-block;
}
.creators-text{
    background: #FFFFFF;
    border: 1px solid #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 20px;
}
.creators-box, .creators-box{
    background: #FFFFFF;
    border: 1px solid #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    padding: 10px 20px;
    width: 100%;
}
.dominate-box{
    background: #FFFFFF;
    border: 1px solid #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 20px;
}
@media(min-width:768px){
    .creators-sec{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/creators-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .creators-text{
        padding: 25px 100px;
    }
    .creators-box{
        padding: 15px 30px;
    }
    .creators-box{
        padding: 30px 30px;
    }
    .dominate-box{
        padding: 20px 80px;
    }
}
/* creators-sec-end */

/* expensive-section start */
.expensive-section{
    background: #FFF4F4;
}
.purple-frame {
    background:  var(--red-clr);
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}

.expensive-text{
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/expensive-text.webp) no-repeat;
    background-size: 100% 100%;
    padding: 10px 20px;
    display: inline-block;
}
.truth-box{
    background: #FA2E2E;
    border-radius: 100px;
    display: inline-block;
    padding: 10px;
}
.feels-box{
    background: #ffffff;
    border: 2px dashed #DB3C3B;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.flex-text{
    background: #FFE4E4;
    border-radius: 10px;
    display: inline-block;
    padding: 15px;
}
.expensive-card-1 {
    border-radius: 20px;
    border: 2px solid var(--red-clr1);
    background: #FFFFFF80;
    padding: 20px;
    display: inline-block;
    height: 100%;
}
.expensive-card-2 {
    border-radius: 50px 50px 0px 0px;
    border: 2px dashed var(--red-clr1);
    border-bottom: unset;
    background: #FFFFFF80;
    padding: 20px;
    display: inline-block;
    height: 100%;
}

.facts-three {
    background: #FFE4E4;
    border-radius: 10px;
    padding: 15px;
}
.fact-box {
    background: #FA2E2E;
    border-radius: 35px;
    display: inline-block;
    padding: 10px 20px;
}
.expensive-check {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px dashed #DB3C3B;
    border-bottom: unset;
    border-radius: 50px 50px 0px 0px;
    padding: 20px;
    display: inline-block;
}
@media(min-width:768px){
    .f-md-80{
        font-size: 80px;
    }
    .expensive-text{
    padding: 40px 37px 50px;
} 
.feels-box{
    padding: 20px 50px;
}
.truth-box{
    padding: 15px 46px;
}
    .purple-frame {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 16px 65px;
        position: relative;
    }
    .purple-frame::after {
        position: absolute;
        content: url("https://cdn.oppyotest.com/launches/socialclaw/special/think-emoji-2.webp");
        top: -30px;
        right: -45px;
    }
    .expensive-card-1 {
        padding: 30px;
    }

        .expensive-card-2 {
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/expensive-frame2.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: unset;
        padding: 30px;
    }
    .fact-box {
        padding: 15px 60px;
    }
        .expensive-check {
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/expensive-check.webp) no-repeat;
        background-size: 100% 100%;
        padding: 50px 40px 40px;
        border: unset;
        border-radius: unset;
    }
}
/* expensive-section end */

/* not-anymore-sec start */
.not-anymore-sec{
   background: linear-gradient(113.88deg, rgba(104, 95, 183, 0.2) -9.49%, rgba(196, 35, 143, 0.2) 30.77%, rgba(236, 74, 71, 0.2) 60.18%, rgba(248, 155, 27, 0.2) 91.41%);
}
.not-anymore-sec-card{
    border-radius: 100px;
    border: 1px solid rgba(255, 44, 44, 0.5);
    background: #FFF;
    padding: 10px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}
.notanymore-text {
    padding: 10px 20px;
    background: var(--red-clr1);
    border-radius: 20px;
    display: inline-block;
    position: relative;
}
.not-red-text{
    background: #FC0113;
    border: 1px dashed #FFFFFF;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .not-anymore-sec{
        background: #fff url("https://cdn.oppyotest.com/launches/socialclaw/special/not-anymore-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .not-anymore-sec-card{
        padding: 20px 15px;
    }
    .notanymore-text {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/notanymore-frame.webp") no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 0px 51px 0px 151px;
    }
.notanymore-text::after {
        content: url(https://cdn.oppyotest.com/launches/socialclaw/special/excited-emoji.webp);
        position: absolute;
        top: -4px;
        left: 20px;
    }
}
/* not-anymore-sec end */



























/* presenting-sec start */
.presenting-sec{
    background: linear-gradient(180deg, #181217 36.42%, #330000 100%);
}
.presenting-head{
    background: #DB3C3B;
    /* border: 2px dotted #FFFFFF; */
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .presenting-sec{
        background: #F1F5FC url("https://cdn.oppyotest.com/launches/socialclaw/special/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 200px;
    }
    .presenting-head{
    padding: 10px 50px;
}
}
/* presenting-sec end */


/* demo section start */
.demo-sec{
    background: #ffffff;
}
.demo-text{
    background: var(--red-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 0px 20px 0px 30px;
}
.border-frame {
    background: #151515;
    border: 2px solid var(--red-clr);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
.border-frame1 {
    background: #ffffff;
    border: 2px solid ;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 50px;
    }
    .border-frame {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/demo-video-frame1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }
    .border-frame1 {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/magic-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 50px 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: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.feature-card-2 {
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
}
.black-feature-card{
    background: #00000008;
    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: #00000008;
    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: #00000008;
    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/socialclaw/special/feature-bg.webp") no-repeat top center;
       background-size: cover;
   }
   .features-heading:before{
       background: url(https://cdn.oppyotest.com/launches/socialclaw/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/socialclaw/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: #FFF8EF;
}
.streams-text{
    background: #DB3C3B;
    border-radius: 0px 20px 0px 30px;
    padding: 10px 20px;
    display: inline-block;
}
.streams-box1{
    background: linear-gradient(180deg, rgba(38, 175, 0, 0) 0%, rgba(38, 175, 0, 0.1) 100%);
    border: 1px solid #26AF00;
    border-bottom: 5px solid #26AF00;
    border-radius: 30px;
    padding: 20px 20px 40px;
    height: 100%;
}
.streams-box2{
    background: linear-gradient(180deg, rgba(11, 174, 255, 0) 0%, rgba(11, 174, 255, 0.2) 100%);
    border: 1px solid #0BAEFF;
    border-bottom: 5px solid #0BAEFF;
    border-radius: 30px;
    padding: 20px 20px 40px;
    height: 100%;
}
.streams-box3{
    background: linear-gradient(180deg, rgba(177, 115, 255, 0) 0%, rgba(177, 115, 255, 0.2) 100%);
    border: 1px solid #B173FF;
    border-bottom: 5px solid #B173FF;
    border-radius: 30px;
    padding: 20px 20px 40px;
    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/socialclaw/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: #ffffff;
}
.crazy-text{
    background: var(--red-clr);
    display: inline-block;
    padding: 10px;
    border-radius: 100px;
    position: relative;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/crazy-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .crazy-text{
        padding: 10px 55px 10px 20px;
    }
    .crazy-text::after{
        content: url(https://cdn.oppyotest.com/launches/socialclaw/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/socialclaw/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:#FFFFFF;
    border: 1px solid var(--red-clr);
    display: inline-block;
    padding: 0px 15px;
    border-radius: 0px 20px 0px 30px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/everyone-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .everyone-text{
        padding: 15px 131px 25px;
    }
}
/* everyone sec end */

/*compare section start*/
.compare-section{
    background: #ffffff;
}

.winning-box{
    padding: 36px 110px;
    border-top: 1px solid #378E00;
    border-left: 1px solid #378E00;
    border-right: 1px solid #378E00;
    border-width: 1px, 0px, 1px, 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #378E00;
    border-radius: 20px 20px 0px 0px;
    box-shadow: -5px 4px 30px 0px #00000026;
    margin-top: -24px;
}
.compare-list-1{
    box-shadow: -5px 4px 30px 0px #00000026;
    border-radius: 0px 0px 0px 20px;
}
.compare-list-1 li {
    list-style: none;
    text-align: left;
    padding: 25px 25px 25px 70px;
    background: url("https://cdn.oppyotest.com/launches/socialclaw/special/happy-tick.webp") no-repeat;
    background-position: 23px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid #378E00;
    background-color: #FFFFFF;
}
.compare-list-1 li:nth-child(odd){  
    background-color: #E6FFC7;
}
.compare-list-1 li:last-child{
     border-bottom: 1px solid #378E00;
    border-radius: 0px 0px 0px 20px;
}
.losing-box {
    padding: 24px 110px;
    background: #FF361D;
    border: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px 20px 0px 0px;
}
.compare-list-2 li {
    list-style: none;
    text-align: left;
    background: url("https://cdn.oppyotest.com/launches/socialclaw/special/sad-tick.webp") no-repeat;
    background-position: 23px 25px;
    padding: 25px 25px 25px 70px;
    border-right: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FCDDDA;
}
.compare-list-2 li:nth-child(3), .compare-list-2 li:nth-child(5){
    padding: 25px 41px 25px 65px;
    background-position: 23px 25px;
}
.compare-list-2 li:nth-child(even){  
    background-color: #FFEBE9;
}
.compare-list-2 li:last-child{
    border-radius: 0px 0px 20px 0px;
    border-bottom: 1px solid #FF361D;
    /* padding: 25px 35px 25px 65px; */
}
@media (max-width: 1124px) {
    .table-1 {
        overflow-x: scroll;
    }
    .table-1>div{
        width:1170px;
    }
}
@media(min-width:768px){
    .compare-section{
        background:  url("https://cdn.oppyotest.com/launches/socialclaw/special/compare-bg1.webp") no-repeat center center;
        background-size: cover;
    }
    .px-md-14{
        padding-left: 14px;
        padding-right: 14px;
    }
    .mt-md165{
        margin-top: 165px !important;
    }
}

/* compare section end */

/* bonusess-sec start */
.bonusess-sec{
    background: #280809;
}
@media (min-width: 768px) {
    .bonusess-sec{
        background:#FFF8EF url("https://cdn.oppyotest.com/launches/socialclaw/special/bonusses-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 45px 0px 183px;
    }
}
/* bonusess-sec end */

/* bonus sec start */
.bonus-sec {
    background: #FFF8EF;
}
.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 10px;
    border: 2px solid var(--red-clr);
    background: #FFFFFF ;
    box-shadow: 0px 0px 30px 0px var(--red-clr) inset;
    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/socialclaw/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: #ffffff;
}
.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/socialclaw/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/socialclaw/special/think-icon.webp);
        position: absolute;
        top: -15px;
        right: -15px;
    }
}
/* moneyback sec end */

/* Table Section Start */

.table-section {
    background: #000000;
    padding: 30px 0
}

.tablebox2 {
    background: #fff;
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    border: solid 10px #FDF1FF;
}

.tbbg2 {
    background: #FDF1FF;
    padding: 30px;
    background-size: cover;
    border-radius: 8px 8px 0 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101
}

.myfeatureslast {
    float: left;
    padding: 20px;
    width: 100%;
    min-height: 69px;
    color: #000;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}

ul.grey-tick-last li:last-child {
    border-bottom: 0
}

ul.grey-tick-last li:nth-child(odd) {
    background-color: #f1f1f1;
}

ul.grey-tick-last li:nth-child(even) {
    background-color: #fff;
}

.tablebox3 {
    width: 100%;
    /* height: 100%; */
    float: left;
    border-radius: 35px 35px 20px 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
    padding: 15px;
    /* border: 5px solid #000; */
    background: var(--white-clr);
}

.tbbg3 {
    background: #000;
    /* background: url(https://cdn.oppyotest.com/launches/socialclaw/special/table-frame.webp) no-repeat bottom center; 
    background-size: 100% 100%;*/
    padding: 20px;
    border-radius: 8px 8px 0 0;
    /* min-height: 210px; */
}
.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

ul.vgreytick li {
    background:#fff url(https://cdn.oppyotest.com/launches/socialclaw/special/tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
ul.vgreytick li:nth-child(1) {
    border-radius: 15px 15px 0px 0px;
}
ul.vgreytick .list-close {
    background: #fff url(https://cdn.oppyotest.com/launches/socialclaw/special/list-cross.webp) no-repeat;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
}
/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 20px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 29px;
    display: inline-block;
}
.commercial1{
    background: #FCEE53;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 8px 11px;
    display: inline-block;
}
.commercial2 {
    background: var(--blue-clr);
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 8px 11px;
    display: inline-block;
}
.table-sale {
    background: var(--green-clr1);
    border-radius: 48px;
    padding: 2% 5%;
    display: inline-block;
}
/* .table-sale {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
} */
.mt-top{
    margin-top: -77px;
}
.vgreytick li.headline1 {
    background: #FFDFDF;
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #FF0000;
}
.vgreytick li.headline2 {
    background: var(--black-clr);
    padding: 15px 0px 15px 0px;
    background-position: 0px !important;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
}
ul.vgreytick3 li {
    background: url(https://cdn.oppyotest.com/launches/socialclaw/special/cross2.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.table-text {
    background: var(--blue-clr);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border: 2px solid #FFFFFF4D;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
.tbbg4  {
    background: #000;
    padding: 20px 10px;
    border-radius: 8px 8px 0 0;
}
@media(min-width:768px){
    .table-section {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/table-bg.webp") no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .table-text{
        background: url(https://cdn.oppyotest.com/launches/socialclaw/special/blue-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        box-shadow: unset;
        padding: 8px 40px 8px;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    ul.vgreytick .list-close {
        padding: 20px 15px 20px 65px;
        background-position: 30px 24px;
    }
    .tbbg3 {
        padding: 30px;
        /* min-height: 500px; */
        /* background-size: 100% 100%; */
    }    
    .tbbg4 {
        padding: 100px 30px 30px !important;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px 25px;
    }
    /* .table-sale {
        padding: 11px 70px;
    } */
    .mt-top{
        margin-top: -79px;
    }
    ul.vgreytick3 li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 22px;
    }
    .commercial1{
        padding: 8px 29px;
    }
    .commercial2{
        padding: 8px 29px;
    }
}

/* 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/socialclaw/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-gradient);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .contact-section {
        background: #ffffff url(https://cdn.oppyotest.com/launches/socialclaw/special/contact-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .contact-text {
        background: url("https://cdn.oppyotest.com/launches/socialclaw/special/dark-purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 60px;
        border-radius: unset;
        position: relative;
    }
    
}
/* contact-sec end */

/* fear sec start */
.fear-sec{
    background: #FFF8EF;
}
.fair-text {
    border: 2px solid #FFFFFF;
    background: #FF361D;
    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/socialclaw/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/socialclaw/special/faq-icon.webp) no-repeat top left;
    background-color: #ffffff;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border: 1px solid var(--red-clr);
    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 */