@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: #000;
  font-family: "SBAggro";
  font-weight: 700;
}
header > .navbar_main {
  width: 100%;
  max-width: 1800px;
  height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}
header.subpage {
  background-color: #000;
}
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: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  margin-left: 400px;
}
@media (max-width: 1660px) {
  .navbar_links {
    margin-left: 0;
  }
}
.navbar_links .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle > img {
  width: 30%;
}
.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: #000;
  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: #fff;
  font-size: 16px;
  transition: background-color 0.2s;
  transition: 0.2s;
}
.navbar_links .dropdown .dropdown-menu a:hover {
  background-color: #ffffff;
}
.navbar_links .dropdown .dropdown-menu > a:hover {
  color: #000;
  transition: 0.2s;
}
.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: #000;
  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;
}

.burger_wrap {
  width: 100%;
  height: 75px;
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0 20px;
  display: none;
  z-index: 99980;
}
@media (max-width: 1660px) {
  .burger_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.burger_wrap > a {
  margin-right: 20px;
}
.burger_wrap > a > img {
  width: 100%;
}

#navbar_burger_pc {
  position: fixed;
  top: 2.2rem;
  right: 3rem;
  cursor: pointer;
  color: #000 !important;
  z-index: 99999;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  #navbar_burger_pc {
    display: none;
  }
}
#navbar_burger_pc > svg {
  color: #000 !important;
}
#navbar_burger_pc > svg > path {
  color: #000 !important;
}

@media (max-width: 1660px) {
  .navbar_burger_pc {
    display: none;
  }
}

.navbar_burger_back {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: #000;
}
.navbar_burger_back > svg {
  color: white;
}
.navbar_burger_back > svg > path {
  color: white;
}

.navbar_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background-color: #000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 99999;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .navbar_menu {
    width: 80%;
  }
}
.navbar_menu .mobile-dropdown {
  width: 100%;
  margin-bottom: 1rem;
}
.navbar_menu .mobile-dropdown > a {
  position: relative;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  font-family: "SBAggro";
  font-weight: 700;
}
.navbar_menu .mobile-dropdown > a .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: white;
}
.navbar_menu .mobile-dropdown > a.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: #000000;
  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 입력*/
}
@media (max-width: 991.98px) {
  /* 모바일 버전 CSS 입력*/
  header {
    display: none;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 25px 0;
  height: auto;
  background-color: #000;
}
@media (max-width: 1024px) {
  footer {
    padding: 30px 0;
    height: auto;
  }
}
footer > .wrap {
  width: 100%;
  max-width: 1550px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer > .wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
footer > .wrap > .left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  footer > .wrap > .left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
footer > .wrap > .left > img {
  width: 70%;
}
@media (max-width: 1024px) {
  footer > .wrap > .left > img {
    width: 90%;
  }
}
footer > .wrap > .left > .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer > .wrap > .left > .info > h2 {
  font-family: "SBAggro";
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6039215686);
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  footer > .wrap > .left > .info > h2 {
    font-size: 18px;
    text-align: center;
  }
}
footer > .wrap > .left > .info > .word {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer > .wrap > .left > .info > .word > h2 {
  color: rgba(255, 255, 255, 0.4941176471);
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  footer > .wrap > .left > .info > .word > h2 {
    font-size: 13px;
  }
}
footer > .wrap > .left > .info > .word > h3 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7450980392);
}
@media (max-width: 1024px) {
  footer > .wrap > .left > .info > .word > h3 {
    font-size: 13px;
  }
}
footer > .wrap > .right > h2 {
  font-size: 14px;
  font-weight: 300;
  color: rgba(235, 235, 235, 0.5333333333);
}
@media (max-width: 1024px) {
  footer > .wrap > .right > h2 {
    font-size: 12px;
    margin-top: 30px;
  }
}/*# sourceMappingURL=common.css.map */