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

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

/*header*/
header{ 
  position:fixed; 
  z-index:99999999; 
  top:55px; 
  left:50%;
  transform: translateX(-50%); 
  width:100%; 
  max-width: 1520px;
  padding: 0 30px;
  transition:all .4s;
  background-color: #f2f2f2; 
  border-radius: 20px;
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  position: relative;
}

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

.hd-wrap{
  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:30px 1.5rem; 
  font-size:16px; 
  font-weight:400; 
  transition: all .4s; 
  color: #000; 
  position: relative;
}
#gnb > ul > li > a > span{
  display: inline-block;
  font-size: 12px;
  color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .4s;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:calc(100% + 20px); 
  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;  
  border-radius: 16px;
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
}
#gnb > ul > li > ul::after{
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: -25px;
  left: 0;
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  margin-bottom: 15px; 
  font-size:16px; 
  white-space:nowrap; 
  position: relative;
  color: #000;
  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 > ul{
  display: flex;
}
.number > ul > li{
  margin-left: 12px;
}
.number > ul > li > a{
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 20px;
  border-radius: 30px;
  border: 1px solid #222;
}
.number > ul > li > a.log{
  color: #222;
}
.number > ul > li > a.phone{
  color: #fff;
  background-color: #222;
}
.number > ul > li > a > span{
  display: inline-block;
  margin-right: 5px;
}
.number > ul > li > a.phone > p{
  animation: blink 1.3s infinite;
}

/* .scr */
header.scr{ 
  top: 30px;
}


/* 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 > img{ 
    max-width:170px; 
  }
  .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*/
.ft-form article{
  padding-top: 80px;
  background-color: #f9f9f9;
}
.ft-form article::before{
  display: none;
}
.sf-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sf-box{
  width: 49%;
}
.sf-img{
  display: flex;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.sf-img img{
  width: 100%;
}
.sf-info{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sf-cont > h5{
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.sf-cont > h5::after{
  content: "";
  width: 50px;
  height: 1px;
  background-color: #d4d4d4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sf-cont > ul > li{
  font-size: 13px;
  color: #000;
  font-weight: 300;
  margin-bottom: 7px;
  line-height: 1.4;
}
.sf-cont > ul > li:last-child{
  margin-bottom: 0;
}
.sf-cont > ul > li > span{
  font-weight: 600;
}
.sf-cont > ul > li > span > i{
  display: inline-block;
  width: 20px;
  text-align: center;
}
.form-bg{
    width: 100%;
    padding: 45px 20px;
    border-radius: 20px;
    background-color: #fcfcfc;
    border: 1px solid #dedede;
}
.form-con{
    width: 100%;
}
.form-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}
.form-wrap.radio .form-box{
    width: 24%;
}
.form-box{
    width: 32.33333%;
}
.form-box input{
    width: 100%;
    padding: 1rem;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}
.form-box h5{
    font-size: 14px;
    color: #0e0e0e;
    font-weight: 600;
    margin-bottom: 10px;
}
.form-tit{
    font-size: 14px;
    color: #0e0e0e;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    align-items: center;
}
.form-tit > span{
    display: inline-block;
    font-size: 12px;
    color: #C06C84;
    margin-left: 10px;
}
.form-box:hover input{
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10);
}
.form-box label{
    width: 100%;
    display: block;
}
.form-box label p.on{
    width: 100%;
    padding: 1rem;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 14px;
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    color: #000;
    font-weight: 600;
    transition: .3s;
}
.form-box label p.on:hover{
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10);
}
.form-box label [type="checkbox"]{
    display: none;
}
.form-box label [type="checkbox"]:checked + .on{
    background-color: #1B263B;
    border-color: #1B263B;
    color: #fff;
}
.form-textarea{
    width: 100%;
    margin-bottom: 1rem;
}
.form-textarea textarea{
    width: 100%;
    height: 150px;
    padding: 1rem;
    color: #000;
    outline: none;
    border: 1px solid #d5d5d5;
    resize: none;
    font-size: 14px;
    border-radius: 6px;
    transition: .3s;
}
.form-textarea textarea:hover{
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10);
}
.form-textarea textarea::placeholder{
    font-size: 14px;
    color: #000;
}
.submit-caption > p{
    font-size: 14px;
    font-weight: 600;
    color: #C06C84;
    margin-bottom: 10px;
}
.submit-caption > label{
  display: flex;
  align-items: center;
}
.submit-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.submit-btn-wrap{
    display: flex;
    align-items: center;
}
.submit-btn-wrap label{
    font-size: 14px;
    color: #000;
    font-weight: 600;
}
.submit-btn{
    position: relative;
}
.sbtn{
    padding: 1rem 1.5rem;
    width: 150px;
    font-size: 16px;
    color: #fff;
    background-color: #1B263B;
    cursor: pointer;
    position: relative;
    border: none;
    text-align: left;
    margin-left: 1rem;
    font-weight: 700;
}
.submit-btn > span{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 16px;
    right: 24px;
    transition: .2s;
}
.submit-btn:hover > span{
    right: 18px;
}

@media(max-width:1199px){
  .sf-wrap{
    flex-direction: column;
  }
  .sf-box{
    width: 100%;
  }
  .sf-info{
    flex-direction: column;
  }
  .sf-cont{
    width: 100%;
    margin-bottom: 20px;
  }
  .sf-box{
    width: 100%;
  }
  .sf-img{
    margin-bottom: 20px;
  }
  .sf-cont > ul > li{
    font-size: 13px;
    margin-bottom: 5px;
  }

  .form-bg{
      padding: 1rem;
      border-radius: 20px;
  }
  .form-wrap.mo{
      flex-direction: column;
  }
  .form-wrap.mo .form-box{
      width: 100%;
      margin-bottom: 1rem;
  }
  .form-wrap.mo .form-box:last-child{
      margin-bottom: 0;
  }
  .form-box input{
      font-size: 14px;
  }
  .form-box input::placeholder{
      font-size: 14px;
  }
  .form-box label p.on{
      font-size: 14px;
  }
  .form-box label p.on > span{
      left: 15px;
  }
  .form-textarea textarea{
      font-size: 14px;
  }
  .form-textarea textarea::placeholder{
      font-size: 14px;
  }
  .submit-wrap{
      flex-direction: column;
  }
  .submit-caption{
      margin-bottom: 1rem;
      width: 100%;
      justify-content: space-between;
  }
  .submit-caption label{
      font-size: 14px;
  }
  .pol-btn{
      font-size: 12px;
      padding: 8px 16px;
      margin-left: 3px;
  }
  .submit-caption label input{
      margin: 0;
  }
  .sbtn{
      padding: 1rem 3rem;
      width: 100%;
      margin-left: 0;
      margin-top: 1rem;
      text-align: center;
  }
  .submit-btn > span{
      top: 32px;
  }
  .submit-btn{
      width: 100%;
  }
  .form-wrap.radio{
      flex-wrap: wrap;
      gap: 10px;
  }
  .form-wrap.radio .form-box{
      width: calc((100% - 10px) / 2);
  }
  .submit-btn-wrap{
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
  }
}

/*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: 1550px; 
}
.ft_wrap{
  width: 100%;
  display: flex; 
  justify-content: space-between; 
}

.ft-lg{
  width: 200px;
  display: flex;
  margin-bottom: 35px;
}
.ft-lg img{
  width: 100%;
}
.ft_pt:first-child{
  width: 43%;
}
.ft_pt:last-child{
  width: 56%;
  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;
}
#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; 
  }

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

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

  .fixed-menu{
    position: fixed; 
    top: 50%; 
    right: 0; 
    z-index: 9998; 
    transform: translateY(-50%);
    border-top: 1px solid rgba(246, 241, 235, 0.30);
    border-bottom: 1px solid rgba(246, 241, 235, 0.30);
    border-left: 1px solid rgba(246, 241, 235, 0.30);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: -8px 0px 32px 0px rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    transition: .5s;
    padding: 30px 20px;
    border-radius: 20px 0 0 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .fb-logo{
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
  }
  .fb-logo img{
    width: 100%;
    max-width: 160px;
  }
  .fixed-menu > ul{
    padding: 0;
    margin-bottom: 0;
  }
  .fixed-menu > ul > li{
    margin-bottom: 10px;
  }
  .fixed-menu > ul > li:last-child{
    margin-bottom: 0;
  }
  .fixed-menu > ul > li > a{
    width: 260px;
    display: flex;
    align-items: center;
    padding: 1rem;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.30);
    background: rgba(30, 41, 59, 0.60);
    transition: .3s;
  }
  .fixed-menu > ul > li > a > span{
    display: inline-block;
    font-size: 14px;
    color: #64748b;
    position: absolute;
    right: 1.5rem;
    transition: .3s;
  }
  .fixed-menu > ul > li > a:hover > span{
    color: #fff;
  }
  .fixed-menu > ul > li > a:hover{
    border: 1px solid rgba(59, 130, 246, 0.30);
    background: rgba(59, 130, 246, 0.15);
  }
  .fb-caption{
    padding-left: 1rem;
  }
  .fb-caption > h5{
    font-size: 15px;
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 5px;
    transition: .3s;
  }
  .fixed-menu > ul > li > a:hover .fb-caption > h5{
    color: #60A5FA;
  }
  .fb-caption > p{
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
  }
  .fb-icon{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(135deg, #C06C84 0%, #3E4C59 100%);
    transition: .4s;
  }
  .fb-icon > .xi-kakaotalk{
    font-size: 20px;
  }
  .fixed-menu > ul > li > a:hover .fb-icon{
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  }
  .top{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid rgba(71, 85, 105, 0.50);
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.30);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -75px;
    color: #94A3B8;
    font-weight: 900;
    transition: .3s;
  }
  .top:hover{
    color: #fff;
  }
  .fixed-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-53%);
    left: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    box-shadow: -4px 0px 16px 0px rgba(79, 70, 229, 0.40);
    cursor: pointer;
    transition: .5s;
  }
  .fixed-btn > span{
    font-size: 20px;
    color: #fff;
    transition: .4s;
    line-height: 1;
  }
  .fixed-btn.fxact{
    left: -110px;
  }
  .fixed-btn.fxact > span{
    transform: scaleX(-1);
  }
  .fixed-menu.fxin{
    right: -330px;
  }

  .fixed-cs{
    width: 100%;
    background-color: #F2F2F2;
    position: fixed;
    bottom: -115px;
    left: 0;
    z-index: 99999999;
    transition: .8s ease-in-out;
    transition-delay: .5s;
  }
  .fcs-con{
    width: 100%;
    display: flex;
  }
  .fcs-num{
    display: flex;
    width: 25%;
    height: 100px;
    background-color: #121212;
    align-items: center;
    padding-left: calc((100% - 1520px) / 2);
  }
  .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;
    height: 100px;
    width: 75%;
    padding-right: calc((100% - 1520px) / 2);
    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: 300px;
    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: #030B21;
  }
  .fcs-text input:focus{
    outline: none;
  }
  .fcs-pol{
    margin-left: 1rem;
  }
  .fcs-pol label{
    font-size: 14px;
    color: #030B21;
  }
  .fcsbtn{
    border: 1px solid #121212;
    padding: 1rem 1.5rem;
    font-size: 16px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    border-radius: 80px;
    background-color: #121212;
    cursor: pointer;
    margin-left: 3rem;
    min-width: 220px;
  }
  .fcs-btn{
    position: relative;
  }
  .fcs-btn > span{
    display: inline-block;
    font-size: 14px;
    color: #121212;
    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;
  }
}
@media(max-width:1600px){

  header{
    width: calc(100% - 6rem);
  }
  .ft_con{
    padding: 0 3rem;
  }
  .fcs-num{
    padding-left: 3rem;
    width: 18%;
  }
  .fcs-wrap{
    padding-right: 3rem;
    width: 82%;
  }

  .form-bg{
    padding: 1rem;
    border-radius: 20px;
  }
  .form-wrap.mo{
      flex-direction: column;
  }
  .form-wrap.mo .form-box{
      width: 100%;
      margin-bottom: 1rem;
  }
  .form-wrap.mo .form-box:last-child{
      margin-bottom: 0;
  }
  .form-box input{
      font-size: 14px;
  }
  .form-box input::placeholder{
      font-size: 14px;
  }
  .form-box label p.on{
      font-size: 14px;
  }
  .form-box label p.on > span{
      left: calc(50% - 34px);
  }
  .form-textarea textarea{
      font-size: 14px;
  }
  .form-textarea textarea::placeholder{
      font-size: 14px;
  }
  .submit-wrap{
      flex-direction: column;
  }
  .submit-caption{
      margin-bottom: 1rem;
      width: 100%;
      justify-content: space-between;
  }
  .submit-caption label{
      font-size: 14px;
  }
  .pol-btn{
      font-size: 12px;
      padding: 8px 16px;
      margin-left: 3px;
  }
  .submit-caption label input{
      margin: 0;
  }
  .modal_body{
      height: 400px;
      padding: 1rem 1rem 60px;
  }
  .modal_foot{
      height: 45px;
  }
  .modal_foot .pol-close{
      margin-top: 3px;
      font-size: 16px;
  }
  .modal_body > p{
      font-size: 14px;
  }
  .sbtn{
      padding: 1rem 3rem;
  }


}
@media(max-width:1366px){
  header{
    width: calc(100% - 30px);
    padding: 0 20px;
  }
  .ft_con{
    padding: 0 15px;
  }
  .lg{
    margin-right: 10px;
  }
  .number > ul > li{
    margin-left: 6px;
  }
  .fcs-num{
    padding-left: 15px;
  }
  .fcs-wrap{
    padding-right: 15px;
  }
  .fcs-text input{
    width: 220px;
  }
}

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

  header{
    width: calc(100% - 30px);
    top: 20px;
    padding: 0;
  }
  header.scr{
    top: 15px;
  }
  .hd_con{
    padding: 0 15px;
  }
  .lg{
    margin-right: 0;
  }
  .lg > a{
    padding: 15px 0;
  }

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

  .sect-tit{
    margin-bottom: 2rem;
  }
  .sect-tit > h2{
      font-size: 26px;
  }
  .sect-tit > p{
      font-size: 16px;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #333433;
    color: #fff;
  }
  .mo-fixed::after{
    content: "";
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 50%;
    padding: 20px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
  .mo-fixed > a > span{
    display: inline-block;
    margin-right: 10px;
  }

  .hd-btn{
    position: absolute;
    z-index: 9999999;
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
    border-radius: 50%;
    background-color: #000; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .3s;
  }
  .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;
    transition:0.3s transform 0.3s, 0.3s margin-top;
  }
  .hd-btn.act::after{
    transform:translate(-50%, 0) rotate(-45deg);
    margin-top:0;
    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: #000;
  }
  header.scr .hd-btn::before, header.scr .hd-btn::after{
    background-color: #fff;
  }
  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -101%; 
    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: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: #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: #06C; 
    position: absolute; 
    top: 50%; 
    right: 25px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #06C; 
    position: absolute; 
    top: 50%; 
    right: 29px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  .mo_mn_mn > li > a.more.act{
    background-color: #f0f8ff;
    color: #06C;
  }
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }
  header.scr .bar{
    background-color: #000;
  }
  header.scr .open .bar{
    background-color: #000;
  }

  .open .bar{
    background-color: #000;
  }
  .open .bar.top{
    background-color: #000;
  }
  .open .bar.bottom{
    background-color: #000;
  }

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

}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}