/* 네비게이션 */
.navigation_list li:last-child{
    margin-left:10px;;
}

/* 컨텐츠 영역 */
.contents{
    margin-top:100px;
    display:flex;
    justify-content: space-between;
    padding:0px 80px;
    box-sizing:border-box;
    margin-bottom:150px;
    flex-wrap:wrap;
}

.con_title{
    position:relative;
    text-align:center;
    font-size:30px;
    font-weight:700;
    margin-bottom:80px;
    width:100%;
}

.con_title p{
    background:#fff;
    position:relative;
    z-index:10;
    display:inline;
    padding:10px 30px;
}

.con_title_line{
    width:100%;
    height:2px;
    background:#dbdbdb;
    position:absolute;
    top:49%;
    z-index:1
}

.ceo_photo{
    width:35%;
}

.ceo_photo img{
    width:100%;
}

.ceo_photo p{
    text-align:right;
    margin-top:20px;
    font-weight:600;
}

.ceo_photo span{
    font-size:26px;
    font-weight:700;
    letter-spacing:1px;
    margin-left:5px;
}

.ceo_contents{
    width:60%;
}

.con_hello{
    position:relative;
}

.con_hello p{
    word-break: keep-all;
}

.ceo_sign{
    position:absolute;
    right:0;
    bottom:-60px;
}

.ceo_name{
    display:none;;
}




@media all and (min-width:1024px) {
    
} 
  
/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/ 
@media all and (min-width:768px) and (max-width:1023px) {
    .contents{margin-top:80px;  padding:0px}
    .con_title{margin-bottom:50px; font-size:24px;}
    .ceo_photo p{margin-top:10px;}
}


/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
    .navigation_list li:last-child{width:80px; margin-left:0px;}
    .contents{margin-top:50px; width:90%;  padding:0px}
    .con_title{margin-bottom:30px; font-size:20px;}
    .ceo_photo{display:none;;}
    .ceo_contents{ width:100%;}
    .ceo_name{display:block; text-align:right; font-weight:600; margin-top:20px;;}
    .ceo_name span{ font-size:24px; font-weight:700; letter-spacing:1px; margin-left:5px;;}
    .ceo_sign{bottom:-60px;}
}