
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    /* font-size: 17px; */
}

::-moz-selection {
    color: #fff;
    background: #333;
}

::selection {
    color: #fff;
    background: #333;
}

::-webkit-scrollbar-track {
    background-color: #ffffff;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}
button{
    font-size: 16px !important;
}

p{
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}
a {
    text-decoration: none;
    outline: none;
    color: #333333;
}

li {
    list-style: none;
}
.p-0{
    padding: 0;
}
.sp{
    padding: 7em 0;
}
.drak-bg{
    background-color: #06020C;
}
#btn-back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #fff;
    color: #dc3545;
    border: none;
}

.button{
    border-radius: 22px;
    border: 1px solid #ffff;
    color: #ffffff;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}
.button:hover{
    background-color: #ffff;
    color: #354860 !important;
}
.fill-button{
    border-radius: 22px;
    background-color: #FFFFFF;
    color: #79040f !important;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.6s ease;
}

.fill-button:hover{
    background-color: #b90011;
    color: #ffffff !important;

}
.heading-tag{
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 50px;
}
.heading-tag span{
    font-weight: 400;
    font-size: 20px;
    color: #BD00FF;
}
.heading-tag b{
    color: #F8DF00;
}
.comen-head{
    font-size: 40px;
    font-weight: 700;
    color: #034;
    text-align: center;
    margin-bottom: 10px;
}

/*Menu Custom*/
/* #fixed-header{
  position: fixed;
  top: 0;
  z-index: 999;
} */
.header{
    position: fixed;
    top: 0;
    z-index: 999;
    padding: 15px 0;

}
header.sticky{
    background-color: #06020C !important;
}

.logo-main img{
    width: 200px;
}
.menu-main{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu-main ul{
    margin: 0;
}
.menu-main ul li{
    float: left;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 0 20px;
    display: block;
}
.menu-main ul li a{
    color: #FFFFFF;
}

/* Banner */
.banner{
    height: 100vh;
    padding: 100px 0 0 0;
    overflow: hidden;
    background-image: url(../images/banner-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-img img{
    width: 85%;
}
.banner .banner-text{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 90px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 0 0 0 .5em;
}
.banner .banner-text h1{
    line-height: 1.2;
    margin-bottom: 25px;
    font-size: 90px;
}
.banner .banner-text span{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    color: #FFFFFF;
}

.banner .carousel-caption{
    position: unset;
    text-align: left;
}

/* Black session */
.black-session{
    text-align: center;
    background-color: #06020C;
    padding-bottom: 0;
    position: relative;
}
.img1{
    position: absolute;
    top: 300px;
    left: 0;
}

.img2{
    position: absolute;
    top: 60%;
    right: 0;
}

.black-session::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 500px;
    height: 700px;
    background-image: url(../images/pink-left.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.bl-box-main{
    padding: 20px;
}
.bl-box-inner{
    text-align: center;
    background-color: #120D1C;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 0 auto;
}
.bl-box-inner svg{
    margin-bottom: 30px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.bl-box-inner:hover svg{
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.bl-box-inner svg path{
    fill: none;
    stroke-width: 1.5;
    stroke: #9E14FF;
}
.bl-box-inner:hover svg path{
    stroke: #CB1A7E;

}
.bl-box-inner .sub-head{
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.bl-box-inner p{
    color: #ffffff79;
}
.bl-box-inner ul {
    margin: 0 auto;
    display: inline-block;
    padding: 0;
}
.bl-box-inner ul li{
    width: 10px;
    height: 10px;
    background-color: #413D49;
    float: left;
    border-radius: 50%;
    margin-right: 10px;
}
.bl-box-inner:hover ul li{
    background-color: #CB1A7E;
}

/* Arrow */
.arrow-sub-main{
    padding: 10px;
}
.arrow-text {
    padding-left: 30px;
    text-align: left;
    display: flex;
    align-items: center;
}
.arrow-sub-box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #EBEBEB;
    padding: 20px 10px;
    border-radius: 10px;
    transition: all 0.6s ease;
}
.arrow-sub-box:hover{
    background-color: #ffff;
}
.arrow-sub-box .arrow-icon{
    width: 60;
    height: 60;
    border: 1px solid #ffff;
    padding: 15px;
    border-radius: 50%;
}
.arrow-sub-box:hover .arrow-icon{
    border: 1px solid #270F49;
}
.arrow-sub-box .arrow-icon svg{
    margin-bottom: 30px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.arrow-sub-box:hover .arrow-icon svg{
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.arrow-sub-box:hover .arrow-icon svg path{
    stroke: #270F49;
}
.arrow-sub-box .arrow-box-inner{
    display: flex;
    align-items: center;
    width: 60%;
}
.arrow-sub-box .arrow-box-inner h4{
    font-size: 20px;
    font-weight: 500;
    color: #CACACA;
}
.arrow-sub-box:hover .arrow-box-inner h4{
    color: #270F49;
}
.arrow-sub-box .arrow-box-inner p{
    margin-bottom: 0;
    color: #ffffff79;
}
.arrow-sub-box:hover .arrow-box-inner p{
    color: #270F49;
}
.arrow-sub-box .right-arrow{
}
.arrow-sub-box:hover .right-arrow svg path{
    stroke: #270F49;
}

/* Testimonial */
.testimonial{
    position: relative;
}
.testimonial .container{
    position: relative;
    z-index: 1;
}
.img3{
    position: absolute;
    top: 20%;
    left: 0;
}

.img4{
    position: absolute;
    bottom: 10%;
    right: 0;
}

.testimonial::after{
    content: '';
    position: absolute;
    bottom  : 0px;
    right: 0;
    width: 500px;
    height: 685px;
    background-image: url(../images/pink-right.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.scroll{
    border-bottom: 1px solid #ffffff80;
}
.testi-text{
    display: flex;
    align-items: center;
    padding-left: 90px;
}
.testi-text p {
    color: #ffff;
}
.testi-text p span svg{
    font-size: 90px;
    line-height: 1;
    margin-bottom: 20px;
}
.testi-img{
    position: relative;
}
.testi-img img{
    position: relative;
    z-index: 2;
}
.testi-img svg{
    position: absolute;
    right: -150;
    top: 200;
}

/* .testi-img::after{
  content: "\f10e";
  position: absolute;
  top: 175px;
  right: -200px;
  width: 400;
  height: 300px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
} */

.testi-img .testi-person{
}

.testi-person-main{
    position: absolute;
    top: 0;
    right: -200px;
    z-index: 0;
    color: #ffff;
}
.testi-person{
    margin-top: 50px;
    margin-left: -50px;
}
.testi-person-main h6{
    font-size: 43px;
}
.testi-person-main p{
    margin-bottom: 10px;
}
.testi-person-main span{
    width: 200px;
    height: 1px;
    background-color: #ffff;
    display: block;
    margin-bottom: 30px;
}
.testi-person svg{

}
.testimonial .carousel-control-next, .carousel-control-prev{
    align-items: flex-end !important;
    bottom: 40px;
}
.testimonial .carousel-control-next{
    left: 50px !important;
}

.testimonial .big-no{
    font-size: 30px;
    padding: 0 20px;
    line-height: 1;
}
.testimonial .sm-no{
    font-size: 15px;
    padding:0   20px ;
}

/* footer */

footer{
    background-color: #000000;
    position: relative;
}
footer::before{
    content: "";
    position: absolute;
    width: 550px;
    height: 500;
    background-image: url(../images/footer-color.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    transform-origin: bottom right;
    transition: transform 0.25s ease-in;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

footer h5{
    font-size: 50px;
    color: #ffff;
    line-height: 1;
    margin-bottom: 30px;
}
footer p{
    color: #ffff;
}
.f-bottom-main{
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ffffff61;
}
.f-box h6{
    font-size: 20px;
    font-weight: 500;
    color: #ffff;
    margin-bottom: 20px;
}
.f-box ul{
    padding: 0;
}
.f-box ul li{
    margin-bottom: 10px;
}

.f-box ul li a{
    font-size: 14px;
    color: #ffffffcc;

    display: inline-block;
}
/* bottom last */

.bt-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 30px 0;
}
.bt-social{
    display: flex;
    align-items: center;
}
.bt-social ul{
    display: inline-block;
}
.bt-social li{
    float: left;
    padding: 10px;
    background-color: #ffff;
    display: flex;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.bt-social ul li:hover{
    border: 1px solid #ffff;
    background: none;
}

.bt-social ul li:hover svg path{
    stroke: #ffff;
}

/*===========================  About Us =========================*/

.inner-header{
    height: 500px;
    background-color: #000;
    background-image: url(../images/inner-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    background-attachment: scroll;
    background-position: top;
    position: relative;
}
.inner-header::before{
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,212,255,0) 100%);
}
.inner-text{
    z-index: 10;
}
.banner-text {
    color: #fff;
    margin-bottom: 0;
    padding: 0px 25px;
    border-radius: 15px;
}
.banner-text h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
}
.banner-text p {
    text-align: left;
    color: #fff;
}
.breadcrumb{
    justify-content: center;
}
.breadcrumb li{
    font-size: 16px;
    padding: 20px 5px;
}
.breadcrumb li a {
    color: #fff;

}
.breadcrumb-item.active {
    color: #93c84c;
}
.font-size{
    font-size: 0px;
}


.content-se h1{
    font-weight: 700;
    line-height: 45px;
    color: #034;
    font-size: 38px;
    padding: 0 0 10px 0;
    margin-bottom: 20px;
}
.inner-table-main{
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.inner-table{

}
th, td {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right:20px !important;
    text-align: center;
}
.content-se ul li{
    font-size: 17px;
    list-style: circle;
    padding-bottom: 15px;
}
.content-se ol li{
    font-size: 17px;
    padding-bottom: 15px;
    list-style: auto;
}

.c li {
    list-style-type: upper-roman !important;
}
.content-se h3{
    font-size: 25px;
}
.content-se h4{
    font-size: 20px;
    margin-bottom: 20px;
}

.number-li li{
    list-style: upper-roman;
}


/*   This is the Popup Window   */
.desk-pop{
    display: block;
}

.modal-cu {
    /* width: 600px; */
    margin: 0 auto;
    text-align: center;
}
.modal-cu .modal-dialog{
    max-width: 700px;
}
.modal-cu .modal-header {
    background-color: #c10237;
    color: #fff;
    justify-content: space-between;
    display: flex;
}
.modal-header .btn-close-cus {
    padding-right: 20px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;

}
.modal-header .btn-close-cus i{
    font-size: 25px;
}
.modal-top-se{
    padding: 20px 0;
    /* border-bottom: 1px solid #ccc; */
}
.modal-top-se .icon-box p{
    padding: 10px;
    margin: 0;
}
.modal-cu .modal-header h5{
    font-size: 25px;
    padding: 10px
}
.modal-cu .modal-body{
    padding: 20px;
}
.icon-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    margin: 0;
}

.modal-bottom-se {
    padding: 20px 0;
}
.modal-bottom-se input{
    padding: 10px;
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
}

.modal-bottom-se button{
    padding: 10px 15px;
    background-color: #a30131;
    border: none;
}
.modal-bottom-se button:hover{
    background-color: #5e031e;
}

/*   Mobile Fixed app icon  */
.mob-fix{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    /* background-color: #090311; */
    padding: 10px 20px;
    width: 100%;
    display: none;
}
.mob-fix p{
    font-size: 12px;
    text-align: center;
    color: #fff;
    margin: 0;
}

.mob-fix .icon-box{

}
.mob-fix .icon-box p{
    margin: 0;
    padding: 10px;
}

.mob-fix a{
    padding: 10px 15px;
    background-color: #dc3545;
    border: none;
    width: 95%;
    font-size: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mob-fix a:hover{
    background-color: #490a10;
}
.mob-fix a i{
    display: block;
}

/*   Mobile Fixed app icon  */
.gry-bg{
    background-color: #fbfbfb !important;
}
.red-bg{
    background-color: #9a1e28;
    border: 1px solid #654a9165;
    border-radius: 10px;
    padding:30px;
    color: #FFFFFF;
}

.get-the-app{
    background-color: #650d23 !important;
    color: #fff;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    width: 100%;
}
.get-the-app h4{
    padding: 0 30px;
}
.spl-height{
    height: 90px;
}


.container-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: auto;
}
.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.step-number {
    width: 50px;
    height: 50px;
    background: #b11c2b;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.step-content {
    background: #ffe9ebc4;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
}
.step-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/*===================== Copen Code ======================*/
.coupon-card {
    color: white;
    border-radius: 15px;
    margin: 30px auto;
    text-align: center;
}
.col-code{
    background-color: #b11c2b !important;
    color: #fff !important;
}


.coupon-card::before {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.coupon-card::after {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.coupon-logo {
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.coupon-text {
    font-size: 16px;
    margin-bottom: 20px;
}
.cu-btn{
    position: unset;
}
.coupon-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.w-80{
    width: 500px;
}
.coupon-buttons button {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    color: #034;
    border: 1px solid #959595;
}

.steal-deal {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.copy-code {
    background: white;
    color: #6e45e2;
}

.copy-code:hover {
    background: #dcdcdc;
}

.validity {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.click-to-copy {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
}
/*========================== promotion-carousel ==================*/
.promotion-carousel{

}
.promotion-carousel .carousel-indicators{
    width: 100%;
    margin-right: 0 !important;
    margin-left: 0 !important;
    justify-content: space-around;
    position: unset;
}
.button-main{
    position: relative;
}
.promotion-carousel .carousel-indicators .button-main{
    /* background: #1c03056b  !important; */
    width: 31%;
    height: 100px;
    color: #000;
    border: 1px solid #1c0305;   

    border-radius: 10px;
    text-indent: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    opacity: 1;
}
.promotion-carousel .carousel-indicators .active{
    /* background: #1c0305  !important; */
    border: 1px solid #1c030500;
    background: #D81F33;
    background: linear-gradient(169deg,rgba(216, 31, 51, 1) 0%, rgba(117, 23, 30, 1) 100%);
}
.promotion-carousel .carousel-indicators .active h3{
    color: #fff;
}

.button-inside .button-inner-icon{
    margin-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-inside{
    position: absolute;
}
.button-inside .button-inner-icon img{
    width: 40px; 
    margin-right: 20px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(7%) hue-rotate(104deg) brightness(81%) contrast(100%);
}
.button-inside h3{
    font-size: 20px;
    color: #000000;
    margin-bottom: 0;
}
.promotion-carousel .carousel-indicators .active .button-inner-icon img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(20deg) brightness(103%) contrast(101%);
}
.button-inner-icon img{
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(10%) hue-rotate(185deg) brightness(102%) contrast(104%);
}
.main-promo{
    border-radius: 10px;
    overflow: hidden;
}
.why{
    background-color: #f8f9fb;
}
.card{
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.6s ease;
}
.card:hover{
    box-shadow: -2px 14px 29px 6px rgba(255,220,220,0.58);
    -webkit-box-shadow: -2px 14px 29px 6px rgba(255,220,220,0.58);
    -moz-box-shadow: -2px 14px 29px 6px rgba(255,220,220,0.58);
}
.card-icon{
    padding: 25px;
    background-color: #dc354521;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50%;
}
.card-icon i{
    font-size: 30px;
    color: #d81f33;
}
.card-title{
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
}

.accordion-main .accordion-button:not(.collapsed){
    background-color: #dc354521;
    color: #490209;
}
.accordion-main .accordion-button{
    font-size: 18px !important;
    padding: 15px 30px;
}
.accordion-main .accordion-body{
    font-size: 16px;
    padding: 30px;
}
.accordion-main .accordion-button:focus{
    box-shadow: none;
}
/*========================== promotion-carousel ==================*/

@media (max-width: 500px) {
    .coupon-buttons {
        flex-direction: column;
    }
    .coupon-buttons button {
        width: 100%;
    }
}

/*===========================  About Us =========================*/

@media only screen and (min-width: 1201px) {
    .banner .banner-text h1{
        font-size: 75px;
        text-align: left;
    }
    .banner .carousel-inner{
        display: flex;
        align-items: center;
        height: 80vh;
    }
    /* footer::before {
      width: 410px;
      height: 350px;
    } */
}
@media only screen and (max-width: 1200px) {
    .banner .carousel{
        height: 80vh;
        display: flex;
        align-items: center;
    }
    .banner .banner-text h1{
        font-size: 60px;
        text-align: left;
    }
    footer::before {
        width: 410px;
        height: 350px;
    }
}
@media only screen and (max-width: 1024px) {
    .banner .banner-text h1{
        font-size: 50px;
        text-align: left;
    }
    .arrow-sub-box .arrow-icon{
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .arrow-sub-box .arrow-box-inner{
        padding: 10px;
    }
    .arrow-img{
        display: flex;
        align-items: center;
    }
    .testi-person svg{
        width: 50%;
        height: 50%;
    }
    .testi-img svg{
        top: 0px;
    }
    /* footer{
      padding-top: 0 !important;
    } */
    footer::before {
        width: 410px;
        height: 350px;
    }
}


@media only screen and (max-width: 992px) {
    .banner-img img{
        width: 75%;
        margin: 0 auto;
    }
    .banner .banner-text{
        justify-content: center;
    }
    .banner .banner-text h1{
        font-size: 50px;
        text-align: center;
    }
    .banner .banner-text span{
        text-align: center;
    }
    .banner .carousel-caption{
        text-align: center;
    }
    .banner .carousel{
        height: 85vh;
    }
    .banner-text p{
        text-align: center;
    }
    .icon-box-banner{
        text-align: center;
    }
    .bl-box-main{
        padding: 10px;
    }
    .arrow-text{
        padding: 0;
    }
    .arrow-sub-box .arrow-icon{
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .testimonial .container{
        position: relative;
        z-index: 1;
    }
    .testi-text{
        padding-left: 10px;
    }
    .testi-img img{
        width: 70%;
        padding-left: 50px;
    }
    .testi-person-main{
        right: 0;
    }
    .testi-person-main svg{
        width: 50%;
        height: 100%;
    }
    .testi-img svg{
        top: 0;
        right: 20%;
        width: 50%;
    }
    footer::before{
        display: none;
    }
    .promotion-carousel .carousel-indicators h3{
        font-size: 14px;
    }
    .promotion-carousel .carousel-indicators .button-main{
        height: 100px;
    }
    .button-inner-icon img{
        width: 35px !important;
    }
}
@media only screen and (max-width: 768px) {
    .menu-main ul{
        padding: 0;
    }
    .menu-main ul li{
        padding: 0 15px;
    }
    .banner-img img{
        width: 60%;
    }
    .banner .carousel-caption{
        text-align: center;
    }
    .banner-text p{
        text-align: center;
    }
    .icon-box-banner{
        text-align: center;
    }
    .fill-button{
        padding: 10px 20px;
    }
    .testi-img .testi-person{
        margin-left: 0 !important;
        margin-top: 25px;
    }
    .testi-person-main{
        right: 0;
    }
    .testi-img svg{
        top: 0;
        left: 10%;
        width: 50%;
    }

    .promotion-carousel .carousel-indicators h3{
        font-size: 14px;
    }
    .promotion-carousel .carousel-indicators .button-main{
        height: 100px;
    }
    .button-inner-icon img{
        width: 35px !important;
    }

}

@media only screen and (max-width: 576px) {
    p{
        font-size: 15px;
    }
    .sp{
        padding: 5em 0 0;
    }
    .menu-main ul li{
        padding: 0 10px;
    }
    .menu-main ul li .fill-button{
        padding: 10px 15px;
        font-size: 15px;
    }
    .menu-main{
        justify-content: flex-end;
    }
    .menu-main ul{
        padding: 0;
    }
    .banner{
        padding: 100px 0 0 0;
    }
    .banner .carousel{
        height: 80vh;
    }
    .banner-img img{
        width: 75%;
    }
    .banner .banner-text{
        padding: 0 20px;
    }
    .banner-text p {
        text-align: center;
    }
    .icon-box-banner{
        text-align: center;
    }

    .heading-tag span{
        font-size: 15px;
    }
    .heading-tag{
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .banner .carousel-caption{
        text-align: center;
    }
    .banner .banner-text h1{
        font-size: 40;
    }
    .banner .banner-text span{
        text-align: center;
    }
    .bl-box-inner{
        padding: 25px 20px;
    }
    .bl-box-inner svg{
        width: 74px;
        margin-bottom: 20px;
    }
    .black-session::before{
        width: 376px;
        height: 400px;
    }

    .arrow-img img{
        width: 80%;
    }
    .arrow-img{
        margin-bottom: 20px;
    }
    .arrow-text{
        padding: 0 20px;
    }
    .arrow-sub-box .arrow-box-inner h4{
        font-size: 20px;
    }
    .arrow-sub-box .arrow-icon{
        width: 50px;
        height: 50px;
        padding: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .arrow-sub-box .arrow-icon svg{
        margin: 0;
    }
    .arrow-icon-inner svg{
        width: 25px;
    }
    .black-session{
        padding-bottom: 0px;
    }
    .arrow-main{
        padding-bottom: 50px;
    }

    /* testimonial */
    .testimonial {
        padding-bottom: 60px;
    }

    .testi-text{
        padding: 0 25px;
        margin-bottom: 150px;
    }
    .testi-person-main{
        margin-left: 0px;
        right: 0;
    }
    .testi-img{

    }
    .testi-person{
        top: -120px;
        right: 0;
        position: absolute;
        width: 300px;
    }
    .testi-person-main h6{
        font-size: 30px;
    }
    .testimonial .carousel-control-next, .carousel-control-prev{
        bottom: -50px;
    }
    .testimonial .carousel-control-next{
        left: 45% !important;
        width: 90px;
    }
    .testimonial .carousel-control-prev{
        left: 30%;
        width: 90px;
    }
    .testi-img svg{
        right: 50px;
        top: -25px;
        width: 50%;
    }

    /* testimonial */

    footer{
        padding: 5em 20px !important;
    }
    footer::before{
        display: none;
    }

    footer h5{
        font-size: 32px;
        margin-bottom: 20px;
    }
    .f-bottom-main{
        padding-bottom: 0px;
    }
    .f-box{
        margin-bottom: 20px;
    }
    .f-box ul li a{
        color: #ffffff96;
    }
    .bt-social{
        display: block;
    }
    .bt-social ul{
        padding: 0;
    }
    .bt-main{
        display: block;
        text-align: center;
        padding-bottom: 100px;
    }
    #btn-back-to-top{
        bottom: 88px;
    }
    /* .modal-cu{
      display: none !important;
    }
    .modal-backdrop{
      display: none !important;
    } */
    .container-box{
        padding: 20px;
    }
    .step-content .icon-box-banner{
        /* display: block; */
    }
    .step-content .icon-box-banner a{
        padding-right: 0 !important;
    }

    .red-bg .icon-box-banner{
        /* display: block; */
    }
    .red-bg .icon-box-banner a{
        padding-right: 0 !important;
    }

    .desk-pop{
        display: none;
    }
    .mob-fix{
        display: block;
        padding-bottom: 0;
    }
    .icon-box-banner{
        display: none;
    }
    .icon-box-banner-p{
        display: none;
    }

    .img1{
        display: none;
    }
    .img2{
        display: none;
    }
    .img3{
        display: none;
    }
    .img4{
        display: none;
    }

    /*============ About Us =============*/
    .inner-header{
        background-size: inherit;
    }
    .promotion-carousel .carousel-indicators h3{
        font-size: 14px;
    }
    .promotion-carousel .carousel-indicators .button-main{
        height: 100px;
    }
    .button-inner-icon img{
        width: 35px !important;
    }
}

@media only screen and (max-height: 700px) {
    .banner-img{
        text-align: center;
    }
    .banner-img img{
        width: 65%;
        margin: 0 auto;
    }
}

.copy-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-icon {
    font-size: 16px;
}

.copied-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}