body {
  font-family: var(--font-family);
  background: var(--l-gray);
  color: var(--d-blue);
}

.section {
  padding: 80px 0;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--m-blue);
  position: relative;
  margin-bottom: 16px;
  margin-left: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-blue);
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: var(--d-blue);
  margin-bottom: 40px;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    /* padding: 64px 0; */
  }

  .container {
    width: 768px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 1437px) {
  .section {
    padding: 80px 0;
  }

  .container {
    width: 1437px;
    padding: 0 160px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .sub-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
