/* Universal tags */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-family: 'Gothic A1', sans-serif;
  margin: 0;
  padding: 0;
  cursor: default;
  overflow-x: hidden;
  position: relative; /* 오버레이를 위해 position 추가 */
}
a {
  text-decoration: none;
  color: #fff;
}
ul {
  list-style: none;
  padding-left: 0;
  color: #fff;
}
li {
  list-style: none;
}
button {
  background-color: transparent;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Typography */
h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin: 16px 0px;
}
h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 8px 0;
}
h3 {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 8px 0;
}
p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 4px 0;
}

/* common */
.hide {
  position: absolute;
  left: -5000px;
}
.skip {
  position: absolute;
  left: 0;
  top: -100px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s;
}
.skip:focus {
  top: 0;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 78px;
}

.root {
  max-width: 100%;
}

.header_container {
  width: 100vw;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header_logo_img {
  width: 120px;
  height: 41px;
}

.header_menu_container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_menu_info_typo {
  color: #616161;
  font-size: 16px;
  margin-right: 8px;
}

.header_menu_download_button {
  background: linear-gradient(
    0deg,
    rgba(6, 14, 131, 1) 0%,
    rgba(12, 25, 180, 1) 100%
  );
  padding: 6px 16px 8px 16px;
  border-radius: 6px;
  margin-right: 5px;
}

.header_menu_download_button_typo {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
}

.header_menu_download_button:hover {
  color: #fff;
  background: rgb(96, 9, 240);
  background: linear-gradient(
    0deg,
    rgba(96, 9, 240, 1) 0%,
    rgba(129, 5, 240, 1) 100%
  );
  border: none;
  border-radius: 4px;
}

.header_menu_typo {
  color: #4d4d4d;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 16px 8px 16px;
  border-bottom: 1px solid rgb(6, 14, 131);
  cursor: pointer;
  margin-right: 5px;
}

.header_menu_typo:hover {
  color: #fff;
  background: rgb(96, 9, 240);
  background: linear-gradient(
    0deg,
    rgba(96, 9, 240, 1) 0%,
    rgba(129, 5, 240, 1) 100%
  );
  border: none;
  border-radius: 4px;
}

footer {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #4d4d4d;
  padding: 50px;
  box-sizing: border-box;
  z-index: 100;
}

.footer_logo_img {
  width: 175px;
}

.footer_menu_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer_menu_typo {
  text-decoration: none;
  color: #fff;
  margin-left: 10px;
}

.footer_company_info_typo {
  color: #eee;
  font-size: 11.6px;
}

.company_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 50px;
  border-top: 1px solid #eee;
  margin-top: 50px;
}

.company_img_container {
  display: flex;
}

.company_img {
  height: 44px;
}

.please_chrome_typo {
  text-align: center;
  color: #7c7979;
  padding-top: 20px;
  font-size: 14px;
}

/* Arrow up */
.arrow-up {
  position: fixed;
  bottom: 50px;
  right: 50px;
  font-size: 50px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  background-color: #74A5ED;
  border-radius: 50%;
  /* opacity: 0;
  pointer-events: none; */
  transition: all 1000 ease-in;
  z-index: 9999;
}
.arrow-up.visible {
  opacity: 1;
  pointer-events: auto;
}
.arrow-up:hover{
  background-color: #feb546;
}

#navbar {
  position: fixed;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 500ms ease-in-out;
  z-index: 10;
  top: 0;
  left: 0;
}
#navbar.navbar--dark {
  background-color: #fff;
  padding: 8px;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo a {
  padding: 0 10px;
}
/* .navbar__logo .logo01{
  width: 30%;
} */
.navbar__logo .logo02{
  width: 55%;
}
.navbar__logo img{
  width: 100%;
  height: auto; 
}
.navbar__menu {
  display: flex;
}
.navbar__menu li a {
  padding: 12px 16px 8px 16px;
  display: block;
  color: #4d4d4d;
}
.navbar__menu__item.active {
  /* border-bottom: 2px solid var(--color-light-blue); */
  background: rgb(6,14,131);
  background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
  border-radius: 4px;
}
.navbar__menu__item.active a{
  color: #fff;
}
.navbar__menu__item.active {
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 5px;
  margin: 0px 5px;
}
.navbar__menu__item {
  /* padding: 12px 16px 8px 16px; */
  margin: 0 4px;
  color: #000;
  cursor: pointer;
  /* border-radius: var(--size-border-radius); */
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid rgb(6,14,131);
  cursor: pointer !important;
}
.navbar__menu__item2 {
  border: none;
  color: #616161;
  font-size: 16px;
  padding: 12px 16px 8px 16px;
  cursor: pointer !important;
}
.navbar__menu__item:hover, .navbar__menu__item a:hover{
  color: #fff;
  background: rgb(96,9,240);
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
  border: none;
  border-radius: 4px;
}
.navbar__toggle-btn {
  display: none;
}

.title_typo { 
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.title_typo_2 { 
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 768px) {
  .title_typo{
    font-size: 18px !important;
  }
.title_typo_2 { 
  font-size: 30px;
}
  .navbar__toggle-btn{
    display: flex;
    position: absolute;
    top: 28px;
    right: 22px;
    font-size: 24px;
    color: #fff;
  }
  .scroll_down_img_wrapper {
    display: none !important;
  }
  .navbar__toggle-btn {
    display: block;
    right: 16px;
    font-size: 18px;
    color: #74A5ED;
  }
  #navbar {
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
  }
  #navbar.navbar--dark {
    padding: 16px;
  }
  .navbar__menubar {
    width: 100%;
  }
  .navbar__menu {
    flex-direction: column;
    text-align: center;
    display: none;
    margin: 5px;
  }
  .navbar__menu.open {
    display: block;
  }
  .section {
    padding: 16px;
    padding-top: 40px;
  }
  
  /* download */
  .video__area video {
    width: 100%;
  }
  .download__info{
    padding: 30px;
  }
  .download__move {
    width: 80%;
  }
  #contents {
    padding-bottom: 40px;
  }
  .corp_item {
    font-size: 12px;
  }
  .arrow__content {
    bottom: 5vh;
  }

  /* logo_list */
  .host-wrap a {
    margin: 10px;
  }
  .list__logo01 img{
    height: 30px;
  }
  .list__logo02 img{
    height: 30px;
  }

  .arrow-up {
    display: none;
  }
  .footer_menu_container {
    display: flex;
    gap: 10px;
  }
  .footer_menu_typo{
    margin-top: 0 !important;
  }
  .footer_menu_typo_100{
    width: 100%;
  }
  .footer_company_info_typo{
    font-size: 10px;
  }
  .footer_menu_typo{
    display: flex;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }
}