.mySlides-background {
	display: none;
}

.background-slide{
	margin: 0;
	text-align: center;
	position: relative;
	background-repeat: no-repeat;
	background-size: contain, cover;
}


.mySlides-dots {
    position: absolute;
    bottom: 0px;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    font-size: 10px;
    align-content: flex-end;
    z-index: 2;
}

.mySlides-dot {
    padding: 5px;
    color: #ffffffa6;
}

.mySlides-dot span {
    transition: all .2s ease-out 0s;
}

.mySlides-dot span:hover {
    color: #ffffff !important;
    transform: scale(1.5);
    cursor: pointer;
}

.mySlides-dot-active span{
    color: #ffffff !important;
}

.mySlides-arrows {
    color: #ffffffa6;
    position: absolute;
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 22px;
    align-content: center;
    z-index: 1;
}

.mySlides-arrow span {
    transition: all .2s ease-out 0s;
    border-radius: 50%;
    border: 2px solid;
    height: 30px;
    width: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.mySlides-arrow span:hover {
    color: #ffffff !important;
    transform: scale(1.1);
    cursor: pointer;
}

.mySlides-arrow {
    display: flex;
    height: 100vh;
    width: 30%;
    flex-direction: row;
    transition: all .2s ease-out 0s;
    align-content: center;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
    padding: 10px;
}

.mySlides-arrow-left {
    justify-content: flex-start;
}

.mySlides-arrow-right {
    justify-content: flex-end;
}


/* Slideshow container */
.slideshow-container-background {
	margin: auto;
	position:absolute;
	top:0px;
	left:0px;
	min-width:100%;
	height:100%;
	z-index: -100;
	overflow: hidden;
}

/* Fading animation */
.fade-slide {
  -webkit-animation-name: fade-background;
  -webkit-animation-duration: 2.5s;
  animation-name: fade-background;
  animation-duration: 2.5s;
}

.move-slide {
  -webkit-animation-duration: move 10s infinite;
  animation: move 10s infinite;
}

@-webkit-keyframes fade-background {
	from {
		opacity: 0.8;
	} 
	to {
		opacity: 1;
	}
}

@keyframes fade-background {
	from {
		opacity: 0.8;
	} 
	to {
		opacity: 1;
	}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 551px) {	
	.slideshow-container-background{
		min-height: 100%;
	}
	
	@-webkit-keyframes move {
		from {transform: translateX(-95vw);}
		to {transform: translateX(10vw);}
	}

	@keyframes move {
		from {transform: translateX(-95vw);}
		to {transform: translateX(10vw);}
	}
}

/* On smaller screens, decrease text size */
@media only screen and (min-width: 550px) {	
	@-webkit-keyframes move {
		from {transform: scale(1);} 
		to {transform: scale(1.2);}
	}

	@keyframes move {
		from {transform: scale(1);} 
		to {transform: scale(1.2);}
	}
}