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

/* fixed - 퀵메뉴 */
.fixed-wrap{width: 180px; height: 100vh; padding: 20px; position: fixed; top: 0; right: -180px; z-index: 9997; background-color: #fff; border-left: 1px solid #eee; transition: .5s;}
.fixed-wrap.fw-act{right: 0;}

.fixed-btn-wrap{position: absolute; top: 50%; left: -99px; transform: translateY(-50%); transition: .5s;}
.fixed-btn{display: block; width: 50px; height: 50px; border-color: #004EA2; background-color: #004EA2; color: #fff; border-radius: 50%; position: relative; cursor: pointer; transition: .5s;}
.fixed-btn > span{font-size: 20px; display: inline-block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1;}

.fixed-btn.on > span.fb-left{opacity: 1;}
.fixed-btn.on > span.fb-right{opacity: 0;}

.fixed-btn.on.act > span.fb-right{opacity: 1;}
.fixed-btn.on.act > span.fb-left{opacity: 0;}

.fixed-wrap.fw-act .fixed-btn-wrap{left: -60px;}

.fixed-img{display: flex; margin-bottom: 10px;}
.fixed-img img{width: 100%; max-width: 139px;}

.fixed-cont{margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ddd;}
.fixed-cont.last{margin-bottom: 0; padding-bottom: 0; border-bottom: 0;}

.fixed-cont > ul > li{margin-bottom: 5px;}
.fixed-cont > ul > li:last-child{margin-bottom: 0;}
.fixed-cont > ul > li > a{display: block; width: 100%; text-align: center; border: 1px solid #ddd; font-size: 14px; font-weight: 400; color: #000; padding: 10px; transition: .4s;}
.fixed-cont > ul > li > a:hover{background-color: #004EA2; color: #fff; border-color: #004EA2;}

.fixed-cont > ul > li > a > span{display: inline-block; margin-right: 3px; }

.fixed-cont > ul.sns{
  display: flex;
}
.fixed-cont > ul.sns > li{
  margin-bottom: 0;
}
.fixed-cont > ul.sns > li > a{
  display: flex;
  width: 35px;
  height: 35px;
  border: 0;
  padding: 0;
  margin-right: 10px;
  background-color: #fee500;
  border-radius: 10px;
  overflow: hidden;
}
.fixed-cont > ul.sns > li > a img{
  width: 100%;
}

.fixed-cont > h5{font-size: 12px; margin-bottom: 5px;}
.fixed-cont > h3{font-size: 16px; margin-bottom: 5px;}
.fixed-cont > p{font-size: 12px;}

/*header*/
header{ 
  position:relative; 
  z-index:999; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s; 
  background-color: #fff;
  padding: 40px 0 15px;
  border-bottom: 1px solid #004EA2;
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  max-width: 1470px;
  padding:0 15px; 
  position: relative;
}

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

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

/*gnb*/
.hd_bt{ 
  position:relative; 
  z-index:5; 
}
#gnb{ 
  position:relative; 
  z-index:5;
  margin-left: 20px;
}
#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:25px 20px; 
  font-size:14px; 
  font-weight:500; 
  transition: all .5s; 
  color: #004EA2; 
  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%; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:25px 15px 9px; 
  text-align: left;  
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
  border-radius: 15px;
}
#gnb > ul > li.on > ul{
  animation: ulani 0.3s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  margin-bottom: 8px;
  padding-bottom: 8px;
  font-size:14px; 
  white-space:nowrap; 
  position: relative;
  color: #2F2725;
  transition: .3s;
}
#gnb > ul > li > ul > li > a::before{
  content: ""; 
  transition: .3s; 
  width: 0; 
  height: 1px; 
  background-color: #2F2725; 
  position: absolute; 
  left: 0; 
  bottom: 2px;
}
#gnb > ul > li > ul > li:hover > a::before{
  width: 100%;
}
#gnb > ul > li > ul > li:hover > a{
  font-weight: 700;
}
#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; 
}

.hd-mem{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hd-mem > ul{
  display: flex;
  justify-content: flex-end;
}
.hd-mem > ul > li{
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
.hd-mem > ul > li::after{
  content: "";
  width: 1px;
  height: 10px;
  background-color: #004EA2;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  transition: .4s;
}
.hd-mem > ul > li:first-child::after{
  display: none;
}
.hd-mem > ul > li > a{
  font-size: 14px;
  font-weight: 400;
  color: #004EA2;
  transition: .4s;
  position: relative;
}

.sa-box{
  position: relative;
  padding: 25px 0;
}
.sa-cont{
  width: 335px !important;
  padding: 14px 14px 14px 45px !important;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 1);
  outline: none !important;
  color: #004EA2;
  font-size: 14px;
  font-weight: 400;
  height: auto !important;
  border: 1px solid #004EA2 !important;
}
.sa-cont::placeholder{
  color: #004EA2;
  font-weight: 300;
}
.sa-btn {
  position: absolute;
  top: 50%;
  left: 14px;
  background: none;
  font-size: 18px;
  color: #004EA2;
  padding: 0;
  transform: translateY(-45%);
  cursor: pointer;
}

/* menu */
.menu-toggler {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
  transition: all 500ms ease-out;
}
.menu-toggler.mt-act {
  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: #004EA2;
  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;
}

.mt-act .bar{background-color: #fff;}
.mt-act .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;
}
.mt-act .bar.bottom {
  transform: rotate(-90deg) translateX(-0.4rem);
}

/* mt-menu-pc */
.mt-menu-pc{
  width: 100%; 
  height: 100vh; 
  position: fixed; 
  top: -100%; 
  left: 0; 
  background-color: #004EA2; 
  z-index: 9998; 
  transition: .8s ease-in-out; 
  padding: 100px 15px; 
  display: flex; 
  flex-direction: column;
  justify-content: center;
}
.mt-menu-pc.mt-open{
  top: 0; 
  box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
}


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

  .mo_btn{ 
    display:block;
  }

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

  .menu-toggler {
    position: absolute;
    top: 35px;
    right: 4rem;
  }
  /* mt-menu */
  .mt-menu{
    width: 80%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -81%; 
    background-color: #fff; 
    z-index: 998; 
    transition: .8s ease-in-out; 
    overflow-y: scroll; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
  }
  .mt-menu.mt-open{
    right: -1px; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 1rem 15px 2rem;
  }
  .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: #666; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #666; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }

  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }
}

.fixed-bar{
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 888;
}
.fixed-sp{
  width: 50px;
  padding: 1rem 0;
  border: 1px solid #d5d5d5;
  border-radius: 50px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.fixed-sp > ul{
  padding-left: 0;
  margin-bottom: 0;
}
.fixed-sp > ul > li{
  margin-bottom: 7px;
}
.fixed-sp > ul > li:last-child{
  margin-bottom: 0;
}
.fixed-sp > ul > li > a{
  display: flex;
  max-width: 23px;
}
.fixed-sp > ul > li > a > img{
  width: 100%;
}
.fixed-sp > ul > li > a.thum > img{
  border-radius: 50%;
}
.fixed-bar > a{
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 36px;
  text-align: center;
  line-height: 57px;
  color: #3c1e1e;
  background-color: #fee500;
}
.fixed-bar > a.top{
  font-size: 20px;
  line-height: 50px;
  color: #d5d5d5;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  margin-top: 10px;
  transition: .4s;
}
.fixed-bar > a.top:hover{
  color: #004EA2;
  border-color: #004EA2;
}
.fixed-bar > a.band{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

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


/*footer*/
footer{ 
  border-top: 1px solid #f2f2f2;
  padding:40px 0; 
  background-color: #fff;
}
.ft_con{ 
  width:100%; 
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
}

.ft-lg{
  width: 130px;
}

.ft_pt:last-child{
  text-align: right; 
  padding-left: 3rem;
}
.ft_txt{ 
  font-size:15px; 
  color: #2F2725; 
  font-weight:300; 
  word-break:keep-all; 
  margin-bottom:1rem; 
  line-height: 1.5;
}
.ft_cp{ 
  font-size:14px; 
  color: #666; 
  font-weight:300; 
}

#fnb > ul{ 
  overflow:hidden; 
  text-align:right;
  padding-bottom: 1rem; 
  margin-bottom:1rem; 
  position: relative;
}
#fnb > ul::after{
  content: "";
  width: 100px;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  bottom: 0;
  right: 0;
}
#fnb > ul > li{ 
  display:inline-block; 
  margin-left:20px; 
  padding:2px; 
}
#fnb > ul > li > a{ 
  display:block; 
  font-size:15px; 
  font-weight:400; 
  color: #2F2725; 
  transition: .2s;
}

.fnb{ 
  overflow:hidden; 
  text-align:right;
  margin-bottom:1.5rem; 
}
.fnb > li{ 
  display:inline-block; 
  margin-left:20px; 
  padding:2px; 
}
.fnb > li > a{ 
  display:block; 
  font-size:15px; 
  font-weight:400; 
  color: #2F2725; 
  transition: .2s;
}

div.cart_count {
  position: absolute;
  top: -19px;
  right: -10px;
  /* border: 1px solid black; */
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  background: #092f9e1a;
  line-height: 18px;
  font-size: 12px;
}

/* mediaquery */

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

  .hd-wrap-mo{
    display: none;
  }

  .mtm-logo {
    text-align: center;
    margin-bottom: 4rem;
  }
  .mtm-logo > img {
    width: 100%;
    display: inline-block;
    max-width: 220px;
  }

  .mt-menu{
    display: none;
  }

  .mt-menu-pc > ul {
    width: 100%;
    max-width: 1230px;
    padding: 0 2rem;
    margin: 0 auto;
  }
  .mt-menu-pc > ul > li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mt-menu-pc > ul > li > a {
    font-size: 16px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    position: relative;
    display: block;
    transition: .3s;
    width: 15%;
  }
  .mt-menu-pc > ul > li > ul {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
  }
  .mt-menu-pc > ul > li > ul > li {
    flex: 0 0 auto;
    text-align: left;
    padding: 0 15px;
  }
  .mt-menu-pc > ul > li > ul > li > a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    transition: .3s;
  }

}

@media(max-width:1499px){
  .ft_con{
    padding: 0 2rem;
  }
  .hd_con{
    padding: 0 2rem;
  }

  /* #gnb > ul > li > a{
    padding: 60px 20px; 
    font-size: 14px;
  }
  header.scr #gnb > ul > li > a{
    padding: 30px 20px;
  }
  .number > p{
    padding: 12px 2rem; 
    font-size: 14px;
  }
  #gnb > ul > li > ul{
    min-width: 160px;
  }
  #gnb > ul > li > ul > li > a{
    font-size: 14px;
  }
  #gnb > ul > li > ul > li > ul > li > a{
    font-size: 13px;
  }
  #gnb > ul > li > ul > li > ul{
    min-width: 135px;
  } */
}
@media(max-width:1399px){
  #gnb > ul > li > a{
    padding: 25px 15px;
  }
  .mt-menu-pc > ul > li > a{
    width: 12%;
  }
  .mt-menu-pc > ul > li > ul{
    width: 83%;
  }
}

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

  .fixed-wrap{display: none;}

  header{
    background-color: #fff;
    padding: 25px 0;
    z-index: 777;
  }
  .hd-wrap{
    display: none;
  }
  .hd-wrap-mo{
    display: block;
  }
  .lg-mo{
    display: flex;
    justify-content: center;
    width: 155px;
    margin: 0 auto;
  }
  .lg-mo img{
    width: 100%;
  }
  #gnbmo{
    padding-top: 25px;
  }
  #gnbmo > ul{
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -ms-overflow-style:none; /* IE and Edge */
    scrollbar-width:none; /* Firefox */
  }
  #gnbmo > ul::-webkit-scrollbar{
    display: none;
  }
  #gnbmo > ul > li{
    margin-right: 1rem;
    flex: 0 0 auto;
  }
  #gnbmo > ul > li:last-child{
    margin-right: 0;
  }
  #gnbmo > ul > li > a{
    font-size: 15px;
    font-weight: 600;
    color: #000;
  }
  .fixed-bar{
    display: none;
  }

  .hd_con{padding: 0 15px;}

  .bar{
    background-color: #004EA2;
  }
  .wmenu-mo{width: 100%; position: fixed; z-index: 999; bottom: 0; left: 0;}
  .mom-wrap{position: relative; width: 100%; display: flex; justify-content: space-between; border-radius: 10px 10px 0 0; background-color: #004EA2; color: #fff;}
  .mo-bg{
    display: block;
    width: 100%;
    max-width: 90px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mom-cont{width: 100%; display: flex;}
  .mom-cont > a{display: flex; width: 20%; flex-direction: column; align-items: center; font-size: 12px; font-weight: 500; padding: 15px 0;position: relative;}
  .mom-cont > a > img{display: inline-block; max-height: 23px; margin-bottom: 10px;}

  .menu-btn{width: 56px; height: 56px; border-radius: 50%; background-color: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 9999;}

  .menu-toggler{top: 18px; right: 14px; position: absolute;}

  .mt-menu{width: 100%; height: 100vh; position: fixed; top: 101%; left: 0; background-color: #E0F7F4; z-index: 888; transition: .8s ease-in-out; overflow-y: scroll; padding: 2rem 15px 110px; justify-content: flex-start;}
  .mt-menu.mt-open{top: 0; box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);}

  .mt-lg{text-align: center; margin-bottom: 1rem;}
  .mt-lg > img{display: inline-block; max-width: 150px;}

  .mp-wrap{width: 100%; display: flex; justify-content: center; margin-bottom: 1rem;}
  .mp-wrap > ul{display: flex;}
  .mp-wrap > ul > li{font-size: 14px; color: #000; margin-right: 10px; padding-right: 10px; position: relative;}
  .mp-wrap > ul > li::after{content: ""; width: 1px; height: 10px; background-color: #666; position: absolute; top: 3px; right: -1px;}
  .mp-wrap > ul > li:last-child{margin-right: 0; padding-right: 0;}
  .mp-wrap > ul > li:last-child::after{display: none;}

  .sa-wrap.mo{display: block; margin-bottom: 1rem; position: relative;}
  .sa-wrap.mo .sa-cont{width: 100% !important; background-color: #fff;}
  .sa-wrap.mo .sa-cont::placeholder{
    color: #666;
  }
  .sa-wrap.mo .sa-btn{color: #000;}

  .mobile-menu{padding: 1.5rem 1rem 1rem; background-color: #fff; border-radius: 10px;}
  .mobile-menu > ul > li{margin-bottom: 1.5rem;}
  .mobile-menu > ul > li:last-child{margin-bottom: 0;}
  .mobile-menu > ul > li > a{display: block; position: relative; font-size: 14px; font-weight: 500;}
  .mobile-menu > ul > li > a.more{position: relative; margin-bottom: 10px;}
  .mobile-menu > ul > li > a.more::before{content: ""; width: 2px; height: 10px; background-color: #2F2725; position: absolute; top: 50%; right: 4px; transform: translateY(-50%); transition: .3s;}
  .mobile-menu > ul > li > a.more.act::before{opacity: 0;}
  .mobile-menu > ul > li > a.more::after{content: ""; width: 10px; height: 2px; background-color: #2F2725; position: absolute; top: 50%; right: 0; transform: translateY(-50%);}

  .mobile-menu > ul > li > ul{display: none; padding: 1rem; border-radius: 10px; background-color: #f7f7f7;}
  .mobile-menu > ul > li > ul > li{margin-bottom: 10px;}
  .mobile-menu > ul > li > ul > li:last-child{margin-bottom: 0;}
  .mobile-menu > ul > li > ul > li > a{display: block; text-align: center; font-size: 14px; font-weight: 400;}

  .mt-menu .depth3{padding: 10px 0 5px 10px;}
  .mt-menu .depth3 > li{margin-bottom: 8px;}
  .mt-menu .depth3 > li:last-child{margin-bottom: 0;}
  .mt-menu .depth3 > li > a{font-size: 13px; color: #666; transition: .3s;}
  .mt-menu .depth3 > li > a:hover{color: #004EA2;}

  .mt-menu .depth3{display: none;}
  .mt-menu .depth3btn{color: #ddd; display: block; transition: .5s; font-size: 14px; width: 100%; text-align: right; position: absolute; top: 2px; left: 0;}

  footer{ 
    padding:40px 15px 117px; 
  }
  .ft_con{
    padding: 0; 
    flex-direction: column;
  }
  .ft-lg{
    max-width: 250px; 
    margin-bottom: 1.5rem;
  }
  .ft_pt:last-child{
    padding-left: 0;
  }
  #fnb > ul{
    text-align: center;
  }
  #fnb > ul > li{
    margin-left: 0; 
    padding: 0 15px 10px 0;
  }
  .ft_txt{
    font-size: 12px;
  }
  .ft_cp{
    font-size: 12px;
  }
  #fnb > ul > li > a{
    font-size: 14px;
  }
  .ft_pt:last-child{
    text-align: center;
  }
  div.cart_count{
    top: 5px;
    right: 5px;
  }

  #fnb > ul::after{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .fnb{
    text-align: center;
  }
  .fnb > li{
    margin-left: 15px;
  }
  .fnb > li:first-child{
    margin-left: 0;
  }
  .fnb > li > a{
    font-size: 14px;
  }

  .menu-toggler {
    z-index: 99999;
  }
  .mt-act .bar{
    background-color: #004EA2;
  }

}
@media(max-width:576px){
  .mo-bg{
    max-width: 65px;
    top: -11px;
  }
  #gnbmo > ul{
    justify-content: flex-start;
  }
} 

@keyframes ulani{
  0%{
    opacity: 0;
    top: 120%;
  }
  100%{
    opacity: 1;
    top: 90%;
  }
}