@charset "utf-8";
html {
  line-height: 1.5;
}
body {
  overflow-x: hidden;
}

.hide {
  text-indent: -999rem;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, color 0.4s ease;
}

#header.white {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}
#header.black {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

#header.scroll-up {
  top: 0;
}
#header.point {
  background: #1b59fa !important;
}
.header-wrap {
  position: relative;
  z-index: 9000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 70px;
  margin: 0 auto;
}
.header-inner h1 {
  display: initial;
}
.header-inner .logo {
  display: inline-block;
  width: 9.438rem;
  height: auto;
}
.white .header-inner .logo {
  background: url(../../images/img/logo-blue.svg) 50%/100% no-repeat;
}

.black .header-inner .logo {
  background: url(../../images/img/logo-white.svg) 50%/100% no-repeat;
}

.header-inner .hd-group {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: center;
}
.header-inner .hd-group nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
.black .header-inner .hd-group nav ul li a {
  color: #fff;
}
.white .header-inner .hd-group nav ul li a {
  color: #000;
}
.header-inner .hd-group nav ul li a {
  display: block;
  padding: 10px;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}
.header-inner .hd-group nav ul li.active > a {
  position: relative;
}
.header-inner .hd-group nav ul li.active > a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.black .header-inner .hd-group nav ul li.active > a:before {
  border-bottom: 2px solid #fff;
}

.white .header-inner .hd-group nav ul li.active > a:before {
  border-bottom: 2px solid #000;
}

.header-inner .hd-item-sub {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;

  align-items: center;
  z-index: 9001;
}

.white .header-inner .hd-item-sub {
  color: #000;
}

.black .header-inner .hd-item-sub {
  color: #fff;
}

.header-inner .hd-item-sub ul {
  max-width: 1440px;
  margin: 0 auto;
}

.header-inner .hd-group nav ul li .hd-item-sub a {
  display: block;

  font-size: 0.95rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.white .header-inner .hd-group nav ul li .hd-item-sub a {
  color: #000;
}

.black .header-inner .hd-group nav ul li .hd-item-sub a {
  color: #fff;
}

.header-inner .hd-group nav ul li .hd-item-sub a:hover {
  color: #1b59fa;
}

.header-inner .hd-btn {
  display: inline-block;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.header-inner .hd-btn.modal-btn1 {
  color: #fff;
  background-color: #1b59fa;
}

.header-inner .hd-btn.modal-btn2 {
  background-color: #fff;
  color: #1b59fa;
}

.white .header-inner .hd-btn.modal-btn2 {
  outline: 1px solid #1b59fa;
}

.hd-lang {
  position: relative;
}
.hd-lang .lang-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-indent: -999rem;
}
.black .hd-lang .lang-btn {
  background: url(../../images/icon/ico-hdLang.svg) 50% / auto no-repeat;
}

.white .hd-lang .lang-btn {
  background: url(../../images/icon/ico-hdLang-black.svg) 50% / auto no-repeat;
}

.hd-lang .lang-list {
  display: none;
  position: absolute;
  top: 3rem;
  left: 50%;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid #1b59fa;
  background: #fff;
  transform: translateX(-50%);
}
.hd-lang .lang-list a {
  display: block;
  padding: 0.3rem 0;
  text-align: center;
  font-size: 0.95rem;
  transition: 0.3s;
}
.hd-lang .lang-list a:hover {
  color: #1b59fa;
}

.hd-btn-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-wrap .nav-sub-bg {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 4rem;
  background-color: #fff;
  z-index: 9000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.black .header-wrap .nav-sub-bg {
  background-color: rgba(0, 0, 0, 0.3);
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}
.menu-trigger {
  display: none;
  position: fixed;
  top: 17px;
  right: 20px;
  width: 27px;
  height: 22px;
  z-index: 1002;
  transition: all 0.5s;
}
.menu-trigger.scroll {
  top: -3rem;
}
.menu-trigger.scroll-up {
  top: 1.22rem;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;

  border-radius: 2px;
}

.white .menu-trigger span {
  background-color: #000;
}
.black .menu-trigger span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active-1 span:nth-of-type(1) {
  -webkit-transform: translateY (10px) rotate (-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #fff;
}
.menu-trigger.active-1 span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active-1 span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background-color: #fff;
}
/* .menu-trigger {display:none;} */
/* 
.menu-trigger{width:27px;height:22px;top:1.1rem}
.menu-trigger span{height:2px;}
.menu-trigger span:nth-of-type(2){top:10px}
.menu-trigger.active-1 span:nth-of-type(2){bottom:-0px}
.menu-trigger.active-1 span:nth-of-type(3){transform:translateY(-8px) rotate(45deg)} */

.m-nav-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: block;
  padding: 3.5rem 1rem;
  background: linear-gradient(-180deg, rgba(0, 21, 65, 1), #1c75bccc);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in;
  overflow-y: auto;
  box-sizing: border-box;
}
.m-nav-wrap.show {
  visibility: visible;
  opacity: 1;
}
.m-nav-wrap a {
  color: #fff;
}
.m-nav-wrap .m-nav-list {
  display: flex;
  flex-wrap: wrap;
}
.m-nav-wrap .m-nav-list > li {
  width: 33%;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.m-nav-wrap .m-nav-list > li:nth-child(3n) {
  border-right: none;
}
.m-nav-wrap .m-nav-list > li:nth-child(1),
.m-nav-wrap .m-nav-list > li:nth-child(2),
.m-nav-wrap .m-nav-list > li:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.m-nav-wrap .m-item-tit {
  font-size: 1.5rem;
  font-weight: 600;
}
.m-nav-wrap .m-item-sub {
  padding: 1rem 0 0;
}
.m-nav-wrap .m-item-sub a {
  display: inline-block;
  margin: 0.5rem 0;
  font-weight: 100;
  font-size: 1.125rem;
  opacity: 0.8;
}
.m-nav-wrap .m-nav-list .info {
  color: #fff;
}
.m-nav-wrap .m-nav-list .info span {
  font-size: 1.5rem;
  font-weight: 600;
}
.m-nav-wrap .m-nav-list .info p {
  margin-top: 1rem;
  padding-left: 2.5rem;
  font-size: 2rem;
  background: url(../../images/icon/ico-nav-call.svg) 0 50%/1.75rem no-repeat;
}

#snb-wrap {
  pointer-events: none;
  position: fixed;
  top: -4rem;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 998;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition-duration: 0.5s;
}
#snb-wrap.scroll {
  top: 0rem;
  opacity: 1;
  pointer-events: unset;
}
#snb-wrap.scroll-up {
  top: 4rem;
}
#snb-wrap.top {
  opacity: 0;
}
#snb-wrap ul {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #f7f7f7;
}
#snb-wrap ul li {
  margin: 0 1rem;
}
#snb-wrap ul li a {
  display: inline-block;
  padding: 1.25rem 0.5rem;
  font-size: 1rem;
  font-weight: 400;
}
#snb-wrap ul li a.on {
  font-weight: 500;
  color: #1b59fa;
  border-bottom: 2px solid #1b59fa;
}

#footer {
  background: #121c31;
  height: 360px;
}

#footer .ft-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
}
#footer .inner-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#footer .safedoc-watermark {
  position: absolute;
  left: 0;
  top: -30px;
  z-index: 1;
}
#footer .inner-width .con-wrap {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

#footer .inner-width .ft-left {
  display: flex;
  position: relative;
}
#footer .inner-width .ft-left > div {
  padding-right: 4rem;
}
#footer .inner-width .ft-left a {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
}

#footer p,
#footer a {
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.925rem;
  font-weight: 200;
}
#footer .txt-bold {
  font-weight: 500;
}
#footer .ft-right .sns-list {
  display: flex;
}
#footer .ft-right .sns-list a {
  margin-left: 1rem;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  text-indent: -999rem;
}
#footer .ft-right .sns-list a:nth-child(1) {
  margin-left: 0;
}
#footer .ft-right .sns-list .kakao {
  background: url(../../images/icon/ico-kakao.png) 50%/2.5rem no-repeat;
}
#footer .ft-right .sns-list .naver {
  background: url(../../images/icon/ico-blog.png) 50%/2.5rem no-repeat;
}
#footer .ft-right .sns-list .insta {
  background: url(../../images/icon/ico-insta.png) 50%/2.5rem no-repeat;
}
#footer .ft-right .sns-list .face {
  background: url(../../images/icon/ico-facebook.png) 50%/2.5rem no-repeat;
}
#footer .copyright {
  font-size: 0.875rem;
  opacity: 0.5;
}
