@font-face {
	font-family: 'PB_B';
	font-weight: bold;
	font-style: normal;
	src: url("./fonts/Pretendard-Bold.woff")  format('woff');
}

@font-face {
	font-family: 'PB_M';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Medium.woff")  format('woff');
}

@font-face {
	font-family: 'PB_R';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Regular.woff")  format('woff');
}

@font-face {
	font-family: 'PB_L';
	font-weight: 100;
	font-style: normal;
	src: url("./fonts/Pretendard-Light.woff")  format('woff');
}

@font-face {
	font-family: 'K_B';
	font-weight: bold;
	font-style: normal;
	src: url("./fonts/KimjungchulMyungjo-Bold.woff2")  format('woff2');
}

@font-face {
	font-family: 'K_R';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/KimjungchulMyungjo-Regular.woff2")  format('woff2');
}

@font-face {
	font-family: 'K_L';
	font-weight: 100;
	font-style: normal;
	src: url("./fonts/KimjungchulMyungjo-Light.woff2")  format('woff2');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

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

#hd_pop {
  width: 100%;
  height: 100%;
}

#hd_pop .hd_pops {
  position: fixed;
}

@media (max-width: 1200px) {
  .hd_pops {
    left: 10px !important;
  }
}

@media (max-width: 700px) {
  .hd_pops_con {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 400px) {
  #hd_pop .hd_pops {
    width: 90% !important;
    height: auto !important;
  }
}

#header {
  width: 100%;
  height: 90px;
  padding: 15px 0;
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}

#header:hover {
  background: #053784;
}

#header.active {
  background: #053784;
}

#header .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

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

#header .wrap .pc_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}

#header .wrap .pc_menu .item {
  width: auto;
  height: auto;
}

#header .wrap .pc_menu .item a {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 16px;
  color: #fff;
}

#header .wrap .hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 3;
  display: none;
}

#header .wrap .hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transition: all 0.3s;
}

#header .wrap .hamburger span:nth-of-type(1) {
  top: 0;  
  transform: translateX(-50%);
}

#header .wrap .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

#header .wrap .hamburger span:nth-of-type(3) {
  bottom: 0;
  transform: translateX(-50%);
}

#header .wrap .hamburger.active span:nth-of-type(1) {
  top: 50%;  
  transform: translate(-50%, -50%) rotate(45deg);
}

#header .wrap .hamburger.active span:nth-of-type(2) {
  width: 0;
}

#header .wrap .hamburger.active span:nth-of-type(3) {
  top: 50%;  
  transform: translate(-50%, -50%) rotate(-45deg);
}

#header .wrap .mb_category {
  width: 41vw;
  height: 100vh;
  position: fixed;
  padding: 100px 50px;
  right: -41vw;
  top: 0;
  z-index: 2;
  background: #053784;
  transition: all 0.5s;
  border-left: 1px solid #fff;
}

#header .wrap .mb_category.active {
  right: 0;
}

#header .wrap .mb_category .mb_menu {
  width: 100%;
  height: auto;
}

#header .wrap .mb_category .mb_menu .item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid #fff;
}

#header .wrap .mb_category .mb_menu .item a {
  font-family: 'GM_M';
	font-weight: normal;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
  background: #053784;
}

#footer .top_wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 50px;
}

#footer .top_wrap p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#footer .top_wrap a {
  width: auto;
  height: auto;
}

#footer .top_wrap a img {
  width: auto;
  height: auto;
}

#footer .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  padding-top: 50px;
  border-top: 1px solid #fff;
}

#footer .wrap .info_box {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
}

#footer .wrap .info_box .info {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  position: relative;
}

#footer .wrap .info_box .info::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: -17.5px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

#footer .wrap .info_box .info:last-of-type::after {
  display: none;
}

#footer .wrap .info_box .info span {
  font-family: 'PB_B';
	font-weight: bold;
}

#footer .wrap .copy {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 16px;
  color: #fff;
}

#top_button {
  width: auto;
  height: auto;
  border: none;
  background: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 9;
}

#top_button img {
  width: auto;
  height: auto;
}

@media (max-width: 1600px) {
  #header .wrap {
    max-width: 90%;
  }

  #footer .wrap {
    max-width: 90%;
  }

  #footer .top_wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #top_button img {
    width: 50px;
  }
}

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

  #header .wrap .hamburger {
    display: block;
  }

  #header .wrap .logo img {
    height: 40px;
  }

  #header {
    height: 50px;
    align-items: center;
  }

  #header .wrap {
    align-items: center;
  }

  #top_button {
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 700px) {
  #header .wrap .mb_category {
    width: 81vw;
    right: -81vw;
  }

  #footer .wrap .info_box {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }

  #footer .wrap .copy {
    text-align: center;
  }

  #footer .wrap .info_box .info {
    width: calc((100% - 10px) / 2);
  }

  #footer .wrap .info_box .info:nth-of-type(2n)::after {
    display: none;
  }

  #footer .wrap .info_box .info::after {
    right: -5px;
  }
}

@media (max-width: 500px) {
  #header .wrap .logo img {
    height: 35px;
  }

  #header .wrap .hamburger {
    width: 25px;
    height: 16px;
  }

  #header .wrap .mb_category {
    padding: 70px 30px;
  }

  #header .wrap .mb_category .mb_menu .item a {
    font-size: 14px;
  }

  #header .wrap .mb_category .mb_menu .item {
    height: 40px;
    padding: 0 10px;
  }

  #footer .wrap .info_box .info {
    width: 100%;
    font-size: 12px;
  }

  #footer .wrap .info_box .info::after {
    display: none;
  }

  #footer .wrap .copy {
    font-size: 12px;
  }

  #top_button img {
    width: 35px;
  }

  #footer .top_wrap p {
    font-size: 14px;
  }

  #footer .top_wrap a img {
    width: 120px;
  }

  #footer {
    padding: 50px 0;
  }
}

@media (max-width: 400px) {
  #top_button {
    right: 10px;
    bottom: 10px;
  }
}