.hero {
  border-radius: 0;
}
.hero__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contacts__title-wrap {
  margin-bottom: 20px;
}

.contacts__list {
  --gap: 32px;
}
.contacts-item__title {
  margin-bottom: 10px;

  color: #1c2541;
  font-size: 20px;
  font-weight: 600;
}
.contact-city {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: fit-content;
  padding: 12px 20px;
  margin-bottom: 10px;

  color: var(--color-white);

  border-radius: 16px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
}

.map {
  position: relative;
  z-index: -1;
  /* margin: -50px 0;
  padding: 50px 0; */
}

.map__box {
  width: 100%;
  height: 500px;

  iframe {
    width: 100%;
    height: 100%;
  }
}
.footer {
  border-radius: 0;
}

@media (min-width: 768px) {
  .contacts__list {
    --items: 2;
  }

  .hero__box--2 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .contacts__item {
    &:nth-child(1),
    &:nth-child(3) {
      order: -1;
    }
  }
}

@media (min-width: 1440px) {
  .hero__box-wrap {
    flex-direction: row;
  }

  .hero__title-wrap {
    align-items: flex-start;
    text-align: start;
  }

  .contacts__title-wrap {
    align-items: flex-end;
    text-align: end;
  }

   .contacts__list {
    --items: 1;
  }
}
