.slideshow {
	width: 100%;
	height: 86vh;
	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: 1.5rem 1rem 0.5rem;
	border-top-left-radius: 35px;
	border-top-right-radius: 35px;
	color: #000;
	background-image: url(../../graphics/nav_bg.png);
	background-size: 300px 56px;
	background-position: 0px 5px;
	background-repeat: no-repeat;
}
.slidenav__item {
	border: 0;
	background: none;
	font-weight: bold;
	color: #000;
	font-size: 14px;
	padding: 0;
}
.slidenav__item:focus {
	outline: none;
}
.slidenav__item:hover {
	color: var(--color-nav-hover);
}
.shape {
	position: absolute;
	width: 100%;
	height: 100%;
	fill: var(--color-shape-fill);
	top: 0;
	pointer-events: none;
}
.slide__title {
	position: relative;
	font-size: 85px;
	margin: 0;
	cursor: default;
	line-height: 1;
	color: #ffffff;
	/* mix-blend-mode: difference; */
	font-weight: 800;
	word-break: break-all;
	text-align: center;
}
.slide__desc {
	position: relative;
	font-size: 25px;
	margin: 0 0 2em 0;
	cursor: default;
	color: #fff;
	padding: 0 1em;
	text-align: center;
}
.slide__link {
	position: relative;
	display: block;
}
.slide__link:hover {
}

@media screen and (min-width: 55em) {
.demos {
	display: flex;
	justify-self: end;
}
.demo {
	display: block;
	width: 17px;
	height: 17px;
	margin: 0 4px;
	border-radius: 50%;
	background: var(--color-link);
}
a.demo--current {
	background: var(--color-link-hover);
}
.demo span {
	line-height: 1;
	position: absolute;
	right: 100%;
	display: none;
	margin: 0 1em 0 0;
}
.demo--current span {
	display: block;
}
}

@media screen and (max-width: 55em) {
.content {
	flex-direction: column;
	height: auto;
	min-height: 0;
	padding-bottom: 10em;
}
.content--fixed {
	position: relative;
	z-index: 1000;
	display: block;
	padding: 0.85em;
}
.codrops-header {
	flex-direction: column;
	align-items: center;
}
.codrops-header__title {
	font-weight: bold;
	padding-bottom: 0.25em;
	text-align: center;
}
.github {
	display: none;
}
.codrops-links {
	margin: 0;
}
.slide__desc {
	font-size: 1em;
}
.slide__link {
	font-size: 0.85em;
}
}