

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.About_container{
    height: fit-content;
    margin-top: 120px;
    
}
  .section_one{
    height: 400px;
    width: 100%;
    position: absolute;
    

}
.section_one img{
    object-fit: cover;
    width: 100%;
    height: 400px;
}
.about_heading{
    width: 100%;
    height: 400px;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-color: #001539cc;
}
.about_heading h1,h3{
    color: #fff;
    
}
.about_heading h1{
    font-size: 48px;
    font-weight: bold;

}
.about_heading h3{
    font-size: 28px;
    font-weight:bolder;
}
.About_hero_block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top:2%;
}
.About_hero_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 90%;
}
.about_who_we h4{
    font-size: 22px;
    font-weight: 600;
    color: #001539;
    width: fit-content;
    border-bottom: 4px solid #FF731D;
    line-height: 28px;
}
.about_who_we h5{
    font-size: 35px;
    font-weight: bold;
    color: #001539;
    line-height: 2.6rem;
    margin: 15px 0px;
}
.about_who_we p{
    font-weight: 300;
    font-size: 17px;
    line-height: 30px;
}
.who_we_cards{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    margin: 10px;
    margin-top: 5%;
    
}
.who_we_card1{
    border-radius: 10px;
    width: 100%;
    height:fit-content;
    padding: 20px;
    margin: 10px 5px;
    background: #fff;
    color: #001539;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.who_we_card1 img{
    width: 60px;
}
@media(max-width:600px){
    
    .about_heading{
        height: 250px;
        
    }
    .section_one img{
        height: 250px;

    }
    .about_heading h3{
        font-size: 14px;
    }
    .about_heading h1{
        font-size: 28px;
    }
}
@media(max-width:999px){
    .About_hero_container{
        flex-direction: column;
    }
}