.course_details{
    width: 100vw;
    padding-top: 100px;
    padding-bottom: 30px;
}


.course_image{
    height: 350px !important;
    border-radius: 10px;
    margin-right: 20px;
    object-fit: cover;
    float: left;
    filter: drop-shadow(5px 6px 7px rgba(0, 0, 0, 0.25));
}

.section-title{
    font-size: 32px;
    font-family: 'Cairo';
    font-weight: 700;
    color: #1D6758;
    width: fit-content;
    text-transform: uppercase;
}

.text-content{
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}
.act{
    padding:5px 55px;
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    background: #1D6758;
    border-radius: 10px;
    text-decoration: none;
    width: 90%;
}
@media screen and (max-width: 992px) {    
    .section-title{
        font-size: 28px;
    }
    
    .text-content{
        font-size: 18px;
    }
    .act{
        font-size: 28px;
        padding: 8px 48px;
    }
}

@media screen and (max-width: 768px) {
    .course_image{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .section-title{
        font-size: 20px;
    }
    
    .text-content{
        font-size: 16px;
    }
    .act{
        font-size: 20px;
        padding: 7px 30px;
    }
}