
@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;
}
:root{
    --primnary-color: #0B5585;
}
body{
    font-family: "Poppins", sans-serif !important;
    background-color: rgb(241, 237, 237) !important;
}
nav{
    z-index: 99999;
}
.hero_banner,
.service_banner{
    height: 600px;
    margin-top: 6rem;
}
.hero_banner::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, 0.6);*/
}
.about{
    min-height: 580px;
   height: auto;
   
}
.about-box{
    background-color: var(--primnary-color);
    height: 400px;
}
.text-base{
    font-size: 14px;
}
.service-section{
    min-height: 640px;
}
.service{
    position: relative;
    height: 550px;
    background-image: url('./asset/midbanner.png');
   background-position: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.service::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.service_icon{
    width: 60px;
    height: 60px;
    background-color: var(--primnary-color);
}
.service_card{
    height: 190px;
}
.service_content {
 top: 30%;
}
.accordion-button:not(.collapsed),
.accordion-item{
    background-color: var(--primnary-color) !important;
    color: #fff !important;
}
.mid-title{
    color: var(--primnary-color);
}

.conact_banner{
    position: relative;
    background-image: url('./asset/formbanner.png');
    background-position: center;
    background-size: cover;
    height: 460px;
}
.send_btn{
    background-color: var(--primnary-color);
}
footer{
    background-color: #dae9f5;
}
.nav-link.active{
    color: var(--primnary-color) !important;
    border-bottom: 2px solid var(--primnary-color) !important;
}
.who_we_are{
    background-color: var(--primnary-color);
    height: 550px;
}
.card_img{
    height: 230px;
}
.subscribe{
    background-color:  var(--primnary-color);
}
.contact_banner{
    min-height: 800px;
}
.conatct_box{
    background-color: #F6F6F6;

}
.contact_card{
    height: 180px !important;
}
.testimonial_card{
    height: 200px;
}
@media screen and (max-width: 500px){
    .about{
        min-height: 940px;
    }
    .about-box{
        height: 440px;
    }
    .service-section{
        min-height: 760px;
    }
    .conact_banner{
        min-height: 670px;
    }
    .contact_banner{
        min-height: 980px;
    }
    .who_we_are{
        height: auto;
    }
}