/* FEATURE CARD HOVER AFFECTS */
.aa-feature-card__hover {
  transition: transform 1s ease;
}

.aa-feature-card__hover:hover {
  transform: scale(1.05);
}

.aa-feature-card__hover img:hover {
  filter: saturate(100%);
  transition: filter 1s ease;
}

/* APPLY ANIMATION TO ALL LINKS */
a {
    /* Add a 0.6s transition to the transform property */
    transition: transform 0.5s ease !important;

    /* Set the transform origin to the top-right corner */
    transform-origin: center !important;
}

/* SCALE UP THE LINK ON HOVER */ 
a:hover {
    /* Increase the scale by 3% on hover */ 
    transform: scale(1.05) !important;
}