@charset "UTF-8";
body {
  box-sizing: border-box;
  padding-top: 90px;
}

/* ---------------공통 START--------------- */
.title-box.tac .section-deco {
  margin: 0 auto;
}

.section-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 30px;
}

.section-deco + .section-title {
  margin-top: 50px;
}

.section-eng + .section-title {
  margin-top: 25px;
}

.section-title {
  line-height: 1.3;
}

.section-title + .section-desc {
  margin-top: 25px;
}

.section-desc {
  line-height: 1.5;
}

/* ---------------공통 END--------------- */
/* ---------------animation START--------------- */
section.active .ani-text .ani-inner {
  transform: translateY(0);
  opacity: 1;
}
section.active .section-title + .opacity-text {
  transition-delay: 0.3s;
}
section.active .opacity-text {
  opacity: 1;
}
section .ani-text {
  display: inline-block;
  overflow: hidden;
}
section .ani-text .ani-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
section .opacity-text {
  opacity: 0;
  transition: opacity 1s;
}

/* ---------------animation END--------------- */
/* ---------------project-header START--------------- */
.project-header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.project-header.active {
  border-color: #f7f7f7;
  box-shadow: 0px 3.5px 7px rgba(0, 0, 0, 0.05);
}
.project-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 80px;
}
.project-header .header-wrap .logo {
  flex-shrink: 0;
  height: 42%;
}
.project-header .header-wrap .logo a {
  display: block;
  height: 100%;
}
.project-header .header-wrap .logo a img {
  display: block;
  height: 100%;
  width: auto;
}
.project-header .header-wrap .gnb {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.project-header .header-wrap .gnb .gnb-bg {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  height: 0;
  background-color: #fff;
  box-shadow: 0px 3.5px 7px rgba(0, 0, 0, 0.05);
  transition: height 0.3s;
}
.project-header .header-wrap .gnb .gnb-bg.active {
  height: 100%;
}
.project-header .header-wrap .gnb .menu-list {
  display: flex;
  align-items: center;
  height: 100%;
}
.project-header .header-wrap .gnb .menu-list > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.project-header .header-wrap .gnb .menu-list > li.active > a {
  color: #104eb6;
  font-weight: 600;
}
.project-header .header-wrap .gnb .menu-list > li > a {
  text-align: center;
  box-sizing: border-box;
  padding: 10px 20px;
  transition: color 0.3s, font-weight 0.3s;
}
.project-header .header-wrap .gnb .member-list {
  display: flex;
  align-items: center;
}
.project-header .header-wrap .gnb .member-list > li:not(:nth-of-type(1)) {
  box-sizing: border-box;
  border-left: 1px solid #a3a3a3;
  transition: border-color 0.3s;
}
.project-header .header-wrap .gnb .member-list > li > a {
  display: block;
  box-sizing: border-box;
  padding: 0 15px;
  transition: color 0.3s;
}
.project-header .header-wrap .gnb .btn-seminar-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 210px;
  height: 45px;
  border-radius: 45px;
  transition: background-color 0.3s;
}

/* ---------------project-header END--------------- */
/* ---------------project-footer START--------------- */
.project-footer .footer-wrap {
  position: relative;
}
.project-footer .footer-wrap .footer-logo {
  height: 35px;
  width: -moz-fit-content;
  width: fit-content;
}
.project-footer .footer-wrap .footer-logo a {
  display: block;
  height: 100%;
}
.project-footer .footer-wrap .footer-logo a img {
  display: block;
  height: 100%;
  width: auto;
}
.project-footer .footer-wrap .footer-terms {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.project-footer .footer-wrap .footer-terms li {
  line-height: 1.5;
}
.project-footer .footer-wrap .footer-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.project-footer .footer-wrap .footer-info li {
  line-height: 1.5;
}
.project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
  margin-left: 25px;
}
.project-footer .footer-wrap .footer-copy {
  line-height: 1.5;
}

/* ---------------project-footer END--------------- */
/* ---------------media screen START--------------- */
@media screen and (min-width: 991.1px) {
  /* ---------------project-header START--------------- */
  .project-header .header-wrap .gnb .gnb-bg {
    display: block;
  }
  .project-header .header-wrap .gnb .menu-list > li > a:hover {
    color: #104eb6;
    font-weight: 600;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply:hover {
    background-color: #04378f;
  }
  .project-header .btn-menu {
    display: none;
  }
  /* ---------------project-header END--------------- */
}
@media screen and (max-width: 1650px) {
  /* ---------------project-header START--------------- */
  .project-header .header-wrap {
    gap: 65px;
  }
  /* ---------------project-header END--------------- */
}
@media screen and (max-width: 1500px) {
  /* ---------------project-header START--------------- */
  .project-header .header-wrap {
    gap: 50px;
  }
  /* ---------------project-header END--------------- */
}
@media screen and (max-width: 1350px) {
  body {
    padding-top: 85px;
  }
  /* ---------------공통 START--------------- */
  .section-deco {
    width: 72px;
    height: 72px;
    border-radius: 27px;
  }
  .section-deco + .section-title {
    margin-top: 45px;
  }
  .section-eng + .section-title {
    margin-top: 22.5px;
  }
  .section-title + .section-desc {
    margin-top: 22.5px;
  }
  /* ---------------공통 END--------------- */
  /* ---------------project-header START--------------- */
  .project-header {
    height: 85px;
  }
  .project-header .header-wrap {
    gap: 35px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    padding: 9px 18px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    padding: 0 13.5px;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply {
    width: 190px;
    height: 42.5px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .footer-logo {
    height: 33px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 18px;
    margin-top: 22.5px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 22.5px;
  }
  .project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
    margin-left: 22.5px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 1150px) {
  body {
    padding-top: 80px;
  }
  /* ---------------공통 START--------------- */
  .section-deco {
    width: 64px;
    height: 64px;
    border-radius: 24px;
  }
  .section-deco + .section-title {
    margin-top: 40px;
  }
  .section-eng + .section-title {
    margin-top: 20px;
  }
  .section-title + .section-desc {
    margin-top: 20px;
  }
  /* ---------------공통 END--------------- */
  /* ---------------project-header START--------------- */
  .project-header {
    height: 80px;
  }
  .project-header .header-wrap {
    gap: 20px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    padding: 8px 16px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    padding: 0 12px;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply {
    width: 170px;
    height: 40px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .footer-logo {
    height: 31px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 16px;
    margin-top: 20px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 20px;
  }
  .project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
    margin-left: 20px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------project-header START--------------- */
  .project-header .header-wrap {
    justify-content: center;
  }
  .project-header .header-wrap .logo {
    z-index: 1;
    position: relative;
  }
  .project-header .header-wrap .gnb {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    height: 0;
    box-sizing: border-box;
    transition: height 0.6s, padding-top 0.6s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  }
  .project-header .header-wrap .gnb.active {
    padding-top: 80px;
    height: 100vh;
  }
  .project-header .header-wrap .gnb.active .menu-list {
    transform: translateY(0);
  }
  .project-header .header-wrap .gnb.active .member-list {
    transform: translateY(0);
  }
  .project-header .header-wrap .gnb.active .btn-seminar-apply {
    transform: translateY(0);
  }
  .project-header .header-wrap .gnb .gnb-bg {
    display: none;
  }
  .project-header .header-wrap .gnb .menu-list {
    display: block;
    height: calc(100vh - 80px - 40px - 80px - 80px);
    overflow-y: auto;
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    transform: translateY(150px);
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  }
  .project-header .header-wrap .gnb .menu-list > li {
    position: relative;
    display: block;
    height: auto;
    box-sizing: border-box;
  }
  .project-header .header-wrap .gnb .menu-list > li:not(:nth-of-type(1)) {
    border-top: 1px solid rgba(16, 78, 182, 0.1);
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: unset;
    overflow: hidden;
  }
  .project-header .header-wrap .gnb .menu-list > li > a:active {
    color: #104eb6;
    font-weight: 600;
  }
  .project-header .header-wrap .gnb .member-list {
    display: flex;
    align-items: center;
    width: 90%;
    height: 80px;
    box-sizing: border-box;
    padding: 25px 0;
    margin: 0 auto;
    transform: translateY(150px);
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  }
  .project-header .header-wrap .gnb .member-list > li {
    width: 50%;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    width: -moz-fit-content;
    width: fit-content;
    padding: unset;
    margin: 0 auto;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply {
    width: 100%;
    height: 80px;
    border-radius: unset;
    transform: translateY(150px);
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  }
  .project-header .header-wrap .gnb .btn-seminar-apply:active {
    background-color: #04378f;
  }
  .project-header .btn-menu {
    --line-h: 2px;
    --gap: 5px;
    --shift: calc(var(--line-h) + var(--gap));
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    gap: var(--gap);
  }
  .project-header .btn-menu.active .line.line {
    width: 27.5%;
    margin-right: 0;
  }
  .project-header .btn-menu.active .line.line2 {
    opacity: 0;
  }
  .project-header .btn-menu.active .line.line1 {
    transform: translateY(var(--shift)) rotate(45deg);
  }
  .project-header .btn-menu.active .line.line3 {
    transform: translateY(calc(-1 * var(--shift))) rotate(-45deg);
  }
  .project-header .btn-menu .line {
    background: #fff;
    height: var(--line-h);
    border-radius: 1px;
    transition: transform 0.3s, width 0.3s, opacity 0.3s, margin-right 0.3s;
  }
  .project-header .btn-menu .line.line1 {
    width: 27.5%;
  }
  .project-header .btn-menu .line.line2 {
    width: 22.5%;
    margin-right: 5%;
  }
  .project-header .btn-menu .line.line3 {
    width: 17.5%;
    margin-right: 10%;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer {
    text-align: center;
  }
  .project-footer .footer-wrap .footer-logo {
    margin: 0 auto;
  }
  .project-footer .footer-wrap .footer-terms {
    justify-content: center;
  }
  .project-footer .footer-wrap .footer-info {
    flex-direction: column;
  }
  .project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
    margin-left: unset;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 600px) {
  body {
    padding-top: 75px;
  }
  /* ---------------공통 START--------------- */
  .section-deco {
    width: 56px;
    height: 56px;
    border-radius: 21px;
  }
  .section-deco + .section-title {
    margin-top: 35px;
  }
  .section-eng + .section-title {
    margin-top: 17.5px;
  }
  .section-title + .section-desc {
    margin-top: 17.5px;
  }
  /* ---------------공통 END--------------- */
  /* ---------------project-header START--------------- */
  .project-header {
    height: 75px;
  }
  .project-header .header-wrap .gnb.active {
    padding-top: 75px;
  }
  .project-header .header-wrap .gnb .menu-list {
    height: calc(100vh - 75px - 37.5px - 75px - 75px);
    margin-top: 37.5px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    height: 54px;
  }
  .project-header .header-wrap .gnb .member-list {
    padding: 22.5px 0;
    height: 75px;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply {
    height: 75px;
  }
  .project-header .btn-menu {
    width: 75px;
    height: 75px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .footer-logo {
    height: 29px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 14px;
    margin-top: 17.5px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 17.5px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 450px) {
  body {
    padding-top: 70px;
  }
  /* ---------------공통 START--------------- */
  .section-deco {
    width: 48px;
    height: 48px;
    border-radius: 18px;
  }
  .section-deco + .section-title {
    margin-top: 30px;
  }
  .section-eng + .section-title {
    margin-top: 15px;
  }
  .section-title + .section-desc {
    margin-top: 15px;
  }
  /* ---------------공통 END--------------- */
  /* ---------------project-header START--------------- */
  .project-header {
    height: 70px;
  }
  .project-header .header-wrap .gnb.active {
    padding-top: 70px;
  }
  .project-header .header-wrap .gnb .menu-list {
    height: calc(100vh - 70px - 35px - 70px - 70px);
    margin-top: 35px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    height: 48px;
  }
  .project-header .header-wrap .gnb .member-list {
    padding: 20px 0;
    height: 70px;
  }
  .project-header .header-wrap .gnb .btn-seminar-apply {
    height: 70px;
  }
  .project-header .btn-menu {
    width: 70px;
    height: 70px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .footer-logo {
    height: 27px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 12px;
    margin-top: 15px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 15px;
  }
  /* ---------------project-footer END--------------- */
}
/* ---------------media screen END--------------- */