/*
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
}

.button {
    transition: background-color 0.2s linear
}

.button:hover {
    background-color: #0a0018;
    color: #fff
}

.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;
}

.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
    outline: none
}

textarea::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #4285F4
}

.wpcf7 input[type=submit] {
    transition: background-color 0.2s linear
}

.wpcf7 input[type=submit]:hover {
    background-color: #0a0018;
    color: #fff
}

.wpcf7 select option:hover {
    background-color: #cecece
}

.social {
    transition: background-color 0.2s linear
}

.social:hover {
    background-color: #0a0018
}

.social:hover img {
    filter: invert(1)
}