
.about-desc {
    padding: 20px 0 30px;
}
.about-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.about-row:last-child {
    margin-bottom: 0;
}
.about-row .about-content {
    width: 50%;
}
.about-row .about-img {
    width: 50%;
}
.about-inner-img {
    position: relative;
    padding-bottom: 90.647%;
}

.about-inner-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@media only screen and (max-width: 991px){
    .about-row {
        flex-direction: column-reverse;
    }
    .about-row .about-content,
    .about-row .about-img {
        width: 100%;
    }
    
}

