@font-face { /* 애플산돌고딕 폰트 적용 */
    font-family: "Freesentation-4Regular";
    src: url("../fonts/Freesentation-4Regular.ttf") format("truetype");
    font-weight: normal;
  } 
#wrap * {
    font-family: 'Freesentation-4Regular';
}
header {
    padding: 20px 0;
    border-bottom: 2px solid #cccccc;
}
.header_wrap {
   max-width: 1200px;
   width: 100%;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.header_wrap img {
    height: 30px;
}
.header_wrap ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.header_wrap ul li {
    margin-right: 20px;
    border-right: 1px solid #b9b9b9;
}
.header_wrap ul li:first-child {
    padding-right: 15px;
}
.header_wrap ul li:last-child {
    border-right: 0;
}
.header_wrap ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    padding: 5px 10px;
    border-radius: 5px;
}
#wrap header ul li.selected a {
    color: #004944;
}
.header_mo  {
    display: none;
}

@media screen and (max-width: 767px) {
    .header_wrap {
        width: 90%;
    }
    .header_wrap img {
        height: 25px;
    }
    .header_wrap ul li:first-child {
        padding-right: 0px;
    }
    .header_wrap ul li {
        margin-right: 0px;
    }
}
