body {
	overflow: hidden;
}

.main {
	margin: 0;
	padding: 0;
	height: 100vh;
	height: 100dvh;
}

.SliderContainer {
	width: 100dvw;
	height: 100vh;
	height: 100dvh;
	position: relative;
}

.sliderCarousel {
	height: 100%;
	display: flex;
	overflow: hidden;
}

.slide {
	flex: 1 0 100%;
	transform: translate(-100%);
	transition: transform 0.3s ease-in-out;
	background-color: black;
}

.placeholder > img, .placeholder > source {
    opacity: 0;
	transition: 0.5s;
}

.placeholder > img.loaded, .placeholder > source.loaded {
    opacity: 1;
	transition: 0.5s;
}

picture > * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide-caption {
	position: absolute;
	z-index: 5;
	left: 6rem;
	bottom: 1.5rem;
	border: solid 2px black;
	padding: 11px 15px 9px;
	background-color: white;
	transition: 0.5s;
	max-width: 75vw;
	text-wrap: balance;
}

a.slide-caption:hover {
	color: white;
	background-color: black;
}

.hover-effect:hover {
	color: white;
	background-color: black;
	transition: 0.5s;
}

.navigation {
	position: absolute;
	z-index: 5;
	right: 6rem;
	bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.arrows {
	border: solid 2px black;
	padding: 11px 15px 9px;
	background-color: white;
	transition: 0.5s;
	cursor: pointer;
}

.arrows:hover {
	color: white;
	background-color: black;
	transition: 0.5s;
}

/* ----------------------------------------------------------------------------------------------------
RESPONSIVE BEHAVIOR
---------------------------------------------------------------------------------------------------- */

@media (max-width: 1200px) {
	.slide-caption {
		left: 3rem;
	}
	.navigation {
		right: 3rem;
	}
}

@media (max-width: 1050px) {
	.slide-caption {
		left: 1.5rem;
	}
	.navigation {
		right: 1.5rem;
	}
}

@media (max-width: 450px) {
	.slide-caption {
		max-width: 50vw;
	}
}