body {
  font-family: var(--font-family);
  background: var(--bg1);
  color: var(--pure-wight);
}

.section {
  padding: 60px 0;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 42px;
  line-height: 148%;
  text-transform: uppercase;
  color: var(--pure-wight);
  margin-bottom: 40px;

  span {
    color: var(--red);
  }
}

.section-sub-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.section-text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 157%;
  font-weight: 400;
  color: var(--text);

  span {
    font-weight: 600;
    color: var(--pure-wight);
  }
}

@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: 100px 0;
  }

  .container {
    width: 1437px;
    padding: 0 88px;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .section-sub-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .section-text {
    font-size: 16px;
  }
}
