#about-hero{
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url('../image/about-hero.webp');
    background-size: cover;
    width: 100vw;
    background-repeat: no-repeat;
    background-position: center;
}

#learn-now-btn{
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #D5CDA8;
    text-decoration: none;
    background: linear-gradient(0deg, #1D6758 0%, #1D6758 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    border-radius: 10px;
    padding: 5px 55px;
    width: fit-content;
    display: block;
}

#about{
    padding-top: 40px;
}

#about-img{
    width:40%; 
    float:left;
    margin: 10px;
}

.section-title{
    font-size: 32px;
    font-family: 'Cairo';
    font-weight: 700;
    color: #FFF;
    width: fit-content;
    text-transform: uppercase;
}
.section-des{
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    color: #7C7A77;
}

@media screen and (max-width: 992px) {
    #about-img{
        width:70%;
    }
    .section-title{
        font-size: 28px;
    }
    .section-des{
        font-size: 20px;
    }
    #learn-now-btn{
        font-size: 28px;
        padding: 8px 48px;
    }
}

@media screen and (max-width: 768px) {
    #about-img{
        width:100%;
    }
    .section-title{
        font-size: 20px;
    }
    .section-des{
        font-size: 18px;
    }
    #learn-now-btn{
        font-size: 20px;
        padding: 7px 30px;
    }
}