html {
    scroll-behavior: smooth;
}
body {
        font-family: "Roboto", sans-serif;
    color: #010101;
    font-size: 14px;
    overflow-x: hidden;
}

/* font-family */
.caveat{
    font-family: "Caveat", system-ui;
}
.italic {
    font-style: italic;
}
.zen{
    font-family: "Zen Dots", sans-serif;
}
.oswald{
     font-family: "Oswald", sans-serif;
}
/* font-family */

html::-webkit-scrollbar {
    width: 8px; 
}
html::-webkit-scrollbar-thumb {
    background: var(--red-clr);
    border-radius: 25px;
}

/* color */
:root {
    --black-clr:#000000;
    --white-clr: #fff;
    --light-grey: #00000099;
    --light-white: #01010199;
    --blue-clr:#38A4FF;
    --blue-clr1:#3A6FFF;
    --orange-clr: #FF8114;
    --red-clr: #E30613;
    --red-clr1: #F0202D;
    --red-clr2: #FF4646;
    --red-clr3: #FF5E4A;
    --green-clr:#30CA05;
    --green-clr1:#26AF00;
    --green-clr2:#28B800;
    --pink-clr:#EB00D0;
    --purple-clr:#C58EFF;
    --grey-clr:#555555;
    --yellow-clr: #FFB528;
    --yellow-clr1: #FFD341;
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);
    --theme-clr: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    --theme-gradient: linear-gradient(248.66deg, #AF6CFE -27.75%, #5398FF 30.59%, #AF6CFE 74.12%);

    /* --theme-gradient1: linear-gradient(90deg, #AC2FFF 31.86%, #FF4F70 101.83%);
    --theme-gradient2: linear-gradient(175deg, #FF4F70 21.76%, #A020F0 80.53%, #4A00FF 144.53%); */

}
/* gradient-color start */
.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-clr);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.theme-clr1{
    background: linear-gradient(180deg, #E30613 0%, #FFF2F2 106.25%);
    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%;
}

/* padding */
.sec-pd{
    padding-top: 40px;
    padding-bottom: 40px;
}
.under{
    border-bottom: solid #000;
}

@media (min-width:768px) {
    .sec-md-pd{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
/* padding */

/* img animation start */
.vert-move {
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
/* img animation end */

/* 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%; */
    }
}

/* Header sec start */
.header-section{
    background: linear-gradient(180deg, #FFFFFF 24.28%, #E30613 621.67%);
}
/* .main-heading {
    background: linear-gradient(181.37deg, rgba(112, 0, 0, 0.2) 1.06%, rgba(112, 0, 0, 0.2) 98.73%);
    border: 2px solid #DB3C3B;
    border-radius: 20px;
    padding:0px 10px 10px;
} */
.pre-head {
    padding: 10px 10px;
    background: #E306131A;
    border: 1px solid #E3061380;
    /* backdrop-filter: blur(25px); */
    border-radius: 10px;
    display: inline-block;
}
.main-text{
    background: var(--red-clr);
    border-radius: 0px 20px 0px 30px;
    display: inline-block;
    padding: 10px;
}
.fe-text{
    background: #fff;
    border: 1px solid #7A972B66;
    padding: 5px 10px;
    border-radius: 5px;
}
.fe-text1{
    background: #fff;
    border: 1px solid #7A972B66;
    padding: 5px 8px;
    border-radius: 5px;
}
/* .typing-text {
    background: var(--theme-gradient);
    border-radius: 10px;
    display: inline-block;
    padding: 5px 10px;
    width: 100%;
} */
.header-blue-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;
    display: inline-block;
    border-radius: 20px;
    padding: 10px;
}

.header-section ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.header-section ul.leader-ul li {
    display: inline-block;
    padding: 0px 5px;
    font-weight: 400;
}

.booking-box{
    background: linear-gradient(90deg, #C562FF 0%, #36A5FF 100%);
    border-radius: 15px;
    padding: 11px 30px 20px;
}

.post-head{
    background: #FFFFFF;
    border: 1px solid #E3061380;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}

.post-head1 {
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid var(--red-clr);
    /* backdrop-filter: blur(25px); */
    border-radius: 20px;
    display: inline-block;
}

.int-box{
    background: #FFB528;
    border-radius: 0px 0px 20px 30px;
    display: inline-block;
    padding: 10px;
}
.mq-outer{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:16px 0;
}

.mq-track{
    display:flex;
    align-items:center;
    gap:20px;
    width:max-content;
    animation:marquee 20s linear infinite;
    will-change:transform;
}

@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.mq-item{
    flex:0 0 auto;
    width:70px;
    height:70px;
    border-radius:16px;
    overflow:hidden;
}

.mq-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}


@media (min-width:768px) {
    .header-section{
        background: url("../images/header-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 40px 0px 100px;
    }
    .pre-head {
        padding: 10px 20px;
    }
    .main-text{
    padding: 10px 26px 15px;
}
.int-box{
    padding: 5px 20px 5px;
}
    /* .main-heading {
        background: url("../images/main-headline-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 0px 43px 40px 56px;
        border-radius: unset;       
        border: unset;
        box-shadow: unset;
    } */
    /* .typing-text {
        padding: 12px 24px;
        width: 825px;
    } */
    .header-blue-box{
        padding: 20px 28px;
        border-radius: 100px;
    }
    .post-head{
        padding: 10px 20px;
}
}

/* Header sec end */

/* date start */
/*  */
.header-white-box{
    background: linear-gradient(180deg, #000000 0%, #2D0003 100%);
    border: 1px solid #000000;
    /* border-bottom: 5px solid #799921; */
    padding:40px 30px;
    border-radius: 20px;
    position: relative;
}
.main-date-1 {
    background: url("../images/date-frame-1.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}
.launch-start{
    background: #26AF00;
    border: 1px solid #26AF00;
    padding: 7px 33px;
    display: inline-block;
    border-radius: 100px;
}
.time-box {
    background: #ffffff;
    padding: 10px 10px 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px #0000004D;
    display: inline-block;
}
.main-date-2{
    background: url("../images/date-frame-2.webp") no-repeat;
    background-size: 100% 100%;
    padding: 10px;
}
.launch-end{
    background: #E30613;
    border: 1px solid #E30613;
    padding: 9px 33px;
    display: inline-block;
    border-radius: 100px;
}

.mt-top{
    margin-top: -25px;
}
.mt-top1{
    margin-top: -45px;
}
.date sup {
    font-size: 30px;
    top: -1em;
}
@media (min-width:768px) {
    .header-white-box{
        background: url(../images/header-white-box.webp) no-repeat;
        background-size: 100% 100%;
        /* display: inline-block; */
        padding: 60px 70px;
        border: unset;
        border-radius: unset;
        box-shadow: unset;
    }
    .main-date-1 {
    padding: 0px 50px 30px;
}
    .main-date-2 {
    padding: 20px 24px 24px 27px;
}
    .date-box{
        margin-top: -300px;
    }
    .date sup {
        font-size: 30px;
        top: -2em;
    }
    .launch-start{
        background:#26AF00;
        border: 1px solid #26AF00;
        padding: 5px 36px;
        display: inline-block;
        border-radius: 100px;   
    }
    .launch-end{
        background:#E30613;
        border: 1px solid #E30613;
        padding: 5px 36px;
        display: inline-block;
        border-radius: 100px;   
    }
}
/* date end */

/* live sec start */
.live-section {
    background: #FFFFFF;
    padding: 30px 0px;
}

.left-live-box {
    border: 5px solid #619CF5;
    background: #D1E4FF;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}
.form-btn input[type="submit"] {
    text-decoration: none;
    border: none;
    color: #000000;
    text-align: center;
    display: block;
    width: 100%;
    z-index: 9999;
    padding: 15px 10px;
    line-height: 20px;
    font-weight: 600;
    outline: none;
    white-space: normal;
    cursor: pointer;
    background: var(--theme-gradient);
    border-radius: 5px;
    transition: all .3s ease;
}
/* .form-btn input[type="submit"]:hover {
    background: var(--theme-gradient1) !important;
} */
.right-live-box {
    border-radius: 20px;
    border: 1px solid var(--red-clr);
    box-shadow: 0px 0px 50px 0px #F0F3FF inset;
    background: #FFFFFF;
    padding: 15px 10px;
    height: 100%; 
}
.request-affiliate a {
    background: var(--theme-gradient);
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #000000;
}
/* .request-affiliate a:hover {
    background: var(--theme-gradient1);
    color: #fff !important;
} */
.request-affiliate-1{
    display: inline-block;
}
.request-affiliate-1 a {
    background: var(--red-clr1);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s linear;
    background-size: 100% 100%;
}
/* .request-affiliate-1 a:hover{
    color: #fff;
    background: var(--theme-gradient1);
} */
a.promo-link-1, a.promo-link-2, a.promo-link-3 {
    max-width: 100%;
    padding: 15px 30px;
    border-radius: 5px;
}
a.promo-link-1:hover, a.promo-link-2:hover, a.promo-link-3:hover {
    text-decoration: none;
    color: #ffffff;
}
a.promo-link-1{
    background: #EC750D;
}
a.promo-link-2 {
    background: #0AABFF;
}
a.promo-link-3 {
    background: #E55AFB;
}
.promo-link-1:active, .promo-link-2:active, .promo-link-3:active {
    transform: scale(0.96);
  }
.form-frame{
    background: #090619;
    padding: 20px;
    border-radius: 20px;
}
/* .live-box{
    padding: 20px 15px;
} */

@media (min-width: 768px) {
    .live-section {
        /* background: #ffffff url(../images/live-bg.webp) no-repeat center center;
        background-size: cover; */
        padding: 310px 0px 100px;
    }
    .form-frame{
        background: url(../images/form-frame.webp) no-repeat center center;
        background-size: cover;
        padding: 1px 100px 80px 100px;
    }
    .left-live-box {
        padding: 50px 40px;
    }
    .mb-md5 {
        margin-bottom: 5px!important;
    }
    .form-control.input-field {
        height: 60px;
        font-size: 15px;
    }
    .right-live-box {
        padding: 50px 38px;
    }
    /* .request-affiliate-1 a {
        padding: 20px 90px;
    } */
    .request-affiliate a {
        font-size: 20px;
        padding: 15px 20px;
        display: inline-block;
        width: auto;
    }
    /* .live-box{
        padding: 0px 100px 50px;
    } */
    .form-text-1{
        margin-top: -210px;
    }
}
/* live sec end */

/* videos section start */
.videos-sec{
    background: #ffffff;
}

.video-box1{
    background: url(../images/video-box1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 20px;
}

@media(min-width:768px){
    .videos-sec{
    background: url(../images/videos-bg.webp) no-repeat;
    background-size: cover;
}
    .video-box1{
    padding: 40px 105px;
}
}

/* videos section end */




/* presenting-sec start */
.presenting-sec{
    background: #000000;

}
.presenting-head{
   background: #E3061333;
    border: 1px solid #E30613;
    border-radius: 30px;
    display: inline-block;
    padding: 10px;
}
.p-red-box{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(50px);
    box-shadow: 10px 0px 10px 0px #FFFFFF33 inset, -10px 0px 10px 0px #FFFFFF33 inset;
    border-radius: 10px;
    padding: 10px 40px;
    display: inline-block;
}

@media (min-width: 768px) {
    .presenting-sec{
        background: #F1F5FC url("../images/presenting-bg.webp") no-repeat bottom center;
        background-size: cover;
        padding: 100px 0px 306px;
    }
    .presenting-head{
        padding: 11px 50px;
        border-radius: 100px;
}
}
/* presenting-sec end */

/* step-2 sec start */

.step-section {
    background: #ffffff;
}
.step-text{
    background: var(--red-clr);
    display: inline-block;
    border-radius: 100px;
    padding: 10px;
}
.step-box{
    background: #FFF3F3;
    border: 3px solid #E30613;
    /* display: inline-block; */
    border-radius: 50px;
    padding: 50px 40px;
}
.payment-line {
    background: #282828;
    padding: 30px;
}


@media (min-width: 768px) {
    .step-text{
    padding: 20px 50px 25px;
}
}
/* step-2 sec end */

/* demo section start */
.demo-sec{
   background: #FFF2F2;
}
.demo-text{
    background: var(--theme-clr);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 100px;
}
.border-frame {
    background: #151515;
    border: 2px solid var(--theme-clr);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}
@media(min-width:768px){
    .demo-sec{
        background: url(../images/demo.webp) no-repeat center center;
        background-size: cover;
    }
    .demo-text {
        padding: 0px 50px;
    }
    .border-frame {
        background: url("../images/demo-video-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 100px 20px 20px;
        border-radius: 0;
        border: unset;
        backdrop-filter: unset;
    }

}
/* demo section end */

/* prize sec start */

.prize-sec{
    background: #ffffff;
}

.prize-box{
    background: #ffffff;
    border: 2px solid #E30613;
    border-radius: 10px;
    display: inline-block;
    padding: 20px 30px 30px;
}

.gradiant-box{
    border-radius: 10px;
    background:#E306131A;
    border: 1px solid #E30613;
    display: inline-block;
    padding: 10px;
}

@media (min-width: 768px) {
    .prize-sec{
        /* background: #ffffff url(../images/prize-bg.webp) no-repeat center center;
        background-size: cover; */
        /* margin-top: -130px; */
        /* padding: 230px 0px 100px; */
    }
    .prize-box{
        padding: 60px 108px;
        border-radius: 50px;
        box-shadow: 0px 0px 20px 0px #0000001A;
    }
    .gradiant-box{
        padding: 27px 28px;
    }
}

/* prize sec end */

/* deep-funnel  start */
.deep-funnel {
   background: linear-gradient(180deg, #000000 14.06%, #920505 158.12%);
}
.funnel-box {
    box-shadow: 0px 0px 10px 0px #FFFFFF inset;
    background: #8faaf51f;
    border: 2px solid #7380F0;
    border-radius: 15px;
    padding: 15px;
}
.funnel-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
}
.deep-text{
    background: var(--red-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) {
    .deep-text{
        border-radius: 1000px;
        padding: 30px 50px;
    }
}
/* deep-funnel  end */

/* ranked-sec start */
.ranked-sec{
    background: #ffffff;
}
.ranked-text {
    background: var(--blue-clr);
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 10px 10px 0px #FFFFFF33 inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 10px;
}
@media (min-width: 768px) {
    .ranked-sec{
        background: url(../images/ranked-bg.webp) no-repeat bottom center;
        background-size: cover;
        position: relative;
        padding-bottom: 150px;
    }
    .ranked-text{
        background: url(../images/blue-frame.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        box-shadow: unset;
        border-radius: unset;
        display: inline-block;
        padding: 0px 65px;
    }
}
/* ranked-sec end */

/* product sec start */
.product-list {
    background: #FFF2F2;
}
.product-frame{
    background: url("../images/product-frame.webp") no-repeat;
    background-size: 100% 100%;
    padding: 25px 10px 8px;
    height: 100%;
}
@media (min-width: 768px){
    .product-list{
        /* background: url("../images/product-bg.webp") no-repeat center center;
        background-size: cover;
        margin-top: -75px; */
        /* padding-top: 100px; */
    }
    .product-frame{
        padding: 35px 34px 16px;
    }
    /* .orange-wave{
        position: relative;
    }
    .orange-wave::before{
        position: absolute;
        content: '';
        background: url("../images/orange-wave.webp") no-repeat;
        bottom: -12px;
        left: 0;
        width: 102%;
        height: 14px;
    } */
}
/* product sec end */

/* reciprocate-sec start */
.reciprocate-sec {
    background: linear-gradient(180deg, #000000 14.06%, #920505 158.12%);
}
.dominat-text {
    border-radius: 10px;
    background: var(--red-clr);
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    /* .reciprocate-sec {
        background: #000000 url(../images/something-bg.webp) no-repeat top center;
        background-size: cover;
        background-attachment: fixed;
    } */
    .dominat-text {
        padding: 20px 43px;
        border-radius: 0px 50px 0px 50px;
    }
}
/* reciprocate-sec end */

/* contact-sec start */
.contact-section {
    background-color: #ffffff;
}
.contact-text {
    background: var(--theme-clr);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}
.contact-frame{
    background: #F2FCF0;
    border: 1px solid var(--blue-clr);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}
@media (min-width: 768px) {
    .contact-section {
        background: #ffffff url(../images/contact-bg.webp) no-repeat center center;
        background-size: cover;
    }
    .contact-text {
        background: url("../images/dark-purple-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 15px 91px 15px 63px;
        border-radius: unset;
        position: relative;
    }
    .contact-text::after {
        position: absolute;
        content: url("../images/thinking-emoji.webp");
        top: -22px;
        right: -43px;
    }
    .contact-frame{
        background: url("../images/contact-frame.webp") no-repeat;
        background-size: 100% 100%;
        padding: 48px 30px;
        border-radius: unset;
        border: unset;
    }
}
/* contact-sec end */

/* footer start */
.footer-section {
    background: #000000;
    padding: 30px 0px;
}
.footer-ul {
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    display: inline;
}
.white-clr, a.white-clr {
    color: #ffffff;
}
@media (min-width: 768px) {
    .footer-section {
        padding: 70px 0px;
    }

}
/* footer end */

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    box-shadow: 0px 0px 1px 0px rgba(208, 219, 227, 0.58);
    /* border-radius: 5px; */
}

/* fixed-bar start */
.fixed-top-bar {
    background: var(--red-clr);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99
}
ul.leader-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.leader-ul li {
    display: inline-block;
    padding: 0px 10px;
    /* font-weight: 500; */
    color: var(--white-clr);
}
a.affiliate-link-btn {
    border-radius: 10px;
    border-radius: 10px;
    background: #ffffff;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 5px 20px;
    font-size: 18px;
    color: #000;
    font-weight: 700 !important;
}
@media (min-width: 768px) {
    .fixed-top-bar {
        padding: 10px 0;
    }
    a.affiliate-link-btn {
        padding: 10px 20px !important;
        font-size: 18px;
    }
}
/* fixed-bar end */