#courses-section{
    padding-top: 100px;
    background-color: #EEEEEE;
    width: 100vw;
}
.section-title{
    font-size: 32px;
    font-family: 'Cairo';
    font-weight: 700;
    color: #1D6758;
    width: fit-content;
    text-transform: uppercase;
}
.course-card{
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}

.courses-title{
    text-transform: capitalize;
    color: #204756;
    font-family: 'Cairo';
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
    border-bottom: 3px solid #204756;
    width: fit-content;
    padding-bottom: 5px;
}

.course-image{
    width: 270px;
    height: 270px;
    border-radius: 100%;
    margin-bottom: 10px;
    object-fit: cover;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.course-name , .course-des{
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;
    color: #1d6758;
}
.course-des{
    font-size: 20px;
    font-weight: 400;
}


.course-card-body, .course-card-footer{
    border-radius: 0px 0px 10px 10px;
}

.course-card-footer{
    border-radius: 10px;
    background: #1d6758;
}

.c-footerd{
    color: #D5CDA8;
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}
.act{
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #FFFFFF;
    text-decoration: none;
    background: #1D6758;
    border-radius: 10px;
    padding: 5px 55px;
    width: fit-content;
    display: block;
}
@media screen and (max-width: 992px) {
    .course-image{
        height: 240px;
        width: 240px;
    }
    
    .course-name{
        font-size: 24px;
    }
    .course-des{
        font-size: 18px;
    }
    
    .c-footerd{
        font-size: 17px;
    } 
    .act{
        font-size: 28px;
        padding: 8px 48px;
    }
    .section-title{
        font-size: 28px;
    }
}


@media screen and (max-width: 768px) {
    .course-image{
        height: 230px;
        width: 230px;
    }
    
    .course-name{
        font-size: 22px;
    }
    .course-des{
        font-size: 16px;
    }
    .c-footerd{
        font-size: 16px;
    }
    .act{
        font-size: 20px;
        padding: 7px 30px;
    }
    .section-title{
        font-size: 20px;
    }
}