/*
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
 */

.unmuted {
    color: #fff !important;
    background-image: url(/wp-content/themes/Digitouch/assets/images/sound-on.svg)
}

.switch-img {
    transition-property: width, height, opacity, transform !important
}

.services a {
    transition: color 0.2s linear;
}

.services a:hover {
    -webkit-text-stroke-width: unset;
    color: #0a0018
}

.word-item {
    transition: color 0.2s ease-in-out
}

#words-slider .word-item:hover {
    -webkit-text-stroke-width: unset;
    color: #141414
}

.box {
    transition: box-shadow 0.2s ease-in-out
}

.box:hover {
    box-shadow: 0 33px 98px 0 rgba(216, 216, 216, 0.66)
}

.keyword-box {
    transition: background-color 0.2s linear;
}

.keyword-box:hover {
    background-color: #141414;
    color: #fff
}

#words-slider:hover:not(#img-hover) #img-hover {
    height: 197px;
    opacity: 1
}

.button {
    transition: background-color 0.2s linear
}

.button:hover {
    background-color: #0a0018;
    color: #fff
}

.arrow-button {
    transition: background-color 0.2s linear
}

.arrow-button:hover {
    background-color: #0a0018;
}

.arrow-button:hover .arrow {
    filter: invert(1)
}

.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)
}

/* Projects Hoverable Link */

.project-hover {
    width: 97px;
    height: 97px;
    background-color: #0a0018;
    transition-property: opacity, transform;
    top: 0;
    left: 0;
    opacity: 0
}

/* Image Popup */

.img-popup {
    background-repeat: no-repeat;
    background-size: 100%;
    transition: visibility .2s, opacity .4s, height .2s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 0;
    height: 0;
    z-index: 40;
    right: -322px;
    box-shadow: 0 0 62px 0 rgba(0, 0, 0, 0.11);
    background-color: #fff
}

.keyword-box:hover .img-popup {
    visibility: visible;
    width: 614px;
    height: 614px;
    opacity: 1
}

.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;
}