#menu-bar {
  display: none;
}
#banner video {
  background-color: #000;
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0;
}

/* #mobile-intro {
    display: none;
  }
  @media (max-width: 800px) {
    #pc-intro {
      display: none;
    }
    #mobile-intro {
      display: block;
    }
  } */
@media all and (min-width: 768px) {
  @media (orientation: portrait) {
    /* Landscape 모드일 때 적용할 CSS */
    .box {
      width: 100%;
      height: 100%;
      text-align: center;
      position: absolute;
      background-color: black;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 555;
    }
    .box .center-box {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
}

@keyframes cursor {
  from {
    border-right: 2px solid #222;
  }
  to {
    border-right: 2px solid #777;
  }
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  color: #463f3f;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}

nav ul li a:hover {
  color: #fb5958;
}
.map_list ul li:hover {
  background-color: #000;
  color: #fff;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

nav ul li ul li {
  min-width: 190px;
}

nav ul li ul li a {
  /* padding: 15px; */
  padding: 13px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

/* #nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
  } */
/* #nav-toggle {
  position: absolute;
  left: 11px;
  top: 14px;
  cursor: pointer;
  padding: 10px 29px 16px 0px;
} */
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 25px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -7px;
}

#nav-toggle span:after {
  bottom: -7px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
.navigation {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.ui-close-hoverable:hover {
  background: #5df1c8;
}
.brand {
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#menu-bar-slide,
#view-list {
  display: none;
}
@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav ul {
    display: none;
    background-color: #fff;
  }

  nav ul li {
    float: none;
  }

  nav ul li a {
    /* padding: 15px; */
    padding: 13px;
    line-height: 20px;
  }

  nav ul li ul li a {
    padding-left: 30px;
  }
}
/* intro */
.welcome-section {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  overflow: hidden;
  z-index: 3;
}

.content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fly-in-text {
  list-style: none;
  padding: 0;
  /* font-family: "Bebas Neue", cursive; */
  font-weight: 600;
}

.fly-in-text li {
  display: inline-block;
  margin-right: 20px;
  font-size: 5em;
  color: black;
  opacity: 1;
  transition: all 3s ease;
}

.enter-button {
  display: block;
  text-align: center;
  font-size: 3em;
  text-decoration: none;
  color: #000;
  opacity: 1;
  transition: all 1s ease 3s;
  /* font-family: "Bebas Neue", cursive; */
  font-weight: 600;
}

.side-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: -300px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.side-menu.active {
  visibility: visible;
  left: 0;
}

.side-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.side-menu.active .side-menu-overlay {
  opacity: 1;
}

.side-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.side-menu.active .side-menu-content {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.side-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.side-menu-content-area {
  flex: 1;
  overflow-y: auto;
  margin: 20px 0;
}

.side-menu-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: white;
  border-top: 1px solid #eee;
}

.side-menu-nav a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
}

.side-menu-nav a:hover {
  color: #007bff;
}

.side-menu-nav a.active {
  color: #007bff;
  font-weight: bold;
}

.language-select {
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  background-color: white;
  cursor: pointer;
}

.language-select:hover {
  border-color: #007bff;
}

.side-menu-content {
  display: flex;
  flex-direction: column;
}
#primary-progress {
  display: none;
}
#primary-progress-done {
  display: none !important;
}

.side-menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.side-menu-toggle:hover {
  background-color: #f8f9fa;
}
