/* fastpass */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 14px;
    overflow-x: hidden;
}
.patua-font {
    font-family: "Patua One", serif;
}
.italic {
    font-style: italic;
}
.oswald {
    font-family: "Oswald", sans-serif;
}
.Passero {
    font-family: "Passero One", sans-serif;
}
.playfair-font {
    font-family: "Playfair Display", serif;
}
.under {
    border-bottom: 2px solid #000000;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-thumb {
    background: var(--theme-gradient);
    border-radius: 25px;
}

/* Section Padding Start */
.sec-pd{
    padding-top: 40px;
    padding-bottom: 40px;
}
@media (min-width:768px){
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Section Padding End */

/* Color CSS */

:root {
    --black-clr:#010101;
    --white-clr: #fff;
    --grey-clr:#555555;
    --grey-clr1:#FFFFFF99;
    --brown-clr: #DF6A00;
    --blue-clr: #5BC0FF;
    --light-white1: rgba(255, 255, 255, 0.6);
    --light-white: #ffffff99;

    --red-clr:#FF1C0B;
    --red-clr1:#ff3637;
    --theme-bg:#A5FF4A;
    --blue-clr: #5BC0FF;
    --green-clr:#64fe4b;
    --purple-clr: #8037FF;
    --purple-clr2:#B070FF;
    --orange-clr2: #FFA515;
    --green-clr1:#57ca00;
    --theme-gradient: linear-gradient(90deg, #FF1C0B 0%, #991107 100%);
    --theme-gradient1: linear-gradient(90deg, #991107 0%, #FF1C0B 100%);
}
/* Color CSS */
.black-clr {color: var(--black-clr)}
.light-white {
    color: var(--light-white);
}
.white-clr,a.white-clr {color: var(--white-clr);}
.light-white1 {
    color: var(--light-white1);
}
.brown-clr{color:var(--brown-clr);}

.blue-clr {color: var(--blue-clr);}
.blue-clr1 {color: var(--blue-clr1);}
.blue-clr3 {color: var(--blue-clr3);}

.yellow-clr {color: var(--yellow-clr);}
.yellow-clr1 {color: var(--yellow-clr1);}

.green-clr {color: var(--green-clr);}
.green-clr1 {color: var(--green-clr1);}


.red-clr{color: var(--red-clr);}
.red-clr1{color: var(--red-clr1);}
.red-clr2{color: var(--red-clr2);}
.red-clr3{color: var(--red-clr3);}

.grey-clr1 {color: var(--grey-clr1);}
.purple-clr {color: var(--purple-clr);}
.purple-clr2 {color: var(--purple-clr2);}
.orange-clr {color: var(--orange-clr);}
.orange-clr-1 {color: var(--orange-clr-1);}
.orange-clr2 {color: var(--orange-clr2);}

.theme-clr {
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.br-gradient {
    border-image-slice: 1;
    width: 100%;
    border-bottom: 2px solid var(--blue-clr);
}

.text-success {
    color: #21AF21 !important;
}
.yellow-clr {
    color: #f8d13e;
}
.white-box{
    background: #ffffff;
    padding: 30px 0px 30px;
}
.feature-box{
    background: #00000008;
    border: 1px solid #FFFFFF33;
    box-shadow: 0px 0px 50px 0px #FFFFFF4D inset;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.features-title {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 15px;
}

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 48px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
    font-family: "Oswald", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.theme-btn:hover {
    transition: all .3s ease;
}
.theme-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s;
    background: var(--theme-gradient1);
    color: #ffffff;
    border-radius: 0 0 40% 35%;
}
.theme-btn1 {
    /* border: 2px solid #130d18; */
    background: var(--theme-gradient);
    padding: 15px 6px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    /* background-size: 150% 100%; */
    transition: all 0.6s ease-in-out;
    outline: 0;
}
.theme-btn1:hover{
    color: #000000;
    background: var(--theme-gradient);
}
.blue-clr{
    color: var(--blue-clr);
}

.btn-border:hover{
    transform: scale(1.1);
}

a.affiliate-link-btn {
	border-radius: 10px;
	border-radius: 10px;
    background: var(--theme-gradient);
	text-decoration: none;
	text-align: center;
    display: inline-block;
	padding: 10px 28px;
	font-size: 18px;
	color: #ffffff;
	transition: all .3s ease;
	/*animation: blink 1.5s linear infinite;*/
}
.post-head{
    border-radius: 10px;
    border: 1px dotted #5289EF;
    background: #FFFFFF;
    backdrop-filter: blur(25px);
    display: inline-block;
    padding: 10px;
}


/* @keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
}  */
@media (min-width: 768px){
    .theme-btn {
        padding: 30px 115px;
    }
.theme-btn1 {
    padding: 35px 30px;
}
a.affiliate-link-btn {
    padding: 10px 28px !important;
    font-size: 24px;
}
.img-width img{
    max-width: 80%;
}
.white-box{
    /* background:#010224 url(../images/feature-bg.webp) no-repeat center center;
    background-size: cover; */
    padding: 30px 0px 60px;
}
}

/* top header  */
.warning-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
}

.warning-box img {
    min-width: 52px;
    max-height: 50px;
    margin-right: 14px;
}
.btn-accent {
    background: var(--theme-gradient);
    color: #000000;
}
.btn-medium {
    padding: 0px 18px;
    border: 2px solid #6137F7 !important;
    font-size: 18px;
    line-height: 33px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 0;
    /* animation: blink 1.5s linear infinite; */
}

.fixed-top-bar {
    background: var(--theme-gradient);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 99
}

.fixed-top-bar div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.fixed-top-bar img {
    max-width: 295px;
    margin-right: 15px
}

.fixed-top-bar a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    fill: #000;
    color: #000;
    background-color: #ffffff;
    border-radius: 5px 5px 5px 5px;
    padding: 6px 15px 4px;
    animation: blink 1.5s linear infinite;
}

.fixed-top-bar div p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    margin-right: 15px
}
@media (min-width: 768px){
    .fixed-top-bar div {
    flex-direction: row;
}
}
/*.fixed-top-bar div p span {*/
/*    text-decoration-line: line-through*/
/*}*/



/* .mainheading-text{
    font-style: italic;
    background: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
    border-radius: 10px;
    padding: 0px 10px;
} */

/* button border animation css start */
@property --border-gradient-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
  }
  .btn-border{
    /* border: 10px solid #A5FF4A4D; */
    display: inline-block;
    border-radius: 20px;
    transition: ease 0.3s;
    }
    .btn-border:hover{
        transform: scale(1.1);
    }
    .btn-border {
        /* padding: 4px;
        border-radius: 10px; */
        transition: ease 0.3s;
        /* display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #FFC401 14%,  #C90DF8 19%, #3538FF 23%, transparent 17%);
        background-size: contain;
        background-color:transparent;
        animation: rotateBG 5s linear infinite; */
    }
    .btn-border1 {
        /* padding: 4px;
        border-radius: 10px; */
        transition: ease 0.3s;
        /* display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #FFC401 14%,  #C90DF8 19%, #3538FF 23%, transparent 17%);
        background-size: contain;
        background-color:#ffffff;
        animation: rotateBG 5s linear infinite; */
    }
  
  @keyframes rotateBG {
    0% {
      --border-gradient-angle: 0turn;
    }
    100% {
      --border-gradient-angle: 1turn;
    }
  }

 .mainheadline{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    padding: 20px 10px;
    /* display: inline-block;*/
}
 .mainheadline1{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    padding: 20px 10px;
    /* display: inline-block;*/
}
 .mainheadline2{
    background: #ffffff;
    /* border: 2px solid #4B99FF; */
    padding: 20px 10px;
    border-radius: 10px;
    display: inline-block;
}

.benefits{
    background: #FFF0F1;
    padding: 30px 0px;
}
/* .magically-text {
    background: #ffffff;
    border: 1px solid #5289EF;
    border-radius: 50px;
    padding: 5px 10px;
    display: inline-block;
} */

  /* button border animation css end */

@media (min-width: 768px){
    .warning-box {
        font-size: 16px;
    }
    .btn-medium {
        padding: 10px 28px;
        font-size: 24px;
    }
    .mainheadline{
        padding: 50px 40px;
        border-radius: 70px;
    }
        .mainheadline1{
        padding: 50px 40px;
        border-radius: 70px;
    }
    /* .magically-text {
        border-radius: 100px;
        padding: 12px 20px;
    } */
    /* .mainheadline::before {
        position: absolute;
        content: url("../images/blue-shade-main.webp");
        top: -22px;
        left: -20px;
    } */
    .mainheadline2{
        background: url(../images/main-heading.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 20px 40px 30px;
        display: inline-block;
        border: unset;
        border-radius: unset;
        position: relative;
    }
    .benefits{
        padding: 100px 0px;
    }
}

 @keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
} 
.btn-accent:hover {
    color: #000;
}
/* top header  */

.clr-1 {
    color: #4494FF;
}
.green-clr2 {
    color: #00da23;
}
.caveat {
    font-family: 'Caveat', cursive;
}
.play {
    font-family: 'Play', sans-serif;
}
/* a:hover {
    color: #fff;
} */
/* --- Global Css Start--- */
.blue-gradient{
    --blue-gradient: var(--theme-gradient);
}
.white-clr {
    color: #fff;
}
.black-clr {
    color: #010101;
}
.orange-clr {
    color: #f6841f;
}
/* .red-clr{
    color: #ff0506;
} */
.sky-blue {
    color: #01dffb;
}

.neon-clr {
    color: var(--theme-gradient);
}
.relative {
    position: relative;
}

.support-link:hover{
        color: #0a58ca;
}
.img-shadow {
    box-shadow: 0px 0px 15px 0px rgb(73 76 80 / 25%);
}
.uppercase {
    text-transform: uppercase;
}

.instant-btn1 a {
    font-size: 20px;
}
.instant-btn1 a {
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 100%;
    color: #ffffff;
    font-weight: 600;
    transition: all .3s ease;
     background: var(--theme-gradient);
    backdrop-filter: blur(10px);
}
.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(0, 0, 0, 0.03) 100%);
    backdrop-filter: blur(10px);
}
.close-img {
    width: 50px;
}
/* --- Global Css End--- */
/* --- Header Section Start--- */
.header-section {
    background: #000000;
    padding: 30px 0px;
}

.pre-heading {
    background: #5289EF1A;
    border: 1px dashed #5289EF;
    border-radius: 50px;
    padding: 5px 10px;
    display: inline-block;
}

.textbox{
    background: #ffffff;
    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--theme-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 10px;
    height: 100%;
}
.textbox-1{
    padding: 0px 10px 20px;
}
.textbox-inner{
    border-radius: 5px;
    background: #191919;
    display: inline-block;
    padding: 10px 16px;
}
.orange-brush{
    background: url(../images/orange-brush.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}

.blue-brush{
    background: url(../images/blue-brush.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}

.purple-brush1{
    background: url(../images/purple-brush1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}
ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    font-weight: 500;
	color: var(--white-clr);
}
.leader-ul li a{
    position: relative;
  transition: all .5s;
}


.header-section ul.leader-ul li a {
    text-decoration: none;
    font-weight: 800;
    padding:10px 10px;
}
/* .header-section ul.leader-ul li a:hover{
    color: black;
} */

.mt-top{
    margin-top: -15px;
}


@media(min-width:768px) {
    .header-section {
        background:#fff url(../images/header-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 40px 0px 100px 0px;
    }
    .textbox-1{
        padding: 0px 16px 24px 15px;
    }
    .mt-top{
    margin-top: -48px;
}

    /* .textbox-inner{
        padding: 10px;
    } */
    .pre-heading {
        border-radius: 100px;
        padding: 12px 30px;
    }
    .f-md-70 {
        font-size: 70px !important;
    }
}
/* --- Header Section End--- */
/* --- New Section Start--- */
.new-section {
    background: #ffffff;
    padding: 30px 0px;
}

.menu-list {
    border: 3px solid #ffadb3;
    box-shadow: -5px 5px 15px rgb(0 0 0 / 15%);
    border-radius: 15px;
    background-color: #FFFFFF;
    padding: 15px 15px 15px 30px;
    /* margin-top: 30px; */
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
@media (max-width: 767px) {
    /* .content-mbl-space {
        padding: 30px 15px;
    } */
    .f-md-70 {
        font-size: 70px;
    }
}
/* --- New Section End--- */

/* --- Second Section Start--- */
.elite-section {
    padding: 30px 0;
    background: #000000;
}
.enterprise-section {
    padding: 30px 0;
    background: #000000;
}
.studio-section {
        background:#000000 url(../images/header-bg.webp ) no-repeat top center;
        background-size: cover;
        padding: 30px 0px;
}
.agency-section {
    padding: 30px 0;
    background: #000000;
}
.plan1-shape {
    border-radius: 10px;
    padding: 20px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 0px rgb(96 145 169 / 19%);
}
.plan2-shape {
    border-radius: 10px;
    padding: 20px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 0px rgba(96, 145, 169, 0.19);
}
@font-face {
    font-family: 'handsean';
    src: url(../fonts/handsean.ttf);
}
.title-shape {
    background: var(--theme-gradient);
    padding: 5px;
    border-radius: 20px;
    display: inline-block;
}
.title-shape1 {
    background: var(--theme-gradient);
    padding: 10px;
    border-radius: 65px;
    display: inline-block;
}
.kaptick li {
    list-style: none;
    background: url(../images/kap-tick.webp) no-repeat;
    background-position: 10px 3px;
    padding: 0 0 15px 45px;
    color: #000000;
    line-height: 150%;
    font-size: 18px;
}
.kaptick1 li {
    list-style: none;
    background: url(../images/kap-tick.webp) no-repeat;
    background-position: 10px 3px;
    padding: 0 0 15px 45px;
    color: #000000;
    line-height: 150%;
    font-size: 18px;
}
.kaptick li:last-child {
    padding-bottom: 0px;
}
.kaptick1 li:last-child {
    padding-bottom: 0px;
}
.moneyback-section {
    background: #09090b;
    padding: 30px 0 30px;
}
.second-header-section {
    padding: 30px 0;
    background: #111;
}
.step-shape {
    border-width: 3px;
    border-color: #f6841f;
    border-style: solid;
    border-radius: 15px;
    background-color: transparent;
    position: relative;
    width: 100%;
    float: left;
    padding: 20px;
    height: 100%;
    color: #fff;
}
.section-margin {
    margin-top: 40px !important;
}
.ved_search_box {
    position: relative;
    overflow: hidden;
    height: 30px;
    width: 100%;
}
.ved_search_box .ved_search_placeholders {
    animation: text2 5s ease 3s infinite normal none;
}
.ved_search_box .ved_search_placeholders {
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    pointer-events: none;
    animation: text2 5s ease 3s infinite normal none;
}
.blue-gradient {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .orange-frame-1 {
    background: #DF6A00;
    border: 1px solid #ffffff;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.pink-frame {
    background: #D15DFF;
    border: 1px solid #010101;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.blue-frame-1 {
    background: #5e80f1;
    border: 1px solid #010101;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
} */

.gradient-frame{
    background: var(--theme-gradient);
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
}
.yellow-border-card {
    background: #FFF1F1;
    border-top: 2px solid #FC0113;
    border-right: 2px solid #FC0113;
    border-bottom: 10px solid #FC0113;
    border-left: 2px solid #FC0113;
    /* box-shadow: 0px 0px 50px 0px #FC884C4D inset; */
    border-radius: 10px;
    padding: 10px 20px;
    height: 100%;
}
.features-title .size {
    max-height: 50px;
}

.features-card1 {
    background: #FFF1F1;
    border-top: 2px solid #FC0113;
    border-right: 2px solid #FC0113;
    border-bottom: 10px solid #FC0113;
    border-left: 2px solid #FC0113;
    /* box-shadow: 0px 0px 50px 0px #FC884C4D inset; */
    border-radius: 20px;
    padding:10px 20px;
    height: 100%;
}
.features-card1-inner {
    padding: 20px 15px;
}
.features-card2 {
    background: #FFF1F1;
    border-top: 2px solid #FC0113;
    border-right: 2px solid #FC0113;
    border-bottom: 10px solid #FC0113;
    border-left: 2px solid #FC0113;
    /* box-shadow: 0px 0px 50px 0px #FC884C4D inset; */
    border-radius: 20px;
    padding:10px 20px;
    height: 100%;
}

@media(min-width:768px) {
    .title-shape {
        background: url(../images/purple-brush1.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 5px 30px;
    }
    .title-shape1 {
        background: url(../images/purple-brush1.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: 0px;
        padding: 5px 30px;
    }
    .tablebox-inner-bg {
        padding: 30px 0px 0px;
        border-radius: 30px;
    }
    .tablebox-bottom {
        padding: 10px 0px 30px;
        border-radius:0px 0px 27px 27px;
    }
            .features-card1-inner {
        padding: 20px 15px;
    }
        .features-card2 {
        padding: 20px 15px;
    }
    .section-margin {
        margin-top: 300px !important;
    }
        .elite-section{
        background:#000000 url(../images/header-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 30px 0px;
    }
        .enterprise-section {
         background:#000000 url(../images/header-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 30px 0px;
    }
    /* .studio-section {
        padding: 40px 0 60px;
    } */
    .agency-section {
        background:#000000 url(../images/header-bg.webp) no-repeat top center;
        background-size: cover;
        padding: 30px 0px;
    }
    /* .orange-frame-1 {
        background: url(../images/orange-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 0px 26px;
        border: unset;
        border-radius: unset;
    }
    .pink-frame {
        background: url(../images/pink-frame.webp) no-repeat;
        background-size: 100% 100%;
        padding: 10px 26px;
        border: unset;
        border-radius: unset;
    }
    .blue-frame-1 {
        background: url("../images/blue-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 26px;
        display: inline-block;
        border: unset;
        border-radius: unset;
    } */
    .new-section {
        padding: 80px 0px 100px;
    }
    .main-box,.main-box-2,.main-box-3,.main-box-4{
        padding: 50px 100px;
    }
    /* .pimg {
        margin-top: -255px;
    } */
    .section1 {
        padding: 40px 0 60px;
    }
    .enterprise-section {
        padding: 40px 0 60px;
    }
    /* .studio-section {
        padding: 40px 0 60px;
    } */
    /* .agency-section {
        padding: 40px 0 60px;
    } */
    /* .instant-btn a {
        font-size: 34px;
        padding: 28px 30px 30px 30px;
    } */
    .kaptick li {
        padding: 5px 0 30px 45px;
        background-position: 5px 6px;
    }
    .kaptick1 li {
        padding: 5px 0 7px 40px;
        background-position: 5px 8px;
    }
    .img-shadow {
        box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
    }
    .moneyback-section {
        padding: 100px 0 100px 0px;
        background: url(../images/moneyback-bg.webp) no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .yellow-border-card {
        border-radius: 20px;
        padding: 20px;
    }
}
/* --- Second Section End--- */

/* --- Third Section Start--- */
.section2 {
    padding: 30px 0;
    background: #ffffff;
}
.tablebox1 {
    border: 3px solid #FC0113;
    /* background-image: linear-gradient(#fff, #fff), var(--theme-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box; */
    width: 100%;
    float: left;
    border-radius: 30px;
}
.tablebox-inner-bg {
    background: #ffe2e2;
    border-radius: 27px;
}
.tablebox-bottom {
    background: #fff;
    padding: 10px;
    border-radius:0px 0px 27px 27px;
}
.table-headline-shape {
    background: #f8d13e;
    display: inline-block;
    border-radius: 48px;
    padding: 1% 5%;
}
.odd-shape {
    background: #ffe2e2;
    padding: 10px 15px;
}
.bottom-border{
    border-bottom: 2px solid #746868c0;
}
.even-shape {
    background: #ffffff;
    padding: 10px 15px;
    color: #000000 !important;
}
.price-shape {
    background: #ffe2e2;
    display: inline-block;
    border-radius: 5px;
    padding: 4px 5px 4px 5px;
}
.price-shape1 {
    background: #ffffff;
    display: inline-block;
    border-radius: 5px;
    padding: 4px 5px 4px 5px;
}
/* .now-price {
    background: var(--theme-gradient);
    padding: 12px 10px;
    border-radius: 22px;
} */
.myfeatures {
    float: left;
    /* padding: 25px 6px; */
    width: 100%;
    min-height: 69px;
}
.table-sale {
    background: url(../images/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 35px;
    display: inline-block;
}
@media (min-width: 768px) {
    .section2 {
        padding: 60px 0;
        background: url(../images/table-bg.webp) center center;
        background-size: cover;
        background-attachment: fixed;
    }
            .table-sale {
        padding: 11px 70px;
    }
}
/* --- Third Section End--- */
footer{
    background: #1A1A1A;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
@media(min-width:768px){
    footer{padding: 50px 0px;}
}

/* ============ */
.purple-brush {
    background: url("../images/purple-brush.webp") no-repeat;
    background-size: 100% 100%;
    padding: 0px 14px;
}
.border-field {
    background: #000;
    padding: 20px;
    border: 1px solid #ffffff;
}
@media (min-width: 768px){
    .purple-brush{
        padding: 5px 25px;
    }
}
/* Floating Btn */

/* monthly box start */
.monthly-box {
    background: url("../images/montly-bg.webp") no-repeat;
    background-size: 100% 100%;
    padding: 3px 15px 30px;
    position: relative;
}
.One-Time-text{
    background: url("../images/one-time-bg.webp") no-repeat;
    background-size: 100% 100%;
    padding: 12px 59px;
    display: inline-block;
    margin: -10px;
}
@media (min-width: 768px) {
    .pl-md75 {
        padding-left: 75px !important;
    }
    .monthly-box{
        padding: 0px 106px 40px;
    }
}
/* monthly box end */

#scroll {
    background: var(--theme-gradient);
    background-size: 150% 100%;
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    text-indent:-9999px;
    display:none;
    transition: all 0.6s ease-in-out;
    outline: 0;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background: var(--theme-gradient);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

/*  */

a.nothank {
    color: #EF3E3A;
    text-decoration: none;
    letter-spacing: 2px;
}

/* slider-sec start */
.slider-sec{
    background: linear-gradient(180deg, #190416 0%, #050517 100%);
}
.slider-main-image {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
}
.slider-main-image img {
    display: block;
    animation: slider-image-running 60s linear infinite;
    width: 250%;
    max-width: unset;
    /* min-height: unset; */
}
@keyframes slider-image-running {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* @media (min-width:768px) {
    .slider-sec{
        background: #351a08 url(https://cdn.oppyotest.com/launches/kidsbookai/elite/slider-bg.webp) no-repeat center center;
        background-size: cover;
    }
} */
/* slider-sec end */

.twentytwenty-wrapper .twentytwenty-handle {
    height: 40px;
    width: 40px;
    border: 0;
    background: var(--theme-gradient);
    transform: translate(-50%, -50%);
    margin: 0;
}
.twentytwenty-container{
    border: 1px solid rgb(202, 224, 255);
    border-radius: 5px;
}
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after{
    width: 2px;
}
.bg-remover-twenty .twentytwenty-handle{
    height: 60px !important;
    width: 60px !important;
}
.bg-remover-twenty .twentytwenty-handle:before{
    bottom: 70% !important;
}
.bg-remover-twenty .twentytwenty-handle::after{
    top: 70% !important;
}

/* Fe sections Start */

/* --- Header Section Start --- */
/* Header CSS */

/* cta btn section start */
.cta-section {
    background: #0b0809;
}
a.cta-link-btn {
     text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 48px;
    font-size: 28px;
    line-height: 140%;
    color: #ffffff !important;
    font-weight: 700;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
    font-family: "Oswald", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
a.cta-link-btn:hover{
    transition: all .3s ease;
    transform: scale(1.04);
}
a.cta-link-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s;
    background: var(--theme-gradient1);
    color: #ffffff;
    border-radius: 0 0 40% 35%;
}
.purple-box{
    background: var(--purple-clr);
    border-radius: 35px;
    padding: 10px;
    display: inline-block;
}
.col-12:has(.purple-box) {
    margin-top: -60px;
}
@media (min-width: 768px) {
    .cta-section {
        background: #0b0809 url(../images/cta-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 70px 0;
    }
    .cta-text{
        background: url("../images/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
    a.cta-link-btn {
        font-size: 44px;
        padding: 30px 178px;
        display: inline-block;
    }
    .purple-box{
        padding: 6px 35px;
    }
    .col-12:has(.purple-box){
        margin-top: -115px;
    }
}
/* cta btn section end */

/* cta btn section start */
.cta-section {
    background: #0b0809;
}
    .cta-btn-bg {
    background: #0B0809;
    border: 1px dashed #fff;
    padding: 20px 10px;
    border-radius: 10px;
}
a.cta-link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 10px;
    font-size: 24px;
    line-height: 160%;
    color: var(--black-clr);
    font-weight: 800;
    transition: all .3s ease;
    background: var(--theme-gradient);
    border-radius: 10px;
    /* border: 5px solid rgba(255, 255, 255, 0.30); */
}
a.cta-link-btn:hover{
    background: var(--theme-gradient);
    color: var(--black-clr);
    transform: scale(1.05);
}
.purple-box{
    background: var(--purple-clr);
    border-radius: 35px;
    padding: 10px;
    display: inline-block;
}
.col-12:has(.purple-box) {
    margin-top: -60px;
}
@media (min-width: 768px) {
    .cta-section {
        background: #0b0809 url(../images/cta-bg.webp) no-repeat center center;
        background-size: cover;
        padding: 70px 0;
    }
        .cta-btn-bg {
        background: url(../images/cta-btn-border.webp) no-repeat center center;
        background-size: 100% 100%;
        padding: 50px 26px;
        border-radius: 10px;
        border: unset;
    }
    .cta-text{
        background: url("../images/cta-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 9px 41px;
    }
    a.cta-link-btn {
        font-size: 38px;
        padding: 30px 115px;
        display: inline-block;
    }
    .purple-box{
        padding: 6px 35px;
    }
    .col-12:has(.purple-box){
        margin-top: -115px;
    }
}
/* cta btn section end */

/* fe section start */

.fe-sec{
    background: #0a0708;
    position: relative;
}
.pre-head {
    background: #ffffff2b;
    border: 1px solid #ffffff54;
    border-radius: 15px;
    padding: 6px 15px;
    display: inline-block;
}
.main-heading {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    padding: 20px 10px;
    /* display: inline-block; */
}
.yellow-text{
    background: linear-gradient(180deg, rgba(248, 209, 62, 0) 0%, rgba(248, 209, 62, 0.5) 100%);
    padding: 0 5px;
    display: inline-block;
}
.heading-gradiant{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 18px;
}
.post-heading{
    background: #1D1B1C;
    border: 1px solid #ffffff54;
    backdrop-filter: blur(50px);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.header-side-box{
    background: #FFFFFF;
    border: 2px solid #FD6D294D;
    backdrop-filter: blur(100px);
    border-radius: 10px;
    padding: 20px 10px;
}
.header-ul{
    padding: 20px 15px;
    background: #1D1B1C;
    border: 1px solid #ffffff54;
    border-radius: 15px;
}
.header-ul li {
    list-style: none;
    background: url("../images/tick.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 37px;
}
.header-ul li:last-child{
    padding-bottom: 0px;
}
.green-frame{
    background: url("../images/green-frame.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 0px 12px;
}
.Exclusive-text{
    background: #151515;
    border: 1px dashed var(--red-clr);
    border-radius: 10px;
    padding: 10px;
}
.red-frame-1 {
    background: url("../images/red-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 2px 15px;
}
.blue-box {
    border-radius: 10px;
    background: transparent;
    border: 1px solid #3F3F3E;
    background: #080808;
    padding: 20px 10px;
}
.header-white-box {
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid #FFFFFF33;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    height: 100%;
    align-items: center;
}
@media(min-width:768px){
    .fe-sec{
        background: #0a0708 url("../images/header-bg.webp") no-repeat top center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .pre-head {
        border-radius: 30px;
    }
    .main-heading {
        padding: 50px 40px;
        border-radius: 70px;
    }
    .header-ul li {
        padding: 0px 0px 22px 37px;
    }
    .purple-arrow{
        position: relative;
    }
    .purple-arrow::after{
        content: url(../images/purple-left-arrow.webp);
        position: absolute;
        left: -85px;
        top: 18px;
    }
    .purple-arrow::before{
        content: url(../images/purple-right-arrow.webp);
        position: absolute;
        right: -85px;
        top: 18px;
    }
    .post-heading{
        padding: 12px 20px;
    }
    .header-side-box{
        padding: 30px 28px 60px;
    }
    .Exclusive-text{
        padding: 14px;
    }
    .theme-btn:hover {
        transform: scale(1.04);
         transition: all .3s ease;
    }
    .green-frame{
        background: url("../images/green-frame.webp") no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        padding: 4px 8px;
    }
    .blue-box {
        border-radius: 20px;
        padding: 30px;
    }
}
/* fe section end */


/* step sec start */
.step-sec{
    background: #1A1A1A;
}
.step-card{
    padding: 15px 15px 25px;
    display: inline-block;
    height: 100%;
}

.step-card-1, .step-card-2, .step-card-3 {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
}
@media (min-width:768px) {
    .step-sec{
        background: url("../images/step-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .step-card {
        padding: 0px 25px 52px;
        border: unset;
        border-radius: unset;
        box-shadow: unset;
    }
    .step-card .img1, .step-card .img2{
        margin-top: -20px;
    }
        .ms-md-auto {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
        .me-md-auto {
        margin-right: auto !important;
        margin-left: 0 !important;
    }
    .step-card .img2{
        margin-top: -70px;
    }
    .step-card-1{
        background: url("../images/step-card-1.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-2{
        background: url("../images/step-card-2.webp") no-repeat;
        background-size: 100% 100%;
    }
    .step-card-3{
        background: url("../images/step-card-3.webp") no-repeat;
        background-size: 100% 100%;
    }
    .red-wave{
        position: relative;
    }
    .red-wave::after {
        position: absolute;
        content: "";
        background: url("../images/red-wave.webp") no-repeat center center;
        width: 100%;
        height: 10px;
        bottom: -10px;
        left: 0;
    }
}
/* step sec end */

/* launch-sec start */
.launch-sec{
    background: #000000;
}
.launch-text    {
     background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
}
.launch-frame {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 20px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .launch-text    {
        padding: 20px 30px;
    }
    .launch-frame {
        background: url("../images/launch-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 56px 20px 20px;
        border-radius: unset;
        border: unset;
        backdrop-filter: unset;
        box-shadow: unset;
    }
}
/* launch-sec end */


/* channel-sec start */
.channel-sec{
    background: #1A1A1A;
}
.channel-box{
    background: #FFFFFF;
    border: 2px solid #FC01134D;
    box-shadow: 0px 10px 20px 0px #0000004D;
    padding: 0px 20px 20px;
    border-radius: 20px;
}
.title {
    background: var(--green-clr);
    border-radius: 30px;
    padding: 9px 37px;
    display: inline-block;
    /* margin-top: -10px; */
}
/* div:has(.title){
    margin-top: -8px;
} */
.sub-text{
    background: #6BB22D;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 20px
}
.why-text{
    background: #FF1C0B;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 20px;
}

.channel-black-box{
    padding: 15px 5px 15px;
    z-index: 1;
    position: relative;
}
.channel-black-box::after{
    position: absolute;
    content: '';
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset;
    box-shadow: -10px 0px 10px 0px #FFFFFF33 inset;
    backdrop-filter: blur(25px);
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
@media (min-width: 768px) {
    .channel-sec {
        background: #1A1A1A url(../images/channel-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .why-text{
        padding: 10px 50px;
    }
    .channel-black-box{
        padding: 0px 0px 40px;
    }
}
@media (max-width: 1400px) {
    .channel-black-box::after{
        max-width: 1320px;
    }
}
/* channel-sec end */

/* creator-sec start */
.creator-sec{
    background: #000000;
}
.creator-text {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 25px;
    display: inline-block;
    padding: 12px 15px;
}
.creator-v-1{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 30px;
    padding: 20px 20px 0px;
}
.creator-frame {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 20px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .creator-sec {
        background: #000000 url("../images/creator-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .creator-text {
        border-radius: 50px;
        display: inline-block;
        padding: 27px 35px 28px;
    }
    .creator-v-1{
        border-radius: 50px;
        padding: 56px 36px 0px;
    }
    .creator-frame {
        background: url("../images/launch-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 56px 20px 20px;
        border-radius: unset;
        border: unset;
        backdrop-filter: unset;
        box-shadow: unset;
    }
}
/* creator-sec end */

/* without-sec start */
.without-sec{
    background: #1A1A1A;
}
.without-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    padding: 10px;
    height: 100%;
}
.cross-icon{
    max-width: 35px;
}
@media (min-width: 768px) {
    .without-sec {
        background: #1A1A1A url(../images/without-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .without-box{
        padding: 20px 15px;
    }
    .wink-icon{
        position: relative;
    }
    .wink-icon::after {
        position: absolute;
        content: url("../images/wink-icon.webp");
        top: 0px;   
        right: -85px;
    }
}
/* without-sec end */

/* grow sec start */
.grow-sec {
    background: #000000;
}
.grow-text {
    background: #FF1C0B;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset,-10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
}
@media (min-width: 768px) {
    .grow-sec {
        background: #000000 url("../images/grow-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .grow-text {
        padding: 15px 70px;
    }
}
/* grow sec end */

/* earn-sec start */
.earn-sec {
    background: linear-gradient(180deg,#1A1A1A 0%, #000000 100%);
}
.earn-text {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 15px;
}
.earn-black-box{
    padding: 20px 0px;
    z-index: 1;
    position: relative;
}
.earn-black-box::after{
    position: absolute;
    content: '';
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    height: 100%;
    width: 100%;
    max-width: 1270px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.grind-text {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 30px;
    padding: 15px 25px;
    display: inline-block;
}
@media (min-width: 768px) {
    .earn-sec {
        background: #000000 url("../images/earn-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .earn-text {
        padding: 15px 50px;
    }
    .earn-black-box{
        padding: 70px 50px;
    }
    .grind-text{
        border-radius: 50px;
        padding: 16px 49px;
        position: relative;
    }
    .grind-text::after {
        position: absolute;
        content: url("../images/cool.webp");
        top: 0;
        right: -45px;
    }
    .grind-text::before {
        position: absolute;
        content: url("../images/cool.webp");
        top: 0;
        left: -45px;
    }
}
/* earn-sec end */

/* million-sec start */
.million-sec{
    background: #1A1A1A;
}
.million-text{
    background: #FF1C0B;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset,-10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 20px;
}
@media (min-width: 768px) {
    .million-sec{
        background: #1A1A1A url(../images/million-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .million-text{
        padding: 15px 40px;
    }
}
/* million-sec end */

/* star-sec start */
.star-sec{
    background: #FBE9E2;
}
.star-text{
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 1px dashed #FFFFFF;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}
.star-list li {
    list-style: none;
    background: url("../images/star-list.webp") no-repeat;
    background-position: 0px 5px;
    padding: 0px 0px 20px 55px;
}
.star-text-2{
    background: var(--theme-gradient);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .star-sec{
        background: #FBE9E2 url(../images/star-bg.webp) no-repeat bottom center;
        background-size: cover;
    }
    .star-text{
        padding: 0px 26px;
    }
    .star-list li {
    padding: 0px 0px 30px 55px;
    }
    .star-text-2{
        padding: 0 20px;
    }
}
/* star-sec end */

/* turn-sec start */
.turn-sec{
    background: #000000;
}
.turn-text{
    background: #FF1C0B;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset,-10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
.turn-text-1{
    background: #FF1C0B;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset,-10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}
.turn-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 10px;
    border-radius: 20px;
}
.turn-box img{
    border-radius: 15px 15px 0 0;
}
@media (min-width: 768px) {
    .turn-sec{
        background: #000000 url(../images/turn-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .turn-text{
        padding: 15px 85px 15px 30px;
        position: relative;
    }
    .turn-text::after {
        position: absolute;
        content: url("../images/star-struck.webp");
        top: -28px;
        right: -60px;
    }
    .turn-box{
        padding: 20px 20px 30px;
    }
    .turn-text-1{
        padding: 15px 30px;
        position: relative;
    }
    .turn-text-1::after {
        position: absolute;
        content: url("../images/stars-icon-1.webp");
        top: 0;
        right: -65px;
    }
    .turn-text-1::before {
        position: absolute;
        content: url("../images/stars-icon.webp");
        top: 0;
        left: -65px;
    }
}
/* turn-sec end */

/* freelancer-sec start */
.freelancer-sec{
    background: #1A1A1A;
}
.freelancer-sec-1{
    background: #000000;
}

.freelancer-text{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 30px;
}
.freelancer-text-2{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 91.81%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
}
.freelancer-text-1{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
}
@media (min-width: 768px) {
    .freelancer-sec {
        background: #1A1A1A url(../images/freelancer-bg.webp) no-repeat center center;
        background-size: cover;
        /* background-attachment: fixed; */
    }
    .freelancer-text{
        padding: 10px 40px;
        border-radius: 50px;
    }
    .freelancer-text-2{
        padding: 30px 45px;
        border-radius: 50px;
    }
    .freelancer-sec-1 {
        background: #000000 url(../images/freelancer-bg-1.webp) no-repeat bottom center;
        background-size: cover;
    }
    .freelancer-text-1{
        padding: 20px 40px;
        border-radius: 50px;
    }
}
/* freelancer-sec end */

/* expensive-section start */
.expensive-section{
    background: #000000;
}
.purple-frame {
   background: #FF1C0B;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset,-10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}


.expensive-boxes {
    background: var(--red-clr);
    backdrop-filter: blur(50px);
    border-radius: 5px;
    padding: 8px 15px;
}
.expensive-black-box {
    background: #090A0B;
    padding: 20px;
    border-radius: 10px;
}
.felt-text{
    background: var(--red-clr);
    display: inline-block;
    border-radius: 20px;
    padding: 10px 15px;
}
.red-line{
    border-bottom: 2px dashed var(--red-clr);
}
.expensive-text{
    background: var(--white-clr);
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}
.expensive-h {
    padding: 20px 0px;
    z-index: 1;
    position: relative;
}
.expensive-h::after {
    position: absolute;
    content: '';
    border-radius: 70px 70px 0 0;
    background: linear-gradient(180deg, rgba(255, 28, 11, 0.2) 0%, rgba(153, 17, 7, 0) 141.92%);
    height: 100%;
    width: 100%;
    max-width: 1370px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.expensive-box{
    background: #FF1C0B4D;
    border-radius: 30px;
    padding: 20px 20px 26px;
    height: 100%;
}
.anymore-box {
    background: #FFFFFF;
    border: 2px solid #FFFFFF4D;
    border-radius: 20px;
    padding: 20px;
}
@media(min-width:768px){
    .expensive-section{
        background: #000000 url(../images/expensive-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .f-md-80{
        font-size: 80px;
    }
    .felt-text{
        padding: 20px 45px;
    }
    .expensive-black-box {
        background: url("../images/heroes-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 30px 40px 40px;
        border-radius: 0px;
    }
    .purple-frame {
        padding: 15px 65px 15px 50px;
        position: relative;
    }
    .purple-frame::after {
        position: absolute;
        content: url("../images/think-emoji-2.webp");
        top: -5px;
        right: -50px;
    }
    .red-wave-1{
        position: relative;
    }
    .red-wave-1::after {
        position: absolute;
        content: "";
        background: url("../images/red-wave-1.webp") no-repeat center center;
        width: 100%;
        height: 10px;
        bottom: -10px;
        left: 0;
    }
    .red-box{
        background: var(--red-clr);
        border-radius: 5px;
        padding: 0px 5px;
    }
    .expensive-h {
        padding: 50px 50px;
    }
    .expensive-text{
        padding: 10px 50px;
    }
    .anymore-box{
        border-radius: 50px;
        padding: 50px 30px 40px;
        position: relative;
    }
    .anymore-box::after {
        position: absolute;
        content: url("../images/anymore-icon.webp");
        top: 33px;;
        right: -100px;
    }
    .anymore-box::before {
        position: absolute;
        content: url("../images/anymore-icon.webp");
        top: 33px;
        left: -100px;
    }
}
/* expensive-section end */

/* proudly-section start */
.proudly-sec{
    background: linear-gradient(180deg,#1A1A1A 0%, #000000 100%);
    padding: 30px 0px;
}
.presenting-head{
    border-radius: 30px;
    background: #FF1C0B;
    display: inline-block;
    padding: 8px 26px;
}
@media (max-width: 767px) {
    .proudly-logo{
        max-height: 90px;
    }
}
@media (min-width: 768px) {
    .proudly-sec {
        background:#000000 url(../images/proudlybg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 170px;
        position: relative;
    }
    .presenting-head {
        background: url(../images/presenting-frame.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        padding: 15px 62px;
    }
}
/* proudly-section end */

/* demo sec start */
.demo-sec{
    background: #000000;
    overflow: hidden;
}
.demo-shade{
    background: #FF1C0B;
    border: 2px solid #FFFFFF4D;
     backdrop-filter: blur(15px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 2px 15px;
    border-radius: 30px;
}
.border-frame{
    background: #FF1C0B80;
    border: 2px solid #FF1C0B4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 10px;
    border-radius: 10px;
}
.border-frame iframe{
    border-radius: 10px;
}
@media (min-width: 768px) {
    .demo-sec{
        background: #000000 url(../images/demo-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .border-frame {
        background: url("../images/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 56px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
        box-shadow: unset;
    }
    .border-frame iframe{
        border-radius: 30px;
    }
    .demo-shade{
        padding: 10px 50px;
        border-radius: 70px;
    }
}

/* demo sec end */

/* ultimate-sec start */
.ultimate-sec{
    background: #1A1A1A;
}
.ultimate-text {
    background: linear-gradient(180deg, #FC0013 0%, #FC0013 100%);
    border: 3px dashed #140207;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 15px;
}
.pd-box{
    padding: 10px;
    height: 100%;
    border-radius: 20px;
}
.ind-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
}
@media (min-width: 768px) {
    .ultimate-sec{
        background: #1A1A1A url("../images/ultimate-bg.webp") no-repeat top center;
        background-size: cover;
    }
    .ultimate-text {
        padding: 10px 30px;
    } 
   .pd-box{
        padding: 40px 30px 0px;
    }
    .features-heading{
        position: relative;
    }
    .features-heading:before{
       background: url(../images/power-icon-left.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       left:130px;
       content: '';
   }
   .features-heading:after{
       background: url(../images/power-icon-right.webp) no-repeat;
       position: absolute;
       width: 65px;
       height: 65px;
       top:12px;
       right:130px;
       content: '';
   }
}
/* ultimate-sec end */

/* moving-row-sec */
.moving-row-sec{
    background: #000000;
}
.moving-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Common styles for moving rows */
  .moving-row {
    display: flex;
    white-space: nowrap;
    animation: move 30s linear infinite;
  }

  /* Alternate direction for rows */
  .moving-row-parent:nth-child(odd) .moving-row {
    animation-direction: normal;
  }

  .moving-row-parent:nth-child(even) .moving-row {
    animation-direction: reverse;
  }

  /* Hover to pause animation */
  .moving-row-parent:hover .moving-row{
    animation-play-state: paused;   
  }

  /* Individual tags styling */
  .moving-row .tag {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 30px;
    border: 1px solid #FFFFFF33;
    background: linear-gradient(88.18deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  /* Shadow gradient effect on edges */
  .shadow-left,
  .shadow-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .shadow-left {
    left: 0;
    background: linear-gradient(to right, rgb(0 0 0), rgb(8, 11, 26, 0));
  }

  .shadow-right {
    right: 0;
    background: linear-gradient(to left,  rgb(0 0 0), rgb(8, 11, 26, 0));
  }

  /* Keyframes for movement */
  @keyframes move {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @media (min-width:768px) {
    .moving-row-sec{
        padding-bottom: 150px;
    }
  }
/* moving-row-sec */

/* earning-sec start */
.earning-sec{
    background: #200501;
}
.earning-text{
    background: var(--theme-gradient);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .earning-sec{
        background: #200501 url(../images/earning-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .earning-text{
        padding: 14px 113px 14px 27px;
        position: relative;
    }
    .earning-text::after {
        position: absolute;
        content: url("../images/earning-icon.webp");
        top: 15px;
        right: -51px;
    }
}
/* earning-sec end */

/* lead-sec start */
.lead-sec{
    background: #1A1A1A;
}
.lead-text {
    background: #FF1C0B;
    backdrop-filter: blur(38px);
    box-shadow: 7.67px 0px 7.67px 0px #FFFFFF33 inset,  -7.67px 0px 7.67px 0px #FFFFFF33 inset;
    border-radius: 15px;
    padding: 10px 32px;
    display: inline-block;
    position: relative;
}
.lead-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 15px;
    border-radius: 15px;
    height: 100%;
}
@media (min-width: 768px) {
    .lead-sec{
        background: #1A1A1A url(../images/lead-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .lead-text{
        border-radius: 15px;
        padding: 11px 44px;
        display: inline-block;
        position: relative;
    }
    .lead-text::before {
        position: absolute;
        content: url("../images/star-emoji.webp");
        top: -10px;
        left: -50px;
        transform: rotate(-8deg);
    }
    .lead-text::after {
        position: absolute;
        content: url("../images/star-emoji.webp");
        top: -10px;
        right: -50px;
        transform: rotate(4deg);
    }
    .lead-box{
        padding: 30px;
        border-radius: 30px;
    }
}
/* lead-sec end */

/* crazy sec start */
.crazy-sec{
    background: #1A1A1A;
}
.crazy-text{
    background: #FF1C0B;
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset, 0px -10px 10px 0px #FFFFFF33 inset;
    border-radius: 70px;
    display: inline-block;
    padding: 10px 20px;
}
@media (min-width: 768px) {
    .crazy-sec{
        background: url("../images/crazy-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .crazy-text{
        padding: 20px 40px;
    }
}
/* crazy sec end */

/* everyone sec start */
.everyone-sec{
    background: #000000;
}
.everyone-text{
    background: #FC0113;
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
}
@media (min-width: 768px) {
    .everyone-sec{
        background: url("../images/everyone-bg.webp") no-repeat bottom center;
        background-size: cover;
    }
    .everyone-text{
        padding: 12px 25px;
    }
}
/* everyone sec end */

/* testimonial sec start */
.testimonial-sec{
    background: #1A1A1A;
}
.purple-text {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
}
@media (min-width: 768px) {
    .testimonial-sec{
        background: #1A1A1A url("../images/testimonial-bg.webp") no-repeat center center;
        background-size: cover;
    }
    .purple-text {
        padding: 20px 40px;
        border-radius: 50px;
    }
}
/* testimonial sec end */

/*compare section start*/
.compare-section{
    background: #000000;
}

.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("../images/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;
    /*background-image: none;
    padding-top: 45px; */
    border-radius: 0px 0px 20px 20px;
}
.losing-box {
    padding: 36px 110px;
    background: #FF361D;
    border: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px 20px 0px 0px;
    /* margin-top: -71px; */
}
.compare-list-2 li{
    list-style: none;
    text-align: left;
    background: url("../images/sad-tick.webp") no-repeat;
    background-position: 23px 25px;
    padding: 25px 41px 25px 65px;
    border-right: 1px solid #FF361D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FCDDDA;
    
}
.compare-list-2 li:nth-child(even){  
    background-color: #FFEBE9;
}
.compare-list-2 li:nth-child(4){
    padding: 38px 41px 38px 65px;
    background-position: 23px 36px;
}
.compare-list-2 li:last-child{
    border-radius: 0px 0px 20px 0px;
    border-bottom: 1px solid #FF361D;
    /* padding: 38px 41px 38px 65px;
    background-position: 23px 36px; */
}
.c-green-box {
    background: #378E00;
    border: 6px solid #E6FFC7;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
.c-red-box {
    background: #FF361D;
    border: 6px solid #FCDDDA;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-block;
}
@media (min-width:768px) {
    /* .compare-section{
        background: url("../images/compare-bg.webp") no-repeat center center;
        background-size: cover;
    } */
    .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 */

/* Contact Section Start */
.contact-section{
    padding: 30px 0px;
    background: #FFF0F1;
}
.inside-text {
    background: #FF0000;
    border-radius: 10px;
    display: inline-block;
    padding: 0px 10px;
}
@media(min-width:768px){
    .contact-section{
        background: #FFF0F1 url(../images/contact-bg.webp) no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px;
    }
    .inside-text {
        border-radius: 100px;
        display: inline-block;
        padding: 11px 90px 9px 30px;
        position: relative;
    }
    .inside-text::after {
        content: url("../images/phone-call.webp");
        position: absolute;
        top: -20px;
        right: -50px;
    }
}

/* Contact Section end */

/* faq sec start */
.faq-section {
    background: #000000;
}
.faq-list {
    background: url(../images/faq-icon.webp) no-repeat top left;
    background-color: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid #FFFFFF4D;
    backdrop-filter: blur(25px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    padding: 20px 15px 20px 55px;
    background-position: 15px 25px;
    border-radius: 20px;
}
@media (min-width: 768px){
    /* .faq-section {
        background: url(../images/result-sec-bg.webp) no-repeat center center;
        background-size: cover;
    } */
}
/* faq sec end */

/* Header CSS */