.about-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    flex-basis: 50%;
    object-fit: cover;
    max-width: 45%;
    max-height: 40vh;
    margin-bottom: 2rem;
}

.about-para {
    flex-basis: 50%;
    font-family: "Santral";
    margin: 0;
    text-align: justify;
}

@media only screen and (max-width: 992px) {
    .about-image {
        width: 100%;
    }

    .about-para {
        text-align: justify;
    }

    .about-row {
        margin-top: 2rem;
        flex-direction: column;
    }

    .about-hidden-image {
        display: none;
    }
}