@charset "utf-8";
.fc-ccc {
  color: #ccc;
}
.fc-95 {
  color: #959595;
}
.fc-9c {
  color: #9c9c9c;
}
.fc-4776c8 {
  color: #4776c8;
}
.fc-2f {
  color: #2f2f2f;
}
.fc-1e {
  color: #1e1e1e;
}
.fc-17 {
  color: #171717;
}
.fc-15 {
  color: #151515;
}
.fc-25 {
  color: #252525;
}
.fc-2a {
  color: #2a2a2a;
}
.fc-15 {
  color: #151515;
}
.fc-a8 {
  color: #a8a8a8;
}


.bd-55 {
  border: 1px solid #555;
}

header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(-100px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.header-initial {
  opacity: 0;
  transform: translateY(-100%);
}

header.animated {
  opacity: 1;
  transform: translateY(0);
}

nav {
  position: relative;
}

nav > a,
.hd_menu > a {
  position: relative;
  padding: 25px 0;
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

nav > a:hover,
.hd_menu > a:hover {
  color: #4776c8;
}

nav > a:hover::after,
.hd_menu > a:hover::after {
  width: 100%;
}

.sub_menu {
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 1001;
  text-align: center;
  min-width: 150px;
}

.sub_menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
  font-size: 16px;
  white-space: nowrap;
}

.sub_menu a:hover {
  color: #4776c8;
}

nav > a,
.hd_menu {
  position: relative;
}

.hd_menu:hover .sub_menu {
  display: block;
}

header::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 0;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: height 0.3s;
  z-index: 999;
  pointer-events: none;
}

nav:hover::after,
nav:hover + header::after {
  height: 250px;
}

.hd_menu {
  position: relative;
}

nav > a {
  position: relative;
}

nav > a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  display: block;
}

/* 개인정보팝업 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.popup {
  margin: auto;
  background-color: white;
  /* padding: 20px; */
  width: 65%;
  /* max-width: 1000px; */
  max-height: 80%;
  overflow-y: auto;
  margin-top: 75px;
}

.popup-header {
  background-color: #222;

  display: flex;
  margin-bottom: 15px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2.5em;
  cursor: pointer;
}

.popup-title {
  width: 100%;
  padding: 20px;
  position: relative;
  /* border-bottom: 2px solid #cccccc; */
}

.popup-title p {
  margin: auto;
  height: 40px;
  width: 60%;
  position: relative;
  margin-bottom: -2px;
  /* border-bottom: 2px solid #111111; */
}

.popup-content {
  padding: 30px;
}

.blue_box1 {
  min-height: 212px;
  width: 458px;
}

.blue_box_desc {
  padding: 30px;
}

.blue_box1_title {
  height: 60px;
  background-color: #36aec6;
}
.blue_box2_title {
  height: 60px;
  background-color: #0489ee;
}
.blue_box3_title {
  height: 60px;
  background-color: #4776c8;
}
.blue_box4_title {
  height: 60px;
  background-color: #015cd1;
}
.blue_box5_title {
  height: 60px;
  background-color: #003c92;
}
.blue_box6_title{
  height: 60px;
  background-color: #2aa3e8;
}

.sub_nav {
  height: 55px;
  margin-top: 0.1%;
}
.sub_nav_a {
  border-right: 1px solid #d7d7d7;
}

.sub_nav_a:last-child {
  border-right: none;
}
.sub_nav_a.on {
  border-bottom: 4px solid #4776c8;
}

.blue_vertical {
  width: 5px;
  height: 36px;
  background: #4776c8;
  margin-top: 1%;
}

#sitemap {
  display: none;
}

/* mobile */
@media screen and (max-width: 767px) {
  .logo img {
    width: 70%;
  }
  /* site_map */
  #sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-113deg, rgba(68, 87, 194, 0.8), #1f1e5b);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999999;
    transform: translateX(100%);
    transition: transform 0.8s;
  }
  #sitemap.show {
    transform: translateX(0);
  }
  .close_btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 25px;
  }
  .close_btn i {
    font-size: 25px;
  }
  .st_box {
    padding: 12vh 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;
  }
  .blue_box_desc {
    padding: 20px;
  }
  .blue_box1 {
    min-height: unset;
    height: unset;
    width: 100%;
  }


}

/* tablet 세로기준 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* site_map */
  #sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-113deg, rgba(68, 87, 194, 0.8), #1f1e5b);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999999999;
    transform: translateX(100%);
    transition: transform 0.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 ul {
    width: 100%;
    display: none;
  }
  .st_menu p {
    padding: 15px 0;
  }
  .st_menu li {
    padding: 10px 0;
  }
  .blue_box1 {
    min-height: unset;
    width: 32.2%;
  }



}

/* 태블릿 아이패드미니 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .blue_box1 {
    min-height: 212px;
    width: 32.3%;
  }
}
