/* =========================================================
   PORTAL ARROW
========================================================= */

.arrow {
  margin-left: 20px;

  color: var(--blue);

  font-size: 28px;

  font-weight: 300;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.portal-link:hover .arrow {
  color: var(--blue-light);

  transform: translateX(4px);
}
