#SLIDE_BG {
	width: 100%;
	min-height: 75vh;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	backface-visibility: hidden;
	animation: slideBg 48s linear infinite 0s;
	animation-timing-function: ease-in-out;
	background-image: url(../images/backgrouds/landing_page/bg1.jpg);
	text-align: center;
}

@keyframes slideBg {

	0% {
		background-image: url(../images/backgrouds/landing_page/bg1.jpg);
	}
	
	17% {
		background-image: url(../images/backgrouds/landing_page/bg2.jpg);
	}
	
	33% {
		background-image: url(../images/backgrouds/landing_page/bg3.jpg);
	}
	
	50% {
		background-image: url(../images/backgrouds/landing_page/bg4.jpg);
	}
	
	66% {
		background-image: url(../images/backgrouds/landing_page/bg5.jpg);
	}
	
	83% {
		background-image: url(../images/backgrouds/landing_page/bg6.jpg);
	}
	100% {
		background-image: url(../images/backgrouds/landing_page/bg1.jpg);
	}
}
.background-slideshow-empty {
	min-height: 25vh;
}

@media only screen and (hover: none) and (pointer: coarse){

.background-slideshow-empty {
	visibility: hidden;
	display: none;
	}
	
#SLIDE_BG {
	min-height: 100vh;
	}
}	