/* Styling for the arrow icon */
.arrow-icon {
    display: inline-block;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

/* Move the arrow icon to the right on hover */
button:hover .arrow-icon {
    transform: translateX(0%);
}

a#phero-getstarted:hover .arrow-icon {
    transform: translateX(0%);
}

.blurry-img-edge {
    background: linear-gradient(to right, #ffffff, #ABEFF2, #35698E, #ffffff);
    box-shadow: 0 0 100px 100px white inset;
}
