body{
  
}
header {
  padding: 0 !important;
  height: 100px;
  display: flex;
  /*! align-items: center; */
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  top: 0;
  /*! background-color: #eee; */
  z-index: 2;
  animation-name: headerS;
  animation-duration: 0.5s;
  animation-direction: reverse;
  animation-timing-function: ease-in;
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;  /*애니메이션의 마직막상태값을 그대로 유지*/
}
@keyframes headerS{
  0%{
    opacity: 1;
    transform: translateY(0);
  }
  100%{
    opacity: 0;
    transform: translateY(-100%);
  }
}
header div.wrap {
  
  width: 1080px;
  align-items: center;
}
header div.wrap h1 {
  
}
header div.wrap h1 a {

  font-size: 0;
  width: 165px;
  height: 20px;
  display: block;
  background-image: url(../img/logo.png);
}
header div.wrap h1 a::after{
  
}
header div.wrap ul.gnb {
  
  transform: translateX(-100%);
  height: 100%;
}
header div.wrap ul.gnb li {
  
}
header div.wrap ul.gnb li a {
  
  padding: 0px 20px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}
header div.wrap ul.gnb li a:hover {

  color: #009aff;
  border-bottom: 1px solid;
}
header div.wrap .sublist{

  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  padding: 40px 0 70px;
  background-color: #eee;
  display: grid;
  grid-template-columns: calc((100% - 1080px) / 2) 320px auto;
  /*! display: none; */
  display: grid;
}
header div.wrap .sublist h2 {

}
header div.wrap .sublist ul {
  grid-column: 3;
}
header div.wrap .sublist ul li {

}
header div.wrap .sublist ul li a {
  
  line-height: 1.7;
  display: block;
}
header .wrap ul.lang {
  
  gap: 15px;
}
header .wrap ul.lang li {
  
}
header .wrap ul.lang li a { 
  padding: 10px 0;
}
header .wrap ul.lang li:nth-child(1) {  
}
header .wrap ul.lang li:nth-child(1) a {  
}
header div.wrap ul.lang li:nth-child(3) a{
  padding: 0;
  font-size: 0;
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/customcenter.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*! text-align: center; */
}
header div.wrap ul.lang li:nth-child(3) a::after{
  content: "고객센터";
  
  font-size: 12px;
  display: block;
  width: max-content;
  margin-top: 28px;
  background-color: #f1f1f1;
  padding: 5px;
  border-radius: 3px;
  display: none;
}
header div.wrap ul.lang li:nth-child(3) a:hover::after{
  display: initial;
  animation-name: fade; /*애니메이션 이름*/
  animation-duration: 1s; /*에이메이션 시간(초) */
}
@keyframes fade{ /*fade 이름의 애니메이션 설정 */
  0%{ /*처음*/
   opacity: 0; /*투명도*/
   transform: translateY(30%);
  }
  100%{ /*마지막*/
   opacity: 1;
   transform: translateY(0%);
  }
}
/* .show{
  display: grid !important;
} */