/* ---------------animation START--------------- */
section:not(.main-visual, .about-section, .service-section).active .ani-text .ani-inner {
  transform: translateY(0);
  opacity: 1;
}
section:not(.main-visual, .about-section, .service-section).active .main-title + .opacity-text {
  transition-delay: 0.3s;
}
section:not(.main-visual, .about-section, .service-section).active .sub-title + .opacity-text {
  transition-delay: 0.3s;
}
section:not(.main-visual, .about-section, .service-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;
}
section .opacity-img {
  opacity: 0;
  transition: opacity 1s;
}

/* ---------------animation END--------------- */
/* ---------------project-header START--------------- */
.project-header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  padding-right: 80px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.project-header.active {
  border-color: #f7f7f7;
  background-color: #fff;
  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%;
}
.project-header .header-wrap .logo {
  height: 37.5%;
}
.project-header .header-wrap .logo a {
  display: block;
  height: 100%;
}
.project-header .header-wrap .logo a img,
.project-header .header-wrap .logo a svg {
  display: block;
  height: 100%;
  width: auto;
}
.project-header .header-wrap .logo a svg path {
  transition: fill 0.3s;
}
.project-header .header-wrap .gnb {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}
.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::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  background-color: #005bac;
  height: 2px;
  transition: width 0.3s;
}
.project-header .header-wrap .gnb .menu-list > li > a {
  font-size: 20px;
  box-sizing: border-box;
  padding: 10px 40px;
  transition: color 0.3s;
}
.project-header .header-wrap .gnb .menu-list > li > ul {
  display: flex;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.project-header .header-wrap .gnb .menu-list > li > ul > li.active > a {
  color: #005bac;
}
.project-header .header-wrap .gnb .menu-list > li > ul > li > a {
  white-space: nowrap;
  font-size: 18px;
  color: #666;
  box-sizing: border-box;
  padding: 5px 15px;
  transition: color 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:nth-last-of-type(1) a {
  padding-right: unset;
}
.project-header .header-wrap .gnb .member-list > li > a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 15px;
  transition: color 0.3s;
}
.project-header .header-wrap .gnb .member-list > li > a img,
.project-header .header-wrap .gnb .member-list > li > a svg {
  display: block;
  width: 15px;
  height: auto;
}
.project-header .header-wrap .gnb .member-list > li > a svg circle,
.project-header .header-wrap .gnb .member-list > li > a svg path {
  transition: fill 0.3s;
}
.project-header .btn-home {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}
.project-header .btn-home img,
.project-header .btn-home svg {
  display: block;
  width: 28.75%;
  height: auto;
}

/* ---------------project-header END--------------- */
/* ---------------project-footer START--------------- */
.project-footer {
  background-color: #333333;
  color: #ccc;
  font-size: 16px;
}
.project-footer .footer-wrap {
  position: relative;
}
.project-footer .footer-wrap .btn-top {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid #eee;
}
.project-footer .footer-wrap .btn-top img,
.project-footer .footer-wrap .btn-top svg {
  display: block;
  width: 27.14%;
  height: auto;
}
.project-footer .footer-wrap .footer-terms {
  display: flex;
  align-items: center;
  gap: 30px;
}
.project-footer .footer-wrap .footer-terms li {
  line-height: 1.5;
}
.project-footer .footer-wrap .footer-terms li .terms-privacy {
  color: #eee;
}
.project-footer .footer-wrap .footer-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.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: 30px;
}
.project-footer .footer-wrap .footer-info li.w-full {
  width: 100%;
  margin-left: unset;
}
.project-footer .footer-wrap .footer-info li span {
  color: #eee;
}
.project-footer .footer-wrap .footer-copy {
  box-sizing: border-box;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #484848;
  line-height: 1.5;
}

/* ---------------project-footer END--------------- */
/* ---------------media screen START--------------- */
@media screen and (min-width: 991.1px) {
  /* ---------------project-header START--------------- */
  .project-header:not(.active, :hover) {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .project-header:not(.active, :hover) .header-wrap .logo a svg path {
    fill: #fff;
  }
  .project-header:not(.active, :hover) .header-wrap .gnb .menu-list > li > a {
    color: #fff;
  }
  .project-header:not(.active, :hover) .header-wrap .gnb .member-list > li:not(:nth-of-type(1)) {
    border-color: #fff;
  }
  .project-header:not(.active, :hover) .header-wrap .gnb .member-list > li > a {
    color: #fff;
  }
  .project-header:not(.active, :hover) .header-wrap .gnb .member-list > li > a svg circle, .project-header:not(.active, :hover) .header-wrap .gnb .member-list > li > a svg path {
    fill: #fff;
  }
  .project-header:hover {
    border-color: #f7f7f7;
    background-color: #fff;
  }
  .project-header .header-wrap .gnb .gnb-bg {
    display: block;
  }
  .project-header .header-wrap .gnb .menu-list > li:hover::before {
    width: 100%;
  }
  .project-header .header-wrap .gnb .menu-list > li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    display: flex !important;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a:hover {
    color: #005bac;
  }
  .project-header .btn-menu {
    display: none;
  }
  /* ---------------project-header END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------project-header START--------------- */
  .project-header {
    height: 75px;
  }
  .project-header .header-wrap .gnb {
    gap: 25px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    font-size: 19px;
    padding: 8px 32px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    gap: 16px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a {
    font-size: 17px;
    padding: 4px 12px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    gap: 11px;
    font-size: 15px;
    padding: 0 12px;
  }
  .project-header .btn-home {
    width: 75px;
    height: 75px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .btn-top {
    width: 65px;
    height: 65px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 28px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 28px;
  }
  .project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
    margin-left: 28px;
  }
  .project-footer .footer-wrap .footer-copy {
    margin-top: 28px;
    padding-top: 28px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------project-header START--------------- */
  .project-header {
    height: 70px;
  }
  .project-header .header-wrap .gnb {
    gap: 20px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    font-size: 18px;
    padding: 6px 24px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    gap: 12px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a {
    font-size: 16px;
    padding: 3px 9px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    gap: 9px;
    font-size: 14px;
    padding: 0 9px;
  }
  .project-header .btn-home {
    width: 70px;
    height: 70px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer .footer-wrap .btn-top {
    width: 60px;
    height: 60px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 26px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 26px;
  }
  .project-footer .footer-wrap .footer-info li:not(:nth-of-type(1)) {
    margin-left: 26px;
  }
  .project-footer .footer-wrap .footer-copy {
    margin-top: 26px;
    padding-top: 26px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------project-header START--------------- */
  .project-header {
    padding-right: unset;
  }
  .project-header:not(.active) {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .project-header:not(.active) .header-wrap .logo a svg path {
    fill: #fff;
  }
  .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: 70px;
    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 .gnb-bg {
    display: none;
  }
  .project-header .header-wrap .gnb .menu-list {
    display: block;
    height: calc(100vh - 70px - 35px - 70px);
    overflow-y: auto;
    width: 90%;
    margin: 0 auto;
    margin-top: 35px;
    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(0, 91, 172, 0.1);
  }
  .project-header .header-wrap .gnb .menu-list > li::before {
    display: none;
  }
  .project-header .header-wrap .gnb .menu-list > li:nth-last-of-type(1) > a::after {
    content: "\f107";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    transition: transform 0.3s;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    font-size: 20px;
    padding: unset;
    overflow: hidden;
  }
  .project-header .header-wrap .gnb .menu-list > li > a.active::before {
    width: 100%;
  }
  .project-header .header-wrap .gnb .menu-list > li > a.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .project-header .header-wrap .gnb .menu-list > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #005bac;
    height: 2px;
    transition: width 0.3s;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    display: none;
    position: unset;
    left: unset;
    top: unset;
    transform: unset;
    height: auto;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
    padding: 10px 2.5%;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li:not(:nth-of-type(1)) {
    margin-top: 5px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: unset;
    width: 100%;
    height: 40px;
    padding: unset;
  }
  .project-header .header-wrap .gnb .member-list {
    display: flex;
    align-items: center;
    width: 90%;
    height: 70px;
    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;
    gap: 13px;
    font-size: 16px;
    padding: unset;
    margin: 0 auto;
  }
  .project-header .btn-home {
    display: none;
  }
  .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: 70px;
    height: 70px;
    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-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) {
  /* ---------------project-header START--------------- */
  .project-header {
    height: 65px;
  }
  .project-header .header-wrap .gnb.active {
    padding-top: 65px;
  }
  .project-header .header-wrap .gnb .menu-list {
    height: calc(100vh - 65px - 32.5px - 65px);
    margin-top: 32.5px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    height: 54px;
    font-size: 19px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    padding: 9px 2.5%;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li:not(:nth-of-type(1)) {
    margin-top: 4px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a {
    font-size: 17px;
    height: 36px;
  }
  .project-header .header-wrap .gnb .member-list {
    padding: 23px 0;
    height: 65px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    gap: 11px;
    font-size: 15px;
  }
  .project-header .btn-menu {
    width: 65px;
    height: 65px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer {
    font-size: 15px;
  }
  .project-footer .footer-wrap .btn-top {
    width: 55px;
    height: 55px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 24px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 24px;
  }
  .project-footer .footer-wrap .footer-copy {
    margin-top: 24px;
    padding-top: 24px;
  }
  /* ---------------project-footer END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------project-header START--------------- */
  .project-header {
    height: 60px;
  }
  .project-header .header-wrap .gnb.active {
    padding-top: 60px;
  }
  .project-header .header-wrap .gnb .menu-list {
    height: calc(100vh - 60px - 30px - 60px);
    margin-top: 30px;
  }
  .project-header .header-wrap .gnb .menu-list > li > a {
    height: 48px;
    font-size: 18px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul {
    padding: 8px 2.5%;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li:not(:nth-of-type(1)) {
    margin-top: 3px;
  }
  .project-header .header-wrap .gnb .menu-list > li > ul > li > a {
    font-size: 16px;
    height: 32px;
  }
  .project-header .header-wrap .gnb .member-list {
    padding: 21px 0;
    height: 60px;
  }
  .project-header .header-wrap .gnb .member-list > li > a {
    gap: 10px;
    font-size: 14px;
  }
  .project-header .btn-menu {
    width: 60px;
    height: 60px;
  }
  /* ---------------project-header END--------------- */
  /* ---------------project-footer START--------------- */
  .project-footer {
    font-size: 14px;
  }
  .project-footer .footer-wrap .btn-top {
    width: 50px;
    height: 50px;
  }
  .project-footer .footer-wrap .footer-terms {
    gap: 22px;
  }
  .project-footer .footer-wrap .footer-info {
    margin-top: 22px;
  }
  .project-footer .footer-wrap .footer-copy {
    margin-top: 22px;
    padding-top: 22px;
  }
  /* ---------------project-footer END--------------- */
}
/* ---------------media screen END--------------- */