@charset "UTF-8";
.top_btn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  padding: 20px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background-color: #014EFE;
  color: white;
  font-weight: 700;
  transition: 0.3s;
  opacity: 0.6;
  z-index: 9999;
  width: 70px;
  height: 70px;
}

.top_btn:hover {
  transition: 0.3s;
  opacity: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background-color: white;
}
header > .navbar_main {
  width: 100%;
  max-width: 1630px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #000;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}

.navbar_links {
  width: auto;
  display: flex;
  align-items: center;
  gap: 68px;
}
.navbar_links a {
  text-decoration: none;
  color: black;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
.navbar_links a:last-child {
  margin-right: 0;
}
.navbar_links a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #467BF5;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links a:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links > a:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

.navbar_scroll {
  background-color: #fff;
  z-index: 5;
  border-bottom: 1px solid gray;
}
.navbar_scroll div a,
.navbar_scroll a {
  color: black;
}

@keyframes navbarBottom {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}
.navbar_overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.navbar_burger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  color: rgba(70, 123, 245, 0.5960784314);
  z-index: 999;
}

.navbar_burger_back {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.navbar_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #467BF5;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 999;
  color: #000;
  transition: transform 0.3s ease;
}
.navbar_menu a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  margin-left: 1rem;
  margin-bottom: 3rem;
  text-decoration: none;
}
.navbar_menu a > img {
  width: 100%;
}
.navbar_menu > a:nth-of-type(1) {
  margin-left: 0;
}
.navbar_menu.active {
  transform: translateX(0);
}

@media (min-width: 992px) {
  /* PC 버전 CSS 입력*/
  .navbar_overlay {
    display: none;
  }
  .navbar_burger {
    display: none;
  }
  .navbar_menu {
    display: none;
  }
}
@media (max-width: 991.98px) {
  /* 모바일 버전 CSS 입력*/
  header {
    display: none;
  }
}
footer {
  width: 100%;
  background-color: #07101D;
  height: 372px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  footer {
    height: auto;
    padding: 20px;
  }
}
footer > .wrap {
  width: 100%;
  max-width: 1530px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer > .wrap {
    flex-direction: column;
    gap: 40px;
  }
}
footer > .wrap > .left > img {
  margin-bottom: 20px;
}
footer > .wrap > .left > h2 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  footer > .wrap > .left > h2 {
    font-size: 18px;
    word-break: keep-all;
  }
}
footer > .wrap > .left > h3 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}
@media (max-width: 1024px) {
  footer > .wrap > .left > h3 {
    font-size: 13px;
  }
}
footer > .wrap > .right > .sns {
  display: flex;
  align-items: center;
  gap: 20px;
}/*# sourceMappingURL=common.css.map */