.about_img,
.about_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.about_img img {
    width: 100%;
    height: 550px;
    border: 1px solid #000;
    object-fit: cover;
    object-position: top;
}

.about_content h3 {
    font-size: 20px;
    font-weight: 700;
}

.about_content p {
    margin-top: 1rem;
    font-size: 15px;
    line-height: 24px;
}
.vision_wrapper{
    padding-bottom: 80px;
}

@media(max-width:768px){
    .about_flex{
        flex-direction: column-reverse;
    }
    .about_img img{
        height: 350px;
    }
    .about_content{
        margin-top: 1rem;
    }
    .vision_wrapper{
        padding-bottom: 50px;
    }
    .about_content p{
        margin-top: 6px;
        font-size: 14px;
    }
}