.detail {
    padding: 50px 0;
    background: #f2f2f2;
}

.detail_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.teacher_detail {
    width: 300px;
}

.teacher_detail img {
    width: 100%;
}

.detail_slide {
    width: calc( 100% - 300px );
    padding: 50px;
    background: #fff;
    border-radius: 10px;
}

.detail_title {
    border-bottom: #f2f2f2 20px solid;
    height: 35px;
    line-height: 35px;
    font-size: 23px;
    padding: 0 15px;
    margin-bottom: 25px;
}

.detail_content {
    padding: 0 15px;
}

.detail_content p {
    line-height: 30px;
    font-size: 16px;
}

.detail_content ul li {
    position: relative;
    padding-left: 10px;
    line-height: 25px;
}

.detail_content ul li:before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 3px;
    position: absolute;
    top: 11px;
    left: 0;
    background: #4B4B63;
}

.detail_content ul li + li {
    margin-top: 25px;
}

.detail_slide .slick-prev, .detail_slide .slick-next {
    position: absolute;
    top: calc( 50% - 27.5px );
    width: 35px;
    height: 55px;
    border: 0;
    font-size: 0;
}

.detail_slide .slick-prev {
    left: -350px;
    background: url('../images/prev.svg') center no-repeat;
    background-size: contain;
}

.detail_slide .slick-next {
    right: -50px;
    background: url('../images/next.svg') center no-repeat;
    background-size: contain;
}

.detail_button {
    width: 100%;
    text-align: center;
    padding: 25px 0 0 300px;
}

.goto_send {
    position: relative;
    top: 0;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff;
    background: #4B4B63;
    cursor: pointer;
    transition: .3s;
}

.goto_send:hover {
    top: -5px;
}



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

	.detail_area {
        flex-direction: column;
    }
    
    .teacher_detail {
        width: 100%;
        text-align: center;
    }

    .teacher_detail img {
        width: 200px;
        margin-left: 25px;
    }
    
    .detail_slide {
        width: 100%;
        padding: 15px;
    }

    .detail_slide .slick-prev, .detail_slide .slick-next {
        position: absolute;
        top: calc( 50% - 27.5px );
        width: 15px;
        height: 55px;
        border: 0;
        font-size: 0;
    }
    
    .detail_slide .slick-prev {
        left: -10px;
        background: url('../images/prev.svg') center no-repeat;
        background-size: contain;
    }
    
    .detail_slide .slick-next {
        right: -10px;
        background: url('../images/next.svg') center no-repeat;
        background-size: contain;
    }

    .detail_title {
        font-size: 16px;
        font-weight: 900;
    }

    .detail_button {
        width: 100%;
        text-align: center;
        padding: 25px 0 0;
    }
    

}

@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) {
}







