.hero {
  padding-bottom: 60px;
}

.hero__box-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 200px;
  margin: 16px auto 0;
}
.hero__item {
  &:nth-of-type(1) {
    --bg-img: url("/assets/images/image-3.webp");
  }
  &:nth-of-type(2) {
    --bg-img: url("/assets/images/image-4.webp");
  }
  &:nth-of-type(3) {
    --bg-img: url("/assets/images/image-5.webp");
  }
}
.hero__link {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 132px;

  font-size: 20px;

  font-weight: 600;

  border-radius: 5px;
  border: 0.5px solid #000;
  background:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(255, 255, 255, 0.38) 100%
    ),
    rgba(156, 202, 255, 0.3);

  &::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    display: block;
    width: 100%;
    height: 100%;

    background: var(--bg-img);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.reach__list {
  margin: 16px 0;
}

@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__text {
    text-align: 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: 453px;
    height: 403px;
  }
  .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: 542px;
    height: 403px;
  }

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

    overflow: hidden;
    transition: 0.2s ease;

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

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