/* Font-family */
@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins/Poppins-Bold.eot');
    src: url('../font/poppins/Poppins-Bold.eot?#iefix') format('embedded-opentype'), url('../font/poppins/Poppins-Bold.woff2') format('woff2'), url('../font/poppins/Poppins-Bold.woff') format('woff'),  url('../font/poppins/Poppins-Bold.ttf') format('truetype'), url('../font/poppins/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins/Poppins-Medium.eot');
    src: url('../font/poppins/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../font/poppins/Poppins-Medium.woff2') format('woff2'), url('../font/poppins/Poppins-Medium.woff') format('woff'), url('../font/poppins/Poppins-Medium.ttf') format('truetype'),  url('../font/poppins/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins/Poppins-Regular.eot');
    src: url('../font/poppins/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../font/poppins/Poppins-Regular.woff2') format('woff2'), url('../font/poppins/Poppins-Regular.woff') format('woff'),  url('../font/poppins/Poppins-Regular.ttf') format('truetype'),  url('../font/poppins/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins/Poppins-SemiBold.eot');
    src: url('../font/poppins/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../font/poppins/Poppins-SemiBold.woff2') format('woff2'), url('../font/poppins/Poppins-SemiBold.woff') format('woff'), url('../font/poppins/Poppins-SemiBold.ttf') format('truetype'), url('../font/poppins/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
}
@font-face {
    font-family: 'Rubik';
    src: url('../font/rubik/Rubik-Regular.eot');
    src: url('../font/rubik/Rubik-Regular.eot?#iefix') format('embedded-opentype'), url('../font/rubik/Rubik-Regular.woff2') format('woff2'), url('../font/rubik/Rubik-Regular.woff') format('woff'), url('../font/rubik/Rubik-Regular.ttf') format('truetype'), url('../font/rubik/Rubik-Regular.svg#Rubik-Regular') format('svg');
    font-weight: normal;
}
@font-face {
    font-family: 'Rubik';
    src: url('../font/rubik/Rubik-Medium.eot');
    src: url('../font/rubik/Rubik-Medium.eot?#iefix') format('embedded-opentype'), url('../font/rubik/Rubik-Medium.woff2') format('woff2'), url('../font/rubik/Rubik-Medium.woff') format('woff'),  url('../font/rubik/Rubik-Medium.ttf') format('truetype'), url('../font/rubik/Rubik-Medium.svg#Rubik-Medium') format('svg');
    font-weight: 500;
}
@font-face {
    font-family: 'Rubik';
    src: url('../font/rubik/Rubik-Bold.eot');
    src: url('../font/rubik/Rubik-Bold.eot?#iefix') format('embedded-opentype'), url('../font/rubik/Rubik-Bold.woff2') format('woff2'), url('../font/rubik/Rubik-Bold.woff') format('woff'), url('../font/rubik/Rubik-Bold.ttf') format('truetype'), url('../font/rubik/Rubik-Bold.svg#Rubik-Bold') format('svg');
    font-weight: bold;
}
@font-face {
    font-family: 'Rubik';
    src: url('../font/rubik/Rubik-SemiBold.eot');
    src: url('../font/rubik/Rubik-SemiBold.eot?#iefix') format('embedded-opentype'), url('../font/rubik/Rubik-SemiBold.woff2') format('woff2'), url('../font/rubik/Rubik-SemiBold.woff') format('woff'), url('../font/rubik/Rubik-SemiBold.ttf') format('truetype'),  url('../font/rubik/Rubik-SemiBold.svg#Rubik-SemiBold') format('svg');
    font-weight: 600;
}

body{
    font-family: 'Poppins' !important;
    font-weight: normal;
    background-color: #f5f5f5 !important;
}
.blue-btn{
    background-color: var(--css_button_color);
    border-radius: 10px;
    color: var(--css_button_font_color);
    padding: 10px 45px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    min-width: max-content;
}
.blue-btn:hover{
    background: var(--css_button_color_hover);
    color: var(--css_button_font_color_hover);
}
.mobile{display: none;}

/* header  */
.header{
    background: #fff;
}
.desktop-menu{
    display: flex;
    flex-basis: auto;
}
.mobile-menu{display: none;}
.header .navbar{
    padding-top: 33px;
    padding-bottom: 33px;
    transition: .4s ease-in-out;
}
.fixed-header .navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: .5s ease-in-out;
    box-shadow: 0 0 10px 1px #dddddd;
}
.header .navbar-collapse{justify-content: center;}
.header .navbar-nav .nav-link{
    color: #1E1E1E;
    font-weight: normal;
    font-size: 20px;
    margin-right: 40px;
}
.header .navbar-nav .nav-link.active{
    color: var(--css_button_color);
    font-weight: 600;
}
.header .navbar-nav .nav-link:hover{color: var(--css_button_color);}
.header .navbar-toggler{
    background: url('../images/toggle.png') no-repeat;
    height: 40px;
    width: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-size: cover;
    z-index: 1;
}
.header .navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.header.active-menu .navbar-toggler{
    background: url('../images/close.png') no-repeat;
    height: 40px;
    width: 40px;
    background-size: cover;
    z-index: 1;
}
.header .navbar .navbar-brand{z-index: 1;}

.footer {
    padding-top: 20px;
}
.footer .footer-logo p{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
}
.footer h3{
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer ul{
    margin: 0;
    padding: 0;
}
.footer ul li{
   list-style: none;
}
.footer ul li a{
    color: #1E1E1E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}
.footer ul li a:hover{
    color: var(--css_button_color);
}
.footer .explore-menu{
    display: flex;
}
.footer .explore-menu li a{
    margin-bottom: 10px;
}
.footer .explore-menu ul{
    margin-right: 100px;
}
.footer .explore-menu ul:last-child{margin-right: 0;}
.footer .footer-social{
    margin-top: 20px;
}
.footer .footer-social ul{
    display: flex;
    align-items: center;
}
.footer .footer-social ul li{margin-right: 25px;}
.footer .footer-social ul li:last-child{margin-right: 0;}
.footer .footer-social ul li a:hover svg path{
    fill: var(--css_button_color);
}
.footer .copyright{
    border-top: 1px solid #999999;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;
}
.footer .copyright p{
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}


/* banner */
.banner{
    padding-top: 40px;
    position: relative;
    text-align: center;
    background-color: #fff;
    margin-top: 90px;
}
.banner-text{
    position: relative;
}
.banner::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-shape.png') no-repeat;
    background-size: cover;
}
.banner::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 215px;
    background: url('../images/line-shape.png') no-repeat;
    background-size: cover;
}
.banner h1{
    text-align: center;
    font-size: 64px;
    font-family: 'Rubik';
    color: #000;
    font-weight: 600;
    max-width: 70%;
    margin: 0 auto;
}
.banner h3{
    text-align: center;
    color: #666666;
    font-size: 24px;
    font-family: 'Rubik';
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 40px;
}
.banner .banner-button{
    margin-bottom: 20px;
}
.banner .banner-img{
    position: relative;
}
.banner .banner-img::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

}

.trusted-company{
    padding: 70px 0;
}
.trusted-company h2{
    font-size: 36px;
    font-weight: 600;
    font-family: 'Rubik';
    margin-bottom: 20px;
    text-align: center;
    color: #1E1E1E;
}
.trusted-company h2 span{
    color: var(--css_button_color);
}
.trusted-company p{
    text-align: center;
    font-size: 18px;
    color: #666666;
    font-weight: 500;
    max-width: 75%;
    margin: 0 auto;
}
.trusted-company ul{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trusted-company ul li{
    list-style: none;
    margin-right: 85px;
}
.trusted-company ul li:last-child{margin-right: 0;}
.trusted-company ul li a{
    opacity: 30%;
    transition: 0.4s ease-in-out;
}
.trusted-company ul li a:hover{
    opacity: 100%;
}

.how-it-works{
    position: relative;
}
.how-it-works::before{
    content: '';
    background: url('../images/bg-shape.png') no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 30%;
    z-index: -1;
    background-size: 50%;
    background-position: top center;
}
.how-it-works h2{
    font-size: 36px;
    font-weight: 600;
    font-family: 'Rubik';
    color: #1E1E1E;
    text-align: center;
    max-width: 55%;
    margin: 0 auto;
}
.how-it-works h2 span{color: var(--css_button_color);}
.how-it-works p{
    font-size: 18px;
    color: #666666;
    font-weight: 500;
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 40px;
}
.marquee-row{
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 80px;
}
.marquee-block{
    position:relative;
    display: flex;
    width: 100%;  
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    justify-content: space-between;
}
.marquee-item-list{
    display: inline-flex;
    margin-bottom: 0;
}
.marquee-item-list li{
    width: 100%;
    list-style: none;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 10px;
    margin-right: 50px;
    margin-bottom: 20px;
}
.marquee-item-list li svg{margin-right: 5px;}
.marquee1{animation-name: marquee1;}
.marquee2{animation-name: marquee2;}
@keyframes marquee1 {
    0% { left: 0; }
    100% {left: -100%;}
}
@keyframes marquee2 {
    100% { left: 0; }
    0% {left: -100%;}
}

.how-it-works-dashbord .dash-title{
    border-radius: 5px;
    background: var(--css_button_color_hover);
    font-size: 14px;
    color: var(--css_button_font_color_hover);
    font-weight: 500;
    display: inline-block;
    text-align: center;
    padding: 5px 20px;
    margin-bottom: 20px;
    width: max-content;
}
.how-it-works-dashbord h3{
    font-size: 40px;
    font-weight: 600;
    font-family: 'Rubik';
    color: #000;
    max-width: 89%;
    margin-bottom: 20px;
}
.how-it-works-dashbord h3 span{color: var(--css_button_color);}
.how-it-works-dashbord p{
    font-size: 16px;
    color: #666666;
    font-weight: normal;
    text-align: left;
    max-width: 100%;
    padding: 0;
    padding-right: 50px;
    margin-bottom: 40px;
}
.how-it-works-dashbord .blue-btn{
    padding: 16px 0;
    text-align: center;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-dashbord .blue-btn svg{margin-left: 15px;}
.how-it-works-dashbord .blue-btn:hover svg path{fill: var(--css_button_color);}
.how-it-works-dashbord .dashbord-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.how-it-works-dashbord .row-reverse{
    margin-top: 80px;
    margin-bottom: 80px;
}
.how-it-works-dashbord .dashbord-img img{
    width: 100%;
    object-fit: cover;
}
.how-it-works-dashbord .row-reverse .dashbord-text{
    align-items: flex-end;
}
.how-it-works-dashbord .row-reverse h3{text-align: right;}
.how-it-works-dashbord .row-reverse p{
    text-align: right;
    padding-right: 0;
    padding-left: 50px;
}

.premium-features{
    padding-top: 100px;
}
.premium-features h2{
    text-align: center;
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Rubik';
    margin-bottom: 30px;
}
.premium-features h2 span{
    color: var(--css_button_color);
    /* display: block; */
}
.premium-features p{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #666666;
    max-width: 75%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.premium-features .feature-box{
    background-color: #fff;
    /* border: 2px solid #BBBBBB; */
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}
.premium-features .col-lg-4{
    margin-bottom: 20px;
}
.premium-features .feature-box h3{
    color: var(--css_button_color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}
.premium-features .feature-box p{
    text-align: left;
    max-width: 100%;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-plans{
    padding-top: 100px;
}
.pricing-plans h2{
    text-align: center;
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Rubik';
}
.pricing-plans h2 span{
    color: var(--css_button_color);
    /* display: block; */
}
.pricing-plans p{
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.pricing-table{
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 0 30px 25px;
}

.pricing-table table h6{
    font-size: 14px;
    font-weight: 500;
    font-family: 'Rubik';
    color: #000;
}

.pricing-table table td{
    color: #999999;
    font-size: 16px;
    font-family: 'Rubik';
    font-weight: normal;
    border: 0;
    padding: 8px 10px;
    width: 30px;
}

.td-icon {
    padding: 13px 0px 0px 0px !important;
}

.td-text {
    padding-left:20px !important;
}

.td-icon-text {
    padding: 8px 0px !important;
}

.pricing-table table th{
    color: #999999;
    font-size: 16px;
    font-family: 'Rubik';
    font-weight: normal;
    border: 0;
    padding: 8px 20px;
}
.pricing-plans h4{
    font-size: 30px;
    font-weight: normal;
    position: relative;
    font-family: 'Rubik';
}

.pricing-plans h4 span.price{
    font-size: 30px;
    font-weight: normal;
    position: relative;
    font-family: 'Rubik';
    top: 0;
}

.pricing-plans h4 span.price span{
    font-size: 24px;
    font-weight: normal;
    position: relative;
    font-family: 'Rubik';
    top: 0;
}

.pricing-plans h4 sup{
    font-size: 14px;
    top: -20px;
}

.pricing-plans h4 span{
    font-size: 14px;
    position: absolute;
    top: 5px;
    /* right: 20px; */
    /* right: 0px; */
}
.pricing-plans h5{
    font-size: 14px;
    font-weight: 100;
    font-family: 'Rubik';
}
.pricing-plans th h5{
    font-size: 18px;
    font-weight: 600;
    font-family: 'Rubik';
}

.pricing-plans .plan-btn{
    border: 1px solid #999999;
    color: #999999;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    width: 150px;
    padding: 8px 0;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.pricing-table table td.mt-4{
    padding-top: 50px;
}
.pricing-table table .active-plan{
    background-color: var(--css_button_color);
    color: #fff;
}
.pricing-table table .active-plan svg path{fill: #fff;}
.pricing-table table .active-plan .plan-btn{
    background-color: #fff;
    border-color: #fff;
    color: #000;
}
.pricing-table table .active-plan.radius-top{
    border-radius: 8px 8px 0 0;
}
.pricing-table table .active-plan.radius-bottom{
    border-radius: 0 0 8px 8px;
}

.faq{
    padding-top: 100px;
}
.faq h2{
    font-weight: 600;
    font-family: 'Rubik';
    font-size: 36px;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 50px;
}
.faq h2 span{color: var(--css_button_color);}
.accordion .accordion-item{
    border: 0;
    background-color: transparent;
    margin-bottom: 60px;
}
.accordion .accordion-button{
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--css_button_color) !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 15px;
    padding-right: 40px;
}
.accordion .accordion-button.collapsed{
    color: #000 !important;
}
.accordion .accordion-button:focus{
    outline: none;
    box-shadow: none;
}
.accordion .accordion-body{
    padding: 0;
    border: 0;
    padding-right: 40px;
}
.accordion .accordion-body p{
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
    color: #666666;
}
.accordion .accordion-body p a{
        color: var(--css_button_color);
}
.accordion .accordion-body p a:hover{
        color: var(--css_button_color);
}
.accordion .accordion-collapse{
    height: auto !important;
}
.accordion .accordion-button::after{
    content: '';
    background-color: var(--css_button_color, black); /* Dynamic color */
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 4"><rect width="16" height="4" fill="black" /></svg>');
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 4"><rect width="16" height="4" fill="black" /></svg>');
    width: 16px;
    height: 3px;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 2px;
    /* transform: translateY(-50%); */
}
.accordion .accordion-button.collapsed::after{
    content: '';
    background: url('../images/plus-sign.png') no-repeat !important;
    width: 16px;
    height: 16px;
}

.contact-us{
    padding-top: 70px;
    padding-bottom: 70px;
}
/* .contact-us h2{
    font-size: 48px;
    color: #000;
    font-weight: 500;
    font-family: 'Rubik';
    background: url('../images/contact-title-bg.png') no-repeat;
    padding: 90px 0 70px;
}
.contact-us h2 span{color: var(--css_button_color);}
.contact-us p{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Rubik';
    padding-right: 70px;
    margin-top: 30px;
}
.contact-us p a{
    color: var(--css_button_color);
}
.contact-us p a:hover{
    color: #000;
} */

/* .contact-form h3{
    color: #000;
    font-size: 48px;
    font-weight: 500;
    font-family: 'Rubik';
    margin-bottom: 40px;
} */



.pricing-plans .onoffswitch {
    width: 70px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin: 0 auto;
}

.pricing-plans .onoffswitch-label {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 20px;
}

.pricing-plans .onoffswitch-inner {
    width: 200%;
    margin-left: -100%;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

.pricing-plans .onoffswitch-inner::before,
.pricing-plans .onoffswitch-inner::after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pricing-plans .onoffswitch-inner::before {
    content: "";
    padding-right: 27px;
    background-color: var(--css_button_color_hover);
    color: #FFFFFF;
}

.pricing-plans .onoffswitch-inner::after {
    content: "";
    padding-right: 24px;
    background-color: var(--css_button_color);
    color: #999999;
    text-align: right;
}

.pricing-plans .onoffswitch-switch {
    width: 23px;
    margin: 6px;
    height: 23px;
    top: -1px;
    bottom: 0;
    right: 35px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.pricing-plans .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.pricing-plans .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}
.pricing-table th{
    /* min-width: 220px; */
}

.pricing-table th:first-child{
    min-width: 140px !important;
    padding-right: 0px !important;
}

.pricing-table td:first-child{
    min-width: 140px !important;
    padding-right: 0px !important;
}

.custom-loader{
    width: 200px;
  }

/* Responsive */
/* ===Desktop=== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner h1 {
        font-size: 52px;
    }
    .banner .banner-img img{
        width: 100%;
    }
    .trusted-company ul li img{
        max-width: 200px;
    }
    .how-it-works h2 {
        max-width: 65%;
    }
    .how-it-works-dashbord p {
        padding-right: 30px;
    }
    .how-it-works-dashbord .row-reverse p {
        padding-left: 30px;
    }
    .how-it-works-dashbord h3 {
        font-size: 36px;
        max-width: 96%;
    }
    .pricing-table{
        overflow-x: auto;
    }
    .pricing-table th{
        /* min-width: 220px; */
    }
    .pricing-table th:first-child{
        min-width: 280px;
    }
    .custom-loader{
        width: 175px;
      }
}

/* ===Tablet=== */
@media(max-width: 992px){
    .mobile{display: block;}
    .desktop{display: none;}
    .desktop-menu{display: none;}
    .mobile-menu{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        padding: 0 10px;
        padding-bottom: 20px;
        background-color: #f5f5f5;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
        border-radius: 8px; /* Optional for rounded corners */
        transition: all 0.3s ease-in-out;
    }
    .active-menu .mobile-menu{
        z-index: 1;
        padding-top: 120px;
        padding-bottom: 80px;
        background-color: #fff;
        display: block;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    .header .navbar .navbar-brand {
        z-index: 11;
    }
    .header.active-menu .navbar-toggler{z-index: 11;}
    .navbar-toggler-icon{background-image: none !important;}
    .header .container{
        position: relative;
    }
    .header .login{
        margin-top: 40px;
    }
    .header .navbar-nav .nav-link{
        margin-right: 0;
    }
    .banner .banner-img img{
        width: 100%;
    }
    .pricing-table{
        overflow-x: auto;
    }
    .pricing-table th{
        /* min-width: 220px; */
    }
    .pricing-table th:first-child{
        min-width: 280px;
    }
    .custom-loader{
        width: 130px;
      }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .header .navbar-nav .nav-link {
        margin-right: 10px;
    }
    .banner h1 {
        font-size: 52px;
    }
    .banner .banner-img img{
        width: 100%;
    }
    .trusted-company ul li img{
        max-width: 200px;
    }
    .how-it-works h2 {
        max-width: 75%;
    }
    .how-it-works-dashbord p {
        padding-right: 30px;
    }
    .how-it-works-dashbord .row-reverse p {
        padding-left: 30px;
    }
    .how-it-works-dashbord h3 {
        font-size: 36px;
        max-width: 96%;
    }
    .pricing-table{
        overflow-x: auto;
    }
    .pricing-table th{
        /* min-width: 220px; */
    }
    .pricing-table th:first-child{
        min-width: 280px;
    }
    .banner h3{
        font-size: 22px;
    }
    .trusted-company ul li {
        margin-right: 40px;
    }
    .footer .explore-menu ul {
        margin-right: 50px;
    }
    .footer .footer-logo p, .contact-us p {
        padding-right: 50px;
    }
    .banner{overflow: hidden;}
    .banner::before {
        bottom: -80px;
        background-position: top;
    }
    .custom-loader{
        width: 150px;
      }
}
@media (min-width: 768px) and (max-width: 991px) {
    .banner{
        overflow: hidden;
        padding-top: 30px;
    }
    .banner::before {
        bottom: -180px;
        background-position: top;
    }
    .banner h1 {
        font-size: 48px;
        max-width: 100%;
    }
    .trusted-company {
        padding: 80px 0;
    }
    .trusted-company ul{
        display: block;
        text-align: center;
    }
    .trusted-company ul li img {
        max-width: 180px;
    }
    .trusted-company ul li {
        margin-right: 0;
        width: 45%;
        float: left;
        margin-bottom: 50px;
    }
    .trusted-company p, .how-it-works p,
    .premium-features p, .pricing-plans p {
        max-width: 100%;
    }
    .how-it-works h2 {
        max-width: 100%;
    }
    .marquee-item-list li {
        padding: 10px 30px;
        font-size: 18px;
        margin-right: 20px;
    }
    .how-it-works-dashbord .dashbord-text {
        display: block;
        margin-bottom: 40px;
    }
    .how-it-works-dashbord .row-reverse {
        flex-direction: column-reverse;
    }
    .how-it-works-dashbord .row-reverse h3 {
        text-align: left;
    }
    .how-it-works-dashbord .row-reverse p {
        text-align: left;
        padding-right: 0;
        padding-left: 0;
    }
    .how-it-works-dashbord p{padding-left: 0; padding-right: 0;}
    .premium-features {
        padding-top: 70px;
    }
    .pricing-plans {
        padding-top: 90px;
    }
    .faq {
        padding-top: 70px;
    }
    .footer {
        padding-top: 50px;
    }
    .contact-us {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .contact-us p {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .footer .footer-logo p{margin-bottom: 50px;}
    .pricing-table .table tbody tr td:first-child,
    .pricing-table .table tbody tr th:first-child
    {
        position: sticky;
        left: -50px;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .pricing-table .table tbody tr td:nth-child(2),
    .pricing-table .table tbody tr th:nth-child(2)
    {
        position: sticky;
        left: 90px;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .custom-loader{
        width: 125px;
      }
}

/* ===Mobile=== */
@media (min-width: 576px) and (max-width: 767px) {
    .header .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header .blue-btn {
        padding: 8px 65px;
    }
    .header .login {
        margin-top: 20px;
    }

    .banner{overflow: hidden;}
    .banner h1 {
        font-size: 40px;
        max-width: 100%;
    }
    .banner h3 {
        font-size: 20px;
    }
    .banner::before {
        bottom: -160px;
    }
    .banner::after {
        height: 70px;
    }
    .trusted-company {
        padding: 90px 0;
    }
    .trusted-company p,
    .how-it-works p, .premium-features p, .pricing-plans p {
        max-width: 100%;
    }
    .trusted-company ul li {
        margin-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    .trusted-company ul{
        display: block;
        padding: 0;
    }
    .how-it-works h2{max-width: 96%;}
    .marquee-item-list li {
        padding: 10px 30px;
        font-size: 18px;
        margin-right: 25px;
    }
    .how-it-works-dashbord p{padding-right: 0;}
    .how-it-works-dashbord .dashbord-text {
        display: block;
        margin-bottom: 50px;
    }
    .how-it-works-dashbord .row-reverse{flex-direction: column-reverse;}
    .how-it-works-dashbord .row-reverse h3 {
        text-align: left;
    }
    .how-it-works-dashbord h3 {
        max-width: 100%;
    }
    .how-it-works-dashbord .row-reverse p {
        text-align: left;
        padding-left: 0;
    }
    .pricing-plans {
        padding-top: 90px;
    }
    .faq {
        padding-top: 90px;
    }
    .footer {
        padding-top: 50px;
    }
    .contact-us {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .contact-us p {
        margin-bottom: 50px;
    }
    .footer .footer-menu{
        margin: 30px 0;
    }
    .pricing-table .table tbody tr td:first-child,
    .pricing-table .table tbody tr th:first-child
    {
        position: sticky;
        left: -50px;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .pricing-table .table tbody tr td:nth-child(2),
    .pricing-table .table tbody tr th:nth-child(2)
    {
        position: sticky;
        left: 90px;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .custom-loader{
        width: 125px;
      }
}
@media (min-width: 320px) and (max-width: 575px) {
    .header .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header .blue-btn {
        padding: 8px 65px;
    }
    .header .login {
        margin-top: 20px;
    }
    .header .navbar-collapse{
        padding-top: 70px;
    }
    .blue-btn {
        padding: 11px 50px;
        font-size: 15px;
        width: max-content;

    }
    .banner{overflow: hidden; padding-top: 40px;}
    .banner h1 {
        font-size: 40px;
        max-width: 100%;
    }
    .banner h3 {
        font-size: 18px;
    }
    .banner::before {
        bottom: -160px;
    }
    .banner::after {
        height: 70px;
    }
    .trusted-company {
        padding: 90px 0;
    }
    .trusted-company p,
    .how-it-works p, .premium-features p, .pricing-plans p {
        max-width: 100%;
    }
    .trusted-company ul li {
        margin-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    .trusted-company ul li img{max-width: 180px;}
    .trusted-company ul{
        display: block;
        padding: 0;
    }
    .how-it-works h2{max-width: 100%;}
    .how-it-works-dashbord .blue-btn {
        padding: 12px 0;
        /* width: 220px; */
    }
    .marquee-item-list li {
        padding: 10px 30px;
        font-size: 18px;
        margin-right: 25px;
    }
    .how-it-works-dashbord p{padding-right: 0;}
    .how-it-works-dashbord .dashbord-text {
        display: block;
        margin-bottom: 50px;
    }
    .how-it-works-dashbord .row-reverse{flex-direction: column-reverse;}
    .how-it-works-dashbord .row-reverse h3 {
        text-align: left;
    }
    .how-it-works-dashbord h3 {
        max-width: 100%;
        font-size: 36px;
        word-break: break-word;
    }
    .pricing-plans h2{font-size: 33px;}
    .how-it-works-dashbord .row-reverse p {
        text-align: left;
        padding-left: 0;
    }
    .pricing-plans {
        padding-top: 90px;
    }
    .pricing-table {
        padding: 30px 0 30px 0px;
    }

    .pricing-table .table tbody tr td:first-child,
    .pricing-table .table tbody tr th:first-child
    {
        position: sticky;
        left: 0;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .pricing-table .table tbody tr td:nth-child(2),
    .pricing-table .table tbody tr th:nth-child(2)
    {
        position: sticky;
        left: 140px;
        background: white; /* Optional: Match background to avoid overlap issues */
        z-index: 2; /* Keeps the column above other content while scrolling */
    }
    .premium-features {
        padding-top: 90px;
    }
    .faq {
        padding-top: 90px;
    }
    .footer {
        padding-top: 50px;
    }
    .contact-us {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .contact-us p {
        margin-bottom: 50px;
    }
    .footer .footer-menu{
        margin: 30px 0;
    }
    .premium-features .feature-box {
        padding: 25px;
    }
    .footer .explore-menu ul {
        margin-right: 0;
    }
    .footer .explore-menu {
        justify-content: space-between;
    }
    .contact-form .submit input {
        padding: 12px 0;
    }
    .header .navbar .navbar-brand img {max-width: 240px;}
    .custom-loader{
        width: 100px;
      }
}

.terms-policy {
    padding: 50px 0;
    margin-top: 80px;
}

.remove_promo {
    color: red;
    cursor: pointer;
}

.cursor_pointer {
    cursor: pointer;
}