.adv {
  display: flex;
  flex-direction: column;
}

.adv__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5rem;
}

.adv__first-block {
  display: flex;
  flex-direction: row;
  gap: 7rem;
  margin-bottom: 6rem;
  justify-content: center;
}

.adv__second-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 7rem;
}

@media (max-width: 1000px) {
  .adv {
    gap: 10rem;
  }

  .adv__first-block {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
  .adv__second-block {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    margin-top: 0;
  }
}
