.section_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.section_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc( 100%/3 - 30px/3 );
}

.section_list li:nth-child( n + 4 ) {
    margin-top: 15px;
}

.section_list .card h3 + p {
    width: 100%;
    padding-top: 5px;
    margin-top: 5px;
    text-align: center;
    border-top: 2px solid var(--blue);
}





.level_list h3 {
    color: var(--blue);
}

.level .section_img {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}





.exam_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px;
}

.exam_list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc( 100%/3 - 20px/3 );
    padding: 10px 25px;
    margin-top: 10px;
    line-height: 35px;
    border-radius: 15px;
    color: var(--blue);
    background: var(--yellow);
}

.exam_list li .head {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid white;
}





.check_list h3 {
    margin-bottom: 0 !important;
    padding-left: 35px;
    background: url('../images/check.svg') center left no-repeat;
    background-size: 27.5px auto;
}





.point_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 0 25px;
    width: 100%;
}

.point_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc( 100%/3 - 30px/3 );
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    background: var(--blue);
}

.point_list li:nth-child( n + 4 ) {
    margin-top: 25px;
}



.award_area {
    display: flex;
    flex-direction: column;
    margin: 6px;
}

.award_title {
    width: 100%;
    line-height: 100px;
    margin-bottom: 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: var(--blue);
}

.award_area p {
    font-size: 18px;
    line-height: 30px;
}





.step_list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 0;
}

.step_list li + li {
    border-top: 2px solid var(--red);
}

.step_text {
    width: calc( 200%/3 - 50px );
}

.step_text h3 {
    margin: 5px 0 10px;
}

.step_number {
    font-size: 26px;
    font-weight: 700;
    color: var(--red);
}

.step_img, .step_video {
    width: calc( 100%/3 );
    border-radius: 15px;
    overflow: hidden;
}

.step_img img, .step_video iframe {
    width: 100%;
}





.teacher_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}

.teacher_list li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.teacher_list li + li {
    margin-top: 25px;
}

.teacher_list li img {
    width: 125px;
    margin-right: 25px;
}

.teacher_list_text {
    width: 250px;
}




.witness_list li {
    border-radius: 0;
}

.witness_list li + li {
    border-top: 2px solid var(--red);
}

.witness_list img {
    width: 100%;
}





.team_list {
    padding: 50px;
    border-radius: 15px;
    background: var(--yellow);
}


.team_list li + li {
    margin-top: 25px;
}

.team_list li * {
    padding-left: 25px;
}

.team_title {
    font-size: 20px;
    font-weight: 900;
    border-left: var(--red) 5px solid;
    margin-bottom: 10px;
}



@media screen and (max-width: 1024px) {

    .section_list li {
        width: calc( 50% - 15px/2 );
    }
    
    .section_list li:nth-child( n + 3 ) {
        margin-top: 15px;
    }

    .exam_list {
        padding: 0;
        margin-top: 15px;
    }
    
    .exam_list li {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding: 5px 10px;
        margin-top: 5px;
        line-height: 25px;
        font-size: 14px;
        color: var(--gray);
        background: transparent;
    }
    
    .exam_list li .head {
        width: 120px;
        height: 35px;
        margin-right: 15px;
        line-height: 35px;
        border-radius: 35px;
        font-size: 14px;
        border-bottom: 0;
        color: white;
        background: var(--red);
    }
    


    .check_list h3 {
        padding-left: 15px;
        background-size: 13px auto;
    }

    .point_list {
        margin: 15px auto;
    }

    .point_list li {
        font-size: 12px;
        border: var(--red-border) 5px solid;
    }

    .point_list li:nth-child( n + 4 ) {
        margin-top: 10px;
    }

    
    .award_title {
        line-height: 35px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .award_area p {
        font-size: 14px;
        line-height: 20px;
    }
    

    

    .step_list {
        margin-top: 15px;
    }

    .step_list li {
        flex-direction: column;
    }

    .step_text {
        margin-bottom: 15px;
        text-align: center;
    }

    .step_text, .step_img, .step_video {
        width: 100%;
    }

    .teacher_list {
        margin: 15px 0;
    }

    .teacher_list li + li {
        margin-top: 10px;
    }

    .teacher_list li img {
        width: 75px;
        margin-right: 15px;
    }

    .teacher_list_text {
        width: 150px;
    }

    .witness_list {
        margin: 15px 0;
    }

    .team_list {
        padding: 25px;
    }

    .team_title {
        font-size: 16px;
    }

}