@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root{
    --primaryColor:#A50034;
    --middleColor:#393E46;
    --helperColor:#660B05;
    --lightHelper:#dce2f8;
    --hrColor: #A9B5DF;
    --transparentColor:rgba(0, 0, 0, 0.699);
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.may-about {
    display: flex;
    align-items: center;
    /* 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);
    align-items: center;
    justify-content: center;
    border-radius: 150px 10px 150px 10px;
    position: relative;
}
.may-about .about-img img{
    width: 90%;
    height: 100%;
    border-radius: 150px 10px 150px 10px;
    position: absolute;
    top: -4%;
}

.may-about h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.may-about h2::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 h2 {
        font-size: 40px;
    }

    .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: 90%;
        height: 300px;
        border-radius: 150px 10px 150px 10px;
    }
    .may-about h2 {
        font-size: 34px;
    }

    .may-about p {
        font-size: 20px;
    }
}