header {
}
header .wrap {
  position: relative;
  background-color: white;
  max-width: 100%;
}
header .wrap nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
header .wrap nav h1 {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
header .wrap nav h1::before {
  content: "";
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
}
header .wrap nav h1 a {
  height: 100%;
  display: block;
  color: #012C81;
  line-height: 3;
  font-weight: bold;
}
header .wrap nav h1 a::before {
  content: "";
  width: 30px;
  height: 100%;
  display: block;
}
header .wrap nav .nb {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  height: 100px;
}
header .wrap nav .nb .gnb {
  width: 70%;
  height: 100%;
}
header .wrap nav .nb .gnb li a {
  padding: 0 50px;
  display: block;
  line-height: 100px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
header .wrap nav .nb .gnb li:first-child a {
  padding-left: 0;
}
header .wrap nav .nb .gnb li a span:hover{
  border-bottom: 3px solid #2f90ff;
}

/* 기타메뉴 */
header .wrap nav .enb {
  width: 30%;
  justify-content: end;
  height: 100%;
  font-size: 10px;
  align-items: center;
}
header .wrap nav .enb li a {  
  padding: 0 10px;
  display: block;
  position: relative;
  color: #777;
}
header .wrap nav .enb li a.rec {
  color: #2f90ff;
}
header .wrap nav .enb li:nth-child(1) a::after,header .wrap nav .enb 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 .ham {
  display: none;
}
