.section-1-wrapper {
  /* layout */
  position: relative;
  height: 780px;
  display: flex;
  flex-direction: column;

  /* style */
  background-image: url("../img/background_image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  /* typography */
  text-align: center;

  /* responsive */
  @media screen and (max-width: 860px) {
    height: 500px;
    background-image: url("../img/background_image_mobile.png");
  }
}

.section-1-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
}

.section-1-title {
  /* typography */
  color: #000;
  text-align: center;
  font-size: 74px;
  font-style: normal;
  font-weight: 300;
  line-height: 90px;
  letter-spacing: -1.48px;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.6px;
  }
}

.section-1-subtitle-wrapper {
  /* layout */
  width: fit-content;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;

  /* style */
  background-color: #eaf5ff;
}

.section-1-title-bold {
  /* typography */
  font-weight: 700;
}

.section-1-title-bold-2 {
  font-weight: 700;
  color: #1c8ff8;
}

.section-1-subtitle {
  /* layout */
  margin-top: 8px;

  /* typography */
  color: rgba(0, 0, 0, 0.8);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;

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

.section-1-cta-btn {
  /* layout */
  width: 224px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;

  /* style */
  border-radius: 9999px;
  background: var(--primary, #1c8ff8);
  border: none;
  cursor: pointer;

  /* typography */
  color: var(--white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;

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

    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }
}
