@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alibaba", "Noto Sans KR", sans-serif;
  color: #000;
  height: 100%;
  letter-spacing: -0.03em;
  font-weight: 400;
  background: #fff;
  margin: 0 auto;
  min-width: 1600px;
}
body:has(.sub_contents) {
  overflow: visible;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  font-family: "Alibaba", "Noto Sans KR", sans-serif;
  color: #000;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
}

textarea {
  resize: none;
  font-family: "Alibaba", "Noto Sans KR", sans-serif;
}

label {
  vertical-align: middle;
}

strong,
.bold {
  font-weight: 600;
}

input:focus,
input:active,
textarea:focus,
textarea:active {
  outline: none;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.frm_input {
  height: 45px;
  /* font-size: 18px; */
  padding-left: 7px;
  box-sizing: border-box;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

[data-scroll-container] {
  overflow: hidden;
}

[data-scroll] {
  will-change: transform;
  backface-visibility: hidden;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #23b6e7;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  margin-right: 20px;
  margin-bottom: 8px;
  min-width: 28px;
  max-width: 28px;
  max-height: 28px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #23b6e7;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #23b6e7;
  }
}

/* scss 변수 */
.scm {
  /*screen_middle*/
  width: 1400px;
  margin: 0 auto;
}

.noto-serif-title-bold {
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.noto-serif-light {
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  overflow: hidden;
}

.main_sm_txt {
  font-size: 30px;
  color: #0084ff;
  font-weight: 500;
  display: block;
}

.main_lg_txt {
  font-size: 68px;
  font-weight: 500;
}

.subpage {
  width: 100%;
  overflow: hidden;
}
.subpage .img1920 {
  width: 1400px;
  margin: 0 auto;
}
.subpage .img1920 img {
  margin-left: -260px;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100px;
  transition: height ease 0.3s, background ease 0.3s;
}
.header.bg {
  background: rgba(0, 0, 0, 0.2);
}
.header_inner {
  width: 1400px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header ul {
  display: flex;
  gap: 30px;
}
.header ul li a {
  color: #fff;
}
.header .logo .img_logo_wh {
  display: block;
}
.header .logo .img_logo_blue {
  display: none;
}
.header .gnb {
  display: flex;
}
.header .gnb > li {
  padding-right: 30px;
  position: relative;
  transition: all ease 0.3s;
}
.header .gnb h4 a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 8px 4px;
  text-align: left;
}
.header .gnb_sub {
  position: absolute;
  z-index: 99;
  width: 100%;
  text-align: center;
  opacity: 0;
  filter: Alpha(opacity=0);
  height: 0;
  transition: all 0.2s 0s;
  transition-delay: 0s;
  visibility: hidden;
  padding-top: 50px;
  text-align: left;
}
.header .gnb_sub li {
  margin-bottom: 20px;
}
.header .gnb_sub a {
  padding: 8px 4px;
  letter-spacing: -0.03em;
  font-size: 15px;
}
.header .gnb_sub a:hover {
  font-weight: 500;
  text-decoration: underline;
}
.header .header-dot {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #67cbfd;
  top: 26px;
  left: 0;
  transition: opacity 0.4s;
  z-index: 9999;
  opacity: 0;
}
.header .gnb_login {
  display: flex;
}
.header .gnb_login li::after {
  content: "|";
  margin: 0 4px;
  color: #fff;
}
.header .gnb_login li:last-child::after {
  display: none;
}
.header .gnb_login a {
  color: #fff;
  font-size: 14px;
}
.header.open {
  background: #fff;
  height: 390px;
}
.header.open .logo .img_logo_wh {
  display: none;
}
.header.open .logo .img_logo_blue {
  display: block;
}
.header.open .header-dot {
  opacity: 1;
}
.header.open .gnb > li {
  padding-right: 60px;
}
.header.open .gnb > li:last-child {
  padding-right: 30px;
}
.header.open .gnb h4 a {
  color: #000;
}
.header.open .gnb_sub {
  top: 100%;
  height: 290px;
  opacity: 1;
  filter: Alpha(opacity=100);
  visibility: visible;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}
.header.open .gnb_login li::after {
  color: #000;
}
.header.open .gnb_login a {
  color: #000;
}

.mainbanner {
  position: relative;
  width: 100%;
}
.mainbanner p img {
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.txt_up {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
      background-color: rgb(0 0 0 / 50%);
    width: 1920px;
   height: 111%;
    justify-content: center;
}
.txt_up p {
  font-size: 30px;
}
.txt_up p em {
  font-size: 75px;
  font-weight: 500;
}
.txt_up a {
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #fff;
  font-size: 24px;
  background: #0084ff;
  border-radius: 30px;
  padding: 15px 30px;
  display: block;
  width: 340px;
  margin-top: 60px;
}

.up_img {
  position: relative;
  display: flex;
  top: -400px;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.up_img p:nth-child(2) {
  margin-top: 100px;
}

.video {
  position: relative;
  width: 100%;
}
.video .scm {
  display: flex;
  justify-content: space-between;
}
.video .txt_area {
  padding-top: 180px;
}
.video .txt_area .main_lg_txt {
  padding-top: 50px;
  padding-bottom: 75px;
}
.video .video_area {
  position: relative;
  border-radius: 20px;
  padding-bottom: 390px;
}
.video .video_area::before {
  content: "";
  position: absolute;
  background: url(../img/dimg.png) no-repeat;
  width: 652px;
  height: 790px;
  z-index: -1;
  left: -200px;
  top: 150px;
}
.video .video_area::after {
  position: absolute;
  content: "";
  background: url(../img/badge.png) no-repeat;
  top: 0;
  right: -152px;
  width: 200px;
  height: 200px;
}
.video .video_area iframe {
  border-radius: 10%;
  position: relative;
}

.msg {
  display: flex;
  justify-content: space-between;
  padding-bottom: 270px;
}
.msg .img_area {
  margin-left: -80px;
}
.msg .main_lg_txt {
  font-size: 60px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.msg .txt_list p:nth-child(1) {
  padding-bottom: 130px;
}
.msg .txt_list p:nth-child(2) {
  border-bottom: 2px solid #efefef;
  padding-bottom: 37px;
  margin-bottom: 37px;
}

.main_review {
  position: relative;
  background: url(../img/review_bg.png) no-repeat;
  width: 100%;
  background-size: cover;
  height: 1080px;
}
.main_review .main_lg_txt {
  padding-top: 215px;
  padding-bottom: 150px;
}
.main_review .icon_wrap {
  position: absolute;
  top: 50px;
  margin-left: calc(50% + 178px);
  display: flex;
}
.main_review .icon_wrap p {
  position: absolute;
}
.main_review .icon_wrap p:nth-child(1) {
  top: 75px;
  animation: bounce1 2s ease-in-out infinite;
}
.main_review .icon_wrap p:nth-child(2) {
  top: 185px;
  margin-left: 180px;
  animation: bounce2 2s ease-in-out infinite;
}
.main_review .icon_wrap p:nth-child(3) {
  top: 75px;
  margin-left: 380px;
  animation: bounce3 2s ease-in-out infinite;
}
.main_review .icon_wrap p:nth-child(4) {
  top: -80px;
  margin-left: 580px;
  animation: bounce4 2s ease-in-out infinite;
}
@keyframes bounce1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bounce2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes bounce3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes bounce4 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about_swiper .swiper_wrap {
  overflow: hidden;
  position: relative;
}
.about_swiper .swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about_swiper .swiper .swiper-slide {
  width: 630px;
}

.doc {
  background: url(../img/main_doc_bg.png) no-repeat;
  width: 100%;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  height: 1494px;
  color: #fff;
  padding-top: 210px;
}
.doc .scm {
  display: flex;
  justify-content: space-between;
}
.doc .scm .txt_area {
  min-width: 580px;
  display: flex;
  flex-direction: column;
}
.doc .scm .txt_area .main_lg_txt {
  font-size: 60px;
  padding-top: 57px;
  padding-bottom: 47px;
}
.doc .scm .txt_area .img_area {
  padding-bottom: 48px;
}
.doc .scm .txt_area span {
  font-size: 21px;
  display: block;
}
.doc .scm .txt_area span + span {
  padding-top: 30px;
}
.doc .scm .doc_img_area {
  margin-left: 10px;
}

.research {
  position: relative;
  top: -550px;
  width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  margin: inherit;
}
.research .acorSwiper {
  width: 90%;
}
.research .acorSwiper .swiper-slide {
  text-align: center;
  margin-right: 10px;
  width: 20%;
  box-shadow: 0 2px 10px 0px #848484;
}
.research .txt_area {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: -220px;
  padding-top: 250px;
  height: 630px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: start;
  padding-left: 110px;
  box-shadow: 0px 3px 10px 0px rgba(31, 31, 31, 0.08);
  border-radius: 20px;
}
.research .txt_area p {
  font-size: 45px;
  font-weight: 600;
  padding-bottom: 47px;
  letter-spacing: -0.09em;
}
.research .txt_area span {
  font-size: 24px;
  padding-left: 20px;
  font-weight: 300;
}
.research .txt_area span + span {
  padding-top: 35px;
}

.more_view {
  position: relative;
  margin-top: -400px;
  padding-bottom: 130px;
  width: 100%;
}
.more_view::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/de1.jpg) no-repeat;
  width: 1920px;
  height: 3217px;
  z-index: -1;
}
.more_view .txt_area {
  text-align: center;
  padding-bottom: 102px;
}
.more_view .txt_area p {
  padding-top: 57px;
}
.more_view .view_box {
  display: flex;
  justify-content: center;
  padding-right: 260px;
  gap: 110px;
}
.more_view .view_box + .view_box {
  padding-top: 160px;
}
.more_view .view_box .txt_list {
  min-width: 625px;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-top: 200px;
}
.more_view .view_box .txt_list ul {
  padding-bottom: 50px;
}
.more_view .view_box .txt_list ul li {
  line-height: 1.4;
  font-weight: 300;
  font-size: 24px;
}
.more_view .view_box .txt_list ul li:has(i) {
  padding-bottom: 14px;
  border-bottom: 1px solid #efefef;
}
.more_view .view_box .txt_list ul li:has(i) + li {
  padding-top: 27px;
}
.more_view .view_box .txt_list ul li em {
  font-size: 48px;
  font-weight: 600;
  padding-top: 37px;
  padding-bottom: 69px;
  display: block;
  letter-spacing: -0.05em;
}
.more_view .view_box .txt_list ul li i {
  padding-right: 20px;
  position: relative;
  top: -12px;
}
.more_view .view_box .txt_list ul .main_sm_txt {
  border: 2px solid #0084ff;
  border-radius: 50px;
  font-weight: 400;
  align-items: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  display: inline-block;
  padding: 5px 23px;
  padding-top: 12px;
}
.more_view .view_box .txt_list .view_btn {
  position: relative;
  display: inline-block;
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding-bottom: 10px;
}
.more_view .view_box .txt_list .view_btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #333;
  transition: all 0.4s ease-in-out;
}
.more_view .view_box .txt_list .view_btn:hover::after {
  width: 100%;
}
.more_view .view_box .txt_list .view_btn em {
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.more_view .view_box2 {
  padding-right: 0;
  padding-left: 260px;
  justify-content: center;
}
.more_view .view_box2 .txt_list {
  padding-top: 50px;
}
.more_view .view_box3 {
  padding-right: 0;
  padding-left: 18px;
  justify-content: center;
  gap: 160px;
}

.footer_nav {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  display: flex;
}
.footer_nav .txt_box {
  width: 1400px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  color: #fff;
  background-color: #0051d8;
}
.footer_nav .txt_box p {
  font-size: 30px;
  font-weight: 500;
  padding-right: 35px;
  line-height: 2;
}
.footer_nav .txt_box p i {
  padding-right: 25px;
}
.footer_nav .txt_box .view_btn {
  font-size: 18px;
  color: #0051d8;
  background: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  height: 45px;
  line-height: 1.2;
}
.footer_nav .txt_box .view_btn em {
  font-family: "SUIT", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
}

.you_btn {
  position: fixed;
  bottom: 6px;
  margin-left: calc(50% + 730px);
  display: block;
  width: 124px;
  height: 124px;
  z-index: 9999;
}
.you_btn img {
  width: 100%;
}

@media (max-width: 1720px) {
  .you_btn {
    bottom: 119px;
    margin-left: calc(50% + 550px);
  }
}
@media (max-width: 1500px) {
  .you_btn {
    right: 30px;
  }
}/*# sourceMappingURL=style.css.map */