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

.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%;
}

.slidenav {
	position: absolute;
	width: 300px;
	margin-left: -150px;
	left: 50%;
	bottom: 0;
	text-align: center;
	padding: 2em;
}

.slidenav__item {
	border: 0;
	background: none;
	font-family:'Alte Haas Grotesk Bold';
	font-weight:normal;
	color: white;
	font-size: 16px;
}

.slidenav__item:focus {
	outline: none;
}

.slidenav__item:hover {
	color: #9b1218;
}

.shape {
	position: absolute;
	width: 100%;
	height: 100%;
	fill: #ff0000;
	top: 0;
	pointer-events: none;
}

.slide__title {
	font-family:'Alte Haas Grotesk Bold';
	font-weight:normal;
	color: white;
	font-size: 5em;

	position: relative;
	margin: 0;
	margin-top: 90px;
	cursor: default;
	line-height: 1;
}

.slide__desc {
	font-family:'Alte Haas Grotesk';
	font-weight:normal;
	color: white;
	position: relative;
	font-size: 1,5em;
	margin: 0 0 2em 0;
	cursor: default;
	padding: 0 1em;
	text-align: center;
}

.slide__link {
	position: relative;
	font-size: 1em;
	font-weight: bold;
	padding: 1em 2em;
	display: block;
	color: white;
	background: var(--color-slink-bg);
	transition: color 0.3s, background 0.3s;
}

.slide__link:hover {
	color: white;
	border: 
	background: red;
}


@media screen and (max-width: 55em) {
	.slide__desc {
		font-size: 1em;
	}
	.slide__link {
		font-size: 0.85em;
	}
}
