.section-1-wrapper {
  /* layout */
  position: relative;
  height: 800px;
  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: #60a4bd;
  text-align: center;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;

  /* responsive */
  @media screen and (max-width: 1400px) {
    font-size: 30px;
    line-height: 42px;
  }

  @media screen and (max-width: 860px) {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
  }
}

.section-1-title-2 {
  /* layout */
  width: fit-content;
  display: flex;
  padding: 8px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 12px;

  /* style */
  background: #11baf3;

  /* typography */
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 74px;
  font-style: normal;
  font-weight: 800;
  line-height: 90px;
  letter-spacing: -1.48px;

  /* responsive */
  @media screen and (max-width: 1400px) {
    font-size: 38px;
    line-height: 52px;
    margin-top: 8px;
    letter-spacing: -0.76px;
  }

  @media screen and (max-width: 860px) {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.36px;
    margin-top: 4px;
    gap: 6px;
  }
}

.section-1-title-2-highlight {
  /* typography */
  color: #ebfaff;
  font-weight: 700;
}

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

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

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

  /* typography */
  color: #556e76;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;

  /* responsive */
  @media screen and (max-width: 1400px) {
    font-size: 24px;
    line-height: 34px;
    margin-top: 24px;
  }

  @media screen and (max-width: 860px) {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }
}

.section-1-cta-btn {
  /* layout */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  padding: 16px 48px;
  gap: 10px;

  /* style */
  border-radius: 16px;
  background: #11baf3;
  box-shadow: 0px 4px 20px 0px #77c8fe;
  border: none;
  cursor: pointer;

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

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

.sticky-button {
  /* layout */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 16px 48px;
  gap: 10px;
  position: sticky;
  bottom: 20px;
  z-index: 10;

  /* style */
  border-radius: 16px;
  background: #11baf3;
  box-shadow: 0px 4px 20px 0px #77c8fe;
  border: none;
  cursor: pointer;

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

  /* responsive */
  @media screen and (min-width: 860px) {
    display: none;
  }
}
