/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

.home_slider .uncode-video-container {
    filter: grayscale(1);
}

.home_slider:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999999;
    background: url(/wp-content/uploads/2025/07/maschera_bobo.svg) center no-repeat;
    background-size: cover;
	opacity:0;
    transform-origin: center;
    animation-name: zoomin;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}
/*
.home_slider.anim_out:after {
	display: none;
}
*/
@keyframes zoomin {
  0%   {transform: scale(1);opacity:1;display:block;}
  25%   {transform: scale(1);opacity:1;display:block;}
  55%   {opacity:1}
  100% {transform: scale(5);opacity:0;display:none;}
}