body {
  font-family: var(--font-family);
  background: var(--main-bg);
  color: var(--text);
}

.section {
  padding: 60px 0;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: 0.01em;
  text-transform: capitalize;

  color: var(--red);
  text-align: center;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  color: var(--wight);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;

  letter-spacing: 0.01em;
  color: var(--text);
}

@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;
  }

  .section-text {
    width: 616px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1437px) {
  .section {
    padding: 100px 0;
  }

  .container {
    width: 1437px;
    padding: 0 88px;
  }

  .sub-title {
    font-size: 16px;
  }

  .section-title {
    font-size: 52px;
    margin-bottom: 32px;
  }

  .section-text {
    font-size: 16px;
  }
}
