.course {
    padding-bottom: 200px;
    background: url('../images/BG_course_bottom.svg') center bottom no-repeat;
    background-size: 100% auto;
}

.course_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_section + .course_section {
    margin-top: 75px;
}

.course_section > * + * {
    margin-top: 25px;
}

.course_title {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 15px;
    color: white;
    background-color: var(--deepBlue);
}

.course_table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.course_table_row {
    display: flex;
    flex-direction: row;
}

.course_table_row + .course_table_row {
    margin-top: 15px;
}

.course_table_cell {
    flex: 1;
    text-align: center;
    border-radius: 15px;
    background: #f2f2f2;
    overflow: hidden;
}

.course_table_cell .date {
    padding: 15px;
    color: white;
    background: var(--deepBlue);
}

.course_table_cell .course_content {
    padding: 15px;
}

.course_table_cell .course_content .title {
    font-weight: 700;
    font-size: 18px;
    color: var(--deepBlue);
}

.course_table_cell + .course_table_cell {
    margin-left: 15px;
}

.course_section .time {
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    background-color: #f2f2f2;
}



@media screen and (max-width: 1023px) {

    .course {
        padding-bottom: 75px;
    }

    .course_section + .course_section {
        margin-top: 50px;
    }
    
    .course_section > * + * {
        margin-top: 15px;
    }

    .course_table_row {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .course_table_row + .course_table_row {
        margin-top: 0;
    }
    
    .course_table_cell {
        flex: none;
        width: calc( 50% - 7.5px);
        margin-bottom: 15px;
    }

    .course_table_cell + .course_table_cell {
        margin-left: 0;
    }
   
}