.section-3-wrapper {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;

  /* style */
  background: var(--primary_light, #f0fbfb);

  /* typography */
  text-align: center;
}

.section-3-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  margin-top: 80px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 40px;
  }
}

.section-3-title {
  /* typography */
  color: var(--primary, #27b5b7);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-3-subtitle {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 12px;

    font-size: 14px;
    line-height: 22px;
  }
}

.section-3-subtitle-bold {
  /* typography */
  color: var(--Black-Text, #343434);
  font-weight: 700;
}

/* carousel */

.carousel-wrapper {
  /* layout */
  margin-top: 40px;
  margin-bottom: 80px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

[data-swiper="1"] .swiper {
  /* layout */
  height: 420px;

  /* responsive */
  @media screen and (max-width: 860px) {
    height: 200px;
  }
}

.swiper-slide {
  /* layout */
  max-width: 420px;
  height: 420px;

  /* responsive */
  @media screen and (max-width: 860px) {
    max-width: 220px;
    height: 274px;
  }
}

.swiper-slide-content {
  /* layout */
  width: 420px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;

  /* style */
  background: white;
  border-radius: 12px;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 200px;
    height: 200px;
  }
}

.swiper-slide-img {
  /* layout */
  width: 420px;
  height: 288px;

  /* style */
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 200px;
    height: 120px;
  }
}

.swiper-slide-icon {
  /* layout */
  width: 40px;
  height: 40px;
  margin-top: 24px;
  margin-bottom: 12px;
  margin-left: 24px;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 20px;
    height: 20px;
    margin-top: 12px;
    margin-bottom: 8px;
    margin-left: 16px;
  }
}

.swiper-slide-text {
  /* layout */
  margin-left: 24px;

  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-left: 16px;

    font-size: 16px;
    line-height: 24px;
  }
}
