@keyframes subvisual_ani {
  from {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}

@keyframes subcontainer_ani {
  from {
    margin-top: 30px;
    /* opacity: 0; */
  }
  to {
    margin-top: 0px;
    /* opacity: 1; */
  }
}

body {
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 20px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  z-index: 2000;
}
header .topmenu {
  width: 100%;
  max-width: 1400px;
  height: 60px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}
header nav {
  display: flex;
  gap: 2.5rem;
  font-family: "Jost", "GmarketSansMedium", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
header nav > div {
  position: relative;
}
header nav a {
  display: block;
  font-family: "GmarketSansMedium", "Jost", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 60px;
}
header nav a:hover {
  color: var(--color-point);
}
header nav ul {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 180px;
  padding: .5rem 0 0 0;
  margin: 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50%) !important;
}
header nav ul li {
  list-style: none;
  width: 100%;
  padding: .6rem 1.5rem;
}
header nav ul li:first-child {
  margin-top: 1rem;
}
header nav ul li:last-child {
  margin-bottom: 1rem;
}
header nav ul li a {
  font-size: 0.95rem;
  color: var(--color-main);
  line-height: 1.1;
}
header nav div:hover ul {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}
header .logo {
  width: 200px;
  margin: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
header .logo img {
  width: 100%;
}
header .sidevar {
  display: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
header .sidevar button {
  background: none;
  font-size: 1.1rem;
  color: #fff;
  padding: 5px;
  border: none;
  outline: none;
}
/* header:hover, */
header.active {
  background: #fff;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.1);
}
/* header:hover nav a, */
header.active nav a {
  color: #000;
}
header:hover nav a:hover,
header.active nav a:hover {
  color: var(--color-point);
}
header:hover .sidevar button,
header.active .sidevar button {
  color: #000;
}
@media (max-width: 1280px) {
  header nav {
    gap: 1.8rem;
  }
}
@media (max-width: 1200px) {
  header .logo {
    width: 180px;
  }
  header nav {
    font-size:.9rem;
    gap: 1.5rem;
  }
  header nav a {
    font-size: 1.1rem;
    letter-spacing: 0px;
  }
}
@media (max-width: 1100px) {
  header nav {
    font-size:.8rem;
    gap: 1rem;
  }
  header nav a {
    font-size: 1.0rem;
  }
}
@media (max-width: 991.98px) {
  header {
    height: 60px;
    padding: 0 20px;
  }
  header .logo {
    width: 140px;
  }
  header nav {
    display: none;
  }
  header .sidevar {
    display: block;
  }
}
@media (max-width: 767.98px) {
  header .logo {
    width: 120px;
    margin-top: -1px;
  }
  header .sidevar {
    left: 0.5rem;
  }
  header .lang_wrap {
    right: 0.5rem;
  }
  .lang_sub a {
    font-size: 0.6rem;
    padding: 0.5rem 0;
  }
  header .lang_wrap span:hover .lang_sub {
    right: -0.5rem;
    padding-top: 1rem;
  }
}

footer {
  width: 100%;
  padding: 2rem 2rem;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(to right, #1e3c73, #199dcd);
}
footer .footer_wrap {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}
footer .logo {
  width: 20%;
  padding: 0;
  margin: 0;
}
footer .list {
  width: 80%;
  padding: 0;
  margin: 0;
}
footer .logo img {
  width: 150px;
}
footer address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.2rem 1rem;
  padding: 0 0 0.5rem 0;
  margin: 0;
  font-family: "Noto Sans", "SCoreDream", "Jost", system-ui, -apple-system,
    sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}
footer address div {
  position: relative;
}
footer address div span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
footer .copy {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767.98px) {
  footer {
    padding: 2rem 2rem 4rem 2rem;
  }
  footer .footer_wrap {
    flex-direction: column;
    gap: 2rem 0;
  }
  footer .logo,
  footer .list {
    width: 100%;
  }
  footer address {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 1rem 0;
  }
  footer .copy {
    margin: 0;
    text-align: left;
  }
}
@media (max-width: 640px) {
  footer {
    padding: 2rem 2rem 7rem 2rem;
  }
}
@media only screen and (max-device-width: 640px) {
  footer .copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
  }
}

.nav_side_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 3000;
}
.nav_side_bg.active {
  display: block;
}
.nav_side {
  position: fixed;
  display: flex;
  padding: 0 3rem;
  margin: 0;
  top: 0;
  right: -400px;
  width: 300px;
  height: 100vh;
  background: #fff;
  /* border-top: 3px solid var(--color-main); */
  z-index: 3500;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.nav_side.active {
  right: 0;
}
.nav_side .nav_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nav_side .logo {
  padding: 0;
  margin: 2rem auto;
  text-align: center;
}
.nav_side .logo img {
  width: 100%;
}
.nav_side .menu_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 0;
  margin: 1.5rem 0 0 0;
}
.nav_side .menu_wrap .menu {
  display: block;
  width: 100%;
  padding: 0;
  font-family: "GmarketSansMedium", "SCoreDream", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  text-align: left;
  border: none;
  background: none;
}
.nav_side .menu_wrap .menu:hover {
  color: var(--color-main);
}
.nav_side .menu_wrap .submenu {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  padding-left: 1rem;
  transition: all 0.3s ease-in-out;
}
.nav_side .menu_wrap .submenu a {
  position: relative;
  display: block;
  font-family: "GmarketSansMedium", "SCoreDream", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.3rem 0;
}
.nav_side .menu_wrap .submenu a:hover {
  color: var(--color-main);
}
.nav_side .menu_wrap .submenu.active {
  height: auto;
  overflow: auto;
  margin-bottom: 2rem;
}
.nav_side .cs {
  width: 100%;
  padding: 0;
  margin: 2rem 0 0 0;
}
.nav_side .cs img {
  width: 100%;
}
.nav_side .tel_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0 0 0;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-family: "Jost", "GmarketSansMedium", "SCoreDream", system-ui,
    -apple-system, "Noto Sans", sans-serif;
}
.nav_side .tel_wrap h2 {
  font-family: "GmarketSansMedium", "SCoreDream", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 0.7rem 0 0.5rem 0;
  background-color: var(--color-main);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.nav_side .tel_wrap .cs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* gap: 1rem; */
  padding: 0;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-family: "GmarketSansMedium", "SCoreDream", "Jost", system-ui,
    -apple-system, "Noto Sans", sans-serif;
}
.nav_side .tel_wrap .cs .tt {
  min-width: 40px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-main);
}
.nav_side .tel_wrap .cs .tel {
  font-size: 0.8rem;
  letter-spacing: 0;
  word-break: keep-all;
  word-wrap: break-word;
}
.nav_side .tel_wrap .cs .txt {
  font-size: 0.8rem;
  letter-spacing: 0;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 767.98px) {
  .nav_side {
    padding: 0 1.5rem;
    width: 250px;
  }
  .nav_side .menu_wrap {
    padding: 1rem 0 0 0;
  }
  .nav_side .menu_wrap .menu {
    /* font-size: 0.95rem; */
  }
}

.number {
  font-family: "Jost", sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0px !important;
}

.icon_notice {
  display: inline-block;
  color: #ffffff;
  font-size: 1em;
  padding: 0px;
  width: 20px;
  height: 20px;
  background-color: #f47420;
  border: 0px;
  border-radius: 100%;
}

.bt_search {
  display: inline-block;
  color: #fff;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #6d6d6d;
  border: 1px solid #525252;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_search:focus,
.bt_search:hover {
  background-color: #37aef3;
  border-color: #2d98d6;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_default {
  display: inline-block;
  color: #000;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #f3f3f3;
  border: 1px solid #bbb9b9;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_default:focus,
.bt_default:hover {
  color: #1a5fc7;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_blue {
  display: inline-block;
  color: #fff;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #1a5fc7;
  border: 1px solid #1a5fc7;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_blue:focus,
.bt_blue:hover {
  color: #fff;
  background-color: #1553b1;
  border-color: #1553b1;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_white {
  display: inline-block;
  color: #414141;
  padding: 0.8rem 2rem 0.6rem 2rem;
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #cccccc;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_white:focus,
.bt_white:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #696969;
  outline: 0;
}

.bt_dark {
  display: inline-block;
  color: #e4e4e4;
  padding: 0.8rem 2rem 0.6rem 2rem;
  font-family: "GmarketSansMedium", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  background-color: #424242;
  border: 1px solid #424242;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_dark:focus,
.bt_dark:hover {
  color: #fff;
  background-color: #303030;
  border: 1px solid #252525;
  outline: 0;
}
