/*S: header_wrap =================================================*/
#header_wrap {
  width: 100%;
  margin-top: 0px;
}
#header_wrap .header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 190px;
  width: 100%;
  padding: 0 1%;
  margin: 0 auto;
  min-width: 1300px;
  max-width: 1380px;
  border-bottom: 0px solid #dcdcdc;
}
#header_wrap .header_inner .header_logo {
  width: 50%;
  text-align: right;
}
#header_wrap .header_inner .header_logo img {
  width: 438px;
}
#header_wrap .header_inner .header_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#header_wrap .header_inner .header_left a {
  margin: 5px 0;
}
#header_wrap .header_inner .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 50px;
}
#header_wrap .header_inner .header_right a {
  margin: 5px 0;
}
#header_wrap .header_inner .ebook_btn {
  margin-left: 30px;
}

/*S: menu_list =================================================*/
.menu_list_wrap {
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: center;
  background-color: #ffffff;
}
.menu_list_wrap ul {
  margin: 0 auto;
  width: 75%;
  min-width: 1300px;
  max-width: 1380px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  line-height: 60px;
  border-top: 2px solid #dcdcdc;
}
.menu_list_wrap ul li {
  background: #ffffff;
  font-size: 1.2rem;
}
.menu_list_wrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  height: 100%;
  padding: 0 10px;
  font-size: 19px;
  font-family: "Pretendard", "Malgun Gothic", dotum, sans-serif;
  color: #666666;
  z-index: 2;
  font-weight: 500;
}
.menu_list_wrap ul li a:hover {
  color: #15a8eb;
  font-weight: 600;
}
.menu_list_wrap ul li.on a {
  color: #122641;
}
.menu_list_wrap.menu_fixed {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  -webkit-box-shadow: 0px 1px 3px rgba(181, 181, 181, 0.47);
          box-shadow: 0px 1px 3px rgba(181, 181, 181, 0.47);
  overflow: hidden;
}
.menu_list_wrap.menu_fixed ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 80%;
  max-width: 1570px;
  margin: 0 auto;
  min-width: 1450px;
  border-top: none;
}
.menu_list_wrap.menu_fixed ul li {
  margin: 0;
}
.menu_list_wrap.menu_fixed ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  height: 100%;
  padding: 0 12px;
  font-size: inherit;
  color: #666666;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.menu_list_wrap.menu_fixed ul li a::after {
  position: absolute;
  content: "";
  clear: both;
  display: block;
  width: 0;
  height: 18px;
  bottom: 34%;
  left: 0%;
  background-color: #cde2f0;
  -webkit-transition: width 0.1s;
  transition: width 0.1s;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  opacity: 0.8;
  z-index: -1;
  border-radius: 0;
}
.menu_list_wrap.menu_fixed ul li.on a {
  color: #122641;
  font-weight: 600;
}