/*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; 
}
.hd_con{ 
  width:100%; 
  max-width: 1400px;
  margin: 0 auto;
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 20px;
  position: relative;
}

.lg{ 
  display:flex; 
  width:auto;
  height: 34px; 
  transition: .4s;
}
.lg img{
  display: block;
  height: 100%;
}
.mn{ 
  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; 
  padding:22px 2px; 
  transition: .3s;
}
#gnb > ul > li > a{ 
  display:inline-block; 
  font-size:16px; 
  font-weight:500; 
  color: #fff; 
  position: relative;
  padding: 6px 14px;
  border-radius: 6px;
  transition: .3s;
}
#gnb > ul > li > a:hover{
  background: rgba(255,255,255,0.12);
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:calc(100% - 65px); 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 180px; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:30px 15px; 
  text-align: center;  
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  margin-bottom: 20px; 
  font-size:16px; 
  white-space:nowrap; 
  position: relative;
  color: #666;
  transition: .2s;
}
#gnb > ul > li > ul > li:last-child > a{
  margin-bottom: 0;
}
#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{
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.number > a{
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 1rem;
  border-radius: 6px;
  background: #E8735A;
  transition: .2s;
}
.number > a:hover{
  background: #d4604a;
  transform: translateY(-1px);
}
.number > p{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: .3s;
}
.number > p > span{
  color: #E8735A;
}

/* .scr */
header.scr{
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 0 #E2EBE2;
  backdrop-filter: blur(8px);
}
header.scr #gnb > ul > li > a{
  color: #4B5563;
}
header.scr .number > p{
  color: #276B2B;
}

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

  .mo_btn{ 
    display:block;
  }

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

}


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

/*footer*/
footer{ 
  width: 100%;
  padding: 55px 0 0;
  background: #0D1F2D;
}
.ft_con{
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.ft-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 55px;
}
.ft-lg{
  height: 34px;
  display: flex;
  margin-bottom: 1rem;
}
.ft-lg img{
  height: 100%;
}
.ft_txt{
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.ft-box > h5{
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 1rem;
}
.ft-box > nav > ul > li{
  margin-bottom: 8px;
}
.ft-box > nav > ul > li:last-child{
  margin-bottom: 0;
}
.ft-box > nav > ul > li > a{
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 400;
  transition: .3s;
  display: block;
}
.ft-box > nav > ul > li > a:hover{
  color: #E8735A;
}
.ft-box > h3{
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}
.ft-box > ul > li{
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.4;
}
.ft-box > ul > li:last-child{
  margin-bottom: 0;
}
.ft-box > ul > li > span{
  color: #E8735A;
  display: inline-block;
  width: 14px;
  text-align: center;
}
.ft-bt{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ft_cp{
  color: rgba(255, 255, 255, 0.30);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
#fnb > ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
#fnb > ul > li > a{
  color: rgba(255, 255, 255, 0.30);
  font-size: 12px;
  font-weight: 400;
  transition: .3s;
  display: block;
}
#fnb > ul > li > a:hover{
  color: #E8735A;
}

/* mediaquery */

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

  .mo-fixed{
    display: none;
  }

  .mt-menu{
    display: none;
  }
  .hd-btn{
    display: none;
  }

  .fixed-cs{
    width: 100%;
    background-color: #F2F2F2;
    position: fixed;
    bottom: -97px;
    left: 0;
    z-index: 99999999;
    transition: .6s ease-in-out;
    transition-delay: .5s;
  }
  .fcs-con{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .fcs-num {
    display: flex;
    height: 95px;
    align-items: center;
    justify-content: flex-start;
    background-color: #E8735A;
    padding-left: calc((100% - 1280px) / 2);
    padding-right: 40px;
  }
  .fcs-num > h2{
    font-size: 28px;
    color: #fff;
    font-weight: 800;
  }
  .fcs-num > h2 > span{
    display: inline-block;
    margin-right: 10px;
  }
  .fcs-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 95px;
    padding-right: calc((100% - 1280px) / 2);
  }
  .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: 220px;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #fff;
    margin-left: 10px;
    color: #030B21;
  }
  .fcs-text input::placeholder{
    font-size: 16px;
    color: #A8A8A8;
  }
  .fcs-text input:focus{
    outline: none;
  }
  .fcs-pol{
    margin-left: 1rem;
  }
  .fcs-pol label{
    font-size: 13px;
    color: #030B21;
  }
  .fcsbtn{
    border: 1px solid #E8735A;
    padding: 1rem;
    font-size: 15px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    border-radius: 80px;
    background-color: #E8735A;
    cursor: pointer;
    margin-left: 1rem;
    min-width: 200px;
  }
  .fcs-btn{
    position: relative;
  }
  .fcs-btn > span{
    display: inline-block;
    font-size: 14px;
    color: #E8735A;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1rem;
    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;
  }

  .ft_txt_m{
    display: none;
  }
}
@media(min-width:2000px){
  
}

@media(max-width:1700px){
  

}
@media(max-width:1600px){
  
}
@media(max-width:1440px){
  
}

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

  .lg{
    height: 70px;
    padding: 1rem 0;
  }

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

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #E8735A;
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 33.333333%;
    padding: 20px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }
  .mo-fixed > a > p{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  .mo-fixed > a > p > span{
    font-size: 13px;
  }

  .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: #E8735A;
    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: #E8735A;
    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: #E8735A;
  }
  header.scr .hd-btn{
    background-color: #E8735A;
  }
  header.scr .hd-btn::before, header.scr .hd-btn::after{
    background-color: #fff;
  }
  .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: 20px;
    left: auto;
  }
  .mt-menu{
    width: 50%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -51%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0; 
    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: 2rem 0;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:16px 25px; 
    font-size:15px; 
    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: #666;
    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: #E8735A; 
    position: absolute; 
    top: 50%; 
    right: 25px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #E8735A; 
    position: absolute; 
    top: 50%; 
    right: 29px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  .mo_mn_mn > li > a.more.act{
    background-color: #f0f8ff;
    color: #E8735A;
  }
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  footer{
    padding: 40px 0 60px;
  }
  .ft-wrap{
    padding: 0;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
  }
  .ft-box{
    width: 100%;
  }
  .ft-box:nth-child(2), .ft-box:nth-child(3){
    display: none;
  }
  .ft-bt{
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  #fnb > ul{
    gap: 1rem;
  }

}
@media(max-width:800px){
  
}
@media(max-width:600px){
  .mt-menu{
    width: 60%; 
    right: -61%; 
  }
}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}