.may-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    padding: 50px 20px;
    gap: 20px;
}

.may-about .about-overlay {
    max-width: 50%;
    text-align: start;
    line-height: 1.6;
    padding: 0 80px;
}

.may-about .about-img {
    width: 50%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.may-about .about-img div {
    width: 70%;
    height: 400px;
    display: flex;
    background-color: var(--helperColor);
    background-image: url("../img/aboutUS-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    align-items: center;
    justify-content: center;
    position: relative;
}

.may-about .about-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15%;
    left: -10%;
}

.may-about h1 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.may-about h2 {
    font-size: 30px;

    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.may-about h2::after,
.may-about h1::after,
.may-about h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    height: 3px;
    background: var(--primaryColor);
    border-radius: 2px;
}

.may-about p {
    font-size: 22px;
    margin-bottom: 20px;
}



/* -------- Responsive -------- */
@media (max-width: 992px) {
    .may-about {
        flex-direction: column;
        text-align: center;
    }

    .may-about .about-overlay {
        padding: 0 20px;
        max-width: 100%;
    }

    .may-about .about-img {
        width: 100%;
    }

    /* .may-about .about-img div {
        width: 75%;
        border-radius: 150px 10px 150px 10px;
    }

    .may-about .about-img img {
        border-radius: 150px 10px 150px 10px;
    } */


    .may-about p {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .may-about {
        padding: 30px 10px;
        gap: 0;
    }

    .may-about .about-img {
        width: 100%;
        height: 340px;
    }

    .may-about .about-img div {
        width: 100%;
        height: 300px;
        /* border-radius: 150px 10px 150px 10px; */
    }

    .may-about .about-img div img {
        width: 100%;
        height: 300px;
        /* border-radius: 150px 10px 150px 10px; */
    }


    .may-about p {
        font-size: 20px;
    }
}