
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');


:root{
    --bs-dark-rgb:43, 43, 43;
    --web-yellow:#FFC107;
    --web-dark: #333333;
    --web-gray:#F8F9FA;
}

body {
    color: #000000;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--web-dark);
}

h1, .h1 {
   font-family: "Poppins", sans-serif;
    font-size: 48px;
}

h2, .h2 {
   font-family: "Poppins", sans-serif;
    font-size: 32px;
}

h3, .h3 {
   font-family: "Poppins", sans-serif;
    font-size: 28px;
}

h4, .h4 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 14px;
}

h6, .h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

p, a, li, span, label, tr, td, th, input {
    color: var(--web-dark);
}

p {
    font-size: 20px;
}

p.small {
    font-size: 18px;
}

a {
    transition: all .5s ease;
    outline: none;
    display: inline-block;
    width: fit-content;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1240px) {
    .container {
        max-width: 1240px;
    }
}

.font-inter{
    font-family: "Inter", sans-serif;
}

.web-yellow{
    color: var(--web-yellow);
}

.bg-web-yellow{
    background-color: var(--web-yellow);
}

.bg-lite{
    background: var(--web-gray)
}

.fs-45{
    font-size: 45px !important;
}

.fs-36{
    font-size:36px !important;
}

.fs-30{
    font-size:30px !important;
}

.fs-26{
    font-size: 26px !important;
}

.fs-24{
    font-size: 24px !important;
}

.fs-22{
    font-size: 22px !important;
}

.fs-18{
    font-size: 18px !important;
}

.fs-16{
    font-size: 16px !important;
}

.fs-14{
    font-size: 14px !important;
}

.fs-12{
    font-size: 12px !important;
}

.list-style-none {
    list-style: none;
}

.border-radius-20 {
    border-radius: 20px !important
}

.border-radius-10 {
    border-radius: 10px !important
}

.box-shadow {
    box-shadow: 0px 0px 25px 0px #0000001A;
}

form label:not([for]){
    font-size: 13px;
}



/**Button CSS**/

.btn-main{
    padding: 15px 25px !important;
    margin: 0 10px;
    background: var(--web-dark);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: black;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--web-yellow);
}

.btn-main .btn-text{
    z-index: 1;
    position: relative;
    color: #000000;
}

.btn-main:before, .btn-main:after{
    content: '';
    width:51%;
    height: 100%;
    background-color: var(--web-yellow);
    position: absolute;
    left: 0;
    top:0;
    transition: 0.4s transform;
}
.btn-main:after{
    right: 0;
    left: auto;
}

.btn-main i{
    margin-left: 10px;
}

.btn-main:hover{
    background-color: var(--web-dark);
}

.btn-main:hover .btn-text{
    color: var(--web-gray);
}

.btn-main:hover:before{
    transform: translateX(-105%);
}

.btn-main:hover:after{
    transform: translateX(105%);
}

.btn-main.btn-white:before, .btn-main.btn-white:after{
    background-color: var(--web-gray);
}

.btn-main.btn-border-dark{
    color: black;
    border: 1px solid var(--web-dark);
    min-width:280px;
}

.btn-main.btn-border-white{
    border: 1px solid var(--web-gray);
    background: transparent;
    min-width:280px;
}

.btn-main.btn-border-white .btn-text{
    color: #fff;
}

.btn-main.btn-border-white:hover .btn-text{
    color: #000;
}

.btn-main.btn-border-white:before{
    transform: scaleX(0);
    transform-origin: right center;
}

.btn-main.btn-border-white:after{
    transform: scaleX(0);
    transform-origin: left center;
}

.btn-main.btn-border-white:hover:before, .btn-main.btn-border-white:hover:after{
    transform: scaleX(1);
}

/**Button CSS end**/

/**Header CSS**/
.header {
    background: #ffffff;
    z-index: 99;
    transition: all .5s ease;
    box-shadow: 0 4px 5px -6px #000;
}

.navbar-brand img{
    width:150px;
}

.header .navbar .navbar-nav li a {
    font-size: 18px;
    color: var(--web-dark);
    border: 0;
    font-weight: 400;
    padding: 0;
    margin: 0 15px;
    text-transform: capitalize;
    position: relative;
}

.header .navbar .navbar-nav li a:hover, .header .navbar .navbar-nav li a.active{
    font-weight: 600;
}

.header .navbar .navbar-nav li a.active:before {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--web-yellow);
    position: absolute;
    left: 0;
    bottom: 0;
}

.header .navbar .navbar-nav li ul{
    width: 250px;
    border:none;
    padding-top:30px;
}

.header .navbar .navbar-nav li li a{
    margin: 0;
    padding: 10px 15px;
    text-wrap: wrap;
}

.header .navbar .navbar-nav li li a:hover,.header .navbar .navbar-nav li li a.active{
    background-color: #EC2027;
    color: #fff
}

/* Home Page */

.hero-banner{
    background-image: url('../images/hero-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0px;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.bg-overlay-dark{
    position: relative;
    overflow: hidden;
}

.bg-overlay-dark .container{
    position: relative;
    z-index: 1;
}

.bg-overlay-dark:before{
    content: '';
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.hero-banner .container{
    max-width: 850px;
}

.banner-heading{
    font-size: 68px;
}

.highlight{
    background: var(--web-yellow);
    color: black;
    padding: 0px 8px;
    border-radius: 8px;
}

.our-services{
    padding: 100px 0px;
}

.services{
    padding:16px;
    border: 1px solid #BDBDBD;
    border-radius: 12px;
    transition: 0.4s;
    height: 100%;
    position: relative;
}

.services .count{
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 15px;
}

.service-icon{
    width: 80px;
      height: 89px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-bottom: 15px;
}

.service-icon .icon-bg svg{
    fill: var(--web-yellow);
    transition: 0.4s;
}

.service-icon .icon{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}

.services p{
    font-size: 18px;
    margin-bottom: 0;
}

.services h3{
    font-weight: 600;
    margin-bottom: 10px;
}

.services h4{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}


.services:hover{
    background-color: var(--web-yellow);
}

.services:hover .icon-bg svg {
    fill: #fff;
}

.how-it-works{
    padding: 100px 0;
}

.testimonial-sec{
    padding: 100px 0;
}
.testimonial {
    max-width: 1050px;
    text-align: center;
    padding: 0;
    margin: auto;
}

.testimonial p {
    font-size: 30px;
    line-height: 1.6;
    font-style: italic;
    color: var(--web-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial .author {
    font-weight: bold;
    font-size: 30px;
    font-style: italic;
    color: var(--web-yellow)
}

.testimonial .subtext {
    font-size: 18px;
    color: var(--web-dark);
    margin-top: 5px;
}

.cta-sec{
    padding: 100px 0;
}

/* footer */

footer{
    background: var(--web-gray);
}

.footer-bar{
    background-color: var(--web-yellow);
}

a.foot-logo{width: 240px;}

footer ul li a{
    transition: all .4s ease;
    position: relative;
    text-decoration: none;
    color: var(--web-dark);

}
footer ul li a:hover, footer ul li a.active{
    font-weight: 600;
}

ul.footer-social li.social-link{
    width: 30px;
    height: 30px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

ul.footer-social li.social-link a{
    color: var(--web-gray);
}

.copyright-text{
    font-weight: 500;
    font-size: 16px;
}
