/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat', sans-serif;
}
body{
    background-color: #fff;
    scroll-behavior: smooth;
}
p{
    font-size: 16px;
    line-height: 1.6;
}
.section-heading{
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 50px;
}
a{
    text-decoration: none;
}

section{
    padding: 40px 0;
}
ul{
    list-style: none;
    padding-left: 0;
}
img{
    border-radius: 20px;
}


.header_top{
    background: #038629;
    height: 40px;
    padding-top: 5px;
}

.header_top .phone_email{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_top .phone_email a{
    color: #fff;
}

.navbar{
    background-color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.178);
    height: 100px;
}
.navbar .navbar-toggler-icon{
    color: #038629;
    font-size: 30px;
    margin-top: 10px;
}
.navbar .navbar-brand{
    max-width: 250px;
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
    outline: none;
}
.navbar .navbar-nav .nav-link{
    font-size: 18px;
    color: #000;
    margin: 0 10px;
    font-weight: 500;
}

.banner_wrapper{
    background: url(../images/banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    padding-bottom: 50px;
}
.banner_wrapper .banner_content{
    display: flex;
    align-items: center;
    height: 70vh;
}
.banner_wrapper h1{
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}
.banner_wrapper p{
    margin: 20px 0;
    color: #fff;
}

.banner_wrapper .app-btns a{
    margin-right: 10px;
    
}
.banner_wrapper .app-btns a img{
    max-height: 50px;
}

.banner_wrapper .mySwiper{
    padding-bottom: 20px;
}
.banner_wrapper .swiper-button-next,
.banner_wrapper .swiper-button-prev {
    color: #fff;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: .5px solid #fff;
    /* border-radius: 50%; */
}

.banner_wrapper .swiper-button-next::after,
.banner_wrapper .swiper-button-prev::after {
    font-size: 24px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background-color: #038629;
    width: 15px;
    height: 15px;
    border: 4px solid #fff;
}



.about h2{
    font-size: 38px;
    font-weight: 600;
}
.about p{
    line-height: 2;
}
.about .tab-content{
    padding: 20px 0;
}
.about .nav-link{
    color: #000;
    font-weight: 500;
}
.about .nav-link.active{
    color: #038629;
    font-weight: 500;
}




.schemes{
    background-color: #f6f6f6;
}
.schemes .scheme{
    background-color: #f6f6f6;
    padding: 10px;
    /* border: 1px solid #00000030;
    padding: 10px;
    border-radius: 10px; */
}
.schemes .scheme .scheme_image{
    /* border-radius: 10px;
    overflow: hidden; */
    margin-bottom: 15px;
}
.schemes .scheme_name{
    font-size: 22px;
    font-weight: 600;
}


.features .container{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}
.features .feture{
    display: flex;
    gap: 20px;
}
.features .feture .icon{
    min-width: 40px;
    max-width: 40px;
    display: none;
}
.features .feture i{
    font-size: 40px;
    margin-bottom: 15px;
}
.features .feture .feature-heading{
    font-size: 20px;
}

.features .box1{
    text-align: end;
}
.features .box2{
    text-align: center;
}


.contact{
    background-color: #038629;
    color: #fff;
}
.contact .icon{
    width: 60px;
    height: 60px;
    margin: 10px auto 30px;
}
.contact img{
    border-radius: 0;
}
.contact a{
    color: #fff;
}





footer{
    padding: 50px 0;
    background-color: #f6f6f6;
}

footer .container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
footer .footer-logo{
    max-width: 250px;
}

footer ul li{
    margin-bottom: 20px;
}
footer .address_col li{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 500;
}

footer ul li a{
    display: flex;
    gap: 15px;
    color: #000;
    font-weight: 500;
}
footer .address_col li i{
    margin-top: 5px;
}

footer .footer_title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
/* footer .social-links{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-left: -30px;
}
footer .social-links a{
    margin-right: 10px;
    color: #038629;
    border: 1px solid #038629;
    padding: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
} */
footer .social-links a i{
    padding: 5px;
    font-size: 20px;
}
footer p{
    font-size: 14px;
}
footer p a{
    text-decoration: none;
    font-size: 16px;
    color: #038629;
    font-weight: 500;
}



.open-button {
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 23px;
    right: 30px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.661);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.527);
    border-radius: 50px;
  }
  .open-button img{
    width: 50px;
    height: 50px;
  }



@media screen and (max-width:1024px){
    .banner_wrapper h1{
        font-size: 40px;
    }
    iframe{
        width: 100%;
    }
    .banner_wrapper .banner_content{
        text-align: center;
    }
}
@media screen and (max-width:991px){
    .features .container{
        grid-template-columns: 1fr;
    }
    .features .box2{
        order: 2;
    }
    .features .box3{
        order: 1;
    }
}
@media screen and (max-width:768px){
    .banner_wrapper h1{
        font-size: 30px;
    }
    .features .feture{
        height: 150px;
    }
    iframe{
        width: 300px;
        gap: 30px;
    }
    .navbar{
        height: auto;
    }
}
@media screen and (max-width:600px){
    .banner_wrapper {
        padding: 30px 0;
        text-align: center;
    }
    .features .container{
        grid-template-columns: 1fr;
    }
    .features .box1{
        text-align: start;
    }
    .features .box1,
    .features .box2,
    .features .box3{
        margin-bottom: 30px;
    }
    iframe{
        width: 100%;
    }

    footer .container{
        grid-template-columns: 1fr;
    }
}