.section-1 {
  padding-top: 52px;
  background-color: var(--color-black-accent2);
}

.section-1 h1 {
  margin: 0;
}

#solution .section-1 h5 {
  display: inline-block;
  margin: 0 0 65px;
}

#solution .section-1 h5 img {
  display: inline;
}

#solution .section-1 h4 {
  margin: 0 0 30px;
  line-height: 34px;
}

.section-1 p {
  margin-top: 15px;
}

.section-1 .solution-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
}

.section-1 .solution-row > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 15px;
}

.section-1 .solution-row.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 90px;
  z-index: 100;
}

.section-1 .solution-row.hero > div {
  display: flex;
  gap: 15px;
}

.section-1 img {
  z-index: 1;
}

@media (max-width: 1200px) {
  .section-1 .solution-row.hero {
    margin-top: 40px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .section-1 .solution-row.hero > div {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    max-width: 520px;
  }

  .section-1 .solution-row.hero > img {
    max-width: 520px;
  }
}

@media (max-width: 991px) {
  .section-1 {
    padding-top: 40px;
  }

  #solution .section-1 h5 {
    white-space: nowrap;
    font-size: 14px;
  }

  #solution .section-1 h1,
  #solution .section-1 h5 {
    margin-bottom: 50px;
  }

  #solution .section-1 h4 {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 25px;
  }

  .section-1 .solution-row {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .section-1 .solution-row.hero > img {
    max-width: 100%;
  }
}