@charset "UTF-8";
.pos {
  position: absolute;
  left: 0;
  top: 0;
}

.pos_btm {
  position: absolute;
  left: 0;
  bottom: 0;
}

.pos_cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pos_cntX {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pos_cntY {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.flx_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flx_btw {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rel {
  position: relative;
}

.flx {
  display: flex;
}

#hd {
  background: #FFFFFF;
}

#header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 100;
  color: #fff;
  top: 0px;
  border-bottom: 1px solid #b1b5b6;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: #f3fbff;
}
@media (max-width: 1600px) {
  #header {
    height: 70px;
  }
  #header .header_wrap {
    padding: 0 20px;
  }
}
#header .logo {
  width: 300px;
  height: 48px;
}
#header .logo-c {
  opacity: 1;
}
#header .logo-w {
  opacity: 0;
}
@media (max-width: 1600px) {
  #header .logo {
    width: 250px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  #header .logo {
    width: 200px;
    height: 32px;
  }
}
#header .btn_gnb {
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: -15px;
  z-index: 99999;
}
#header .btn_gnb .header_menu_btn_line {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background: #1c3850;
  transition: 0.3s;
  transform-origin: center;
}
#header .btn_gnb .header_menu_btn_line_01 {
  top: 20px;
}
#header .btn_gnb .header_menu_btn_line_02 {
  top: 30px;
}
#header .btn_gnb .header_menu_btn_line_03 {
  top: 40px;
}
#header .btn_gnb.on .header_menu_btn_line_01 {
  top: 30px;
  transform: rotate(45deg);
  background: #fff;
}
#header .btn_gnb.on .header_menu_btn_line_02 {
  display: none;
}
#header .btn_gnb.on .header_menu_btn_line_03 {
  top: 30px;
  transform: rotate(-45deg);
  background: #fff;
}
@media (max-width: 1200px) {
  #header .btn_gnb {
    order: 3;
  }
}
#header .lang-btn {
  background: rgba(34, 55, 67, 0.3764705882);
  border-radius: 30px;
  padding: 3px 12px 3px 10px;
}
#header .lang-btn a {
  gap: 5px;
  color: #fff;
}
#header .lang-btn a img {
  width: 20px;
}
#header .lang-btn a span {
  font-size: 18px;
  letter-spacing: 0.1px;
}
@media (max-width: 1200px) {
  #header .lang-btn {
    order: 2;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  #header .lang-btn a img {
    width: 18px;
  }
  #header .lang-btn a span {
    font-size: 16px;
  }
}

/* --------------- 공통 --------------- */
.mo {
  display: none;
}
@media (max-width: 767px) {
  .mo {
    display: block;
  }
}

.ms {
  display: none;
}
@media (max-width: 375px) {
  .ms {
    display: block;
  }
}

section {
  padding: var(--sec-pd);
}
section:first-of-type {
  padding: var(--first-sec-pd);
}
@media (max-width: 1200px) {
  section:last-of-type {
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  section:last-of-type {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  section.overflow-visible {
    overflow: visible;
  }
}
@media (max-width: 1200px) {
  section {
    min-height: auto;
  }
}

.bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.txt_box {
  max-width: 1350px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1600px) {
  .txt_box {
    padding-left: 100px;
  }
}
@media (max-width: 1200px) {
  .txt_box {
    padding: 0 40px !important;
  }
}
@media (max-width: 767px) {
  .txt_box {
    padding: 0 20px !important;
  }
}
@media (max-width: 1600px) {
  .txt_box_main {
    padding-left: 200px;
  }
}

.w1350 {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .w1350 {
    padding-left: 140px;
  }
}
@media (max-width: 1200px) {
  .w1350 {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .w1350 {
    padding: 0 20px;
  }
}

@media (max-width: 1600px) {
  .main_wrapper .w1350 {
    padding-left: 200px;
  }
}
@media (max-width: 1200px) {
  .main_wrapper .w1350 {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .main_wrapper .w1350 {
    padding: 0 20px;
  }
}

h2 {
  font-size: 3.875rem;
  font-weight: 600;
  line-height: 5.5rem;
  letter-spacing: 1px;
  margin-bottom: 5.5rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h2 {
    margin-bottom: 4rem;
  }
}

h3 {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.375rem;
  margin-bottom: 2.25rem;
}

p {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  p {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

#floating_nav {
  position: fixed;
  left: 38px;
  top: 225px;
  z-index: 30;
}
@media (max-width: 1600px) {
  #floating_nav {
    top: 177px;
  }
}
#floating_nav.white {
  color: #fff;
  transition: all 0.2s;
}
#floating_nav.white ul::before {
  transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23fff' stroke-opacity='0.5' stroke-width='2' stroke-dasharray='2%2c 6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
#floating_nav.white ul li a::before {
  background: #fff;
  transition: all 0.2s;
}
#floating_nav.white ul li a.active::after {
  border: 1px solid #fff;
  transition: all 0.2s;
}
#floating_nav.white ul li a span {
  color: #fff;
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  #floating_nav {
    display: none !important;
  }
}
#floating_nav ul {
  position: relative;
}
#floating_nav ul::before {
  content: "";
  position: absolute;
  left: 2.5px;
  top: 27px;
  width: 1px;
  height: calc(100% - 55px);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%234d4d4e' stroke-width='2' stroke-dasharray='2%2c 6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  z-index: 10;
}
#floating_nav ul li {
  position: relative;
  padding: 16px 0;
}
#floating_nav ul li a {
  opacity: 0.4;
  color: unset;
}
#floating_nav ul li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1c3850;
  z-index: 12;
}
#floating_nav ul li a.active {
  position: relative;
  opacity: 1;
}
#floating_nav ul li a.active::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #1c3850;
  z-index: 11;
}
#floating_nav ul li a span {
  display: block;
  padding-left: 16px;
  font-size: 14px;
  color: #383838;
}

.floating_nav_main {
  display: none;
}

/* 메인 */
.main01 {
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
  z-index: 50;
  margin: 0 !important;
}
.main01 .bg {
  background-image: url(../img/main/main01_bg.jpg);
}
@media (max-width: 1600px) {
  .main01 .txt_box {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .main01 .txt_box {
    padding-left: 30px;
  }
}
.main01 h2 {
  color: #fff;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .main01 h2 {
    margin-top: 0;
    font-size: 3.5rem;
    line-height: 5rem;
    margin-bottom: 5.25rem;
  }
}
.main01 h2 span:first-child {
  font-weight: 400;
}
.main01 p {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 4.5px;
  margin-top: 3rem;
}
@media (max-width: 375px) {
  .main01 p {
    font-size: 1.2rem;
  }
}

.main02 {
  overflow: hidden;
  background-color: #fff;
  padding: 0;
  margin: 0;
  z-index: 50;
}
@media (max-width: 1200px) {
  .main02 {
    min-height: 100vh;
  }
}
.main02 h2 {
  font-weight: 600;
  line-height: 6rem;
  letter-spacing: 5px;
  background-image: linear-gradient(to right, #20506c, #54b9dd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: unset;
  margin: 0;
}
.main02 p {
  text-align: center;
  color: #1c3850;
}
.main02 .t1 {
  width: 100%;
}
.main02 .t1 h2 {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .main02 .t1 h2 {
    font-size: 3.5rem;
    letter-spacing: 3px;
  }
}
@media (max-width: 375px) {
  .main02 .t1 h2 {
    font-size: 3.2rem;
  }
}
.main02 .t2 {
  width: 40rem;
}
@media (max-width: 767px) {
  .main02 .t2 {
    width: 30rem;
  }
}
.main02 .gradient_cir {
  width: 60rem;
  height: 30rem;
  background: radial-gradient(ellipse, rgb(243, 251, 255) 40%, transparent 71%);
  pointer-events: none;
}

.hashtag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3.5rem;
}
.hashtag li {
  padding: 0.87rem 2.2rem;
  font-size: 1.375rem;
  background: #ebf9ff;
  border: 1px solid #777777;
  border-radius: 50px;
}

.main04 h3 {
  margin-bottom: 6rem;
}
.main04 .timeline {
  position: relative;
}
.main04 .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 142px;
  width: 100%;
  height: 1px;
  background: #1c3850;
}
@media (max-width: 767px) {
  .main04 .timeline::before {
    content: none;
  }
}
.main04 .timeline .w1350 {
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  .main04 .timeline .w1350 {
    flex-direction: column;
    align-items: center;
  }
}
.main04 .timeline_tit {
  position: relative;
  height: 400px;
  padding-left: 40px;
  width: 27%;
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main04 .timeline_tit {
    padding-left: 0;
    padding-bottom: 25px;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 2rem;
  }
}
.main04 .timeline_tit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 1px;
  height: 253px;
  background: #1c3850;
}
@media (max-width: 767px) {
  .main04 .timeline_tit::before {
    content: none;
  }
}
.main04 .timeline_tit::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #1c3850;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .main04 .timeline_tit::after {
    content: none;
  }
}
.main04 .timeline_steps {
  display: flex;
  width: 73%;
  height: 283px;
}
@media (max-width: 767px) {
  .main04 .timeline_steps {
    position: relative;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding-top: 50px;
  }
  .main04 .timeline_steps::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #1c3850;
  }
  .main04 .timeline_steps::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #1c3850;
    border-radius: 50%;
  }
}
.main04 .timeline_steps li {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  white-space: nowrap;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li {
    padding: 0;
    width: 50%;
    height: 80px;
  }
}
.main04 .timeline_steps li div {
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li div {
    padding: 0;
    font-size: 1.75rem;
  }
}
.main04 .timeline_steps li span {
  font-size: 1.375rem;
  font-weight: 400;
  font-size: 1.5rem;
}
.main04 .timeline_steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 1px;
  height: 136px;
  background: #1c3850;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li::before {
    top: 10px;
    left: auto;
    right: 0;
    width: 100px;
    height: 1px;
  }
}
.main04 .timeline_steps li::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #1c3850;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li::after {
    left: auto;
    right: -5px;
    width: 10px;
    height: 10px;
  }
}
.main04 .timeline_steps li:nth-child(even) {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li:nth-child(even) {
    justify-content: flex-start;
    align-self: flex-end;
  }
  .main04 .timeline_steps li:nth-child(even) div {
    text-align: right;
  }
}
.main04 .timeline_steps li:nth-child(even)::before {
  top: auto;
  bottom: 5px;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li:nth-child(even)::before {
    top: 10px;
    bottom: auto;
    left: 0;
    width: 100px;
    height: 1px;
  }
}
.main04 .timeline_steps li:nth-child(even)::after {
  top: auto;
  bottom: 5px;
}
@media (max-width: 767px) {
  .main04 .timeline_steps li:nth-child(even)::after {
    top: 5px;
    left: -5px;
    width: 10px;
    height: 10px;
  }
}

.main05 {
  overflow: hidden;
}
.main05 .w1350 h3 {
  margin-bottom: 0.8rem;
}
.main05 .contact_btn {
  margin-top: 5.5rem;
  width: 100%;
  cursor: default;
}
.main05 .contact_btn a {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.75rem 3rem;
  font-size: 2.125rem;
  color: #383838;
  font-weight: 500;
  letter-spacing: -0.5px;
  border: 1px solid #777777;
  border-radius: 50px;
  background: #ebf9ff;
  overflow: hidden;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  z-index: 0;
}
.main05 .contact_btn a::after, .main05 .contact_btn a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.main05 .contact_btn a::before {
  background: rgba(28, 56, 80, 0.6);
}
.main05 .contact_btn a::after {
  background: #1c3850;
}
.main05 .contact_btn a:hover {
  color: #fff;
}
.main05 .contact_btn a:hover::before, .main05 .contact_btn a:hover::after {
  transform: translate3d(0, 100%, 0);
}
.main05 .contact_btn a:hover::after {
  transition-delay: 0.175s;
}

.horizontal_scroll .scroll_box {
  gap: 26px;
  padding-top: 6rem;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .horizontal_scroll .scroll_box {
    flex-direction: column;
    padding-top: 2.5rem;
  }
}
.horizontal_scroll .scroll_box .scroll {
  width: 85.46%;
  background: #1c3850;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .horizontal_scroll .scroll_box .scroll {
    margin: 0 auto;
    width: 100%;
  }
}
.horizontal_scroll .scroll_box .scroll .flx {
  justify-content: space-between;
  align-items: flex-end;
  padding: 96px 126px;
  padding-left: calc((100vw - 1364px) / 2);
  box-sizing: border-box;
}
@media (max-width: 1600px) {
  .horizontal_scroll .scroll_box .scroll .flx {
    padding: 65px 70px;
    padding-left: 100px;
  }
}
@media (max-width: 1200px) {
  .horizontal_scroll .scroll_box .scroll .flx {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .horizontal_scroll .scroll_box .scroll .flx {
    padding: 30px 20px;
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
.horizontal_scroll .scroll_box .scroll .card_txt {
  width: calc(100% - var(--scroll-img-width));
  color: #fff;
}
@media (max-width: 767px) {
  .horizontal_scroll .scroll_box .scroll .card_txt {
    width: 100%;
  }
}
.horizontal_scroll .scroll_box .scroll .card_txt span {
  font-size: 2.125rem;
}
@media (max-width: 767px) {
  .horizontal_scroll .scroll_box .scroll .card_txt span {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .horizontal_scroll .scroll_box .scroll .card_txt h3 {
    margin-top: 3px;
  }
}
.horizontal_scroll .scroll_box .scroll .card_img {
  width: var(--scroll-img-width);
}

.footer {
  background: #1c3850;
  height: 250px;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    height: 280px;
  }
  .footer .txt_box {
    top: 47%;
  }
}
.footer_lf {
  gap: 2rem;
}
@media (max-width: 1200px) {
  .footer_lf {
    width: 100%;
  }
}
.footer_lf h3 {
  font-weight: 500;
  margin-bottom: 0;
}
.footer_lf .f_sns {
  gap: 12px;
}
.footer_lf .f_sns li {
  width: 62px;
  height: 62px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer_lf .f_sns li {
    width: 48px;
    height: 48px;
  }
}
.footer_lf .f_sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer_lf .f_sns li img {
  width: auto;
}
@media (max-width: 767px) {
  .footer_lf .f_sns li img {
    width: 50%;
  }
}
.footer_rt li:nth-child(2) p {
  display: inline-flex;
}
.footer_rt p {
  font-size: 1.25rem;
}
@media (max-width: 1200px) {
  .footer > .flx_btw {
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }
}

.gnb_logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  text-align: right;
}
.gnb_logo img {
  width: 60%;
}

#top_btn {
  position: absolute;
  top: -130px;
  right: 100px;
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 17px;
  z-index: 90;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #1c3850;
  color: #1c3850;
}
#top_btn img {
  width: auto;
  transition: all 0.3s;
}
#top_btn:hover img {
  translate: 0 -5px;
}
@media (max-width: 1600px) {
  #top_btn {
    right: 50px;
    top: -100px;
  }
}
@media (max-width: 1200px) {
  #top_btn {
    width: 60px;
    height: 60px;
  }
  #top_btn img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  #top_btn {
    right: 20px;
    top: -80px;
  }
}/*# sourceMappingURL=main.css.map */