@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR';
}

a {
  text-decoration: none;
}

ul,li,ol {
  list-style: none;
}

body {
  overflow-x: hidden;
  user-select: none; 
}

.hidden {
  display: none;
}

@media (max-width: 1000px) {
  .hidden1000 {
    display: block;
  }
}

@media (max-width: 500px) {
  .hidden500 {
    display: block;
  }
}

@media (max-width: 400px) {
  .hidden400 {
    display: block;
  }
}

#header {
  width: 100%;
  height: 110px;
  background: rgba(255,255,255,0.6);
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 260px;
  z-index: 999999999;
}

#header .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .wrap .logo {
  width: auto;
  height: auto;
  cursor: pointer;
}

#header .wrap .logo img {
  width: auto;
  height: auto;
}

#header .wrap .categori {
  width: auto;
  height: auto;
}

#header .wrap .categori .login {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 13px;
}

#header .wrap .categori .login span {
  margin-right: 16px;
}

#header .wrap .categori .login span:last-of-type {
  margin-right: 0;
}

#header .wrap .categori .login span a {
  font-size: 16px;
  font-weight: normal;
  color: #000;
}

#header .wrap .categori .login span a:hover {
  font-weight: bold;
}

#header .wrap .categori .menu {
  display: flex;
  justify-content: flex-end;
}

#header .wrap .categori .menu .menu_item {
  margin-right: 50px;
}

#header .wrap .categori .menu .menu_item:last-of-type {
  margin-right: 0;
}

#header .wrap .categori .menu .menu_item a {
  font-size: 18px;
  font-weight: normal;
  color: #000;
}

#header .wrap .categori .menu .menu_item a:hover {
  font-weight: bold;
}

/* Trigger Button */
.list_btn {
  display: none;
  z-index: 99999999;
}

input[id="trigger"] {
  display: none;
}
label[for="trigger"] {
  width: 24px;
  height: 18px;
  display: block;
  position: relative;
  cursor: pointer;
}
label[for="trigger"] span {
  position: absolute;
  height: 2px;
  background-color: #494949;
  width: 100%;
  left: 0;
  transition: 0.3s;
}
label[for="trigger"] span:nth-child(1) {
  top: 0;
}
label[for="trigger"] span:nth-child(2) {
  top: 50%;
}
label[for="trigger"] span:nth-child(3) {
  top: 100%;
}

input[id="trigger"]:checked + label span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  width: 100%;
}
input[id="trigger"]:checked + label span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
input[id="trigger"]:checked + label span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  width: 100%;
}

#header .wrap .mobile_menu {
  width: 100%;
  max-width: 0px;
  /* max-width: 600px; */
  height: 100vh;
  background: #ccc;
  overflow: hidden;
  transition: all 0.5s;
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}

#header .wrap .mobile_menu .login {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#header .wrap .mobile_menu .login span {
  margin-right: 5px;
}

#header .wrap .mobile_menu .login span:last-of-type {
  margin-right: 0;
}

#header .wrap .mobile_menu .login span a {
  font-size: 16px;
  font-weight: normal;
}

#header .wrap .mobile_menu .menu .menu_item {
  text-align: center;
  margin-bottom: 10px;
}

#header .wrap .mobile_menu .menu .menu_item:last-of-type {
  margin-bottom: 0;
}

#header .wrap .mobile_menu .menu .menu_item a {
  font-size: 14px;
  font-weight: bold;
}


#footer {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: #fff;
}

#footer .banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

#footer .banner img {
  width: auto;
  height: auto;
  margin-right: 40px;
}

#footer .banner img:last-of-type {
  margin-right: 0;
}

#footer .info {
  text-align: center;
}

#footer .info img {
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

#footer .info h2 {
  font-size: 18px;
  font-weight: normal;
}

@media (max-width: 1600px) {
  #header {
    padding: 0 100px;
  }

  #footer .banner img {
    height: 40px;
    margin-right: 30px;
  }
}

@media (max-width: 1400px) {
  #header .wrap .logo img {
    width: 160px;
  }

  #header .wrap .categori .login span a {
    font-size: 14px;
  }

  #header .wrap .categori .menu .menu_item a {
    font-size: 16px;
  }

  #header .wrap .categori .menu .menu_item {
    margin-right: 30px;
  }

  #header .wrap .categori .login {
    margin-bottom: 5px;
  }

  #header {
    height: 80px;
  }

  #footer .banner {
    margin-bottom: 100px;
  }

  #footer .banner img {
    height: 30px;
  }

  #footer .info img {
    width: 270px;
  }
}

@media (max-width: 1200px) {
  #header .wrap .categori {
    display: none;
  }

  .list_btn {
    display: block;
  }
}

@keyframes rolling {
  100% {
    transform: translateX(-100%);
  }
  0% {
    transform: translateX(0%);
  }
}

@media (max-width: 1000px) {
  #footer .banner {
    animation: rolling infinite 30s;
    transition: all 0.5s;
  }
}

@media (max-width: 900px) {
  #header .wrap .logo img {
    width: 130px;
  }

  #header {
    padding: 0 30px;
    height: 60px;
  }

  label[for="trigger"] {
    width: 20px;
    height: 15px;
  }

  label[for="trigger"] span:nth-child(2) {
    top: 49%;
  }
}

@media (max-width: 700px) {
  footer {
    padding: 50px 0;
  }

  #footer .banner {
    margin-bottom: 50px;
  }

  #footer .info img {
    width: 200px;
  }

  #footer .info h2 {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #footer .info img {
    width: 170px;
    margin-bottom: 20px;
  }

  #footer .info h2 {
    font-size: 10px;
    word-break: keep-all;
  }
}

@media (max-width: 400px) {
  #header {
    padding: 0 20px;
  }

  #header .wrap .logo img {
    width: 110px;
  }
}