@charset "UTF-8";
#wrap {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  transition: 0.3s all ease;
}
.header .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header .inner {
    height: 60px;
  }
}
.header--white .gnb__list__link {
  color: #fff;
}
.header--white .gnb__list__link::after {
  background-color: #fff;
}
.header--white .header__utile__link {
  color: #fff;
}
.header--active {
  background-color: #fff;
}
.header--active .gnb__list__link {
  color: #000;
}
.header--active .gnb__list__link::after {
  background-color: #000;
}
.header--active .header__utile__link {
  color: #000;
}
.header--active .logo img.logo-black {
  display: inline-block !important;
}
.header--active .logo img.logo-white {
  display: none !important;
}
.header--active .header__menu-btn__line {
  background-color: #000;
}
.header--active .header__lang button span {
  color: #000;
}
.header--active .header__lang button span::after {
  background-image: url(/imgs/ico/ico_black_down_arr.svg);
}
.header--scroll {
  background-color: #fff;
}
.header--scroll .gnb__list__link {
  color: #000;
}
.header--scroll .gnb__list__link::after {
  background-color: #000;
}
.header--scroll .header__utile__link {
  color: #000;
}
.header--scroll .logo img.logo-black {
  display: inline-block !important;
}
.header--scroll .logo img.logo-white {
  display: none !important;
}
.header--scroll .header__menu-btn__line {
  background-color: #000;
}
.header--scroll .header__lang button span {
  color: #000;
}
.header--scroll .header__lang button span::after {
  background-image: url(/imgs/ico/ico_black_down_arr.svg);
}
.header--sub {
  background-color: #fff;
}
.header--sub .gnb__list__link {
  color: #000;
}
.header--sub .gnb__list__link::after {
  background-color: #000;
}
.header--sub .header__utile__link {
  color: #000;
}
.header--sub .logo img.logo-black {
  display: inline-block !important;
}
.header--sub .logo img.logo-white {
  display: none !important;
}
.header--sub .header__menu-btn__line {
  background-color: #000;
}
.header--sub .header__lang button span {
  color: #000;
}
.header--sub .header__lang button span::after {
  background-image: url(/imgs/ico/ico_black_down_arr.svg);
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    height: 60px;
  }
}
.header__lang {
  position: relative;
  width: 10.9rem;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header__lang--open {
  border-radius: 15px 15px 0 0 !important;
}
.header__lang--open .header__lang__box {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.header__lang button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.9rem;
  height: 3.2rem;
  text-align: center;
  cursor: pointer;
}
.header__lang button span {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  text-align: left;
  color: #fff;
  padding-right: 1.7rem;
}
.header__lang button span::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: 1rem;
  height: 0.5rem;
  background-image: url(/imgs/ico/ico_white_down_arr.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  transform: all 0.3s ease;
}
.header__lang--open, .header__lang:hover {
  background-color: #fff;
}
.header__lang--open button span, .header__lang:hover button span {
  color: #000;
}
.header__lang--open button span::after, .header__lang:hover button span::after {
  transform: rotate(180deg);
  background-image: url(/imgs/ico/ico_black_down_arr.svg);
}
.header__lang__box {
  position: absolute;
  top: 2.7rem;
  padding-top: 5px;
  left: -1px;
  z-index: 10;
  width: calc(100% + 2px);
  height: 0;
  overflow: hidden;
  opacity: 0;
  border: 1px solid #ddd;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}
.header__lang__box a {
  display: block;
  padding: 0 1rem;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #333;
  text-align: center;
}
.header .logo {
  position: relative;
  width: 17rem;
}
@media screen and (max-width: 800px) {
  .header .logo {
    width: 15rem;
  }
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .logo img.logo-black {
  display: none;
}
.header .logo img.logo-white {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .header .logo {
    padding-bottom: 0;
  }
}
.header__bg {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.header__bg--active {
  height: 28.5rem;
  opacity: 1;
  visibility: visible;
}
.header__menu-box {
  display: none;
  align-items: center;
  width: 24px;
  height: 100%;
  gap: 150px;
}
@media screen and (max-width: 1024px) {
  .header__menu-box {
    display: flex;
  }
}
.header__menu-btn {
  position: relative;
  width: 100%;
  height: 3rem;
}
.header__menu-btn__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: background-color 0.5s ease-in-out;
}
.header__menu-btn__line + .header__menu-btn__line {
  margin-top: 6px;
}
.header__utile {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__utile .header__lang {
    margin-right: 3rem;
  }
}

.gnb {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .gnb {
    display: none;
  }
}
.gnb__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.gnb__list__item {
  position: relative;
}
.gnb__list__item:focus .gnb__list__link, .gnb__list__item:hover .gnb__list__link, .gnb__list__item--active .gnb__list__link {
  color: #0C4DA2;
}
.gnb__list__item:first-child .gnb__list__link {
  padding-left: 0;
}
.gnb__list__item:last-child .gnb__list__link {
  padding-right: 0;
}
.gnb__list__item:last-child .gnb__list__link::after {
  display: none;
}
.gnb__list__link {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  padding-top: 3rem;
  padding-right: 3.2rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
.gnb__list__link:hover, .gnb__list__link:focus {
  color: #0C4DA2;
}
.gnb__list__item:last-child .gnb__list__link {
  padding-right: 0;
}
.gnb__dept2 {
  position: absolute;
  top: 8rem;
  left: 50%;
  width: 20rem;
  height: 0;
  opacity: 0;
  padding: 2rem 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
  background-color: #0C4DA2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  border-radius: 6px;
}
.gnb__dept2--one {
  transform: translateX(-56%);
}
.gnb__dept2--two {
  transform: translateX(-51%);
}
.gnb__dept2--three {
  transform: translateX(-49%);
}
.gnb__dept2--four {
  transform: translateX(-56%);
}
.gnb__dept2--five {
  transform: translateX(-41%);
}
.gnb__dept2 li {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.66);
  padding: 0.8rem 1rem;
}
.gnb__dept2 li a {
  color: rgba(255, 255, 255, 0.66);
}
.gnb__dept2 li a:hover, .gnb__dept2 li a:focus {
  color: #fff;
}
.gnb__dept2 li.active a {
  color: #fff;
}
.gnb__dept2--active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
  color: #fff;
  background-color: #0C4DA2;
  padding: 6rem 0;
}
.footer__content {
  position: relative;
  padding: 3rem 0 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 1.6rem;
}
.footer__address-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .footer__address-list {
    justify-content: flex-start;
    flex-direction: column;
  }
}
.footer__address-list dl {
  display: flex;
  flex-direction: row;
}
.footer__address-list dl.address {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 800px) {
  .footer__address-list dl.tel {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.footer__address-list dl.fax {
  margin-left: 4rem;
}
@media screen and (max-width: 800px) {
  .footer__address-list dl.fax {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}
.footer__address-list dl.email {
  margin-left: 4rem;
}
@media screen and (max-width: 800px) {
  .footer__address-list dl.email {
    width: 100%;
    margin-left: 0;
  }
}
.footer__address-list dl dt {
  flex: none;
  margin-right: 1rem;
  font-family: "Poppins", Pretendard, "Pretendard", "Noto Sans KR", "Gulim", Gulim, Dotum, "돋움", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}
.footer__address-list dl dd {
  font-weight: normal;
  font-size: 1.6rem;
  text-align: left;
  color: #fff;
}
.footer .logo {
  position: relative;
}
.footer .logo a {
  display: inline-block;
  font-size: 0;
}
.footer .logo img {
  width: 17rem;
  height: auto;
}
@media screen and (max-width: 800px) {
  .footer .logo img {
    width: 15rem;
  }
}
.footer__copy {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
}

#container {
  position: relative;
}

.mobile-menu-open .mobile-gnb {
  display: block;
  opacity: 1;
}

.mobile-gnb {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 0;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.mobile-gnb__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  padding: 2rem 2rem 2.2rem 2rem;
}
.mobile-gnb__head button {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../imgs/ico/ico_close.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.mobile-gnb__utile {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}
.mobile-gnb__utile a {
  flex: 1;
  display: block;
  position: relative;
  padding: 2rem 0;
  background-color: #f7f7f7;
  font-size: 2rem;
  text-align: center;
  color: #000;
}
.mobile-gnb__utile a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1rem;
  height: 1.8rem;
  background-color: #707070;
  transform: translateY(-50%);
}
.mobile-gnb__utile a:last-child::after {
  display: none;
}
.mobile-gnb__body {
  position: relative;
}
.mobile-gnb__list {
  position: relative;
}
.mobile-gnb__1dpet {
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
.mobile-gnb__1dpet__link {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 2.3rem;
  color: #000;
  padding: 1.5rem 2rem 1.5rem 2rem;
}
.mobile-gnb__1dpet__link::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 2.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../imgs/ico/ico_black_down_arr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.mobile-gnb__1dpet__link--right-arr::after {
  transform: rotate(-90deg);
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link {
  color: #0C4DA2;
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link::after {
  transform: rotate(180deg);
  background-image: url(/imgs/ico/ico_blue_down_arr.svg);
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link--right-arr::after {
  transform: rotate(-90deg);
  background-image: url(/imgs/ico/ico_blue_down_arr.svg);
}
.mobile-gnb__1dpet--active .mobile-gnb__2dept {
  display: block;
}
.mobile-gnb__2dept {
  display: none;
  padding: 0 2rem;
}
.mobile-gnb__2dept > li > a {
  display: block;
  font-weight: 500;
  color: #909090;
  padding: 8px 0;
  font-size: 1.9rem;
  transition: color 0.3s ease-in-out;
}
.mobile-gnb__2dept > li > a.active {
  color: #0C4DA2;
}

.snb {
  position: relative;
  text-align: center;
  height: 8rem;
  background-color: #F3F3F3;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .snb {
    background-color: #0C4DA2;
    height: 6rem;
  }
  .snb .inner {
    padding-left: 0;
    padding-right: 0;
  }
  .snb--mobile-open .snb__list {
    display: block;
  }
  .snb--mobile-open .snb__btn {
    background-image: url(../imgs/ico/ico_white_up_arr.svg);
  }
}
.snb__btn {
  display: none;
  width: 100%;
  height: 6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .snb__btn {
    display: block;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-weight: 700;
    background-color: #0C4DA2;
    background-image: url(../imgs/ico/ico_white_down_arr.svg);
    background-size: 1.2rem 0.7rem;
    background-position: calc(100% - 20px) 50%;
    background-repeat: no-repeat;
  }
}
.snb__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 800px) {
  .snb__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
}
.snb__1depth {
  flex: 1;
  position: relative;
  text-align: center;
}
.snb__1depth__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
  height: 8rem;
  font-size: 1.6rem;
  color: #000;
  white-space: nowrap;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .snb__1depth__link {
    height: 6rem;
  }
}
.snb__1depth__link::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #0C4DA2;
  content: "";
  transition: all 0.3s;
}
.snb__1depth__link:hover {
  color: #0C4DA2;
}
.snb__1depth__link:hover::before {
  width: 100%;
  margin-left: -50%;
}
.snb__1depth--active .snb__1depth__link {
  color: #0C4DA2;
}
.snb__1depth--active .snb__1depth__link::before {
  width: 100%;
  margin-left: -50%;
}

#sub-container {
  position: relative;
}

#sub-contents {
  position: relative;
  margin-top: 7rem;
}

/*---------- Eb BackToTop ----------*/
.eb-backtotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  height: 4.6rem;
  width: 4.6rem;
  cursor: pointer;
  display: block;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (max-width: 991px) {
  .eb-backtotop {
    bottom: 7rem;
  }
}
.eb-backtotop.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.eb-backtotop::after {
  position: absolute;
  content: "\f106";
  font-family: "FontAwesome";
  font-weight: 900;
  text-align: center;
  font-size: var(--font-size16);
  color: #757575;
  left: 0;
  top: 0;
  height: 4.6rem;
  width: 4.6rem;
  line-height: 2.8rem;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eb-backtotop:hover::after {
  color: #3949ab;
}
.eb-backtotop svg path {
  fill: none;
}
.eb-backtotop svg.backtotop-progress path {
  stroke: #b5b5b5;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eb-backtotop svg.backtotop-progress path {
  stroke: #3949ab;
}
.eb-backtotop .progress-count {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  font-size: 11px;
  text-align: center;
  color: #a5a5a5;
}
.eb-backtotop::after {
  color: #2b2b2e;
}