main{
    padding: 2% 3% 3% ;
    margin: 0 auto;
    max-width: 1300px;
}
.about{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 15px 0 20px;
}
.about-heading{
    position: relative;
    background-color: none;
    background-image: url('../img/about/about1.jpg');
    background-size: cover;
    background-position: center;
  
  }
  .about-heading .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-1);
    padding: 10vh 3%  ;
  }
.about-us p{
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.0;
}
.about-us h2{
    font-family: "Bricolage Grotesque", sans-serif;
    margin-bottom: 10px;
}
.about-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; 
}
.about-header{
    display:flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
.about-header img{
    width: 27px;
    padding-bottom:12px ;
}
.about-img{
    width: 450px;
}
.about-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media screen and (max-width:480px) {
    .about-img{
        width: 100%;
    }
    .about-header img{
        width: 23px;
        padding-bottom:6px ;
    }
    .about-us p{
        font-size: .8rem;
    }
    .about-us h2{
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
}