.table {
    padding: 50px;
}

.course {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.items_course {
    width: calc( 100%/6 - 50px/6 );
}

.course_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.items_course:nth-child(1) .course_title {
    background: #FCA397;
}

.items_course:nth-child(2) .course_title {
    background: #FF9783;
}

.items_course:nth-child(3) .course_title {
    background: #FF8465;
}

.items_course:nth-child(4) .course_title {
    background: #F97055;
}

.items_course:nth-child(5) .course_title {
    background: #ED5B48;
}

.items_course:nth-child(6) .course_title {
    background: #E24337;
}

.course_title br {
    display: none;
}

.course_title .lan {
    padding: 5 10px;
    border-radius: 5px;
    background: #fff;
    color: #333;
}

.course_title .lan2 {
    background: #FFEA85;
}

.text_content {
    height: calc( 100% - 62.5px );
    padding: 15px;
    border-radius: 5px;
    background: #f2f2f2;
}




@media screen and (max-width: 1024px) {

    .table {
        padding: 25px;
    }

    .course {
        display: block;
    }

    .items_course {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .items_course:nth-child(2n+1) {
        flex-direction: row-reverse;
    }

    .items_course + .items_course {
        margin-top: 50px;
    }
    
    .course_title {
        position: relative;
        width: 75px;
        height: 75px;
        justify-content: center;
    }

    .course_title br {
        display: inline-block;
    }

    .course_title .lan {
        position: absolute;
        top: -15px;
        left: -15px;
        font-size: 12px;
    }

    .text_content {
        width: calc( 100% - 85px );
        height: auto;
    }
	
}

@media screen and (max-width: 979px) {
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 320px) {
}

@media screen and (max-device-width: 480px) {
}







