html {
  overflow-x: hidden;
}

body {
  background: white;
}

.in-progress {
  width: 100%;
  height: 700px;
  max-width: 1640px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 50px;
  border: 2px solid #0068b3;
  background-color: white;
}
.in-progress > em {
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #0068b3;
  text-align: center;
}
.in-progress .veritcal-line {
  display: block;
  width: 1px;
  height: 100px;
  background-color: #aaa;
}
.in-progress > span {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #464646;
  text-align: center;
}

@media (max-width: 1640px) {
  .in-progress {
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) {
  .in-progress {
    height: 500px;
  }
  .in-progress > em {
    font-size: 36px;
  }
  .in-progress .veritcal-line {
    height: 70px;
  }
  .in-progress > span {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .in-progress {
    height: 360px;
    grid-gap: 30px;
  }
  .in-progress > em {
    font-size: 28px;
  }
  .in-progress .veritcal-line {
    height: 50px;
  }
  .in-progress > span {
    font-size: 20px;
  }
}
.mobile-bg-filter {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
  transition: 0.2s all ease-in-out;
}
.mobile-bg-filter.active {
  z-index: 600;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 601;
  transition: 0.2s all ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .top {
  width: 100%;
  height: 70px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0068b3;
  background: white;
}
.m-menu .top .m-menu-logo {
  width: auto;
  height: 30%;
}
.m-menu .top .m-menu-logo > img {
  width: auto;
  height: 100%;
}
.m-menu .top .m-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-menu .top .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
  transition: 0.2s all ease-in-out;
}
.m-menu .top .m-menu-close:hover > svg {
  fill: #0068b3;
}
.m-menu .m-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-global-nav .m-g-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-nav .m-g-item > span {
  width: 100%;
  padding: 16px;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #505050;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-nav .m-g-item .m-g-depth2 {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: white;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-nav .m-g-item .m-g-depth2 > a {
  position: relative;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #0068b3;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-global-nav .m-g-item .m-g-depth2 > a:not(:last-of-type) {
  border-bottom: 1px solid #f0f0f0;
}
.m-menu .m-global-nav .m-g-item.active {
  background-color: #0068b3;
}
.m-menu .m-global-nav .m-g-item.active > span {
  color: white;
}
.m-menu .m-global-nav .m-g-item.active .m-g-depth2 {
  max-height: 300px;
}

@media (max-width: 480px) {
  .m-menu .top {
    height: 50px;
  }
  .m-menu .top .m-menu-close {
    width: 32px;
    height: 32px;
  }
  .m-menu .m-global-nav > a {
    font-size: 14px;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 500;
  font-weight: 500;
  transition: 0.2s all ease-in-out;
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header .container .h-logo {
  width: auto;
  height: 40%;
}
.header .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .container .h-logo > img:nth-child(1) {
  display: none;
}
.header .container .h-logo > img:nth-child(2) {
  display: block;
}
.header .container .h-global-nav {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .h-global-nav .g-nav-item {
  position: relative;
  height: 100%;
}
.header .container .h-global-nav .g-nav-item > a {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 8px;
  font-size: 18px;
  line-height: 1;
  color: white;
  text-align: center;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .g-nav-item > a > svg {
  fill: white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .g-nav-item .g-depth2 {
  position: absolute;
  left: 50%;
  top: 100%;
  max-height: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, #09195d, #00a1e4);
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .g-nav-item .g-depth2 > a {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
  color: white;
  white-space: nowrap;
  background: transparent;
  transition: 0.2s all ease-in-out;
}
.header .container .h-global-nav .g-nav-item .g-depth2 > a:hover {
  color: black;
  background: white;
}
.header .container .h-global-nav .g-nav-item:hover .g-depth2 {
  max-height: 500px;
}
.header .container .h-right-wrap {
  height: 100%;
  display: none;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.header .container .h-right-wrap .lang-nav {
  position: relative;
  height: 100%;
  display: block;
}
.header .container .h-right-wrap .lang-nav > a {
  height: 100%;
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  grid-gap: 10px;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: white;
  text-align: center;
  transition: 0.2s all ease-in-out;
}
.header .container .h-right-wrap .lang-nav > a > svg {
  fill: white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-right-wrap .lang-nav > a:hover {
  color: #0068b3;
}
.header .container .h-right-wrap .lang-nav:hover .lang-select-list {
  max-height: 500px;
}
.header .container .h-right-wrap .lang-nav .lang-select-list {
  position: absolute;
  left: 50%;
  top: 100%;
  max-height: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, #09195d, #00a1e4);
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.header .container .h-right-wrap .lang-nav .lang-select-list > a {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
  color: white;
  white-space: nowrap;
  background: transparent;
  transition: 0.2s all ease-in-out;
}
.header .container .h-right-wrap .lang-nav .lang-select-list > a:hover {
  background: white;
  color: black;
}
.header .container .h-right-wrap .m-menu-open {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .container .h-right-wrap .m-menu-open > svg {
  width: 80%;
  height: auto;
  transition: 0.2s all ease-in-out;
}
.header:hover, .header.active {
  background: white;
}
.header:hover .container .h-logo > img:nth-child(1), .header.active .container .h-logo > img:nth-child(1) {
  display: block;
}
.header:hover .container .h-logo > img:nth-child(2), .header.active .container .h-logo > img:nth-child(2) {
  display: none;
}
.header:hover .container .h-global-nav .g-nav-item > a, .header.active .container .h-global-nav .g-nav-item > a {
  color: black;
}
.header:hover .container .h-global-nav .g-nav-item > a > svg, .header.active .container .h-global-nav .g-nav-item > a > svg {
  fill: black;
}
.header:hover .container .h-global-nav .g-nav-item > a:hover, .header.active .container .h-global-nav .g-nav-item > a:hover {
  color: #0068b3;
}
.header:hover .container .h-global-nav .g-nav-item > a:hover > svg, .header.active .container .h-global-nav .g-nav-item > a:hover > svg {
  fill: #0068b3;
}
.header:hover .container .h-right-wrap .lang-nav > a, .header.active .container .h-right-wrap .lang-nav > a {
  color: black;
}
.header:hover .container .h-right-wrap .lang-nav > a > svg, .header.active .container .h-right-wrap .lang-nav > a > svg {
  fill: black;
}
.header:hover .container .h-right-wrap .lang-nav > a:hover, .header.active .container .h-right-wrap .lang-nav > a:hover {
  color: #0068b3;
}
.header:hover .container .h-right-wrap .lang-nav > a:hover > svg, .header.active .container .h-right-wrap .lang-nav > a:hover > svg {
  fill: #0068b3;
}
.header:hover .container .h-right-wrap .m-menu-open > svg, .header.active .container .h-right-wrap .m-menu-open > svg {
  fill: black;
}
.header:hover .container .h-right-wrap .m-menu-open:hover > svg, .header.active .container .h-right-wrap .m-menu-open:hover > svg {
  fill: #0068b3;
}

@media (max-width: 1640px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: 70px;
  }
  .header .container .h-global-nav {
    width: 65%;
  }
  .header .container .h-global-nav .g-nav-item > a {
    font-size: 16px;
  }
  .header .container .h-global-nav .g-nav-item .g-depth2 > a {
    font-size: 14px;
  }
  .header .container .h-right-wrap .lang-nav > a {
    font-size: 16px;
  }
  .header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .header .container .h-global-nav {
    display: none;
  }
  .header .container .h-right-wrap {
    display: flex;
  }
}
@media (max-width: 480px) {
  .header .container .h-logo {
    height: 25%;
  }
  .header .container .h-right-wrap {
    grid-gap: 18px;
  }
}
.inquiry-sec {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #091531;
}
.inquiry-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
}
.inquiry-sec .container .sec-tit-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
}
.inquiry-sec .container .sec-tit-wrap > h1 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.inquiry-sec .container .sec-tit-wrap > h1::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-color: #C306C9;
  border-radius: 500px;
  transform: translate(10px, -50%);
}
.inquiry-sec .container #hcngContactForm {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.inquiry-sec .container #hcngContactForm .form-list {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: 1rem;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 1rem;
  border-bottom: 1px solid #fff;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item > label {
  position: relative;
  padding: 0;
  flex: 0 0 120px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  border-bottom: none;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item > input {
  position: relative;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  background: transparent;
  border: none;
  color: white;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item.frmTitle {
  flex: 1 1 100%;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item.frmTArea {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item.frmTArea > label {
  flex: 0 1 auto;
}
.inquiry-sec .container #hcngContactForm .form-list .form-item.frmTArea > textarea {
  position: relative;
  width: 100%;
  height: auto;
  padding: 14px;
  font-size: 14px;
  resize: none;
  background: rgba(255, 255, 255, 0.17);
  border: none;
  box-shadow: none;
  color: white;
}
.inquiry-sec .container #hcngContactForm .submit-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.inquiry-sec .container #hcngContactForm .submit-wrap button {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 1rem;
  background: transparent;
  border: none;
}
.inquiry-sec .container #hcngContactForm .submit-wrap button span {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: white;
}
.inquiry-sec .container #hcngContactForm .submit-wrap button img {
  position: relative;
  width: auto;
  height: 2rem;
}

@media (max-width: 1640px) {
  .inquiry-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .inquiry-sec .container .sec-tit-wrap {
    margin-bottom: 40px;
  }
  .inquiry-sec .container .sec-tit-wrap > h1 {
    font-size: 36px;
  }
  .inquiry-sec .container #hcngContactForm {
    grid-gap: 20px;
  }
  .inquiry-sec .container #hcngContactForm .form-list {
    grid-gap: 14px;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item {
    flex: 1 1 100%;
    grid-gap: 14px;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item > label {
    flex: 0 0 100px;
    font-size: 16px;
    line-height: 1.2;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item > input {
    padding: 10px;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item.frmTArea > textarea {
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .inquiry-sec .container .sec-tit-wrap {
    margin-bottom: 30px;
  }
  .inquiry-sec .container .sec-tit-wrap > h1 {
    font-size: 28px;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 10px;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item > label {
    flex: 0 1 auto;
  }
  .inquiry-sec .container #hcngContactForm .form-list .form-item > input {
    padding: 10px 0;
  }
}
.footer {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #091531;
}
.footer .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 200px;
}
.footer .container > img {
  width: 35%;
  height: auto;
}
.footer .container .f-info {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  grid-gap: 30px 50px;
}
.footer .container .f-info .info-item {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.footer .container .f-info .info-item .cate {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.footer .container .f-info .info-item .info-inner-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.footer .container .f-info .info-item .info-inner-list > li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
}
.footer .container .f-info .info-item .info-inner-list > li > em {
  font-weight: 600;
}

@media (max-width: 1640px) {
  .footer .container {
    padding: 0 16px;
    grid-gap: 100px;
  }
  .footer .container .f-info {
    grid-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .footer .container {
    flex-direction: column;
    grid-gap: 70px;
  }
  .footer .container > img {
    width: 100%;
    max-width: 320px;
  }
  .footer .container .f-info {
    width: 100%;
    justify-content: space-between;
  }
  .footer .container .f-info .info-item .cate {
    font-size: 16px;
  }
  .footer .container .f-info .info-item .info-inner-list > li {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .footer .container .f-info {
    max-width: 320px;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}/*# sourceMappingURL=common.css.map */