.targets {
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px 138px;
}
.targets__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.03em;
  color: var(--m-blue);
}

.targets__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 30px;
}

@media screen and (max-width: 1899px) {
  .targets {
    gap: 40px 70px;
  }
}
@media screen and (max-width: 1419px) {
  .targets {
    margin-top: 20px;
    gap: 30px;
  }
  .targets__subtitle {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .targets__subtitle {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 747px) {
  .targets {
    grid-template-columns: 1fr;
  }
}
