.slide {
    position: relative;
    width: 100vw;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    top: 0;
    right: 0;
	background: #ccc;
	z-index: 0;
}
.slide ul {
	display: block;
	height: 100%;
	width: 100%;
	box-sizing: border-box;	
}
.slide ul::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition: .3s;
    opacity: .5;
}
.slide ul::before {
    content: url(https://www.siud4u.co.il/wp-content/uploads/2020/02/heart.svg);
    width: 60vw;
    height: 100%;
    position: absolute;
    top: 0;
	left: 0;
    right: 0;
    z-index: 2;
    margin: auto;
    mix-blend-mode: hard-light;
    opacity: .45;
}
.slide ul li {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	list-style: none;
}
@keyframes slide {
  from {transform: scale(1.4); filter: blur(5px);}
  to {transform: scale(1); filter: blur(0px);}
}
@media screen and (max-width: 780px) {

	.slide ul::before {
		height: 90vw;
		width: 100vw;
		bottom: 0;
	}
}