@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

#header {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", arial, sans-serif;
  font-size: 62.5%;
  box-sizing: border-box;
  color: var(--text-color-1);
}

#header *,
#header *:before,
#header *:after {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
  color: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#header a {
  text-decoration: none;
  padding-bottom: 8px;
}

#header .container {
  width: 1200px;
  padding: 0px 10px;
  margin: 0px auto;
}

#header section:first-child {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header section:last-child {
  height: 70px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header section .logo {
  font-size: 10px;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

#header section .logo > img {
  height: 27px;
}

#header section .member {
  font-size: 14px;
  color: #000000;
  display: flex;
  gap: 20px;
}

#header section .list {
  height: 60px;
  font-size: 20px;
  font-weight: 400;
  padding-top: 3px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

#header section .list > a.is-active {
  display: block;
  font-weight: 600;
}

#header section .type {
  font-size: 13px;
  display: flex;
  gap: 20px;
}

#header section .type > a {
  width: 70px;
  height: 70px;
  background-size: 100%;
}

#header section .type > a:nth-child(1) {
  background-image: url(../../images/header/icon/air.svg);
}

#header section .type > a:nth-child(2) {
  background-image: url(../../images/header/icon/hotel.svg);
}

#header section .type > a:nth-child(3) {
  background-image: url(../../images/header/icon/rentercar.svg);
}

#header section .type > a:nth-child(4) {
  background-image: url(../../images/header/icon/request.svg);
}

#header section .type > a:nth-child(5) {
  background-image: url(../../images/header/icon/approval.svg);
}

#header section .type > a:nth-child(1).is-active {
  background-image: url(../../images/header/icon/air_active.svg);
}

#header section .type > a:nth-child(2).is-active {
  background-image: url(../../images/header/icon/hotel_active.svg);
}

#header section .type > a:nth-child(3).is-active {
  background-image: url(../../images/header/icon/rentercar_active.svg);
}

#header section .type > a:nth-child(4).is-active {
  background-image: url(../../images/header/icon/request_active.svg);
}

#header section .type > a:nth-child(5).is-active {
  background-image: url(../../images/header/icon/approval_active.svg);
}
