.course_section__box-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.course_section__box {
    margin-bottom: 25px;
}

.course_section__box-content {
    padding: 1rem;
    background-color: var(--white-smoke);
}

.course_section__box-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
}

.course_section__box-content p {
    font-style: italic;
    text-transform: capitalize;
    font-size: 17px;
    color: #666;
}

.course_book button {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: none;
    outline: none;
    background-color: var(--main-color);
    text-transform: capitalize;
}

@media(max-width:992px) {
    .course_section__box-img img {
        height: 205px;
    }
}

@media(max-width:768px) {
    .course_section__box-content h3 {
        font-size: 18px;
    }

    .course_book button {
        font-size: 16px;
    }

    .course_section__box-img img {
        height: 300px;
    }
}