
.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.icon--arrow-rot {
	transform: rotate(180deg);
}

.slideshow {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: #111;
}

.slides {
	position: absolute;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.slide--current {
	opacity: 1;
	pointer-events: auto;
}

.slide__img {
	position: absolute;
	top: -200px;
	left: -200px;
	width: calc(100% + 400px);
	height: calc(100% + 400px);
	background-size: cover;
	background-position: 50% 50%;
	opacity: 0.6;
}

.slidenav {
	position: absolute;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: 40px;
	text-align: center;
	padding: 0.4em;
	background: rgba(255,255,255,0.7);
	border-radius: 32px;
}

.slidenav > span {
	opacity: 0.5;
}

.slidenav__item {
	border: 0;
	background: none;
	font-weight: bold;
	color: var(--theme-black);
	cursor: pointer;
}

.slidenav__item:focus {
	outline: none;
}

.slidenav__item:hover {
	color: var(--theme-blue);
}

.shape {
	position: absolute;
	width: 100%;
	height: 100%;
	fill: var(--color-shape-fill);
	top: 0;
	pointer-events: none;
}

.slide__title {
	position: relative;
	font-size: 8vw;
	margin: 0;
	cursor: default;
	line-height: 1;
	color: #fff;
	text-shadow: 0 0 40px rgba(0,0,0,0.4);
}
