/*reset.css*/
html.lenis {
  height: auto;
}

.lenis {
  overflow-x: hidden;
}

.lenis-smooth {
  scroll-behavior: auto;
}
body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  overflow: visible !important;
  height: auto !important;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
body, html, input, textarea, select, button, table{ 
	font-family: 'pretendard', sans-serif;
	-webkit-font-smoothing:antialiased
 }
form, fieldset, h1, h2, h3, h4, h5, h6, p{ 
  margin:0; 
  padding:0; 
  word-break: keep-all;
}
form, fieldset, button{ 
  border:none;
}
ol, ul, li{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  word-break: keep-all;
}
img{ 
  max-width:100%; 
}
a{ 
  color:inherit; 
}
a, a:hover{ 
  text-decoration:none; 
}

.d-lg-none{ 
  display:none; 
}
.d-lg-block{ 
  display:block; 
}

#nc_container{
  z-index: 9999999999 !important;
}

/*header*/
header{ 
  position:fixed; 
  z-index:-1; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s ease-in; 
  opacity: 0;
  transition-delay: .2s;
}
header, header *{ 
  box-sizing:border-box; 
}
header.scr{
  opacity: 1;
  z-index:99999999;
}
.hd_con{ 
  width:100%; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 130px; 
  position: relative;
}

.lg{
  display: flex;
  width: 140px;
}
.lg > img{ 
  display:block; 
  width:100%; 
  transition: .5s;
}
.mn{ 
  display:flex; 
  align-items:center; 
}

/*gnb*/
#dropdown-wrap {
  position: absolute;  /* header 아래에 붙여놓을 경우 */
  top: 100%;           /* header 높이 바로 밑 */
  left: 0;
  width: 100%;
  height: 0;           /* 초기 상태는 높이 0 */
  background-color: #fff; /* 또는 반투명 배경 등 */
  overflow: hidden;    /* 내부 메뉴가 열릴 때만 보이도록 */
  z-index: 1;         /* header보다 아래면 조정 필요 */
  transition: height 0.3s ease;
  pointer-events: none;
}
#gnb{ 
  position:relative; 
  z-index:5;
}
#gnb > ul{ 
  display:flex; 
  flex-flow:row wrap; 
  padding-left: 0; 
  margin-bottom: 0;
}
#gnb > ul > li{ 
  position:relative; 
  z-index:1; 
  padding: 40px 16px;
  transition: .3s;
}
#gnb > ul > li::before{
  content: "";
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}
#gnb > ul > li:last-child::before{
  display: none;
}
#gnb > ul > li.has-sub::after{
  content: "";
  width: 0%;
  height: 2px;
  background-color: #786BAF;
  transition: .4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#gnb > ul > li.has-sub:hover::after{
  width: 100%;
}
#gnb > ul > li > a{ 
  display:block; 
  font-size:16px; 
  font-weight:400; 
  transition: .3s; 
  color: #fff; 
  position: relative;
}

#gnb:hover > ul > li{
  padding: 40px 16px;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:10; 
  top:calc(100% - 2px); 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:2px 0 0; 
  text-align: left; 
  min-width: 150px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 0.5px rgba(255,255,255,.04) inset;
  background-color: rgba(20,17,34,.78);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  border-top: 2px solid #786BAF;
}
#gnb > ul > li > ul > li > a{
  font-size: 14px;
  color: rgba(255,255,255,.52);
  font-weight: 500;
  transition: .3s;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: block;
}
#gnb > ul > li > ul > li > a:hover{
  color: #fff;
  background-color: rgba(120,107,175,.1);
}

.number{
  display: flex; 
  align-items: center;
  gap: 8px;
}
.number > p{
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  padding: 16px 32px; 
  font-size: 16px; 
  font-weight: 600; 
  color: #fff; 
  border-radius: 16px;
  background-color: #1e293b;
  transition: .4s;
}

/* .scr */
header.scr #gnb > ul > li{
  padding: 30px 16px;
}
header.scr{
  background-color: rgba(20,17,32,.55);
  border-bottom: 1px solid rgba(158,148,200,.15);
  box-shadow: 0 4px 32px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.05) inset;
}

.hd-btn{
  position: absolute;
  z-index: 9999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #786BAF; 
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  cursor: pointer;
}
.hd-btn::before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: -6px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn::after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%,0);
  margin-top: 5px;
  transition:0.3s transform, 0.3s margin-top 0.3s;
}
.hd-btn.act::before{
  transform:translate(-50%, 0) rotate(45deg);
  margin-top:0.5px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}
.hd-btn.act::after{
  transform:translate(-50%, 0) rotate(-45deg);
  margin-top:0.5px;
  transition:0.3s transform 0.3s, 0.3s margin-top;
}

@media(max-width:1199px){ 
  .hd_con{ 
    padding:0 15px; 
  }
  .mn{ 
    display:none; 
  }
  .hd-rt{
    display: none;
  }

  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
 }
  .number{
    display: none;
  }

}


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}

/* footer */
#footer{
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #0F0F15 0%, #0A0A0F 100%);
  padding-top: 80px;
}
.ft_con{
  width:100%; 
  max-width: 1430px;
  margin: 0 auto;
  padding:0 15px;
  position: relative;
}
.ft-wrap{
  width: 100%;
  display: flex;
  gap: 200px;
  margin-bottom: 60px;
}
.ft-lg{
  display: flex;
  width: 140px;
  margin-bottom: 24px;
}
.ft-lg img{
  width: 100%;
}
.ft-lt > p{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #71717A;
  margin-bottom: 25px;
}
.ft-lt > ul{
  display: flex;
  gap: 10px;
}
.ft-lt > ul > li > a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}
.ft-lt > ul > li > a > img{
  width: auto;
  height: 16px;
}
.ft-rt{
  display: flex;
  gap: 80px;
}
#sgnb > h5{
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#sgnb > h5 > span{
  display: inline-block;
  color: #786BAF;
  width: 15px;
  text-align: center;
}
#sgnb > ul > li{
  margin-bottom: 12px;
}
#sgnb > ul > li:last-child{
  margin-bottom: 0;
}
#sgnb > ul > li > a{
  font-size: 14px;
  font-weight: 400;
  color: #a1a1aa;
  transition: .3s;
}
#sgnb > ul > li > a:hover{
  color: #fff;
}
.contact > h5{
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact > h5 > span{
  display: inline-block;
  color: #786BAF;
  width: 15px;
  text-align: center;
}
.contact > ul > li{
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact > ul > li:last-child{
  margin-bottom: 0;
}
.contact-caption > p{
  font-size: 14px;
  color: #a1a1aa;
  font-weight: 400;
  line-height: 1.6;
}
.contact > ul > li > span{
  display: inline-block;
  color: #786BAF;
  width: 12px;
  text-align: center;
}
.ft-bt{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ft_cp{
  font-size: 13px;
  color: #52525b;
  font-weight: 400;
}
.ft_cp > span{
  color: #9b8fc4;
}
#fnb > ul{
  display: flex;
  gap: 20px;
}
#fnb > ul > li > a{
  font-size: 13px;
  color: #52525B;
  font-weight: 400;
  display: block;
  transition: .3s;
}
#fnb > ul > li > a:hover{ 
    color: #fff; 
}    

/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }

  .lg{
    margin-right: 30px;
  }
  .mo-fixed{
    display: none;
  }
  .mo_mn_mn{
    display: none;
  }
  .hd-btn{
    display: none;
  }

  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: -100%; 
    left: 0; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mt-menu.mt-open{
    top: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mt-menu > .mt-ul{width: 100%; max-width: 1230px; display: flex; justify-content: center;}
  .mt-menu > .mt-ul > li{flex: 1 0 auto; margin-right: 1.5rem;}
  .mt-menu > .mt-ul > li:last-child{margin-right: 0;}
  .mt-menu > .mt-ul > li > a{color: #000; font-size: 22px; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; display: block; border-bottom: 1px solid #9B8FC4; transition: .4s;}
  .mt-menu > .mt-ul > li > ul > li{margin-bottom: 12px;}
  .mt-menu > .mt-ul > li > ul > li:last-child{margin-bottom: 0;}
  .mt-menu > .mt-ul > li > ul > li > a{color: #666; font-size: 16px; transition: .4s;}
  .mt-logo{margin-bottom: 4rem; text-align: center;}
  .mt-logo img{display: inline-block; width: 200px;}

  .quick-bar{
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: -1;
    width: 130px;
    transition: .5s ease-in;
    opacity: 0;
    transition-delay: .2s;
  }
  .quick-bar.scr{
    opacity: 1;
    z-index: 9999;
  }
  .qb-content{
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.20);
    overflow: hidden;
  }
  .qbc-tp{
    padding: 14px;
    background: linear-gradient(121deg, #786BAF 0%, #9B8FC4 100%);
    text-align: center;
    color: #fff;
    display: block;
    width: 100%;
  }
  .qbc-tp > h3{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .qbc-tp > h5{
    font-size: 15px;
    font-weight: 700;
  }
  .qbc-caption{
    width: 100%;
    padding: 12px 14px;
    background-color: #f8f9fc;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
  }
  .qbc-caption > h5{
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 5px;
  }
  .qbc-caption > h2{
    font-size: 17px;
    color: #786baf;
    font-weight: 800;
  }
  .qbc-caption > h3{
    font-size: 13px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
  }
  .qbc-caption > h3 > span{
    color: #94A3B8;
    font-weight: 400;
    font-size: 11px;
  }
  .qbc-sns{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
  }
  .qbc-sns > a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: #F1F5F9;
  }
  .qbc-sns > a > img{
    width: auto;
    height: 16px;
  }
  .qbc-cont{
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
  }
  .qbc-cont > span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(120, 107, 175, 0.15);
    margin-bottom: 6px;
    font-size: 15px;
    color: #786BAF;
  }
  .qbc-cont.kakao > span{
    background: #fee500;
    color: #3C1E1E;
    font-size: 22px;
  }
  .qbc-cont.naver > span{
    background: #03C75A;
    color: #fff;
    font-size: 18px;
  }
  .qbc-cont > h5{
    font-size: 14px;
    color: #374151;
    font-weight: 600;
  }
  .qb-sb{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
    gap: 6px;
  }
  .sb-img{
    width: 100%;
    display: flex;
    max-width: 30px;
  }
  .sb-img img{
    width: 100%;
  }
  .qb-sb > p{
    font-size: 10px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
  }
  .topbtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #1E293B;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    gap: 6px;
  }
  .topbtn > span{
    display: inline-block;
    font-size: 12px;
  }
}


@media(max-width:1600px){
  .hd_con{
    padding: 0 60px;
  }
  .ft_con{
    max-width: 1280px;
  }
  .ft-rt{
    gap: 70px;
  }
  .number > p{
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
  }
  #gnb > ul > li > a{
    font-size: 15px;
  }
  .quick-bar{
    transform: translateY(-45%);
    width: 110px;
    right: 20px;
  }

}
@media(max-width:1440px){
  .hd_con{
    padding: 0 30px;
  }
  .number > p{
    padding: 12px 20px;
    border-radius: 10px;
  }
  .ft_con{
    max-width: 1200px;
  }
  .ft-wrap{
    gap: 100px;
  }
  .ft-rt{
    gap: 50px;
  }
}

@media(max-width:1199px){ 
  .d-none{ 
    display:none;
  }
  .d-block{ 
    display:block; 
  }

  .hd_con{
    padding: 0 15px;
  }

  .quick-bar{ 
    display:none;
  }

  .lg{
    padding: 10px 0;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #786BAF;
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 50%;
    padding: 20px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }
  .mo-fixed > a > p > span{
    display: inline-block;
    margin-right: 5px;
  }

  .hd-btn{
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
  }
  .mt-menu{
    width: 40%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -41%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
  }
  .mt-menu.mt-open{
    right: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 5rem 15px 2rem;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:15px 0px; 
    font-size:18px; 
    font-weight:500; 
    border-bottom: 1px solid #f2f2f2; 
    color: #1E293B;
  }
  .mo_mn_mn > li:last-child > a{
    border-bottom: 0;
  }
  .mo_mn_mn > li > ul{ 
    display:none; 
    background-color:#fafafa; 
    padding: 10px 0;
  }
  .mo_mn_mn > li > ul > li > a{ 
    display:block; 
    padding:8px 15px; 
    font-size:15px; 
    font-weight:400; 
    color: #818181;
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    background-color: #9B8FC4; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #9B8FC4; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  #footer{ 
    padding:60px 0 100px; 
  }
  .ft-wrap{
    gap: 60px;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .ft-lg{
    margin-bottom: 1rem;
  }
  .ft-lt > p{
    margin-bottom: 20px;
  }
  .ft-rt{
    gap: 30px;
    flex-wrap: wrap;
  }
  .contact > h5{
    margin-bottom: 1rem;
  }
  .contact > ul > li{
    margin-bottom: 4px;
  }
  #sgnb > h5{
    margin-bottom: 1rem;
  }
  #sgnb > ul > li{
    margin-bottom: 6px;
  }
  .ft-bt{
    padding: 30px 0 0;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #fnb > ul{
    gap: 1rem;
  }
  .ft_cp{
    margin-top: 1rem;
  }
}
@media(max-width:800px){
  .mt-menu{
    width: 80%;
    right: -81%;
  }
}
@media(max-width:600px){
  .mt-menu{
    width: 70%; 
    right: -71%; 
  }
  .ft-rt{
    flex-direction: column;
  }
  .mo_mn_mn > li > a{
    font-size: 16px;
  }
  .lg{
    padding: 14px 0;
    width: 120px;
  }
}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}