@charset "UTF-8";
/* --------------------- header start --------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.35s;
}
header::before {
  transition: opacity 0.35s, visibility 0.35s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  top: 100%;
  left: 0;
  background: #fdfdfd;
  border-bottom: 1px solid #ddd;
}
header .logo {
  margin-right: 4.46vw;
  width: clamp(186px, 9.69vw, 186px);
}
header .logo a {
  position: relative;
}
header .logo a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
header .logo object {
  width: 100%;
  max-height: 48px;
}
header .logo object.logo_yellow {
  display: none;
}
header .gnb {
  position: relative;
}
header .gnb::before {
  position: fixed;
  content: "";
  background: #fff;
  top: calc(100% + 79px);
  left: 0;
  width: 100vw;
  height: 100px;
}
header .gnb_list {
  white-space: nowrap;
  display: flex;
  text-align: center;
}
header .gnb_list > .list_item {
  position: relative;
  margin-right: clamp(30px, 2.6vw, 50px);
}
header .gnb_list > .list_item > .list_link {
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 700;
  color: #fff;
  padding: 39px 0;
  cursor: pointer;
  transition: 0.4s;
}
header .gnb_list > .list_item > .list_link span {
  position: relative;
}
header .gnb_sub_list {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.35s;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}
header .gnb_sub_list .list_link {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.19;
  font-weight: 600;
  padding: 10px 0;
  transition: 0.3s;
  position: relative;
}
header .gnb_sub_list .list_link::after, header .gnb_sub_list .list_link::before {
  position: absolute;
  bottom: 20%;
  width: 0%;
  height: 2px;
  background: #4380d6;
  content: "";
  transition: 0.4s;
  filter: blur(3px);
}
header .gnb_sub_list .list_link::after {
  left: 50%;
}
header .gnb_sub_list .list_link::before {
  right: 50%;
}
header .gnb_sub_list .list_link:hover::after, header .gnb_sub_list .list_link:hover::before {
  width: 50%;
}
header .consulting_area {
  color: #fff;
  background: #02202b;
  border-radius: 6px;
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 700;
  padding: clamp(8px, 0.63vw, 12px) clamp(14px, 1.25vw, 24px);
  height: 42px;
  transition: 0.3s;
}
header .consulting_area a:first-child {
  padding-right: clamp(7px, 0.78vw, 15px);
  margin-right: clamp(7px, 0.78vw, 15px);
  position: relative;
}
header .consulting_area a:first-child::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  content: "";
  width: 1px;
  height: 14px;
}
header .consulting_area a i {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/consulting_ico.png);
  margin-right: 6px;
  transition: 0.4s;
}
header .kakao_link {
  width: 42px;
  height: 42px;
  background-image: url(../img/kakao_ico.png);
  background-position: center;
  background-size: cover;
  margin-left: 10px;
}
header .ham_btn,
header .close_btn {
  display: none;
}
header.on {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
header.on .logo object.logo_yellow {
  display: block;
}
header.on .logo object.logo_white {
  display: none;
}
header.on .gnb_list > .list_item > .list_link {
  color: #222;
}
header.hover {
  background: #02202b;
}
header.hover .logo object.logo_yellow {
  display: none !important;
}
header.hover .logo object.logo_white {
  display: block !important;
}
header.hover .gnb_list > .list_item > .list_link {
  color: #fff !important;
}
header.hover .consulting_area {
  background: #fff;
  color: #02202b;
}
header.hover .consulting_area a:first-child::after {
  background: #02202b;
}
header.hover .consulting_area a i {
  color: #02202b;
  background-image: url(../img/consulting_blue_ico.png);
}
header.hover::before {
  opacity: 1;
  visibility: visible;
}
header.hover .gnb_sub_list {
  opacity: 1;
  visibility: visible;
}
header.scroll {
  /* background: #02202b; */
  background: #9f9074;
  border-bottom: none;
}
header.scroll .logo object.logo_yellow {
  display: none !important;
}
header.scroll .logo object.logo_white {
  display: block !important;
}
header.scroll .gnb_list > .list_item > .list_link {
  color: #fff !important;
}
header.scroll .consulting_area {
  background: #fff;
  color: #02202b;
}
header.scroll .consulting_area a:first-child::after {
  background: #02202b;
}
header.scroll .consulting_area a i {
  color: #02202b;
  background-image: url(../img/consulting_blue_ico.png);
}

/* --------------------- RWD --------------------- */
@media (max-width: 1280px) {
  header .logo {
    margin-right: 5vw;
  }
  header .consulting_area {
    width: 210px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    height: unset;
  }
  header .consulting_area p {
    display: none;
  }
  header .consulting_area a {
    width: 100%;
    padding: 5px 0;
    text-align: center;
    justify-content: center;
  }
  header .consulting_area a:first-child {
    margin-right: 0;
    padding-right: 0;
  }
  header .consulting_area a:first-child::after {
    top: 100%;
    transform: translate(-50%, 0);
    right: unset;
    left: 50%;
    height: 1px;
    width: 100%;
  }
  header .consulting_area a i {
    display: none;
  }
  header .kakao_link {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1020px) {
  header .consulting_area,
  header .kakao_link {
    display: none;
  }
}
@media (max-width: 750px) {
  header::before {
    position: fixed;
    top: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
  }
  header .wrapper {
    justify-content: space-between;
    padding: clamp(17px, 4.27vw, 32px) 0;
  }
  header .logo {
    width: clamp(170px, 36.67vw, 275px);
  }
  header .logo object {
    max-height: 71px;
  }
  header .gnb {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 40;
    height: 100vh;
    padding: clamp(70px, 13.33vw, 100px) 6.13vw clamp(30px, 9.33vw, 70px);
    background: #0f394e;
    transition: opacity 0.35s, visibility 0.35s;
  }
  header .gnb_list {
    width: clamp(260px, 66.67vw, 500px);
    height: 100%;
    overflow-y: auto;
    flex-wrap: wrap;
    text-align: left;
  }
  header .gnb_list::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header .gnb_list > .list_item {
    width: 100%;
	margin-right: 0;
  }
  header .gnb_list > .list_item.on > .list_link span::before {
    width: 100%;
  }
  header .gnb_list > .list_item.on .gnb_sub_list {
    display: flex;
  }
  header .gnb_list > .list_item > .list_link {
    color: #fff;
    font-size: clamp(20px, 5.33vw, 40px);
    padding: clamp(15px, 4vw, 30px) 0;
  }
  header .gnb_list > .list_item > .list_link span {
    z-index: 1;
  }
  header .gnb_list > .list_item > .list_link span::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0%;
    height: 30%;
    background: #728aa1;
    z-index: -1;
    transition: 0.4s;
  }
  header .gnb_list > .list_item.address dl {
    border-top: 2px solid #728aa1;
  }
  header .gnb_list > .list_item.address dt {
    color: #fff;
    font-size: clamp(18px, 4vw, 30px);
  }
  header .gnb_list > .list_item.address dd {
    color: #ccc;
    font-size: clamp(14px, 2.67vw, 20px);
  }
  header .gnb_list > .list_item.address .m_consulting_area {
	background: #fff;
	color: #02202b;
	flex-direction: column;
	width: 60%;
	font-size: clamp(12px, 2.40vw, 18px);
	padding: clamp(6px, 1.60vw, 12px);
	border-radius: 6px;
	font-weight: 600;
  }
  header .gnb_list > .list_item.address .m_consulting_area a {
	padding: clamp(3px, 0.67vw, 5px) 0;
  }
  header .gnb_list > .list_item.address .m_consulting_area a:first-child {
	border-bottom: 1px solid #02202b;
  }
  header .gnb_list > .list_item.address .m_kakao_link {
	width: clamp(35px, 6.67vw, 50px);
	height: clamp(35px, 6.67vw, 50px);
	background-image: url(../img/kakao_ico.png);
	background-position: center;
	background-size: cover;
	margin-left: clamp(10px, 1.33vw, 10px);
  }
  header .gnb_sub_list {
    display: none;
    flex-wrap: wrap;
    position: inherit;
    top: unset;
    left: unset;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  header .gnb_sub_list .list_item {
    width: 60%;
  }
  header .gnb_sub_list .list_link {
    font-size: clamp(15px, 3.47vw, 26px);
    font-weight: 400;
    color: #aaa;
    padding: 2.67vw 0;
  }
  header .gnb_sub_list .list_link:hover {
    color: #aaa !important;
  }
  header .gnb_sub_list .list_link::after, header .gnb_sub_list .list_link::before {
    display: none;
  }
  header .ham_btn {
    display: block;
    width: clamp(24px, 5.07vw, 38px);
    height: clamp(12px, 3.2vw, 24px);
    position: relative;
    z-index: 41;
  }
  header .ham_btn::after, header .ham_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #fff;
    left: 0;
    transition: 0.3s;
  }
  header .ham_btn::after {
    top: 0;
  }
  header .ham_btn::before {
    bottom: 0;
  }
  header .ham_btn.open {
    width: clamp(28px, 5.07vw, 38px);
    height: clamp(28px, 5.07vw, 38px);
  }
  header .ham_btn.open::after, header .ham_btn.open::before {
    top: 50%;
  }
  header .ham_btn.open::after {
    transform: rotate(45deg);
  }
  header .ham_btn.open::before {
    transform: rotate(-45deg);
  }
  header.on .ham_btn::after, header.on .ham_btn::before {
    background: #222;
  }
  header.scroll .ham_btn::after, header.scroll .ham_btn::before {
    background: #fff;
  }
  header.ham_click::before {
    opacity: 1;
    visibility: visible;
  }
  header.ham_click .gnb {
    opacity: 1;
    visibility: visible;
  }
  header.ham_click .gnb_list > .list_item > .list_link {
    color: #fff;
  }
  header.ham_click .ham_btn::after,
  header.ham_click .ham_btn::before {
    background: #fff;
  }
}
@media (max-width: 500px) {
  header .ham_btn::after, header .ham_btn::before {
    height: 3px;
  }
}
/* 버튼 hover용 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #1e3960;
  }
}
@keyframes pulse_green {
  0% {
    box-shadow: 0 0 0 0 #82a006;
  }
}
@keyframes pulse_red {
  0% {
    box-shadow: 0 0 0 0 #d65047;
  }
}
@keyframes pulse_yellow {
  0% {
    box-shadow: 0 0 0 0 #eeab00;
  }
}
@keyframes pulse_white {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}
@keyframes pulse_sky_blue {
  0% {
    box-shadow: 0 0 0 0 #4380d6;
  }
}