.website_slider {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: auto;
	max-height: 600px;
}

.website_slider li {
	display: none;
	width: 100%;
	height: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}

.website_slider img {
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	display: block;
}

/* Text over image */
.website_slider_text {
	position: absolute;
	top: 55%;
	width: 100%;
	text-align: center;
	z-index: 3;
	color: white;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	line-height: 1.2;
	text-shadow: 0px 0px 19px rgba(160, 160, 160, 0.5);
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	padding: 0 1rem;
	box-sizing: border-box;
}

.caption {
	margin: auto;
	width: 100%;
	display: table;
	min-height: 60px;
	font-size: 14px;
	line-height: 18px;
}

/* Bullets */
.rslides_tabs {
	font-size: 0;
	list-style: none;
	margin: 12px auto 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.rslides_tabs li {
	display: inline-block;
	margin: 0 6px;
}

.rslides_tabs a {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #e6e6e6;
	border: 3px solid #e6e6e6;
	transition: border-color 0.3s;
}

.rslides_tabs .rslides_here a {
	border-color: #d91724;
}

/* Responsive adjustments */
@media only screen and (max-width: 959px) {
	.website_slider {
		max-height: 400px;
	}
}

@media only screen and (max-width: 767px) {
	.rslides_tabs {
		display: none;
	}
}

@media only screen and (max-width: 479px) {
	.website_slider {
		max-height: 250px;
	}
	.website_slider_text {
		top: 45%;
		font-size: clamp(1.2rem, 5vw, 1.8rem);
	}
}

@media only screen and (max-width: 379px) {
	.website_slider_text {
		top: 42%;
		font-size: clamp(1rem, 6vw, 1.5rem);
	}
}
