/** @format */

/* 공통 layout */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  font-family: 'Noto Sans KR', sans-serif;
  min-width: 1200px;
}


header {
  box-sizing: border-box;
  top: 0;
  width: 100%;
  background-color: #ffffff;
}

section {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
  text-align: center;
  background-color: #ffffff;
}

article {
  position: relative;
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
}

footer {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-width: 1200px;
  background-color: rgb(245, 245, 245);
  overflow: hidden;
}

/* header */

/* mobile */
.nav_bar_open_mobile,
.nav_bar_container_mobile,
.nav_bar_mobile_before {
  display: none;
}

/* 헤더 전체 bar */
.nav_bar {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
  /* color: #056447; */
  background-color: #ffffff;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.nav_bar_drop {
  background-color: #056447;
  border-bottom: none;
}

.nav_bar_before {
  width: 100%;
  height: 100px;
  background-color: transparent;
}

/* 헤더 가운데 메뉴 컨테이너 */
.nav_bar_container {
  margin: 0;
  padding: 0;
  min-width: 785px;
}

/* 로고 */
.nav_brand {
  display: inline-block;
  margin-right: 20px;
  height: 99px;
  min-height: 99px;
}

.nav_brand img {
  width: auto;
  height: 75px;
}

.nav_sns {
  /* margin-right: 50px; */
  height: 99px;
  transition: all 0.3s ease-in-out;
}

.nav_sns img {
  width: 39px;
  height: 39px;
  margin-left: 40px;
}

/* 큰 메뉴 컨테이너 */
.nav_link_container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 99px;
}

.nav_link_container span {
  display: block;
}

.nav_link_container a {
  text-decoration: none;
}

/* menu hover drop 효과 */
.nav_link_container:hover+.nav_link_detail_container {
  height: 80px;
}

.nav_link {
  position: relative;
  margin: 0 33px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.nav_link::after {
  content: "";
  opacity: 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 4px solid #056447;
  transition: all 0.3s ease-in-out;
}

.nav_bar_drop .nav_link::after {
  border-bottom: 4px solid #ffffff;
}

/* menu link hover 효과 */
.nav_link:hover::after {
  opacity: 1;
}

.nav_link a span:nth-child(1) {
  font-size: 18px;
  color: #565656;
}

.nav_bar_drop .nav_link a span:nth-child(1) {
  color: #000000;
}

.nav_link a span:nth-child(2) {
  color: #000000;
}

.nav_bar_drop .nav_link a span:nth-child(2) {
  color: #ffffff;
}

.nav_link1 {
  width: 100px;
}

.nav_link2 {
  width: 126px;
}

.nav_link3 {
  width: 90px;
}

.nav_link4 {
  width: 80px;
}

.nav_link5 {
  width: 85px;
}

/* 세부메뉴 컨테이너 */
.nav_link_detail_container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* menu hover drop 효과*/
.nav_link_detail_container:hover {
  height: 80px;
}

.nav_link_detail {
  margin: 0 33px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.nav_link_detail a {
  color: #565656;
}

.nav_bar_drop .nav_link_detail a {
  color: #fff9e4;
}

.nav_link_detail1 {
  width: 100px;
}

.nav_link_detail2 {
  width: 126px;
}

.nav_link_detail3 {
  width: 90px;
}

.nav_link_detail4 {
  width: 80px;
}

.nav_link_detail5 {
  width: 85px;
}

.nav_link_detail ul {
  padding: 0;
  top: 100%;
  width: 100%;
  list-style: none;
  overflow: hidden;
  overflow: visible;
}

.nav_link_detail a {
  text-decoration: none;
}

.nav_link_detail a li {
  position: relative;
  padding-top: 10px;
  height: 30px;
  font-size: 15px;
}

.nav_link_detail a:hover {
  color: #bc9250;
  font-weight: bold;
  opacity: 0.99;
}

.nav_bar_drop .nav_link_detail a:hover {
  color: #dec78c;
  font-weight: bold;
  opacity: 0.99;
}

/* footer */
.footer_inner {
  position: relative;
  margin-top: 32px;
  width: 1200px;
  min-width: 1200px;
  height: 180px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  color: #5f5f5f;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.footer_inner_left {
  box-sizing: border-box;
  position: absolute;
  width: 50%;
  left: 0;
  margin-left: 15px;
}

.footer_inner_right {
  box-sizing: border-box;
  position: absolute;
  width: 50%;
  right: 0;
  text-align: right;
  margin-right: 15px;
}

.footer_inner_right img {
  width: 150px;
}