.develop {
  height: calc(100vh - 130px - 120px);
  width: 690px;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.develop__title {
  color: #454545;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1024px) {
  .develop {
    height: calc(100vh - 200px);
    gap: 24px;
  }
  .develop__title {
    font-size: 24px;
  }
}