img:not([src]):not([srcset]) {
	visibility: hidden;
}
.image-container {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
img {
	width: 100%;
}
.slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.slides {
	width: 500%;
	height: 100%;
	display: flex;
	transition: all 0.5s ease-in-out;
}
.slides>div {
	width: 20%;
	height: 100%;
}
.controls {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}
.controls .dots {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	cursor: pointer;
}
.controls .dots.active {
	background-color: #717171;
}
.arrow-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 24px;
	color: #333;
}
.arrow-button.left {
	left: 10px;
}
.arrow-button.right {
	right: 10px;
}
.lazy {
	width: auto;
	max-width:100%;
	height:auto;
}
