.IconLinkItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 130px;
  margin-top: 0;
  padding: 26px 0;
  text-align: center;
}@media screen and (min-width: 769px) {.IconLinkItem {
    max-width: 190px;
    padding: 26px 20px;
}
  }.IconLinkItem:hover .IconLinkItem-icon {
    background-color: var(--clr-grayDarker);
    color: #ffffff;
    outline: 2px solid var(--clr-grayDarker);
    outline-offset: 4px;
  }

.IconLinkItem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 2.1875rem;
  background-color: var(--clr-primary);
  color: var(--font-clr-primary);
  transition: 0.2s all;
}

@media screen and (min-width: 1026px) {

.IconLinkItem-icon {
    width: 116px;
    height: 116px;
    font-size: 3.75rem;
}
  }

.IconLinkItem-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--font-clr-primary);
}

@media screen and (min-width: 1026px) {

.IconLinkItem-title {
    font-size: 1.125rem;
    word-break: initial;
}
  }

.page-quicklinks .IconLinkItem-title {
    position: absolute;
    right: -500%;
    align-items: center;
    overflow: hidden;
    width: 0;
    height: 100%;
    margin-top: 0;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffffff;
    box-shadow: 0 -17px 27px -9px rgba(0, 0, 0, 0.2);
    transition: 0.2s right;
  }

@media screen and (min-width: 769px) {

.page-quicklinks .IconLinkItem-title {
      padding: 10px;
  }
    }

.page-quicklinks .IconLinkItem-title::after {
      content: '\f054';
      margin-left: 5px;
      font-family: 'Font Awesome 6 Pro';
      font-size: 1.4375rem;
      font-weight: 700;
      color: var(--clr-primary);
    }

.page-quicklinks .IconLinkItem {
    margin-top: 0 !important;
  }

.page-quicklinks .IconLinkItem {
    position: relative;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0;
  }

@media screen and (min-width: 769px) {

.page-quicklinks .IconLinkItem {
      margin-bottom: 8px;
  }
        .page-quicklinks .IconLinkItem:hover .IconLinkItem-title {
          right: 100%;
          display: flex;
          overflow: visible;
          width: -moz-max-content;
          width: max-content;
          transition: 0.2s right;
        }

        .page-quicklinks .IconLinkItem:hover .IconLinkItem-icon {
          background-color: var(--clr-grayMedium);
          color: #ffffff;
          outline: none;
        }
    }

.page-quicklinks .IconLinkItem-icon {
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 1.5rem;
    background-color: var(--clr-primary);
  }
