/*menu*/
.nav_list > li:nth-child(4){
    font-weight: bold;
}

.nav_list > li:nth-child(4):after{
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background: #3F4462;
}
/*menu*/

.list_container{
    position: sticky;
    min-width: 1200px;
    top: 116px;
    z-index: 99;
    background-color: white;
}

.main_container{
    width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.lines{
    margin-top: 5px;
    height: 1px;
    min-width: 1200px;
    background-color: rgb(247, 247, 247);
    box-shadow:  0 1px 4px 0 rgba(204,204,204,0.6);
}

/*list box*/
.txt_title{
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5px;
}


.item_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5 0;
}

.item{
    width: 170px;
    font-size: 0.9rem;
    background-color: #FFF4F2;
    border-radius: 10px;
    text-align: center;
    color: rgb(81, 81, 81);
    padding: 5 10;
    margin: 5px 10px;
    transition: all 0.2s;
}


.item.active{
    background-color: #3F4462;
    color: white;
    font-size: 1.02rem;
    box-shadow: 2px 2px 10px rgb(177, 177, 177);
}

.item:hover{
    background-color: #3F4462;
    color: white;
    box-shadow: 2px 2px 10px rgb(177, 177, 177);
}

/* procedure box */

.procedure_list{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 40px 0;
}

.procedure_item{
    width: 276px;
    height: 400px;
    border: 1px solid rgb(234, 234, 234);
    margin: 10px 12px 50px 12px;
    position: relative;
    overflow: hidden;
}

.procedure_item > img{
    transition: all 0.2s linear;
    width: 280px;
}

.procedure_item:hover{
    box-shadow: 3px 3px 15px #cecece
}

.procedure_item:hover > img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.procedure_item > video{
    width: 280px;
    height: 156px;
    margin-left: -3px;
}

.border_bottom{
    border-bottom: 1px solid #ebe9e9;
}

.procedure_txt{
    padding: 0 20px;
}

.title{
    letter-spacing: -0.5;
    font-size: 1.3rem;
    font-weight: 550;
} 

.descr{
    font-size: 0.9rem;
    font-weight: 300;
    color:rgb(81, 81, 81);
    line-height: 160%;
}

.price{
    font-size: 1.45rem;
    font-weight: 700;
    position: absolute;
    bottom: 10;
    right: 20;
} 

.price::after{
    content:'원 부터~';
    font-size: 0.9rem;
    font-weight: 300;
    margin-left: 5px;
}