/*reset.css*/

body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  height:100%; 
  scroll-behavior: smooth;
}
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 .4s; 
}
header, header *{ 
  box-sizing:border-box; 
}
header.on{
  background-color: #fff;
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 100px;
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:250px; 
  transition: .4s;
}
.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 23px;
  transition: .4s;
}
#gnb > ul > li::after{
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fed900;
  transition: .4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#gnb > ul > li:hover::after{
  width: 100%;
}
#gnb > ul > li > a{ 
  display:block; 
  font-size:16px; 
  font-weight:600; 
  transition: all .4s; 
  color: #e6eaee; 
  position: relative;
}
#gnb:hover > ul > li{
  padding: 40px;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:10; 
  top:100% ; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:30px 15px; 
  text-align: center; 
  min-width: 145px;
}
#gnb > ul > li > ul > li{
  margin-bottom: 12px;
}
#gnb > ul > li > ul > li:last-child{
  margin-bottom: 0;
}
#gnb > ul > li > ul > li > a{
  font-size: 15px;
  color: #3e3a39;
  font-weight: 400;
  transition: .3s;
}

.hd-wrap{
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 0;
}
.language{
  display: inline-block;
  color: #fff;
  position: relative;
}
.language img{
  vertical-align: middle;
  max-width: 30px;
  height: auto;
}
.lang-ul{position: absolute; top: 100%; left: -9px; padding: 10px; background-color: #fff; display: none;}
.lang-ul > li{margin-bottom: 5px;}
.lang-ul > li:last-child{margin-bottom: 0;}
.lang-ul > li > a:hover{color: #ffd900;}
.lang-ul > li > a > img{ max-width:30px; }

.l-arr{margin-left: 5px;}
.l-arr > i{transition: .4s;}

.mem-ul{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.mem-ul > li{
  margin-right: 12px;
  padding-right: 12px;
  position: relative;
}
.mem-ul > li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.mem-ul > li::after{
  content: "";
  width: 1px;
  height: 16px;
  background-color: #e6eaee;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .3s;
}
.mem-ul > li:last-child::after{
  display: none;
}
.mem-ul > li > a{
  color: #e6eaee;
  font-size: 16px;
  font-weight: 300;
  transition: .3s;
}
.sns-ul{
  display: flex;
  align-items: center;
}
.sns-ul > li{
  margin-left: 12px;
}
.sns-ul > li:first-child{
  margin-left: 20px;
}
.sns-ul > li > a{
  color: #e6eaee;
  font-size: 18px;
  transition: .3s;
}


/* .scr */
header.on #gnb > ul > li > a, header.on .l-arr > i, header.on .mem-ul > li > a, header.on .sns-ul > li > a{
  color: #3e3a39;
}
header.on .mem-ul > li::after{
  background-color: #3e3a39;
}
header.scr #gnb > ul > li{ 
  padding: 30px 23px;
}
header.scr #gnb:hover > ul > li{
  padding: 30px 40px;
}
header.scr{
  background-color: #fff;
}
header.scr #gnb > ul > li > a, header.scr .l-arr > i, header.scr .mem-ul > li > a, header.scr .sns-ul > li > a{
  color: #3e3a39;
}
header.scr .mem-ul > li::after{
  background-color: #3e3a39;
}

/* menu */
.menu-toggler {
  position: absolute;
  top: 35px;
  right: 4rem;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 99999;
  transition: all 500ms ease-out;
}
.menu-toggler.open {
  transform: rotate(-45deg);
}
nav.fullscreenNav.open .menu-toggler {
  position: absolute;
  right: 3rem;top: 2rem;
}
nav.fullscreenNav.open .menu-toggler {
  transform: rotate(-45deg);
}
.bar {
  background-color: #fff;
  width: 100%;
  height: 2px;
  border-radius: 0.8rem;
  transition: background .5s ease;
}

.bar.half {
  width: 50%;
}
.bar.top {
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}

.open .bar.top {
  transform: rotate(-90deg) translateX(0.4rem);
}
.bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}
.open .bar.bottom {
  transform: rotate(-90deg) translateX(-0.4rem);
}

header.on .bar{
  background-color: #1d1d1d;
}


@media(max-width:1199px){ 
  .hd_con{ 
    padding:0 15px; 
  }
  .lg > a{ 
    padding:25px 0; 
    transition: .3s;
  }
  .lg > a > img{ 
    max-width:200px; 
  }
  header.scr .lg > a{
    padding: 19px 0;
  }
  .mn{ 
    display:none; 
  }

  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
 }
  .mo_btn{ 
    display:block; 
  }

  .number{
    display: none;
  }
}


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}

/*footer*/
footer{ 
  width: 100%;
  min-height: 100vh;
  padding: 150px 0 100px;
  background-color: #000;
  display: flex;
  align-items: center;
}
.ft_con{
  width: 100%;
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}
.ft-lg{
  width: 100%;
  display: flex;
  justify-content: center;
}
.ft-lg > img{
  width: 100%;
  max-width: 600px;
  filter: grayscale(1);
  opacity: 0.4;
}
.ft_tp{
  width: 100%;
  padding: 70px 0;
}

#fnb > ul{ 
  display: flex;
  align-items: center;
}
#fnb > ul > li{ 
  display:inline-block; 
  margin-right: 1rem;
  padding-right: 1rem;
  position: relative;
}
#fnb > ul > li::after{
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  border-radius: 50%;
}
#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:16px; 
  font-weight:400; 
  color: #555; 
  transition: .2s;
}
#fnb > ul > li > a:hover{
  color: #fff;
}
.ft_wrap{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  gap: 80px;
}
.ft_lt .ft-lg > img{
  max-width: 245px;
}
.ft_lt > ul{
  display: flex;
  padding-top: 1.5rem;
}
.ft_lt > ul > li{
  margin-right: 1rem;
}
.ft_lt > ul > li:last-child{
  margin-right: 0;
}
.ft_lt > ul > li > a{
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #333;
  background-color: #2a2a2a;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #777;
  transition: .2s;
}
.ft_lt > ul > li > a:hover{
  color: #fff;
}
.ft_txt{
  font-size: 16px;
  color: #555;
  font-weight: 700;
  line-height: 1.8;
}
.ft_txt > span{
  font-weight: 400;
}
.ft_bt{
  width: 100%;
  padding-top: 70px;
  text-align: center;
}
.ft_cp{
  font-size: 14px;
  color: #555;
  font-weight: 400;
}

/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }

  .lg{
    margin-right: 30px;
  }
  .mo-fixed{
    display: none;
  }

  .mt-menu{
    display: none;
  }
  .hd-btn{
    display: none;
  }

  .fixed-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: fixed;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    padding: 20px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.30), 0 1px 0 1px rgba(255, 255, 255, 0.10) inset;
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: .4s;
    transition-delay: .4s;
  }
  /* .fixed-menu.scr{
    right: 15px;
  } */
  .fm-lg{
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3E3A39;
  }
  .fm-lg img{
    width: 100%;
  }
  .fixed-menu > ul > li > a{
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    min-width: 90px;
    display: block;
    margin-bottom: 10px;
    transition: .3s;
  }
  .fixed-menu > ul > li:last-child > a{
    margin-bottom: 0;
  }
  .fixed-menu > ul > li > a > span{
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(230, 234, 238, 0.90);
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #333;
  }
  .fixed-menu > ul > li > a > h5{
    color: rgba(230, 234, 238, 0.90);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
  }
  .fixed-menu > ul > li > a > h5 > b{
    font-weight: 700;
  }
  .fixed-menu > ul > li > a > h5 > span{
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
  }
  .fixed-menu > ul > li > a:hover{
    border: 1px solid rgba(253, 210, 43, 0.40);
    background: linear-gradient(131deg, rgba(253, 210, 43, 0.20) 0%, rgba(255, 149, 0, 0.20) 100%);
  }

  .ft_txt_m{
    display: none;
  }
  
}
@media(max-width:1600px){
  
}
@media(max-width:1399px){

  .hd_con{
    padding: 0 30px;
  }
  .ft_con{
    padding: 0 30px;
  }
  .fixed-menu{
    right: 15px;
  }
  .fixed-menu > ul > li > a{
    padding: 10px 5px;
    min-width: 75px;
  }
  #gnb > ul > li{
    padding: 30px 18px;
  }
  #gnb:hover > ul > li{
    padding: 30px 34px;
  }
  #gnb > ul > li > a{
    font-size: 15px;
  }
  #gnb > ul > li > ul > li > a{
    font-size: 14px;
  }
  header.scr #gnb > ul > li{
    padding: 20px 18px;
  }
  header.scr #gnb:hover > ul > li{
    padding: 20px 34px;
  }
  .mem-ul > li > a{
    font-size: 14px;
  }
  .mem-ul > li::after{
    height: 12px;
  }
  .sns-ul > li > a{
    font-size: 15px;
  }
  .language img{
    max-width: 24px;
  }
  
}

@media(max-width:1199px){ 
  .d-none{ 
    display:none;
  }
  .d-block{ 
    display:block; 
  }

  .hd-wrap .mem-ul, .hd-wrap .sns-ul{
    display: none;
  }
  .hd_con{
    padding: 0 15px;
  }
  .ft_con{
    padding: 0 15px;
  }

  .fixed-menu{
    display: none;
  }

  .hd-wrap{
    padding: 10px 60px 10px 0;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #FFD901;
    color: #3E3A39;
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 33.3333%;
    padding: 1rem 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
  }
  .mo-fixed > a > span{
    display: inline-block;
    font-size: 14px;
  }

  .hd-btn{
    position: absolute;
    z-index: 9999999;
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
    border-radius: 50%;
    background-color: #fff; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .3s;
  }
  .hd-btn::before{
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 2px;
    background-color: #3E3A39;
    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: #3E3A39;
    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{
    background-color: #3E3A39;
  }
  .hd-btn.act::before{
    transform:translate(-50%, 0) rotate(45deg);
    margin-top:0;
    background-color: #fff;
    transition:0.3s transform 0.3s, 0.3s margin-top;
  }
  .hd-btn.act::after{
    transform:translate(-50%, 0) rotate(-45deg);
    margin-top:0;
    background-color: #fff;
    transition:0.3s transform 0.3s, 0.3s margin-top;
  }
  .hd-btn{
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
  }
  header.scr .hd-btn{
    background-color: #3E3A39;
  }
  header.scr .hd-btn::before, header.scr .hd-btn::after{
    background-color: #fff;
  }
  .mt-menu{
    width: 80%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -81%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: scroll;
    padding-bottom: 50px;
  }
  .mt-menu.mt-open{
    right: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 70px 0 50px;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:20px 25px; 
    font-size:16px; 
    font-weight:500; 
    color: #333;
    border-bottom: 1px solid #E9ECEF; 
    transition: .2s;
  }
  .mo_mn_mn > li > ul{ 
    display:none; 
    background-color:#f8f9fa; 
  }
  .mo_mn_mn > li > ul > li > a{ 
    display:block; 
    padding:15px 40px 15px; 
    font-size:14px; 
    font-weight:400; 
    color: #3E3A39;
    border-bottom: 1px solid #E9ECEF; 
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    background-color: #fed900; 
    position: absolute; 
    top: 50%; 
    right: 25px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #fed900; 
    position: absolute; 
    top: 50%; 
    right: 29px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  .mo_mn_mn > li > a.more.act{
    background-color: #3E3A39;
    color: #fed900;
  }
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }
 
  .mt-menu .mem-ul{
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    padding: 0 25px;
  }
  .mem-ul > li > a{
    font-size: 18px;
    color: #3E3A39;
  }
  .mt-menu .sns-ul > li:first-child{
    margin-left: 0;
  }
  .mt-menu .sns-ul > li > a{
    font-size: 20px;
    color: #3E3A39;
  }
  .mt-menu .sns-ul{
    width: 100%;
    padding: 0 25px;
  }
  .mt-menu .mem-ul > li::after{
    background-color: #3E3A39;
    opacity: 0.3;
  }

  footer{
    min-height: auto;
    padding: 50px 0 100px;
  }
  .ft_tp{
    display: none;
  }
  .ft_wrap{
    flex-direction: column-reverse;
    padding: 30px 0;
    gap: 20px;
  }
  .ft_txt{
    display: none;
  }
  .ft_txt_m{
    font-size: 12px;
    color: #555;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }
  .ft_txt_m > span{
    font-weight: 400;
  }
  .ft_lt > ul{
    padding-top: 20px;
  }
  .ft_lt .ft-lg{
    display: none;
  }
  .ft-lg{
    margin-bottom: 30px;
  }
  .ft_cp{
    font-size: 12px;
  }
  .ft_bt{
    padding-top: 30px;
  }
  
}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}