.witness {
    padding: 0 50px 50px;
}

.witness_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: calc( 100% + 25px );
    margin: 0 -12.5px;
}

.witness_item {
    margin: 0 12.5px;
    background: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
}

.witness_item > img {
    width: 100%;
}

.witness_text {
    padding: 25px;
}

.witness_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #aaa 1px solid;
}

.witness_info .level {
    font-size: 23px;
    color: #aaa;
}

.witness_info .name {
    font-size: 20px;
    color: #333;
}

.witness_content {
    min-height: 90px;
}

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


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

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




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

    .witness {
        padding: 0 25px 25px;
    }

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

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







