/*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:99999999; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  max-width: 1470px;
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 15px; 
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:180px; 
  transition: .5s;
}
.mn{ 
  display:flex; 
  align-items:center; 
}

.hd-wrap{
  display: flex; 
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hd-menu{
  display: flex; 
  align-items: center;
}

/*gnb*/
.hd_bt{ 
  position:relative; 
  z-index:5; 
}
#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; 
}
#gnb > ul > li > a{ 
  display:block; 
  padding: 44px 30px; 
  font-size:18px; 
  font-weight:600; 
  transition: all .5s; 
  color: #fff; 
  position: relative;
}
#gnb > ul > li:last-child > a::after{
  display: none;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:100%; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 130px; 
  box-sizing: border-box; 
  background-color: #ff214f; 
  padding:25px 10px 25px; 
  text-align: center;  
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
  border-radius: 20px;
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
  transition: .5s;
  opacity: 0;
}
#gnb > ul > li.on > ul > li{
  opacity: 1;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding:8px 0; 
  font-size:16px; 
  white-space:nowrap; 
  position: relative;
  color: #fff;
}

#gnb > ul > li > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:-10px; 
  left: calc(100% + 15px); 
  padding: 10px 0; 
  display:none; 
  min-width:150px; 
  box-shadow:0 12px 30px -2px rgba(0,0,0,.1); 
  background-color: #fafafa;
}
#gnb > ul > li > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 15px; 
  font-size:14px; 
}

.number{
  display: flex; 
  align-items: center;
}
.number > p{
  display: inline-block; 
  padding: 12px 25px; 
  font-size: 16px; 
  font-weight: 400; 
  color: #fff; 
  border: 1px solid #fff;
  border-radius: 30px;
  margin-left: 1rem;
  transition: .4s;
}

/* .scr */
header.scr #gnb > ul > li > a{ 
  padding: 30px;
}

.hd-btn{
  position: absolute;
  z-index: 9999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #d9b559; 
  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; 
  }
  .lg > a{ 
    padding:10px 0; 
  }
  .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{ 
  padding:70px 0 170px; 
  background-color: #202020;
  /* border-top: 1px solid #1e1e1e; */
}
.ft_con{ 
  width:100%; 
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1470px; 
}
.ft_wrap{
  width: 100%;
  display: flex; 
  justify-content: space-between; 
}

.ft-lg{
  width: 180px;
  display: flex;
  margin-bottom: 35px;
}
.ft-lg img{
  width: 100%;
}
.ft_pt:first-child{
  width: 40%;
}
.ft_pt:last-child{
  width: 59%;
  text-align: right; 
}
.ft_txt{ 
  font-size:14px; 
  color: #fff; 
  font-weight:300; 
  word-break:keep-all; 
  margin-bottom:1rem; 
  line-height: 1.6;
}
.ft_cp{ 
  font-size:14px; 
  color: #fff; 
  font-weight:300; 
}

#fnb > ul{ 
  overflow:hidden; 
  text-align:left; 
  margin-top: 1rem; 
}
#fnb > ul > li{ 
  display:inline-block; 
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  padding-bottom: 10px;
}
#fnb > ul > li::after{
  content: "";
  width: 1px;
  height: 8px;
  background-color: #fff;
  position: absolute;
  top: 4px;
  right: -1px;
}
#fnb > ul > li:last-child{
  margin-right: 0;
  padding-right: 0;
}
#fnb > ul > li:last-child::after{
  display: none;
}
#fnb > ul > li > a{ 
  display:block; 
  font-size:14px; 
  font-weight:400; 
  color: #fff; 
  transition: .2s;
}

/* 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;
  }

  .fixed-cs{
    width: 100%;
    background-color: #EDEDED;
    position: fixed;
    bottom: -97px;
    left: 0;
    z-index: 99999999;
    transition: .5s ease-in-out;
  }
  .fcs-con{
    width: 100%;
    display: flex;
  }
  .fcs-num {
    display: flex;
    flex: 1;
    height: 84px;
    background-color: #d9b559;
    align-items: center;
    margin-left: auto;
    justify-content: flex-start;
    padding-right: 20px;
    padding-left: calc((100% - 1440px) / 2);
}
  .fcs-num > h2{
    font-size: 24px;
    color: #fff;
    font-weight: 800;
  }
  .fcs-num > h2 > span{
    display: inline-block;
    margin-right: 10px;
  }
  .fcs-wrap{
    display: flex;
    align-items: center;
    height: 84px;
    flex: 0 0 auto;
    padding-right: calc((100% - 1440px) / 2);
    padding-left: 20px;
    justify-content: flex-end;
  }
  .fcs-wrap form{
    display: flex;
    align-items: center;
  }
  .fcs-text{
    margin-left: 1rem;
  }
  .fcs-text > span{
    color: #030B21;
    font-size: 16px;
    font-weight: 600;
  }
  .fcs-text input{
    width: 280px;
    background-color: #fff;
    padding: 1rem;
    border: 0;
    border-radius: 11px;
    font-size: 16px;
    margin-left: 10px;
    text-align: left;
    color: #030B21;
  }
  .fcs-text input::placeholder{
    font-size: 14px;
    color: #A8A8A8;
  }
  .fcs-text input:focus{
    outline: none;
  }
  .fcs-pol{
    margin-left: 1rem;
  }
  .fcs-pol label{
    font-size: 14px;
    color: #030B21;
  }
  .fcs-btn{
    border: 1px solid #d9b559;
    padding: 1rem 1.5rem;
    font-size: 18px;
    text-align: left;
    color: #fff;
    font-weight: 800;
    border-radius: 80px;
    background-color: #d9b559;
    cursor: pointer;
    margin-left: 2rem;
    min-width: 250px;
    position: relative;
  }
  .fcsbtn{
    font-size: 18px;
    color: #fff;
    border: none;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
  }
  .fcs-btn > span{
    display: inline-block;
    font-size: 14px;
    color: #d9b559;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: .3s;
    text-align: center;
    line-height: 30px;
  }
  .fcs-btn:hover > span{
    transform: translateY(-50%) rotate(180deg);
  }
  .fixed-cs.scr{
    bottom: -2px;
  }

  .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 #d9b559; 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;}

  .fix-bar{
    width: 130px;
    position: fixed;
    bottom: 3rem;
    right: 0;
    z-index: 99999;
    transition: .5s ease-in-out;
  }
  .fix-bar.scr{
    bottom: 7rem;
  }
  .fix-bar > ul{
    padding-left: 0;
    margin-bottom: 0;
  }
  .fix-bar > ul > li{
    margin-bottom: 1rem;
  }
  .fix-bar > ul > li:last-child{
    margin-bottom: 0;
  }
  .fix-bar > ul > li > a{
    display: flex;
    justify-content: center;
  }
  .fix-bar > ul > li > a > img{
    width: 100%;
    max-width: 56px;
  }
}


@media(max-width:1600px){
  .fcs-num{
    justify-content: center;
  }

}
@media(max-width:1440px){
  .fcs-num{
    padding-left: 15px;
  }
  .fcs-wrap{
    padding-right: 15px;
  }
  .fcs-text input{
    width: 250px;
  }
  .fcs-btn{
    padding: 1rem;
    min-width: 230px;
  }
  .fcs-btn > span{
    right: 1rem;
  }
  .fix-bar{
    width: 100px;
  }
}

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

  .hd_con{
    padding: 0 15px;
  }

  .fixed-menu{
    display: none;
  }
  .fixed-cs{
    display: none;
  }

  .fix-bar{
    display: none;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #d9b559;
  }
  .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; 
  }
  .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: #d9b559; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #d9b559; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  .lg > a > img{
    width: 150px;
  }


  footer{ 
    padding:40px 0 100px; 
  }
  .ft_con{
    padding: 0 15px; 
    flex-direction: column;
  }
  .ft-lg{
    max-width: 150px; 
    margin-bottom: 1.5rem;
  }
  .ft_wrap{
    flex-direction: column;
  }
  .ft_pt:first-child{
    width: 100%;
    margin-bottom: 1rem;
  }
  .ft_pt:last-child{
    width: 100%;
  }
  #fnb > ul{
    display: none;
  }
  .ft_txt{
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
  }
  .ft_cp{
    font-size: 11px;
    text-align: left;
  }

}
@media(max-width:800px){
  .mt-menu{
    width: 80%;
    right: -81%;
  }
}
@media(max-width:587px){
  .mt-menu{
    width: 70%; 
    right: -71%; 
  }
  .lg > a > img{
    width: 130px;
  }
}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}