header {
  top: 20px;
  position: fixed;
  width: 100%;
  z-index: 4;
  /*! animation-name: down; */
  /*! animation-duration: 1s; */
  /*! animation-iteration-count: 1; */
  transition: all .5s;
}
@keyframes down{
  0%{
    transform: translateY(-20px);
    opacity: 0;
  }
  100%{
    transform: translateY(0);
    opacity: 1;
  }
}
.fixed .wrap {
  max-width: 100%;
}
header .wrap {
  background-color: white;
  box-sizing: border-box;
  padding: 0px 50px;
  max-width: 1600px;
  font-weight: bold;
  position: relative;
  /*! animation-name: wide; */
  /*! animation-duration: 1s; */
  /*! animation-iteration-count: 1; */
  /*! animation-delay: 1s; */
  /*! animation-fill-mode: forwards; */
  transition: all .5s;
}
@keyframes wide{
  100%{
    width: 100%;
  }
}
header .wrap nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .wrap nav h1 {
  font-weight: 400;
  z-index: 10000;
}
header .wrap nav h1 a {
  display: flex;
  font-size: 15px;
  align-items: end;
  color: #17A0D6;
  gap: 7px;
  font-weight: bold;
}
header .wrap nav h1 a span {
  background-image: url(../img/logo.png);
  width: 32px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}
header .wrap nav .gnb {
}
header .wrap nav .gnb li {
}
header .wrap nav .gnb li:nth-child(3) a {
  width: 100px;
}
header .wrap nav .gnb li a {
  padding: 0 20px;
  line-height: 5.6;
  display: block;
  font-weight: 500;
  width: 80px;
  text-align: center;
  font-size: 18px;
}
header .wrap nav .gnb li a:hover{
  color: #119AD6;
}
header .wrap nav > div:nth-of-type(1) {
  align-items: center;
  gap: 20px;
  font-size: 13px;
}
header .wrap nav div.flex .lang {
  font-family: 'Titillium Web', sans-serif;
}
header .wrap nav div.flex .lang li {  
}
header .wrap nav div.flex .lang li a {  
  padding: 0 10px;
  display: block;
  position: relative;
  font-size: 13px;
}
header .wrap nav div.flex .lang li a:hover{
  color: skyblue;
}
header .wrap nav div.flex .lang li:nth-child(1) a::after,header .wrap nav div.flex .lang li:nth-child(2) a::after{
 content: "";
 border-right: 1px solid #ccc;
 height: 8px;
 display: inline-block;
 position: absolute;
 right: 0;
 top: calc(50% - 3px);
}
header .wrap nav div.flex .search {
  
}
header .wrap nav div.flex .search button {
  background-image: url(../img/search.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
header .search_popup {
display: none;
  max-width: 100%;
  padding-left: 90px;
  padding-right: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
  z-index: 9999;
}
header .search_popup .search_inner {
  max-width: 100%;
  height: 100%;
  padding: 0 125px 0 250px;
  position: relative;
}
header .search_popup .search_inner a.search_close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 45px;
  right: 35px;
  opacity: 1;
  -webkit-transition: top 300ms;
  transition: top 300ms;
  font-size: 0;
  background-image: url(../img/b-close.png);
  background-size: contain;
}
header .search_popup .search_inner .search_form {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 59px 0 49px 0;
  position: relative;
  -webkit-transition: padding 300ms;
  transition: padding 300ms;
}
header .search_popup .search_inner .search_form p {
  
  display: block;
  padding-bottom: 18px;
  font-size: 16px;
  color: #666;
  -webkit-transition: padding 300ms;
  transition: padding 300ms;
}
header .search_popup .search_inner .search_form .search_input  {
  
  width: 100%;
  height: 80px;
  position: relative;
}
header .search_popup .search_inner .search_form .search_input input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 50px 0 0;
  position: relative;
  border: none;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  background: transparent;
  outline: none;
  border-bottom: 4px solid #ddd;
  font-size: 34px;
  font-weight: lighter;
  line-height: 1;
  box-sizing: border-box;
}
header .search_popup .search_inner .search_form .search_input .search_btn {
  height: 100%;
  width: 32px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/popup_search.svg);
  border: none;
  cursor: pointer;
  font-size: 0;
}
.mo_menu {
  display: none;
}
.mo_menu_sub {
  display: none;
}
.mo_menu_bt {
  display: none;    
}


/* 공통클래스 */
.focus {
  color: #1c9ad6;
}
.fixed {
  position: fixed !important;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
  padding: 0;
}
.menuslide {
  top: -75px !important;
  opacity: 0;
  visibility: hidden;
}