.hero {
  padding-bottom: 60px;
}

.hero__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-contacts {
  display: flex;
  flex-direction: column;

  gap: 16px;
  margin-top: 60px;
}
.hero-contact {
  display: flex;
  align-items: center;
  gap: 8px;

  & span {
    width: 50px;
    /* text-align: end; */
  }
}

@media (width <= 743px) {
  .hero__box--img {
    /* position: relative; */

    height: 120px;

    order: -1;

    & img {
      position: absolute;
      left: 0;

      width: 100vw;
      height: 120px;
    }
  }
  .hero__box--desc {
    position: relative;
  }
  .hero__title {
    position: absolute;
    top: calc(120px / -2 - 25px);
    left: 50%;
    transform: translateX(-50%);

    margin: 0;
  }

  .hero-contacts {
    align-items: center;
  }
}
@media (width >= 744px) {
  .hero {
    padding-bottom: 80px;
  }
  .hero__box-wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
  }

  .hero__box--img {
    flex-shrink: 0;
  }
  .hero__img {
    width: 344px;
    height: 342px;
  }
  .hero__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 44px;
    max-width: initial;
  }
}
@media (width >= 1280px) {
  .hero {
    padding-bottom: 100px;
  }
  .hero__box--desc {
    max-width: 540px;
  }

  .hero__img {
    width: 520px;
    height: 344px;
  }

  .hero__link {
    width: 300px;
    height: 220px;

    overflow: hidden;
    transition: 0.2s ease;

    &::before {
      transition: 0.2s ease;
    }

    &:hover::before {
      transform: scale(1.1);
    }
  }
}
