@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

html,
body {
  word-break: keep-all; /* 단어별 줄바꿈 (한글, 영어 모두 적용) */
  overflow-wrap: break-word; /* 긴 단어 줄바꿈 */
  white-space: normal; /* 공백 유지하면서 줄바꿈 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

a {
  color: inherit; /* 부모 요소의 색상을 따르게 설정 */
}

button {
  border: 0;
}

:root {
  /* Core Colors - Grayscale */
  --color-core-gs-900: #151517;
  --color-core-gs-800: #3f4047;
  --color-core-gs-700: #61626c;
  --color-core-gs-600: #858691;
  --color-core-gs-500: #9fa0aa;
  --color-core-gs-400: #b4b5c1;
  --color-core-gs-300: #cacbda;
  --color-core-gs-200: #dedfeb;
  --color-core-gs-100: #eeeef9;
  --color-core-gs-50: #f5f5fd;
  --color-core-gs-0: #ffffff;

  /* Core Colors - Translucent */
  --color-core-trans-4: rgba(0, 0, 0, 0.04);

  /* Core Colors - Red */
  --color-core-red-900: #180507;
  --color-core-red-800: #3d0d12;
  --color-core-red-700: #7a1925;
  --color-core-red-600: #b82637;
  --color-core-red-500: #f53249;
  --color-core-red-400: #f76577;
  --color-core-red-300: #fa99a4;
  --color-core-red-200: #fcccd2;
  --color-core-red-100: #feebed;

  /* Core Colors - Yellow */
  --color-core-yellow-900: #1a1507;
  --color-core-yellow-800: #403511;
  --color-core-yellow-700: #806b21;
  --color-core-yellow-600: #bfa032;
  --color-core-yellow-500: #ffd542;
  --color-core-yellow-400: #ffdf71;
  --color-core-yellow-300: #ffeaa0;
  --color-core-yellow-200: #fff5d0;
  --color-core-yellow-100: #fffbec;

  /* Core Colors - Green */
  --color-core-green-900: #030f0c;
  --color-core-green-800: #08261e;
  --color-core-green-700: #104b3d;
  --color-core-green-600: #18715b;
  --color-core-green-500: #20967a;
  --color-core-green-400: #58b09b;
  --color-core-green-300: #90cbbc;
  --color-core-green-200: #c7e5de;
  --color-core-green-100: #e9f5f2;

  /* Core Colors - Blue */
  --color-core-blue-900: #040917;
  --color-core-blue-800: #0b153a;
  --color-core-blue-700: #162b74;
  --color-core-blue-600: #2140ae;
  --color-core-blue-500: #2c55e8;
  --color-core-blue-400: #6180ee;
  --color-core-blue-300: #95aaf3;
  --color-core-blue-200: #cad4f9;
  --color-core-blue-100: #eaeefd;

  /* Core Colors - Purple */
  --color-core-purple-900: #0e0717;
  --color-core-purple-800: #231139;
  --color-core-purple-700: #452272;
  --color-core-purple-600: #6833aa;
  --color-core-purple-500: #8a44e3;
  --color-core-purple-400: #a773ea;
  --color-core-purple-300: #c5a1f1;
  --color-core-purple-200: #e2d0f8;
  --color-core-purple-100: #f3ecfc;

  /* System Colors - Shape */
  --color-sys-shape-white: var(--color-core-gs-0);
  --color-sys-shape-1depth: var(--color-core-gs-100);
  --color-sys-shape-2depth: var(--color-core-gs-200);
  --color-sys-shape-div: var(--color-core-gs-200);
  --color-sys-shape-brand: var(--color-core-green-500);
  --color-sys-shape-black: var(--color-core-gs-900);
  --color-sys-shape-icon: var(--color-core-gs-800);
  --color-sys-shape-iconlight: var(--color-core-gs-500);
  --color-sys-shape-highlight: var(--color-core-red-500);

  /* System Colors - Border */
  --color-sys-border-div: var(--color-core-gs-100);
  --color-sys-border-button: var(--color-core-gs-200);
  --color-sys-border-thumb: var(--color-core-gs-100);
  --color-sys-border-brand: var(--color-core-green-500);
  --color-sys-border-error: var(--color-core-red-500);

  /* System Colors - Text */
  --color-sys-txt-b-primary: var(--color-core-gs-900);
  --color-sys-txt-b-secondary: var(--color-core-gs-800);
  --color-sys-txt-b-tertiary: var(--color-core-gs-600);
  --color-sys-txt-b-placeholder: var(--color-core-gs-400);
  --color-sys-txt-w-primary: var(--color-core-gs-0);
  --color-sys-txt-w-secondary: var(--color-core-gs-300);
  --color-sys-txt-w-tertiary: var(--color-core-gs-200);
  --color-sys-txt-point: var(--color-core-green-600);
  --color-sys-txt-error: var(--color-core-red-600);
  --color-sys-txt-link: var(--color-core-blue-600);
  --color-sys-txt-highlight: var(--color-core-red-500);

  /* Core Font Sizes */
  --text-core-fontsize-10: 10px;
  --text-core-fontsize-13: 13px;
  --text-core-fontsize-14: 14px;
  --text-core-fontsize-16: 16px;
  --text-core-fontsize-20: 20px;
  --text-core-fontsize-22: 22px;
  --text-core-fontsize-24: 24px;
  --text-core-fontsize-28: 28px;
  --text-core-fontsize-32: 32px;

  /* Core Line Heights */
  --text-core-lineheight-14: 14px;
  --text-core-lineheight-20: 20px;
  --text-core-lineheight-24: 24px;
  --text-core-lineheight-28: 28px;
  --text-core-lineheight-32: 32px;
  --text-core-lineheight-40: 40px;
  --text-core-lineheight-44: 44px;
  --text-core-lineheight-48: 48px;
  --text-core-lineheight-52: 52px;

  /* Core Letter Spacing */
  --text-core-letterspacing-m: -0.5px;
  --text-core-letterspacing-l: -1px;

  /* Core Font Weight */
  --text-core-fontweight-bold: 700;
  --text-core-fontweight-regular: 400;

  /* System Text Styles */
  --text-sys-display-1-fontsize: var(--text-core-fontsize-24);
  --text-sys-display-1-lineheight: var(--text-core-lineheight-32);
  --text-sys-display-1-letterspacing: var(--text-core-letterspacing-l);
  --text-sys-display-1-fontweight: var(--text-core-fontweight-bold);

  --text-sys-display-2-fontsize: var(--text-core-fontsize-20);
  --text-sys-display-2-lineheight: var(--text-core-lineheight-28);
  --text-sys-display-2-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-display-2-fontweight: var(--text-core-fontweight-bold);

  --text-sys-title-1-fontsize: var(--text-core-fontsize-16);
  --text-sys-title-1-lineheight: var(--text-core-lineheight-24);
  --text-sys-title-1-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-title-1-fontweight: var(--text-core-fontweight-bold);

  --text-sys-title-2-fontsize: var(--text-core-fontsize-14);
  --text-sys-title-2-lineheight: var(--text-core-lineheight-20);
  --text-sys-title-2-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-title-2-fontweight: var(--text-core-fontweight-bold);

  --text-sys-body-1-fontsize: var(--text-core-fontsize-16);
  --text-sys-body-1-lineheight: var(--text-core-lineheight-24);
  --text-sys-body-1-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-body-1-fontweight: var(--text-core-fontweight-regular);

  --text-sys-body-2-fontsize: var(--text-core-fontsize-14);
  --text-sys-body-2-lineheight: var(--text-core-lineheight-20);
  --text-sys-body-2-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-body-2-fontweight: var(--text-core-fontweight-regular);

  --text-sys-caption-fontsize: var(--text-core-fontsize-13);
  --text-sys-caption-lineheight: var(--text-core-lineheight-20);
  --text-sys-caption-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-caption-fontweight: var(--text-core-fontweight-regular);

  --text-sys-label-bold-fontsize: var(--text-core-fontsize-10);
  --text-sys-label-bold-lineheight: var(--text-core-lineheight-14);
  --text-sys-label-bold-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-label-bold-fontweight: var(--text-core-fontweight-bold);

  --text-sys-label-regular-fontsize: var(--text-core-fontsize-10);
  --text-sys-label-regular-lineheight: var(--text-core-lineheight-14);
  --text-sys-label-regular-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-label-regular-fontweight: var(--text-core-fontweight-regular);

  --text-sys-viewer-l-fontsize: var(--text-core-fontsize-28);
  --text-sys-viewer-l-lineheight: var(--text-core-lineheight-52);
  --text-sys-viewer-l-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-viewer-l-fontweight: var(--text-core-fontweight-regular);

  --text-sys-viewer-m-fontsize: var(--text-core-fontsize-22);
  --text-sys-viewer-m-lineheight: var(--text-core-lineheight-44);
  --text-sys-viewer-m-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-viewer-m-fontweight: var(--text-core-fontweight-regular);

  --text-sys-viewer-s-fontsize: var(--text-core-fontsize-16);
  --text-sys-viewer-s-lineheight: var(--text-core-lineheight-32);
  --text-sys-viewer-s-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-viewer-s-fontweight: var(--text-core-fontweight-regular);

  --text-sys-viewer-xs-fontsize: var(--text-core-fontsize-14);
  --text-sys-viewer-xs-lineheight: var(--text-core-lineheight-28);
  --text-sys-viewer-xs-letterspacing: var(--text-core-letterspacing-m);
  --text-sys-viewer-xs-fontweight: var(--text-core-fontweight-regular);
}

h1 {
  font-family: Pretendard;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px; /* 112.5% */
  letter-spacing: var(--text-core-letterspacing-l);
}

h2 {
  text-align: center;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px; /* 116.667% */
  letter-spacing: var(--text-core-letterspacing-l);
}

h3 {
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: var(--text-core-letterspacing-l);
}

h4 {
  color: var(--color-sys-txt-b-primary);
  text-align: center;
  font-size: var(--text-core-fontsize-20);
  line-height: var(--text-core-lineheight-32);
  letter-spacing: var(--text-core-letterspacing-l);
  font-weight: var(--text-core-fontweight-regular);
}

p {
  color: var(--color-sys-txt-b-primary, #3f4047);

  /* body/body01 */
  font-family: Pretendard;
  font-size: var(--text-core-fontsize-16);
  line-height: var(--text-core-lineheight-24);
  letter-spacing: var(--text-core-letterspacing-m);
  font-weight: var(--text-core-fontweight-regular);
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 1000; /* 다른 요소 위에 표시되도록 설정 */
  transition: background-color 0.3s ease; /* 배경색 변경에 부드러운 애니메이션 효과 */
  background-color: var(--color-sys-shape-brand);
}

header .nav-content svg {
  color: var(--color-sys-shape-white);
  transition: color 0.3s ease;
}

.header-scrolled .nav-content svg {
  color: var(--color-sys-shape-brand);
}

.button {
  border-radius: 100px;
  background-color: var(--color-sys-shape-white);
  transition: all 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  padding: 14px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.button:hover {
  background-color: var(--color-core-green-100); /* 더 어두운 블루 */
}

.button:active {
  background-color: var(--color-core-green-200); /* 더 어두운 블루 */
}

.button-text {
  display: flex;
  text-align: center;
  color: var(--color-sys-shape-brand);
  font-size: var(--text-core-fontsize-14);
  line-height: var(--text-core-lineheight-20);
  letter-spacing: var(--text-core-letterspacing-m);
  font-weight: var(--text-core-fontweight-bold);
}

header .button {
  background-color: var(--color-sys-shape-white);
  padding: 14px 24px;
  transition: all 0.3s ease;
}

.header-scrolled .button {
  background-color: var(--color-sys-shape-brand);
  color: var(--color-sys-shape-white);
}

.header-scrolled .button:hover {
  background-color: var(--color-core-green-600);
  color: var(--color-sys-shape-white);
}

.header-scrolled .button:active {
  background-color: var(--color-core-green-700);
  color: var(--color-sys-shape-white);
}

header .button .button-text {
  color: var(--color-sys-shape-brand);
  transition: color 0.3s ease;
}

.header-scrolled .button .button-text {
  color: var(--color-sys-shape-white);
}

.header-scrolled {
  background-color: var(--color-sys-shape-white);
}

.nav {
  display: flex;
  width: 100%;
  height: 64px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.nav-content {
  display: flex;
  width: 100%;
  max-width: 1024px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

main {
  width: 100%;
}

#content-1 {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--color-sys-shape-brand);
}

.content-1-layout {
  display: flex;
  align-items: center;
  gap: 93px;
  margin: 112px auto 48px auto;
}

.content-1-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.content-1-left h1 {
  color: var(--color-sys-txt-w-primary);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.content-1-left p {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  font-size: var(--text-core-fontsize-16);
  line-height: var(--text-core-lineheight-24);
  letter-spacing: var(--text-core-letterspacing-m);
  font-weight: var(--text-core-fontweight-regular);
}

.content-1-left button {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

.content-1-right img {
  width: 425px;
  height: 584px;
}

.image-bounce {
  width: 200px; /* 이미지의 크기를 설정 */
  animation: bounce 2s infinite alternate ease-in-out;
}

#content-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  background-color: var(--color-sys-shape-white);
  margin-top: 160px;
}

.content-2-layout-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.content-2-layout-1 p {
  text-align: center;
  color: var(--color-sys-txt-b-secondary);
}

.content-2-layout-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reading-data-layout {
  display: flex;
  width: 100%;
  max-width: 1024px;
  align-items: center;
  gap: 16px;
}

.reading-data {
  display: flex;
  padding: 80px 48px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 24px;
  background: var(--color-core-gs-50, #f5f5fd);
}

.reading-data h1 {
  color: var(--color-sys-txt-b-primary);
  text-align: center;
}

.reading-data p {
  color: var(--color-sys-txt-b-secondary);
  text-align: center;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-sys-txt-b-primary);
}

.mr-info {
  width: 100%;
  max-width: 1024px;
  display: flex;
  padding: 120px 0px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background: var(--color-core-green-100);
}

.mr-info h3 {
  color: var(--color-sys-txt-b-primary);
  text-align: center;
}

.mr-info p {
  color: var(--color-sys-txt-b-secondary);
  text-align: center;
}

#content-3 {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  background-color: var(--color-sys-shape-white);
  margin-top: 160px;
}

.content-3-layout-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.content-3-layout-2 {
  display: flex;
  width: 100%;
  max-width: 1024px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.series-offer {
  display: flex;
  width: 504px;
  padding: 64px 64px 32px 64px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid var(--color-sys-border-button);
  background: var(--color-sys-shape-white);
}

.series-offer h3,
p {
  text-align: left;
  width: 100%;
}

.series-offer .title-area p {
  color: var(--color-sys-txt-b-secondary);
}

.series-offer img {
  width: 253.096px;
  height: 280px;
}

#content-4 {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  background-color: var(--color-sys-shape-white);
  margin-top: 160px;
}

.content-4-layout-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.content-4-layout-1 p {
  text-align: center;
  color: var(--color-sys-txt-b-secondary);
}

.content-4-layout-2 {
  display: flex;
  width: 100%;
  max-width: 1024px;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.service-offer-1 {
  display: flex;
  width: 100%;
  padding: 0 108px 0 64px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
}

.service-offer-1-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.service-offer-1 h3,
p {
  text-align: left;
  width: 100%;
}

.service-offer-1 .title-area p {
  color: var(--color-sys-txt-b-secondary);
}

.service-offer-1 img {
  width: 289px;
  height: 320px;
}

.service-offer-2 {
  display: flex;
  width: 504px;
  padding: 64px 64px 0px 64px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
}

.service-offer-2 h3,
p {
  text-align: left;
  width: 100%;
}

.service-offer-2 .title-area p {
  color: var(--color-sys-txt-b-secondary);
}

.service-offer-2 img {
  width: 289px;
  height: 322px;
  margin-top: 16px;
}

.service-offer-bg-1 {
  background-color: var(--color-core-yellow-100);
}

.service-offer-bg-2 {
  background-color: var(--color-core-blue-100);
}

.service-offer-bg-3 {
  background-color: var(--color-core-purple-100);
}

.service-offer-bg-4 {
  background-color: var(--color-core-red-100);
}

.service-offer-bg-5 {
  background-color: var(--color-core-gs-100);
}

#content-5 {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  background-color: var(--color-core-green-200);
  padding-top: 160px;
  padding-bottom: 160px;
  border-radius: 0px;
}

.content-5-layout-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: 160px auto 0 auto;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  margin-left: 480px;
  transition: transform 0.5s linear;
  align-items: center;
  gap: 8px; /* 슬라이드 간격 설정 */
}

.carousel-slide {
  width: 480px;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--color-sys-shape-white);
  flex-shrink: 0; /* 슬라이드 크기 고정 */
}

.carousel-slide svg {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

#content-6 {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 64px;
  background-color: var(--color-sys-shape-brand);
  padding-top: 160px;
  padding-bottom: 160px;
  border-radius: 0px;
}

.content-6-layout-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.content-6-layout-1 h2 {
  color: var(--color-sys-shape-white);
}

.content-6-layout-1 p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.content-6-left button {
  opacity: 0;
  background-color: var(--color-sys-shape-white);
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

#content-7 {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 64px;
  background-color: var(--color-core-blue-400);
  padding-top: 48px;
  padding-bottom: 48px;
  border-radius: 0px;
}

.content-7-layout-1 {
  display: flex;
  width: 100%;
  max-width: 1024px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.content-7-layout-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: left;
  gap: 16px;
}

.content-7-layout-2 h3 {
  color: var(--color-sys-shape-white);
}

.content-7-layout-2 p {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.content-7-layout-1 button {
  opacity: 0;
  height: max-content;
  background-color: var(--color-sys-shape-white);
  transform: translateY(50px), background-color 0.3s ease, transform 0.2s ease;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  padding: 16px 32px;
}

.content-7-layout-1 button:hover {
  background-color: var(--color-core-blue-100); /* 더 어두운 블루 */
}

.content-7-layout-1 button:active {
  background-color: var(--color-core-blue-200); /* 더 어두운 블루 */
}

.content-7-layout-1 button p {
  width: max-content;
  color: var(--color-core-blue-400);
}

#content-8 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 64px;
  background-color: var(--color-core-gs-900);
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 0px;
}

.content-8-layout-1 {
  display: flex;
  width: 100%;
  max-width: 1024px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.content-8-layout-1 svg {
  color: var(--color-sys-shape-white);
}

.content-8-layout-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.content-8-layout-2 p {
  color: var(--color-sys-shape-white);
  width: max-content;
  font-weight: 400;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-info p {
  color: var(--color-sys-shape-white);
}

.info-1 {
  display: flex;
  gap: 8px;
}

.info-2 {
  display: flex;
  gap: 8px;
}

.content-8-layout-3 {
  display: flex;
  width: 100%;
  max-width: 1024px;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.info-3 p {
  color: var(--color-sys-shape-white);
}

.hidden-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible-text {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(16px);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes roll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
