.text {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin: 64px auto;
}

.text-title {
  color: #7A7C83;
  line-height: 1.7;
  font-size: 20px;
  font-family: Medium;
}

.text-content {
  font-size: 42px;
  font-family: Semi;
  line-height: 1.3;
  max-width: 780px;
  width: 100%;
}

@media (max-width: 1100px) {
  .text {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .text {
    gap: 16px;
    margin: 32px 0;
  }
  .text-title {
    line-height: 1.4;
    font-family: Semi;
    font-size: 14px;
  }
  .text-content {
    font-size: 24px;
  }
}