/*header*/
.header {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 999999;
  display: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.37);
}
.header .inner {
  width: 100%;
}
.header .inner .logo {
  padding-top: 1rem;
  padding-left: 5%;
  width: 40%;
}
.header .inner .logo a {
  cursor: pointer;
}
.header .inner nav {
  width: 150px;
  height: 100%;
  background: #0282c2;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 999;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.18);
  display: none;
}
#gnb {
  position: absolute;
  top: 100px;
  right: 10%;
  width: 90%;
}
#gnb li {
  margin: 0px 0 1.5rem;
  text-align: right;
  font-weight: 400;
}
#gnb li:nth-of-type(1)::after {
  display: none;
}
#gnb li:nth-of-type(5) {
  margin-right: 0rem;
}
#gnb li a img {
  margin-top: -0.5rem;
  margin-right: 0rem;
}

#gnb li a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2em;
  transition: 0.3s;
  cursor: pointer;
  color: #362916;
  font-weight: bold;
}
#gnb li a:hover {
  color: #fcf7a2;
}
#gnb li a.number,
#gnb li a.number:hover {
  color: #fcf7a2;
}
.header .inner .toggle {
  display: block;
  position: absolute;
  top: 16px;
  right: 5%;
  z-index: 9999999;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.5s;
}
.header .inner .toggle i {
  color: white;
}

@media screen and (min-width: 1200px) {
  .header {
    width: 100%;
    height: 100px;
    top: 0px;
    position: fixed;
    z-index: 999;
    display: none;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.37);
  }
  .header .inner {
    width: auto;
    padding: 0 8rem;
    position: relative;
  }
  .header .inner .logo {
    position: absolute;
    left: 2%;
    margin-top: 2.5rem;
    padding: 0;
  }
  .header .inner .logo a {
    display: block;
    width: auto;
  }
  .header .inner nav {
    right: 0px;
    top: 10px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.21);
  }
  #gnb {
    width: auto;
    overflow: hidden;
    position: absolute;
    right: 80px;
    padding-top: 0rem;
    top: 30px;
    color: white;
  }
  #gnb li {
    margin: 0px 2rem;
    text-align: left;
    float: left;
    color: white;
    width: auto;
    font-size: 2rem;
  }

  #gnb li:nth-of-type(5) {
    margin: 0 2rem;
    margin-top: ;
  }
  #gnb li:nth-of-type(6) {
  }

  .header .inner .toggle {
    display: none;
  }

  #gnb li a:hover {
    cursor: pointer;
    color: #ffeb7d;
  }
  #gnb li a {
    transition: 0.5s;
  }
  .header .inner .toggle {
    display: none;
  }
  #gnb li a img {
    margin-top: 0px;
    margin-right: 0rem;
  }

  #gnb li:nth-of-type(6) a {
    font-size: 2.4rem;
    margin-top: -0.3rem;
  }
}
