.page-heading .trapezoid-banner-content {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex-grow: 1;
}

.page-heading .page-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: relative;
}

.page-heading .page-title .title {
  position: relative;
  color: var(--color-background-1);
  font-size: 48px;
  line-height: normal;
  font-weight: 100;
}

.page-heading .page-title .title-bold {
  font-weight: 700;
}

.page-heading .page-title .small-title {
  color: var(--color-background-1);
  font-size: 24px;
  line-height: normal;
  font-weight: 100;
}

.page-heading .page-title .small-title .title-bold {
  font-weight: 700;
}

.page-heading .rectangle {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--color-background-1);
}

.page-heading.without-try-banner .rectangle {
  width: 100%;
  max-width: 1100px;
}

.page-heading .main-content-checklist {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--color-background-1);
  font-size: 18px;
  line-height: normal;
  gap: 13px;
}

.page-heading .main-content-checklist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.page-heading .main-content-checklist img {
  width: 20px;
  height: 20px;
  margin-right: 13px;
}

.page-heading .try-banner {
  position: unset;
}

@media only screen and (min-width: 769px) {
  .page-heading .page-title .title {
    font-size: 60px;
    width: 100%;
  }

  .page-heading .page-title .small-title {
    font-size: 32px;
  }

  .page-heading .rectangle, .page-heading.without-try-banner .rectangle {
    width: 100%;
  }

  .page-heading .try-banner {
    position: unset;
  }

  .page-heading .main-content-checklist {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1281px) {
  .page-heading .page-title .title {
    font-size: 90px;
    width: auto;
  }

  .page-heading .page-title .small-title {
    font-size: 50px;
  }

  .page-heading .rectangle {
    width: 400px;
  }

  .page-heading.without-try-banner .rectangle {
    width: 100%;
    max-width: 1100px;
  }

  .page-heading .try-banner {
    position: absolute;
    bottom: 93px;
  }

  .page-heading .main-content-checklist {
    font-size: 24px;
  }
}