@charset "UTF-8";

/* common */
html,
body {
  font-family: "Pretendard";
  color: var(--white);
  background: #222;
}
section {
  position: relative;
}
.width-wrap {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
}

.col-white-d {
  color: var(--white-d);
}
.gotham {
  font-family: "Gotham";
}

h1,
.typing-txt ul li {
  font-size: 120px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -3.6px;
}

.under900,
.under700 {
  display: none;
}

/* box */
.box {
  position: relative;
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
}
.box:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s linear;
}
.box:hover:before {
  content: url("/img/icon_search.svg");
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.box img {
  margin-bottom: -3px;
}

/* header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
header .width-wrap {
  padding: 20px 0;
}
header .width-wrap a img {
  width: 95px;
}

/* footer */
footer .width-wrap {
  padding: 40px 0 100px 0;
}
footer .width-wrap .top-area {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
footer .width-wrap .top-area img {
  width: 119px;
}
footer .width-wrap .bottom-area {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
footer .width-wrap .bottom-area .left-zone {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 60px;
}
footer .width-wrap .bottom-area .left-zone ul {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .width-wrap .bottom-area .left-zone ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.42px;
}
footer .width-wrap .bottom-area a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.42px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  background: var(--po);
  width: fit-content;
}
footer .width-wrap .copy .top-zone {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .width-wrap .copy p {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.42px;
}
footer .width-wrap .copy img {
  width: 118px;
}

@media all and (max-width: 1380px) {
  .width-wrap {
    width: 90%;
  }
}
@media all and (max-width: 1140px) {
  h1,
  .typing-txt ul li {
    font-size: 105px;
  }
}
@media all and (max-width: 900px) {
  .under900 {
    display: block;
  }

  .box:hover:before {
    display: none;
  }

  h1,
  .typing-txt ul li {
    font-size: 90px;
  }
}
@media all and (max-width: 860px) {
  footer .width-wrap .bottom-area .left-zone {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media all and (max-width: 700px) {
  .under700 {
    display: block;
  }

  h1,
  .typing-txt ul li {
    font-size: 80px;
  }
}
@media all and (max-width: 600px) {
  footer .width-wrap .bottom-area {
    flex-direction: column-reverse;
    gap: 30px;
  }
  footer .width-wrap .bottom-area a {
    padding: 8px 16px;
  }
}
@media all and (max-width: 500px) {
  .width-wrap {
    padding: 80px 0;
  }

  h1,
  .typing-txt ul li {
    font-size: 60px;
    letter-spacing: -1.8px;
  }

  header .width-wrap a img {
    width: 73px;
  }
  footer .width-wrap .top-area img {
    width: 74px;
  }
  footer .width-wrap .bottom-area .left-zone ul li {
    font-size: 13px;
    letter-spacing: -0.39px;
  }
}
