/*
This file contains delayable hovers CSS that will not be loaded on mobile and will be preloaded Asynchronously using Google's recommended filamentgroup loadCSS link stylesheet trick
Type: Hovers and animations
Usage: loadCSS link stylesheet trick
Load: Asynchronously
Devices: Desktops, Laptops
 */

.box {
    transition: box-shadow 0.2s ease-in-out
}

.box:hover {
    box-shadow: 0 33px 98px 0 rgba(216, 216, 216, 0.66)
}

.box .hollow {
    transition: color 0.2s ease-in-out
}

.box:hover .hollow {
    -webkit-text-stroke-width: unset;
    color: #0a0018
}

.link:hover .link-arrow {
    left: 38px;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(15vh);
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 1s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}