/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
 
.video-home .gs-video-wrapper {}

.video-home .gs-video-wrapper::before {
	content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3;
	-o-transition: ease-in-out 0.3;
	transition: ease-in-out 0.3;
}

.video-home .gs-video-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: url(logo-white.svg) no-repeat bottom 20px right 20px;
    background-size: 80px;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3;
	-o-transition: ease-in-out 0.3;
	transition: ease-in-out 0.3;
}

.video-home .gs-video-wrapper:hover::before,
.video-home .gs-video-wrapper:hover::after {
	opacity:0;
}