:root {
    --PrimaryColor: #0BB502;
    --WhiteColor: #fff;
    --BlackColor: #000;
    --LightGrayColor: #ECECEC;
    --heading-text: #262626;

}

html {
    font-size: 16px;
}
html,
body {
    scroll-behavior: smooth; overflow-x: hidden;
}
@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraLight.eot");
    src: url("../fonts/Inter24pt-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraLight.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraLight.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Bold.eot");
    src: url("../fonts/Inter24pt-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Bold.woff2") format("woff2"), url("../fonts/Inter24pt-Bold.woff") format("woff"), url("../fonts/Inter24pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Regular.eot");
    src: url("../fonts/Inter24pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Regular.woff2") format("woff2"), url("../fonts/Inter24pt-Regular.woff") format("woff"),
        url("../fonts/Inter24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Thin.eot");
    src: url("../fonts/Inter24pt-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Thin.woff2") format("woff2"), url("../fonts/Inter24pt-Thin.woff") format("woff"), url("../fonts/Inter24pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Light.eot");
    src: url("../fonts/Inter24pt-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Light.woff2") format("woff2"), url("../fonts/Inter24pt-Light.woff") format("woff"),
        url("../fonts/Inter24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Black.eot");
    src: url("../fonts/Inter24pt-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Black.woff2") format("woff2"), url("../fonts/Inter24pt-Black.woff") format("woff"),
        url("../fonts/Inter24pt-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraBold.eot");
    src: url("../fonts/Inter24pt-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraBold.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraBold.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-SemiBold.eot");
    src: url("../fonts/Inter24pt-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter24pt-SemiBold.woff") format("woff"),
        url("../fonts/Inter24pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Medium.eot");
    src: url("../fonts/Inter24pt-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Medium.woff2") format("woff2"), url("../fonts/Inter24pt-Medium.woff") format("woff"),
        url("../fonts/Inter24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    color: #3a3a3a;
    font-family: "Inter 24pt";
    font-weight: 400;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bg-soft {
    background: #F8F8F8;
}

.btn {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
        border-radius: 8px;
        line-height: 1.25rem;
        font-weight: 500;
        transition: all 0.2s ease; 
        display: inline-flex;
        align-items: center;
        gap: 0.4rem; text-align: center; justify-content: center;
}
.btn svg{
    width: 1.2rem;
}
.btn:hover,
.btn:focus,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: var(--WhiteColor);
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
   color: var(--PrimaryColor) !important;
    background: var(--WhiteColor)!important;
    border-color: var(--PrimaryColor) !important;

}


.btn-white {
    color:#3B3B3B;
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}


.btn-white:hover,
.btn-white:focus,
.btn-white.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor)!important;
 
}

.btn-outline-primary {
    color:var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor) !important;
 
}





.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}
.same-heading {margin-bottom: 4rem;}
.same-heading h2 {
    color: var(--PrimaryColor);
    font-size: 2rem;
    font-weight: 600;
    line-height:115%; margin-bottom: 1rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4; margin-bottom: 0.6rem;
}

.same-heading p {
     color: #45556C;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.same-heading .primary-text {font-size: 0.8rem; font-weight: 400; text-transform: uppercase; line-height: 1.2; margin-bottom: 0.5rem;}

.bg-gray{background: #F4F4F4;}

.max-wid-50{width: 100%; max-width: 60%;}
.same-heading.text-center .max-wid-50{margin:0 auto;}
.same-heading.white-text :is( h2, p) {color: var(--WhiteColor);}

.same-section .section-bottom-btn{margin-top: 1.5rem;}
.section-bottom-btn{display: flex; gap: 1rem; align-items: center; }
.section-bottom-btn.text-center{justify-content: center;}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 1rem 0; background: var(--WhiteColor); position: relative;  transition: all 0.3s ease; z-index: 99; position: relative;}
.header .navbar{padding: 0; }
.header .navbar  .nav {gap: 1rem;}
.header .navbar  .nav-link{position: relative; color: #454545; font-size: 0.9rem; padding: 0.2rem 0.4rem; transform: all .2s ease; }
.header .navbar .nav-link::before{content: ""; position: absolute; left: 0;right: 0; bottom: -1px; width: 0%; margin: 0 auto; height: 2px; background-color: var(--PrimaryColor); transition: width 0.3s ease;}
.header .navbar-brand {padding: 0;}
.header .navbar  .nav-link:hover{color: var(--PrimaryColor);}
.header .navbar  .nav-link:hover:before{width: 100%;}
.header .navbar  .nav-link.active { color:var(--PrimaryColor)}
.header .navbar  .nav-link.active:before{width: 100%;}
.header.headerFix { position: fixed; top: 0; left: 0; width: 100%;  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08); z-index: 9999;animation:headerfixdown 0.7s; } 
.header.headerFix .navbar-brand img{    max-height: 3rem;}

@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}

.mobile-menu-toggle { background: var(--PrimaryColor); color: var(--WhiteColor); width: 2rem; height: 2rem; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;  display: none;}
.mobile-menu-toggle svg{width: 1rem; color: var(--WhiteColor);}

/*  header css */
.body-overlay.active{display: block;}
.mobile-sidemenu{position: fixed; top: 0; right: -100%; width: 17rem; height: 100%; background: var(--WhiteColor); box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2); transition: right 0.3s ease; padding: 1rem; z-index: 9999; gap: 1rem;}
.mobile-sidemenu .close-sidebarmenu{background: var(--PrimaryColor); color: var(--WhiteColor); width: 2rem; height: 2rem;display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;}
.mobile-sidemenu .close-sidebarmenu svg{width: 1rem; color: var(--WhiteColor);}
.mobile-sidemenu a:not(.btn-outline-primary){ color: var(--BlackColor); font-size: 1rem; font-weight: 400;}
.mobile-sidemenu.active {right: 0;}



.body-overlay{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1050; display: none;}
.primary-text{color: var(--PrimaryColor);}

.hero-banner{padding: 5rem 0; position: relative; background: url(../images/hero-banner.jpg)no-repeat center top/cover; min-height: 100vh; display: flex; align-items: center; justify-content: center;}
.hero-banner h1{letter-spacing: -0.025em; font-weight: 600; font-size: 3rem; line-height: 1.1; color: #00000082; }
.hero-banner .banner-btn {margin: 2rem 0 0;}


.delivers-wrap .delivers-card{background: var(--WhiteColor); padding: 1.5rem 1rem; border-radius: 10px;height: 100%;}
.delivers-wrap .delivers-card .iconbx{ width: 100%; max-width: 50px; margin-bottom: 1rem;}
.delivers-wrap .delivers-card p{margin-bottom: 0; font-size:1rem; color: #494949;}
.delivers-wrap .section-bottom-btn{margin-top: 4rem;}

.verify-banner-wrap{background: url(../images/verify-banner.jpg)no-repeat center top/cover;}
.verify-banner-wrap .same-heading h3{color: var(--WhiteColor);}
.verify-banner-wrap .same-heading p{color: var(--WhiteColor);}
.verify-banner-wrap .price-bx{font-size: 6rem; color: var(--WhiteColor); font-weight: 700; line-height: 1;}
.verify-banner-wrap .same-heading p + p{margin-top: 2rem;}

.footer .footer-bottom{border-top: solid 1px #E2E2E2; padding: 0.7rem 0;}
.footer .footer-bottom p{color: #3D3D3D; font-size: 0.9rem; font-weight: 400; margin-bottom: 0;}
.footer .footer-bottom p a{color: #3D3D3D;padding: 0 0.6rem; display: inline-block;}
.footer .privacy-text{text-align: end;}
.footer .footer-top-section{padding: 3.5rem 0; text-align: center;}
.footer .footer-top-section .footer-logo{display: block; margin-bottom: 2rem;}
.footer .footer-top-section .footer-menu{display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;}
.footer .footer-top-section .footer-menu a:not(.btn-outline-primary){color: #454545; font-size: 1rem; font-weight: 400;}
.footer .footer-top-section .footer-menu a:hover{color:var(--PrimaryColor);}