@charset "UTF-8";
:root {
  --navy: #001A54;
  --beige: #E6D1B5;
  --pastel: #335594;
  --GRAY: #8F8F8F;
}

.title-box {
  text-align: center;
}
.title-box h2 {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -1.56px;
}
.title-box h2 strong {
  font-weight: inherit;
}
.title-box small {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.66px;
}
.title-box small strong {
  font-weight: inherit;
}

section .section-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #fff;
  max-width: 1620px;
  margin: 0 auto;
  position: relative;
  padding-top: 190px;
}
section.active .ani-01 {
  animation: fadeIn 0.7s 0.8s both;
}
section.active .ani-02 {
  animation: fadeIn 0.9s 1.05s both;
}
section.active .ani-03 {
  animation: fadeIn 0.8s 1.2s both;
}

/* 애니메이션 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeRight {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes up {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveTxt {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fp-controlArrow.fp-prev {
  left: 120px;
}
.fp-controlArrow.fp-next {
  right: 120px;
}

#section1 .section-inner {
  max-width: none;
  padding-top: 0;
  position: relative;
}
#section1 .group {
  display: flex;
}
#section1 .group .item {
  position: relative;
}
#section1 .group .item p {
  position: absolute;
  right: 60px;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(0, 26, 84, 0.2);
  backdrop-filter: blur(3px);
  padding: 20px 30px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.66px;
  color: #fff;
  transition: all 0.2s;
}
#section1 .group .item p span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #fff;
  position: relative;
}
#section1 .group .item p span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}
#section1 .group .item:hover p {
  background-color: var(--navy);
}
#section1 .group .item:nth-child(1) p {
  right: 115px;
}
#section1 .group .item:nth-child(3) p {
  right: 110px;
}
#section1 .scroll-box {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#section1 .scroll-box span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  color: var(--navy);
}
#section1 .scroll-box .icon-scroll {
  width: 18px;
  height: 28px;
  box-shadow: inset 0 0 0 1.8px var(--navy);
  border-radius: 25px;
  position: relative;
}
#section1 .scroll-box .icon-scroll:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--navy);
  margin-left: -2px;
  top: 6px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  position: absolute;
  left: 50%;
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

#section2 {
  background: url(../img/doctor-bg.jpg) center/cover no-repeat;
}
#section2 * {
  color: #fff;
}
#section2 strong {
  color: var(--beige);
}
#section2 h2 {
  margin-bottom: 12px;
}
#section2 .doctor-con .doctor-wrap {
  display: flex;
  justify-content: center;
}
#section2 .doctor-con .doctor-wrap .doctor-mark {
  position: relative;
}
#section2 .doctor-con .doctor-wrap .doctor-mark > img {
  max-width: 400px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn {
  position: absolute;
  padding: 20px 60px;
  background-color: var(--pastel);
  backdrop-filter: blur(3px);
  border-radius: 500px;
  width: -moz-max-content;
  width: max-content;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn * {
  color: #fff;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn p {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.96px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn p span {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.66px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn p::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/doctor-arrow.svg);
  margin-left: 10px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn small {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.54px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Pretendard", sans-serif;
}
#section2 .doctor-con .doctor-wrap .doctor-mark .doctor-btn small::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/doctor-mark.png) center/cover no-repeat;
}
#section2 .doctor-con .doctor-wrap .doctor-mark.doctor01 .doctor-btn {
  top: 93px;
  right: 312px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark.doctor02 {
  margin: 0 -92px;
  z-index: 3;
}
#section2 .doctor-con .doctor-wrap .doctor-mark.doctor02 .doctor-btn {
  left: 50%;
  transform: translateX(-50%);
  bottom: 65px;
}
#section2 .doctor-con .doctor-wrap .doctor-mark.doctor03 .doctor-btn {
  top: 93px;
  left: 312px;
}

#section3 {
  background: url(../img/intro-bg.jpg) center/cover no-repeat;
}
#section3 .title-box h2 strong {
  color: var(--navy);
}
#section3 .title-box p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.54px;
  margin-top: 30px;
}
#section3 .title-box p strong {
  color: var(--navy);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.54px;
}
#section3 .bna-con-box {
  text-align: center;
  margin-bottom: 86px;
}
#section3 .bna-con-box ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
#section3 .bna-con-box ul li {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
#section3 .bna-con-box ul li::before {
  content: "치료 전";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 40px 0;
  background-color: #212121;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.54px;
  color: #fff;
  width: 130px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#section3 .bna-con-box ul li:last-child::before {
  content: "치료 후";
  background-color: var(--navy);
}
#section3 .bna-con-box span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.48px;
}

.footer {
  display: none;
}