.about-section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 100px;
    align-items: center;
}
.about-container{
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    /* height: 60vh; */
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.about-txt{
    width: 60%;
    text-align: justify;
}
.about-head{
    font-weight: bolder;
}
.about-desc{
    margin-top: 15px;
}

.about-img{
    border-radius: 12px;
    padding: 5px;
    background-color: grey;
    object-fit: contain;
}
.about-img img{
    border-radius: 12px;
}
@media (max-width: 720px){
    .about-container{
    flex-direction: column;
    width: 95%;
}
.about-txt{
    width: 90%;
}
.about-section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    padding-top: 10px;
    align-items: center;
}
.about-img{
    width: 80%;
    margin-top: 10px;
}
}
.message-container{
    width: 100%;
    /* height: 80vh; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
    margin-bottom: 10px;
}
.message-box{
    width: 50%;    
}
.message-text{
    margin-top: 20px;
    text-align: justify;
}
.person-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    border: 5px solid #0d6efd;
    border-radius: 12px;
}
@media (max-width: 720px){
    .message-container{
        flex-direction: column;
    }
    .message-box{
        width: 70%;
    }
    .person-image{
        width: 70%;
    }
    
}