@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000;
  --primary: #222;
  --secondary: #e2abab;
  --orange: #d47a33;
  --10: #101010;
  --33: #332c27;
  --92: #929292;
  --4d: #4d4d4d;
  --5e: #5e5651;
  --7c: #7c553d;
  --7f:#7fd1ae;
  --8c: #8c837e;
  --a2: #AAA2A0;
  --b6: #b6b6b6;
  --bd: #bda694;
  --be: #beb4af;
  --d4: #d47a33;
  --d9: #d9d9d9;
  --e5: #e5c8b6;
  --ef: #efefef;
  --f0: #f0f0f0;
  --f2: #f2f2f2;
  --f2e: #f2e8e2;
  --f4: #fff4e9;
  --f6: #fff6ec;
  --f8: #f8f8f8;
  --fd: #ffd8b4;
  --13dot: 0.844rem;
  --15: 0.938rem;
  --18: 1.125rem;
  --20: 1.25rem;
  --21: 1.313rem;
  --22: 1.375rem;
  --24: 1.5rem;
  --28: 1.75rem;
  --30: 1.875rem;
  --32: 2rem;
  --33: 2.063rem;
  --34: 2.125rem;
  --36: 2.25rem;
  --38: 2.375rem;
  --40: 2.5rem;
  --44: 2.75rem;
  --48: 3rem;
  --54: 3.375rem;
  --56: 3.5rem;
  --64: 4rem;
  --72: 4.5rem;
  --96: 6rem;
  --120: 7.5rem;
  --128: 8rem;
  --box: 0px 4px 10px rgba(0, 0, 0, 10%);
  --swit: "Switzer", sans-serif;
  --noto: "Noto Sans KR", sans-serif;
  --pre: "Pretendard", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  overflow-x: hidden;
}
body * {
  font-family: var(--swit);
}

header {
  width: 100vw;
  background: var(--10);
  padding-top: 96px;
}
header .headerWrap {
  display: flex;
  align-items: center;
  width: calc(100vw - 240px);
  margin: 0 auto;
  justify-content: space-between;
}
header .headerWrap .logoNav {
  display: flex;
  align-items: center;
}
header .headerWrap .logoNav h1 {
  width: 165px;
  height: 82px;
}
header .headerWrap .logoNav h1 a {
  display: inline-block;
  width: 165px;
  height: 82px;
}
header .headerWrap .logoNav h1 a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(200);
}
header .headerWrap .logoNav nav .tag {
  display: flex;
  align-items: center;
}
header .headerWrap .logoNav nav .tag li {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-left: 96px;
  transition: all 0.2s;
  padding-bottom: 3px;
}
header .headerWrap .logoNav nav .tag li a {
  font-family: var(--swit);
  font-size: var(--28);
  color: var(--white);
  font-weight: 300;
}
header .headerWrap .logoNav nav .tag li::after {
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  transition: all 0.2s;
}
header .headerWrap .logoNav nav .tag li:hover::after {
  opacity: 1;
}
header .headerWrap .octomedixProduct {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
}
header .headerWrap .octomedixProduct li {
  height: 29px;
  overflow: hidden;
  padding-bottom: 3px;
  position: relative;
}
header .headerWrap .octomedixProduct li a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
  height: 29px;
}
header .headerWrap .octomedixProduct li a span {
  color: #fff;
  font-family: var(--swit);
  font-size: var(--28);
  font-weight: 300;
}
header .headerWrap .octomedixProduct li::after {
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  transition: all 0.2s;
}
header .headerWrap .octomedixProduct li:hover::after {
  opacity: 1;
}
header .headerWrap .lang {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
}
header .headerWrap .lang li {
  margin-left: 29px;
  height: 29px;
  overflow: hidden;
}
header .headerWrap .lang li a {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--white);
}
header .headerWrap .lang li a span {
  font-size: 1.563rem;
}
header .headerWrap .lang li a:last-of-type {
  margin-top: 1px;
}
header .headerWrap .lang li a::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
}
header .headerWrap .lang li:first-child {
  margin-left: 0;
}
header .headerWrap .lang li:hover a::after {
  opacity: 1;
}
header .headerWrap .lang li:nth-child(1):hover a span:nth-child(1) {
  animation: text_nav_up 0.28s 0.05s ease both;
}
header .headerWrap .lang li:nth-child(1):hover a span:nth-child(2) {
  animation: text_nav_up 0.28s 0.1s ease both;
}
header .headerWrap .lang li:nth-child(2):hover a span:nth-child(1) {
  animation: text_nav_up 0.28s 0.05s ease both;
}
header .headerWrap .lang li:nth-child(2):hover a span:nth-child(2) {
  animation: text_nav_up 0.28s 0.1s ease both;
}
header .headerWrap .lang li:nth-child(3):hover a span:nth-child(1) {
  animation: text_nav_up 0.28s 0.05s ease both;
}
header .headerWrap .lang li:nth-child(3):hover a span:nth-child(2) {
  animation: text_nav_up 0.28s 0.1s ease both;
}

.app .mainIntro {
  padding-top: 240px;
  background: var(--10);
}
.app .mainIntro h2 {
  margin-left: 120px;
}
.app .mainIntro h2 span {
  color: var(--white);
  font-size: var(--96);
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.app .mainIntro h2 span em {
  position: relative;
  font-family: var(--swit);
  font-style: italic;
  font-size: var(--96);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  /* overflow: hidden; */
}
.app .mainIntro h2 span em::before {
  content: "";
  display: inline-block;
  background: var(--10);
  height: 100%;
  width: 108%;
  position: absolute;
  top: 50%;
  transform: translateY(-54%) skewX(-11deg);
  right: -8%;
  animation: typing 3s steps(19) infinite alternate-reverse;
}
.app .mainIntro h2 span em::after {
  content: "|";
  background: transparent;
  color: var(--white);
  display: inline-block;
  height: 100%;
  width: 108%;
  position: absolute;
  top: 50%;
  transform: translateY(-54%);
  right: -7%;
  animation: typing 3s steps(19) infinite alternate-reverse, blink 1s infinite;
}
.app .mainIntro .introVideo {
  width: 100vw;
  height: 1080px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 240px;
}
.app .mainAbout {
  background: var(--white);
  width: 100vw;
  height: 572px;
  position: relative;
}
.app .mainAbout .mainAboutBx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 240px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .mainAbout .mainAboutBx .subtitle {
  font-size: var(--48);
  font-family: var(--swit);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  position: relative;
}
.app .mainAbout .mainAboutBx .subtitle::before {
  content: "";
  width: 204px;
  height: 1px;
  background: var(--10);
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.app .mainAbout .mainAboutBx span {
  font-size: var(--20);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-family: var(--pre);
}
.app .mainServices {
  padding-top: 240px;
  width: 100vw;
  background: var(--10);
}
.app .mainServices h4 {
  position: relative;
  margin-left: 176px;
  display: flex;
  align-items: center;
}
.app .mainServices h4 span {
  opacity: 0;
  transition: all 0.3s;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  font-family: var(--swit);
  font-size: var(--28);
  color: var(--white);
  transform: translateX(30px) rotate(20deg);
  margin: 0 1px;
}
.app .mainServices h4 span:first-child {
  margin-left: 0;
}
.app .mainServices h4 span:last-child {
  margin-right: 0;
}
.app .mainServices h4.active span {
  opacity: 1;
  transform: translateX(0px) rotate(0);
}
.app .mainServices h4.active span:nth-child(1) {
  transition-delay: 0.1s;
}
.app .mainServices h4.active span:nth-child(2) {
  transition-delay: 0.12s;
}
.app .mainServices h4.active span:nth-child(3) {
  transition-delay: 0.14s;
}
.app .mainServices h4.active span:nth-child(4) {
  transition-delay: 0.16s;
}
.app .mainServices h4.active span:nth-child(5) {
  transition-delay: 0.18s;
}
.app .mainServices h4.active span:nth-child(6) {
  transition-delay: 0.2s;
}
.app .mainServices h4.active span:nth-child(7) {
  transition-delay: 0.22s;
}
.app .mainServices h4.active span:nth-child(8) {
  transition-delay: 0.24s;
}
.app .mainServices h4::before {
  content: "";
  left: -48px;
  top: 7px;
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 100%;
  transform: scale(1.5);
  transition: all 0.3s;
  opacity: 0;
}
.app .mainServices h4.active::before {
  content: "";
  left: -48px;
  top: 7px;
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 100%;
  transform: scale(1);
  transition: all 0.3s;
  opacity: 1;
}
.app .mainServices .mainServicesWrap .mainServicesBx {
  width: calc(100vw - 240px);
  margin: 0 auto;
  margin-top: 57px;
  padding: 96px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span {
  display: block;
  font-family: var(--pre);
  font-size: var(--44);
  color: var(--white);
  font-weight: 300;
  line-height: 2;
  padding-bottom: 1px;
  border-bottom: 1px solid #fff;
}
.app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span:nth-child(1) {
  width: 385px;
  font-size: var(--48);
  font-family: var(--swit);
  letter-spacing: -0.02em;
}
.app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span:nth-child(2) {
  width: 471px;
}
.app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt > span {
  display: block;
  margin-top: 100px;
  font-family: var(--pre);
  font-size: var(--20);
  color: var(--white);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.03em;
}
.app .mainServices .mainServicesWrap .mainServicesBx img {
  width: calc(100vw - 1049px);
  height: 535px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .mainServices .mainServicesWrap .mainServicesBx:nth-child(2) {
  border-top: 0;
  margin-top: 0;
}
.app .mainServices .mainServicesWrap .mainServicesBx:nth-child(2) .mainServicesTxt {
  margin-top: 90px;
}
.app .mainServices .eduProcsss {
  width: calc(100vw - 240px);
  margin: 0 auto;
  margin-top: 96px;
}
.app .mainServices .eduProcsss span {
  display: block;
  font-family: var(--pre);
  font-size: var(--44);
  color: var(--white);
  font-weight: 300;
  line-height: 2;
  padding-bottom: 1px;
  border-bottom: 1px solid #fff;
}
.app .mainServices .eduProcsss span:nth-child(1) {
  width: 385px;
  font-size: var(--48);
  font-family: var(--swit);
  letter-spacing: -0.02em;
}
.app .mainServices .eduProcsss span:nth-child(2) {
  width: 623px;
}
.app .mainServices .serviceProcess {
  width: calc(100vw - 240px);
  margin: 0 auto;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app .mainServices .serviceProcess li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 55px 0;
  border-bottom: 1px solid #fff;
}
.app .mainServices .serviceProcess li h3 {
  padding-left: 20px;
  color: var(--white);
  font-family: var(--swit);
  font-size: var(--48);
  font-weight: 300;
  width: 371px;
  white-space: nowrap;
}
.app .mainServices .serviceProcess li p {
  color: var(--white);
  font-family: var(--pre);
  font-size: var(--20);
  line-height: 1.8;
  letter-spacing: 0.03em;
  width: 317px;
  white-space: nowrap;
  font-weight: 300;
}
.app .mainServices .serviceProcess li:nth-child(1) img {
  width: 142px;
  height: 142px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .mainServices .serviceProcess li:nth-child(2) img {
  width: 142px;
  height: 141px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .mainServices .serviceProcess li:nth-child(3) img {
  width: 142px;
  height: 123px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .mainServices .serviceProcess li:nth-child(4) img {
  width: 142.5px;
  height: 148px;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .mainServices .infoToContact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  padding-bottom: 100px;
}
.app .mainServices .infoToContact img {
  width: 34px;
  height: 34px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 32px;
}
.app .mainServices .infoToContact span {
  color: var(--white);
  font-family: var(--pre);
  font-size: var(--20);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.app .license {
  width: 100%;
  height: 1178px;
  position: relative;
  overflow: hidden;
}
.app .license .titleBx h2 {
  line-height: 2;
  width: 461px;
  letter-spacing: 0.03em;
  color: var(--10);
  font-family: var(--swit);
  font-size: var(--44);
  padding-bottom: 5px;
  border-bottom: 1px solid #101010;
}
.app .license .titleBx p {
  margin-top: 48px;
  color: var(--10);
  font-family: var(--pre);
  font-size: var(--20);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.app .license .titleBx1 {
  padding-top: 268px;
  margin-left: 143px;
}
.app .license .titleBx2 {
  margin-top: 240px;
  margin-left: 278px;
}
.app .license .titleBx2 h2 {
  width: 610px;
  white-space: nowrap;
}
.app .license video {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.app .mainMap {
  width: 100vw;
  height: 939px;
  /* background: var(--black); */
  position: relative;
}
.app .mainMap .map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.app .hospitalMSO {
  width: 100vw;
  background: var(--ef);
  padding-bottom: 318px;
}
.app .hospitalMSO h2 {
  margin-left: 120px;
  padding-top: 245px;
  font-family: var(--pre);
  font-size: var(--44);
  line-height: 1.5;
  font-weight: 500;
}
.app .hospitalMSO h2 em {
  font-size: var(--48);
  font-family: var(--swit);
  letter-spacing: -0.02em;
}
.app .hospitalMSO .longWord {
  font-size: var(--28);
  font-family: var(--swit);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-left: 120px;
}
.app .hospitalMSO .octoInfo {
  margin-top: 96px;
  position: relative;
  height: 147px;
}
.app .hospitalMSO .octoInfo .textBar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}
.app .hospitalMSO .octoInfo .swiperTxtSlide .swiper-wrapper .swiper-slide span {
  margin-top: 45px;
  display: block;
  font-family: var(--swit);
  font-size: var(--20);
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}
.app .hospitalMSO .baliProject {
  margin-top: 240px;
}
.app .hospitalMSO .baliProject h4 {
  width: calc(100vw - 240px);
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #101010;
  padding-bottom: 10px;
}
.app .hospitalMSO .baliProject h4 span {
  font-family: var(--pre);
  font-size: var(--20);
  color: var(--10);
  margin-left: 48px;
}
.app .hospitalMSO .baliProject h4::before {
  content: "";
  left: 0px;
  top: 0px;
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--10);
  border-radius: 100%;
}
.app .hospitalMSO .baliProject h3 {
  margin-top: 36px;
  margin-left: 120px;
  font-family: var(--swit);
  font-size: var(--48);
  color: var(--10);
  letter-spacing: -0.02em;
}
.app .hospitalMSO .baliProject .baliInfoGroup {
  position: relative;
  width: calc(100vw - 240px);
  margin: 0 auto;
  margin-top: 120px;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliImg {
  width: 522px;
  height: 522px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo {
  position: absolute;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo img {
  width: 40px;
  height: 40px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: -80px;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo p {
  letter-spacing: 0.03em;
  font-family: var(--pre);
  font-size: var(--20);
  color: var(--10);
  line-height: 1.8;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(2) {
  top: 68px;
  left: 73px;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(3) {
  bottom: -236px;
  right: 287px;
}
.app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(4) {
  top: -10px;
  right: 12px;
}
.app .contact {
  width: 100vw;
  height: 1232px;
  position: relative;
  background: var(--10);
}
.app .contact .contactVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.app .contact .txtWrap {
  position: relative;
  z-index: 300;
}
.app .contact .txtWrap h4 {
  position: relative;
  margin-left: 241px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-family: var(--pre);
  font-size: var(--24);
  color: var(--white);
}
.app .contact .txtWrap .contactUs {
  padding-top: 144px;
  display: flex;
  align-items: center;
  position: relative;
}
.app .contact .txtWrap .contactUs span {
  opacity: 0;
  transition: all 0.3s;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  font-family: var(--pre);
  font-size: var(--28);
  color: var(--white);
  transform: translateX(30px) rotate(20deg);
  margin: 0 1px;
}
.app .contact .txtWrap .contactUs span:first-child {
  margin-left: 0;
}
.app .contact .txtWrap .contactUs span:last-child {
  margin-right: 0;
}
.app .contact .txtWrap .contactUs.active span {
  opacity: 1;
  transform: translateX(0px) rotate(0);
}
.app .contact .txtWrap .contactUs.active span:nth-child(1) {
  transition-delay: 0.1s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(2) {
  transition-delay: 0.12s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(3) {
  transition-delay: 0.14s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(4) {
  transition-delay: 0.16s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(5) {
  transition-delay: 0.18s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(6) {
  transition-delay: 0.2s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(7) {
  transition-delay: 0.22s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(8) {
  transition-delay: 0.24s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(9) {
  transition-delay: 0.26s;
}
.app .contact .txtWrap .contactUs.active span:nth-child(10) {
  transition-delay: 0.28s;
}
.app .contact .txtWrap .contactUs::before {
  content: "";
  left: -48px;
  top: 151px;
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 100%;
  transform: scale(1.5);
  transition: all 0.3s;
  opacity: 0;
}
.app .contact .txtWrap .contactUs.active::before {
  content: "";
  left: -48px;
  top: 151px;
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 100%;
  transform: scale(1);
  transition: all 0.3s;
  opacity: 1;
}
.app .contact .txtWrap .notice {
  margin-left: 197px;
  margin-top: 141px;
  padding: 27px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 714px;
  white-space: nowrap;
  font-family: var(--pre);
  text-align: center;
  font-size: var(--20);
}
.app .contact .txtWrap form {
  margin-left: 197px;
  margin-top: 96px;
}
.app .contact .txtWrap form fieldset .inputGrid {
  width: 714px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 96px;
}
.app .contact .txtWrap form fieldset .inputGrid div {
  display: flex;
  flex-direction: column;
}
.app .contact .txtWrap form fieldset .inputGrid div label {
  color: var(--white);
  font-size: var(--24);
  font-weight: 400;
  font-family: var(--swit);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.app .contact .txtWrap form fieldset .inputGrid div input {
  margin-top: 15px;
  font-size: var(--18);
  color: var(--white);
  font-family: var(--pre);
  line-height: 1.5;
  letter-spacing: 0.03em;
  border: none;
  background: transparent;
  width: 341px;
  padding-left: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  outline: none;
}
.app .contact .txtWrap form fieldset .inputGrid div input::-moz-placeholder {
  color: var(--4d);
}
.app .contact .txtWrap form fieldset .inputGrid div input::placeholder {
  color: var(--4d);
}
.app .contact .txtWrap form fieldset .inputGrid div input[type=number]::-webkit-inner-spin-button,
.app .contact .txtWrap form fieldset .inputGrid div input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none; /* 웹킷 기반 브라우저에서 스핀 버튼 숨기기 */
  appearance: none; /* 다른 브라우저에서 스핀 버튼 숨기기 */
  margin: 0; /* 버튼 간격 제거 */
}
.app .contact .txtWrap form fieldset .message {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
}
.app .contact .txtWrap form fieldset .message label {
  color: var(--white);
  font-size: var(--24);
  font-weight: 400;
  font-family: var(--swit);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.app .contact .txtWrap form fieldset .message #message {
  position: relative;
  margin-top: 17px;
  font-size: var(--18);
  color: var(--white);
  font-family: var(--pre);
  line-height: 1.5;
  letter-spacing: 0.03em;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  width: 703px;
  height: 36px;
  padding-left: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  scrollbar-width: none;
  padding-bottom: 50px;
}
.app .contact .txtWrap form fieldset .message #message::-moz-placeholder {
  color: var(--4d);
}
.app .contact .txtWrap form fieldset .message #message::placeholder {
  color: var(--4d);
}
.app .contact .txtWrap form fieldset .send {
  margin-top: 85px;
  border-radius: 30px;
  width: 714px;
  line-height: 54px;
  background: var(--white);
  font-size: var(--24);
  letter-spacing: 0.03em;
  text-align: center;
  font-family: var(--pre);
  transition: all 0.2s;
}
.app .contact .txtWrap form fieldset .send:hover {
  box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.8);
}
.app .ty {
  background: var(--10);
  padding-top: 240px;
  padding-bottom: 240px;
  width: 100vw;
}
.app .ty .tyWrap {
  position: relative;
  width: calc(100vw - 240px);
  margin: 0 auto;
}
.app .ty .tyWrap h2 {
  font-family: var(--pre);
  font-size: var(--96);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.5;
  width: 100%;
  border-bottom: 1px solid #fff;
}
.app .ty .tyWrap .footerWrap {
  margin-top: 96px;
  display: flex;
  justify-content: space-between;
}
.app .ty .tyWrap .footerWrap .footer {
  width: 100vw;
}
.app .ty .tyWrap .footerWrap .footer .footerNav {
  display: flex;
  align-items: center;
}
.app .ty .tyWrap .footerWrap .footer .footerNav li {
  position: relative;
}
.app .ty .tyWrap .footerWrap .footer .footerNav li a {
  font-size: var(--20);
  font-weight: 300;
  color: var(--white);
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.app .ty .tyWrap .footerWrap .footer .footerNav li:hover a {
  color: #ccc;
}
.app .ty .tyWrap .footerWrap .footer .footerNav li:nth-child(even) {
  color: var(--white);
  font-size: var(--18);
  transform: translateY(-2px);
  margin: 0 10px;
  font-weight: 300;
}
.app .ty .tyWrap .footerWrap .footer address {
  margin-top: 10.3px;
  font-size: var(--20);
  font-weight: 300;
  color: var(--white);
  font-family: var(--pre);
  line-height: 1.3;
}
.app .ty .tyWrap .footerWrap .footer p {
  margin-top: 3.3px;
  font-size: var(--20);
  font-weight: 300;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.3;
}
.app .ty .tyWrap .footerWrap h3 {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--swit);
  font-size: var(--48);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.5;
}
.app .ty .top {
  position: absolute;
  right: 0px;
  display: block;
  margin-top: 112px;
  width: 77px;
  height: 77px;
  border-radius: 100%;
  box-shadow: var(--box);
}
.app .ty .top img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

@keyframes typing {
  to {
    width: 0%;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
/* // nav 텍스트 */
@keyframes text_nav_up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-26px);
  }
}
@keyframes text_nav_up_1440 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-21px);
  }
}
@media screen and (max-width: 1664px) {
  header {
    padding-top: 72px;
  }
  header .headerWrap .logoNav h1 {
    width: 123.75px;
    height: 61.5px;
  }
  header .headerWrap .logoNav h1 a {
    width: 100%;
    height: 100%;
  }
  header .headerWrap .logoNav nav .tag li {
    margin-left: 73.5px;
  }
  header .headerWrap .logoNav nav .tag li a {
    font-size: var(--21);
  }
  header .headerWrap .lang {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
  }
  header .headerWrap .lang li {
    margin-left: 29px;
    height: 22px;
    overflow: hidden;
  }
  header .headerWrap .lang li a {
    position: relative;
    display: flex;
    justify-content: center;
    color: var(--white);
  }
  header .headerWrap .lang li a span {
    font-size: var(--21);
  }
  header .headerWrap .lang li a:last-of-type {
    margin-top: 1px;
  }
  header .headerWrap .lang li a::after {
    display: inline-block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    background: #fff;
    transition: all 0.3s;
    opacity: 0;
  }
  header .headerWrap .lang li:first-child {
    margin-left: 0;
  }
  header .headerWrap .lang li:hover a::after {
    opacity: 1;
  }
  header .headerWrap .lang li:nth-child(1):hover a span:nth-child(1) {
    animation: text_nav_up_1440 0.28s 0.05s ease both;
  }
  header .headerWrap .lang li:nth-child(1):hover a span:nth-child(2) {
    animation: text_nav_up_1440 0.28s 0.1s ease both;
  }
  header .headerWrap .lang li:nth-child(2):hover a span:nth-child(1) {
    animation: text_nav_up_1440 0.28s 0.05s ease both;
  }
  header .headerWrap .lang li:nth-child(2):hover a span:nth-child(2) {
    animation: text_nav_up_1440 0.28s 0.1s ease both;
  }
  header .headerWrap .lang li:nth-child(3):hover a span:nth-child(1) {
    animation: text_nav_up_1440 0.28s 0.05s ease both;
  }
  header .headerWrap .lang li:nth-child(3):hover a span:nth-child(2) {
    animation: text_nav_up_1440 0.28s 0.1s ease both;
  }
  .app .mainIntro {
    padding-top: 180px;
  }
  .app .mainIntro h2 span {
    font-size: var(--72);
  }
  .app .mainIntro h2 span em {
    font-size: var(--72);
  }
  .app .mainIntro .introVideo {
    height: 810px;
    margin-top: 180px;
  }
  .app .mainAbout {
    height: 429px;
  }
  .app .mainAbout .mainAboutBx .subtitle {
    font-size: var(--36);
  }
  .app .mainAbout .mainAboutBx .subtitle::before {
    width: 153px;
  }
  .app .mainAbout .mainAboutBx span {
    font-size: var(--15);
    line-height: 1.75;
  }
  .app .mainServices {
    padding-top: 180px;
  }
  .app .mainServices h4 {
    margin-left: 156px;
  }
  .app .mainServices h4 span {
    font-size: var(--21);
  }
  .app .mainServices h4.active::before {
    left: -35px;
    width: 18px;
    height: 18px;
  }
  .app .mainServices .mainServicesWrap .mainServicesBx {
    margin-top: 40.5px;
    padding: 72.25px 0;
  }
  .app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span {
    font-size: var(--36);
  }
  .app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span:nth-child(1) {
    width: 288.75px;
  }
  .app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt h3 span:nth-child(2) {
    width: 316.5px;
  }
  .app .mainServices .mainServicesWrap .mainServicesBx .mainServicesTxt > span {
    letter-spacing: 0em;
    font-size: var(--15);
    margin-top: 54px;
  }
  .app .mainServices .mainServicesWrap .mainServicesBx img {
    width: 653.25px;
    height: 401.25px;
  }
  .app .mainServices .eduProcsss {
    margin-top: 72px;
  }
  .app .mainServices .eduProcsss span:nth-child(1) {
    width: 294px;
    font-size: var(--36);
  }
  .app .mainServices .eduProcsss span:nth-child(2) {
    width: 472px;
    font-size: var(--33);
  }
  .app .mainServices .serviceProcess {
    margin-top: 21.5px;
  }
  .app .mainServices .serviceProcess li h3 {
    font-size: var(--33);
  }
  .app .mainServices .serviceProcess li p {
    font-size: var(--15);
    width: 396px;
  }
  .app .mainServices .serviceProcess li:nth-child(1) img {
    width: 106.5px;
    height: 106.5px;
  }
  .app .mainServices .serviceProcess li:nth-child(2) img {
    width: 106.5px;
    height: 105.75px;
  }
  .app .mainServices .serviceProcess li:nth-child(3) img {
    width: 106.5px;
    height: 92.25px;
  }
  .app .mainServices .serviceProcess li:nth-child(4) img {
    width: 106.88px;
    height: 111px;
  }
  .app .mainServices .infoToContact img {
    width: 25.5px;
    height: 25.5px;
    margin-right: 24px;
  }
  .app .mainServices .infoToContact span {
    font-size: var(--15);
  }
  .app .license {
    width: 100%;
    height: 891.54px;
  }
  .app .license .titleBx h2 {
    line-height: 2;
    width: 461px;
    letter-spacing: 0.03em;
    color: var(--10);
    font-family: var(--swit);
    font-size: var(--36);
    padding-bottom: 5px;
    border-bottom: 1px solid #101010;
  }
  .app .license .titleBx p {
    margin-top: 36px;
    color: var(--10);
    font-family: var(--pre);
    font-size: var(--15);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .app .license .titleBx1 {
    padding-top: 202px;
    margin-left: 143px;
  }
  .app .license .titleBx2 {
    margin-top: 181px;
    margin-left: 278px;
  }
  .app .license .titleBx2 h2 {
    width: 610px;
    white-space: nowrap;
  }
  .app .mainMap {
    height: 704.25px;
  }
  .app .hospitalMSO {
    padding-bottom: 300.25px;
  }
  .app .hospitalMSO h2 {
    padding-top: 108px;
    font-size: var(--33);
  }
  .app .hospitalMSO h2 em {
    font-size: var(--36);
  }
  .app .hospitalMSO .longWord {
    font-size: var(--21);
  }
  .app .hospitalMSO .octoInfo {
    height: 110px;
    margin-top: 72px;
    position: relative;
  }
  .app .hospitalMSO .octoInfo .textBar {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
  }
  .app .hospitalMSO .octoInfo .swiperTxtSlide .swiper-wrapper .swiper-slide span {
    margin-top: 33px;
    display: block;
    font-family: var(--swit);
    font-size: var(--15);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
  }
  .app .hospitalMSO .baliProject {
    margin-top: 180px;
  }
  .app .hospitalMSO .baliProject h4 {
    font-size: var(--15);
  }
  .app .hospitalMSO .baliProject h4 span {
    margin-left: 34.62px;
  }
  .app .hospitalMSO .baliProject h4::before {
    width: 18px;
    height: 18px;
  }
  .app .hospitalMSO .baliProject h3 {
    margin-top: 21.96px;
    margin-left: 120px;
    font-family: var(--swit);
    font-size: var(--36);
    color: var(--10);
    letter-spacing: -0.02em;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup {
    margin-top: 99.02px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliImg {
    width: 376.44px;
    height: 376.44px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo {
    position: absolute;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo img {
    left: -60px;
    width: 28.85px;
    height: 28.85px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo p {
    letter-spacing: 0.03em;
    font-family: var(--pre);
    font-size: var(--15);
    color: var(--10);
    line-height: 1.721;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(2) {
    top: 49.26px;
    left: 130px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(3) {
    bottom: -136px;
    right: 270px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(4) {
    top: -10px;
    right: 105.87px;
  }
  .app .contact {
    height: 924px;
  }
  .app .contact .txtWrap h4 {
    margin-left: 156px;
    font-size: var(--18);
  }
  .app .contact .txtWrap .contactUs {
    padding-top: 91.5px;
  }
  .app .contact .txtWrap .contactUs span {
    font-size: var(--18);
  }
  .app .contact .txtWrap .contactUs.active::before {
    top: 97px;
    left: -35px;
    width: 18px;
    height: 18px;
  }
  .app .contact .txtWrap .notice {
    margin-left: 120px;
    margin-top: 105.75px;
    padding: 20px 0;
    width: 535.5px;
    font-size: var(--15);
    letter-spacing: 0.03em;
  }
  .app .contact .txtWrap form {
    margin-left: 120px;
    margin-top: 72px;
  }
  .app .contact .txtWrap form fieldset .inputGrid {
    width: 535.5px;
    -moz-column-gap: 7.5px;
         column-gap: 7.5px;
    row-gap: 72px;
  }
  .app .contact .txtWrap form fieldset .inputGrid div label {
    font-size: var(--18);
  }
  .app .contact .txtWrap form fieldset .inputGrid div input {
    font-size: var(--13dot);
    padding-left: 8.5px;
    width: 255.5px;
    margin-top: 12.5px;
  }
  .app .contact .txtWrap form fieldset .message {
    margin-top: 72px;
  }
  .app .contact .txtWrap form fieldset .message label {
    font-size: var(--18);
  }
  .app .contact .txtWrap form fieldset .message #message {
    font-size: var(--13dot);
    width: 524.5px;
    padding-bottom: 25px;
  }
  .app .contact .txtWrap form fieldset .send {
    margin-top: 63.75px;
    width: 535.5px;
    font-size: var(--18);
  }
  .app .ty {
    padding-top: 269px;
    padding-bottom: 187px;
  }
  .app .ty .tyWrap h2 {
    font-size: var(--72);
    padding-bottom: 24.75px;
  }
  .app .ty .tyWrap .footerWrap {
    margin-top: 71.75px;
  }
  .app .ty .tyWrap .footerWrap .footer {
    /*                         .footerNav {
                                li {
                                    a {
                                        font-size: var(--15);
                                    }
                                }
                                li:nth-child(even) {
                                    font-size: var(--15);
                                }
                            } */
  }
  .app .ty .tyWrap .footerWrap .footer address {
    font-size: var(--15);
  }
  .app .ty .tyWrap .footerWrap .footer p {
    font-size: var(--15);
  }
  .app .ty .tyWrap .footerWrap h3 {
    font-size: var(--36);
  }
  .app .ty .tyWrap .top {
    margin-top: 38px;
  }
}
@media screen and (max-width: 1440px) {
  .app .hospitalMSO .baliProject .baliInfoGroup {
    margin-top: 99.02px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliImg {
    width: 376.44px;
    height: 376.44px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo {
    position: absolute;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo img {
    width: 28.85px;
    height: 28.85px;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo p {
    letter-spacing: 0.03em;
    font-family: var(--pre);
    font-size: var(--15);
    color: var(--10);
    line-height: 1.721;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(2) {
    top: 49.26px;
    left: 53px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(3) {
    bottom: -150px;
    right: 181px;
  }
  .app .hospitalMSO .baliProject .baliInfoGroup .baliInfo:nth-child(4) {
    top: -10px;
    right: 0.87px;
  }
}
.octoInfo {
  height: 147px;
}
.octoInfo .swiper,
.octoInfo .swiperTxtSlide,
.octoInfo .swiper-initialized,
.octoInfo .swiper-horizontal,
.octoInfo .swiper-pointer-events,
.octoInfo .swiper-backface-hidden {
  height: 147px !important;
}/*# sourceMappingURL=index_cn.css.map */