#header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, .03);
}
#header.scrolled{
  background-color: #fff;
}
#header .center2{
  height: 100%;
  gap: 0 5vw;
}
.main_menu{
  gap: 0 2vw;
  height: 100%;
}
.main_menu li{
  height: 100%;
}
.main_menu a{
  color: #fff;
  transition: all .2s;
  position: relative;
  height: 100%;
}
.main_menu li:hover a{
  color: #02c65a !important;
}
.main_menu>li a:after {
  content: " ";
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #02c65a;
  transition: width .5s;
}
.main_menu>li:hover a:after{
  width: 100%;
}

#header.scrolled .main_menu a {
  color: #111;
}

#sub_header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
#sub_header .center2{
  height: 100%;
  gap: 0 5vw;
}
#sub_header .main_menu a{
  color: #111;
}

/* sitemap */
.st_icon,
#sitemap{
  display: none;
}


/* mobile */
@media screen and (max-width: 767px){ 
  #header {
    height: 70px;
  }
  #header .center2{
    justify-content: space-between;
    gap: 0;
  }
  .main_menu{
    display: none !important;
  }
  .st_icon i{
    color: #fff;
  }
  #header.scrolled .st_icon i{
    color: #111;
  }
  #sub_header{
    height: 70px;
  }
  #sub_header .center2{
    justify-content: space-between;
    gap: 0;
  }
  #sub_header .st_icon i{
    color: #111;
  }

  /* sitemap */
  .st_icon{
    display: block;
  }
  #sitemap{
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(2,198,90,0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .8s;
  }
  #sitemap.show{
    transform: translateX(0);
  }
  .close_btn{
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 38px;
  }
  .st_box{
    padding: 12vh 15% 0;
    overflow: auto;
    width: 100%;
    height: 100%;
  }
  .st_menu{
    margin-top: 20px;
  }
  .st_menu ul{
    width: 100%;
    display: none;
  }

}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

  #header .center2{
    justify-content: space-between;
    gap: 0;
  }
  .st_icon i{
    color: #fff;
  }
  #header.scrolled .st_icon i{
    color: #111;
  }
  .main_menu{
    display: none !important;
  }
  #sub_header .center2{
    justify-content: space-between;
    gap: 0;
  }
  #sub_header .st_icon i{
    color: #111;
  }

  /* sitemap */
  .st_icon{
    display: block;
  }
  #sitemap{
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(2,198,90,0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .8s;
  }
  #sitemap.show{
    transform: translateX(0);
  }
  .close_btn{
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    padding-top: 38px;
  }
  .close_btn i{
    font-size: 30px;
  }
  .st_box{
    padding: 12vh 15% 0;
    overflow: auto;
    width: 100%;
    height: 100%;
  }
  .st_menu{
    margin-top: 20px;
  }
  .st_menu ul{
    width: 100%;
    display: none;
  }

}