@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
header > .navbar_main {
  width: 100%;
  max-width: 1760px;
  height: 105px;
  background-color: #fff;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 70px;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}
header.subpage {
  background-color: #fff;
}
header.subpage > .navbar_main {
  height: auto;
  margin-top: 0;
}

.language-dropdown {
  position: relative;
}
.language-dropdown .language-toggle {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.language-dropdown .language-toggle > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-dropdown .language-toggle:after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #52330F;
}
.language-dropdown .language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 100px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.language-dropdown .language-menu a {
  display: block;
  padding: 8px 16px;
  color: #000;
  text-align: center;
}
.language-dropdown .language-menu a:hover {
  background-color: #f5f5f5;
}
.language-dropdown:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar_links {
  width: 100%;
  max-width: 930px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 54px;
}
.navbar_links .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #52330F;
  vertical-align: middle;
}
.navbar_links .dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links .dropdown .dropdown-toggle:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  left: -10%;
  background-color: white;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar_links .dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #000;
  font-size: 16px;
  transition: background-color 0.2s;
}
.navbar_links .dropdown .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.navbar_links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  padding-top: 40px;
  transform: translateY(0px);
}
.navbar_links .dropdown:hover {
  transition: 0.3s;
  transform: translateY(0px);
}
.navbar_links > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  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;
  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 {
  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: #2e69c2;
  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: #83b4fb;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 999;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
.navbar_menu .mobile-dropdown {
  width: 100%;
  margin-bottom: 1rem;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle.active .dropdown-icon {
  transform: rotate(45deg);
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu.active {
  max-height: 500px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  display: block;
  word-break: keep-all;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a:hover {
  color: white;
}
.navbar_menu > a {
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 1rem;
  text-decoration: none;
}
.navbar_menu > a > img {
  width: 100%;
}
.navbar_menu .mobile-language {
  display: flex;
  margin-top: 2rem;
}
.navbar_menu .mobile-language a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 1rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.2s;
}
.navbar_menu .mobile-language a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.navbar_menu .mobile-language a:hover {
  color: white;
}
.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%;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
@media (max-width: 1024px) {
  footer {
    height: auto;
    padding: 20px;
  }
}
footer > .wrap {
  width: 100%;
  max-width: 1680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
footer > .wrap > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
footer > .wrap > div > h2 {
  font-size: 14px;
  font-weight: 500;
  color: white;
}/*# sourceMappingURL=common.css.map */