@charset "utf-8";
.fc-2a427d {
  color: #2a427d;
}
.bg-2a427d {
  background-color: #2a427d;
}
.fc-60 {
  color: #606060;
}
.bg-5abcb6 {
  background-color: #5abcb6;
}
.fc-8af8f1 {
  color: #5abcb6;
}
.fc-83 {
  color: #838383;
}
.fc-e1 {
  color: #e1e1e1;
}

header {
  position: fixed;
  padding: 35px 0 28px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.91);
  width: 100%;
}
.hd{
    gap: 0 4vw;
}
.logo {
  top: -14px;
}
.hd_hover_li {
  position: relative;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.sub_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #2a427d;
  padding: 20px;
  min-width: 130px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;

  transform: translateX(-50%) translateY(-10px);

  transition: all 0.3s ease;
  z-index: 1000;
}

.hd_hover_li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(40px);
}

.hd_hover_a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

.hd_hover_a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #2a427d;
  transition: width 0.3s ease;
}

.hd_hover_li:hover .hd_hover_a::after {
  width: 100%;
}

.hd_hover_li:hover .hd_hover_a {
  color: #2a427d;
}

.hd_hover_a.center-expand::after {
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}

.hd_hover_li:hover .hd_hover_a.center-expand::after {
  width: 100%;
}

.sub_menu a {
  color: white;
  display: block;
  padding: 8px 0;
  transition: all 0.2s ease;
}

.sub_menu a:last-child {
  border-bottom: none;
}

.sub_menu a:hover {
  font-weight: bold;
}

.call_box {
  border: 2px solid #319a39;
  border-radius: 50px;
  padding: 7px;
}
.call_icon {
  width: 45px;
  height: 45px;
}
.hd_tel {
  padding: 0 15px;
}
.hd_quick_menu {
  top: 0;
  right: -20px;
}
.hd_quick_menu nav ul {
  width: 340px;
}
.hd_quick_menu nav ul li a {
  color: #5d5d5d;
  padding: 5px 15px;
  transition: 0.2s all ease-in-out;
}
.hd_quick_menu nav ul li a:hover {
  color: #fff;
  background-color: #125814;
  border-radius: 50px;
}
.nav_first {
  margin-top: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #d7d7d7;
}

.nav_first nav ul li {
  color: #222;
  transition: 1s all ease-in-out;
}

.nav_first nav ul li a:hover {
  color: #319a39;
}

.nav_seconde {
  background-color: #fff;
  padding: 25px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 9999;
  width: 100%;
}

.nav_seconde nav ul li {
  color: #222;
  transition: 1s all ease-in-out;
}

.nav_seconde nav ul li a:hover {
  font-weight: bold !important;
  color: #319a39;
}

#sitemap {
  display: none;
}

/* 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: 20px 0;
  }
.logo {
  position:static !important;
  width: 150px;
}
.logo img{
width: 100%;
}

}

/* tablet 세로기준 */
@media screen and (min-width: 767px) and (max-width: 1024px) {

  /* 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: 20px 0;
  }
  .logo {
    position:static !important;
    width: 150px;
  }
  .logo img{
    width: 100%;
  }

}

/* 태블릿 아이패드미니 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
}
