.about-container-wrapper{
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
 
}

.about-container{
     max-width: 1200px;
        padding: 4rem;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.heading-about{
    font-size: 40px;
    line-height: 15px;
    font-weight: 700;
    color: #372315;
    font-family: "Montserrat", sans-serif;


}

.about-text-sprouting{
    color: #F97A1F;
}

 .about-background {
  height: 4px;
  width: 80px;
  align-self: center;
  margin-top: 16px;
  background-color: #f97a1f;
  border-radius: 9999px;
}

.about-text{
    font-size: 17px;
    line-height: 25px;
    text-align: center;
    color: #8F6E56;
   font-family: "Inter", sans-serif;
}

.about-container-2{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,2fr);
    margin-top: 2rem;
    gap: 1rem;
}
.about-box{
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    border: 1px solid #EDE2D4;
    border-radius: 16px;
}

.underbox-about-icon{
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
     justify-content: center;
    align-items: center;
    border-radius: 12rem;
    background-color: #F97A1F1A;
}
.underbox-about-icon img{
    height: 2rem;
    width: 2rem;
}

.underbox-about-heading{
    font-size: 18px;
    color: #372315;
    font-weight: 700;

}

.underbox-about-text{
    color: #8F6E56;
    font-size: 15px;
    text-align: center;
      font-family: "Inter", sans-serif;
}

@media(max-width: 1200px){
    .about-container{
        padding: 2rem;
    }
}

@media(max-width: 900px){
    .about-container{
        padding: 1rem;
    }
}

@media (max-width:700px){
    .heading-about{
        font-size: 30px;
    }
    .about-container-2{
        grid-template-columns: repeat(1, 1fr);
    }
}