/* 
The carousel with one item stylesheet
*/

.news_home {
	min-height: 760px;
	max-height: 760px;
	height: 100%;
}
.slideshow-container {
	max-width: 90%;
}
.newsSlides {
	display: none;
	position: relative;
}
.newsSlides img {
	-o-object-fit: cover;
	   object-fit: cover;
	min-height: 550px;
	max-height: 550px;
}
.text {
	color: white;
	font-size: 1.2rem;
    padding: 1rem;
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
	bottom: 8px;
	width: 100%;
	text-align: center;
}
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: background-color 0.6s ease;
	-o-transition: background-color 0.6s ease;
	transition: background-color 0.6s ease;
}
.active {
	background-color: var(--main-orange);
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	        animation-name: fade;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
}
@-webkit-keyframes fade {
	from {
		opacity: 0.4;
	}

	to {
		opacity: 1;
	}
}
@keyframes fade {
	from {
		opacity: 0.4;
	}

	to {
		opacity: 1;
	}
}
/* RESPONSIVE */
@media screen and (min-width: 768px) {
    .dot:hover {
		background-color: var(--main-orange);
	}
}