@charset "utf-8";
.fc-b4 {
  color: #b4b4b4;
}
.fc-7f {
  color: #7f7f7f;
}
.fc-60 {
  color: #606060;
}
.bg-5abcb6 {
  background-color: #5abcb6;
}
.fc-8af8f1 {
  color: #5abcb6;
}
.fc-83 {
  color: #838383;
}
.fc-e1 {
  color: #e1e1e1;
}
.fc-ae {
  color: #aeaeae;
}
.fc-115586 {
  color: #115586;
}
.bg-115586 {
  background-color: #115586;
}

.fc-1e7ec2 {
  color: #1e7ec2;
}
.bg-1e7ec2 {
  background-color: #1e7ec2;
}
header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.mainPage header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.logo img {
  height: 50px;
}

.hd_nav {
  position: relative;
}
.hd_nav ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.mainPage .hd_nav ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.hd_nav nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  align-items: center;
}

.hd_nav nav ul li {
  position: relative;
}

.hd_nav nav ul li > a {
  text-decoration: none;
  padding: 15px 0;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1d7dc1;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  text-align: center;
  min-width: 140px;
  z-index:999;
}

.sub-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  display: block;
}

.sub-menu a {
  display: block;
  padding: 12px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.sub-menu a:last-child {
  margin-bottom: 0;
}

.sub-menu a:hover {
  font-weight: bolder !important;
}

.menu-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

/* 사이트맵  */
.site_map {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 600px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 0 0 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.site_map.active {
  right: 0;
}

/* 닫기 버튼 */
.xi-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 메뉴 스타일 */
.st_menu {
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.st_menu > a {
  display: block;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.st_menu > a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.st_menu.active > a::after {
  opacity: 1;
}

.st_menu > a:hover {
  /* color: #bedff6; */
}

.st_sub_menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.st_menu.active .st_sub_menu {
  max-height: 300px;
  padding: 10px 0 20px 0;
}

.st_sub_menu a {
  display: block;
  padding: 5px 0;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
}

.st_sub_menu a::before {
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.3s ease;
}

.st_sub_menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.st_sub_menu a:hover {
  color: white;
  transform: translateX(10px);
}

.st_txt2 {
  bottom: 142px;
}
/* mobile */
@media screen and (max-width: 766px) {
  /* site_map */
  #sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-113deg, rgba(65, 121, 86, 0.8), #6055af);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999999;
    transform: translateX(100%);
    transition: transform 0.8s;
  }

  #sitemap.show {
    transform: translateX(0);
  }

  header .close_btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 25px;
  }

  header .close_btn i {
    font-size: 25px;
  }

  .st_box {
    padding: 6vh 15% 0;
    overflow: auto;
    width: 100%;
    height: 100%;
  }

  .st_menu ul {
    width: 100%;
    display: none;
  }

  .st_menu p {
    padding: 15px 0;
  }

  .st_menu li {
    padding: 10px 0;
  }

  .mobile_menu {
    top: 12px;
    right: 0;
  }
  .hd {
    display: flex !important;
  }
  header {
    position: relative;
    z-index: 999;
    padding: 10px 0;
    height: 45px !important;
  }
  .logo {
    width: 132px;
  }
  .logo img {
    width: 100%;
    height: unset;
  }
  .site_map {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
  }
  .hd_nav nav ul li > a {
    padding: 0;
  }
.menu-icon img{
  width:20px;
}
  .st_menu {
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 30px;
  }
  .first_st_menu{
    margin-top:100px !important;
  }
}

/* tablet 세로기준 */
@media screen and (min-width: 767px) and (max-width: 1024px) {
}

/* 태블릿 아이패드미니 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
}
