.about{
    padding: 50px;
    display: flex;
    /* margin-top: -50px; */
    align-items: center;
    gap: 60px;
    min-height: 78vh;
    background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}

.about .left{
    border-radius: 10px 10px 0 0;
}

.about .left img{
    width: 340px;
}

.about .right h5{
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: underline;
}
.about .right h3{
    color: rgb(2, 83, 56);
    font-size: 24px;
    text-decoration: underline;
}

.about .right p{
    font-size: 22px;
    margin-top: 20px;
    text-align: justify;
    line-height: 1.8rem;
}

@media screen and (max-width: 1200px) {
    .about .left img{
        width: 300px;
    }
    .about .right h3{
        font-size: 32px;
    }
    .about .right p{
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .about{
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        margin-top: -70px;
        min-height: 87vh;
    }
    .about .left img{
        width: 140px;
    }
    .about .right h3{
        font-size: 22px;
    }

    .about .right h5{
        font-size: 24px;
    }

    .about .right p{
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .about{
        padding: 45px 22px;
        margin-top: -300px;
        max-height: 90%;
    }
    .about .left img{
        display: none;
    }
    .about .right h3{
        font-size: 20px;
        text-decoration: none;
    }

    .about .right h5{
        font-size: 22px;
        text-decoration: none;
    }

    .about .right p{
        font-size: 18px;
        margin-top: 10px;
        line-height: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .about{
        padding: 5px;
        gap: 10px;
        margin-top: -200px;
        min-height: 90vh;
    }

    .about .left img{
        display: none;
    }

    .about .right h3{
        font-size: 18px;
        margin-top: 10px;
        text-decoration: none;
    }

    .about .right h5{
        font-size: 20px;
        text-decoration: none;
        margin-top: 70px;
    }

    .about .right p{
        font-size: 16px;
        margin-top: 10px;
        line-height: 1.2rem;
    }
}