main {
  width: 100vw;
}

.section {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
}
.section__white {
  background-color: var(--background-light-color);
}

.sub-title-box {
  background: var(--sub-title-box-bg);
  padding: 12px 24px;
  color: var(--green);
  font-size: 18px;
  text-align: center;
}

.container {
  width: 100%;
}

.content-title {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  margin-top: 80px;
  overflow: hidden;
}
.content-title h1 {
  letter-spacing: 0.0025em;
  line-height: 1.2em;
  margin-top: 32px;
}
.content-title h2 {
  letter-spacing: 0.0025em;
  line-height: 1.2em;
  margin-top: 16px;
}
.content-title p {
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.0025em;
  margin-top: 16px;
  max-width: 500px;
}
.content-title button {
  padding: 18px 48px;
  color: #fff;
  background: var(--green);
  margin-top: 48px;
}
.content-title button:hover {
  box-shadow: 24px 24px 65px var(--shadow-button);
}

@media (max-width: 790px) {
  .content-title {
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .content-title h1 {
    font-size: 4em;
  }
  .content-title h2 {
    font-size: 3em;
  }
  .content-title p {
    font-size: 1em;
  }
}

/*# sourceMappingURL=main.css.map */
