.courses{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.courses_inner{
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    gap: 30px;
    justify-content: space-around;
}
.courses_title{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'alabama';
}
.course_card{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    border: 2px solid #ffa500ab;
    border-radius: 20px;
    margin: 5px;
    padding: 20px;
    overflow: hidden;
  
}

.course_card_bottom{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 250px;
}
.course_card_title{
    width: 100%;
    font-family: 'boozy';
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
}
.course_card_img{
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 20px 20px 0;
}
@media (max-width: 768px) {
    .course_card_img{
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        margin: 0 0 20px 0;
    }
}
.course_card_text{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: 100%;
    color: #000000b5;
    border-radius: 20px;
}