
.menu--short-links {

  .nav {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }

  .nav-item {
    flex: 1 0 50%;
    padding-bottom: .75rem;

    &:nth-of-type(1) a.nav-link {
      &:before {
        background-image: url("../assets/icons/house-building.svg");
      }
    }

    &:nth-of-type(2) a.nav-link {
      &:before {
        background-image: url("../assets/icons/address-card.svg");
      }
    }

    &:nth-of-type(3) a.nav-link {
      &:before {
        background-image: url("../assets/icons/university-one.svg");
        background-position: center 8px;
      }
    }

    &:nth-of-type(4) a.nav-link {
      &:before {
        background-image: url("../assets/icons/comments-question.svg");
      }
    }

    &:nth-of-type(5) a.nav-link {
      &:before {
        background-image: url("../assets/icons/house-building.svg");
      }
    }

    &:nth-of-type(6) a.nav-link {
      &:before {
        background-image: url("../assets/icons/house-building.svg");
      }
    }
  }

  a.nav-link {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
    color: #343E4C;

    &:hover {
      background-color: #f1f1f1;
      border-radius: 5px;
      color: #4865AE;
    }

    &:before {
      background-size: 70px auto;
      background-position: center;
      background-repeat: no-repeat;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      height: 75px;
      width: 100%;
      text-align: center;
      padding: 0;
      margin: 0 auto;
    }
  }

}

