@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  word-break: keep-all;
}

header {
  padding: 55px 0 10px;
}

#header .hd-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header #logo img {
  width: 143px;
}

#header #main-menu {
}

#header #main-menu > ul {
  gap: 0 50px;
}

#header #main-menu > ul > li > a {
  font-size: 1.8rem;
  color: #000;
}

#header #main-menu > ul > li.hd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0 15px;
}

#header #main-menu > ul > li button {
  width: 46px;
  height: 23px;
  font-size: 1.6rem;
  font-weight: 300;
  background-color: #fff;
  border: 1px solid #000;
}

#footer {
  margin-top: 200px;
  margin-bottom: 50px;
}

#footer .hexagon {
  width: 100px;
  height: 55px;
  background: transparent;
  position: relative;
}

#footer .footer-wrap ul {
  justify-content: center;
}

#footer .footer-wrap ul li {
  font-size: 1.8rem;
  font-weight: 300;
}

#footer .footer-wrap ul li:nth-child(2):after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 1px;
  background-color: #777;
  margin: 0 20px;
}

.hexagon:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid transparent;
}
.hexagon:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 25px solid transparent;
}

@media (min-width: 1201px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 10px 0 40px;
  }

  #header #logo img {
    width: 100px;
  }

  #header #main-menu {
    display: none;
  }

  #header .hd-wrap {
    justify-content: flex-end;
  }

  #footer .footer-wrap ul li:nth-child(2):after {
    display: none;
  }

  #footer .ft-btn {
    display: inline-flex;
    align-items: center;
    gap: 0 15px;
  }

  #footer .ft-btn button {
    width: 36px;
    height: 20px;
    font-size: 1.4rem;
    font-weight: 300;
    background-color: #fff;
    border: 1px solid #000;
  }
}
