.IconLinkItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 130px;
  margin-top: 0;
  padding: 24px 8px;
  text-align: center;
}

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

.IconLinkItem {
    max-width: 190px;
    padding: 26px 20px;
}
  }

.IconLinkItem:hover .IconLinkItem-icon {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
  }

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

.IconLinkItem-icon {
  font-size: 4.375rem;
}

.IconLinkItem-title {
  margin-top: 10px;
}

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

.IconLinkItem-title {
    font-size: 1.125rem;
    font-weight: 700;
}
  }
