

/* Content */
.contentt {
    background-color: #fff;
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	height: 100vh;
	overflow: hidden;
	padding: 2em;
	font-family: var(--content-font);
	--pieces-height: calc(100vh - 4em);
}

.contentt__header {
	display: flex;
}

.contentt__title {
    color: #000;
	font-size: 4em;
	line-height: 0.75;
	margin: 0;
	font-weight: normal;
    text-transform: uppercase;
	position: relative;
}

.slideshow {
	grid-area: 1 / 3 / 3 / 5;
	display: flex;
	justify-content: center;
}

.slide {
	opacity: 0;
}

.pieces {
	flex: none;
	opacity: 1;
	height: var(--pieces-height);
	width: calc(var(--pieces-height) * 0.76);
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.piece {
	pointer-events: none;
}

.menu {
	z-index: 10;
	grid-area: 2 / 1 / 2 / 3;
}

.menu__item {
	font-size: 1.6em;
    color: #df4e44;
}

.menu__item:not(:last-child)::after {
	content: ' // ';
}

.menu__item span {
    color: #000;
}

.menu__item:hover {
	color: var(--link-text-hover);
}

.menu__item--current,
.menu__item--current:hover,
.menu__item--current:focus {
	color: #000;
}

@media screen and (max-width: 40em) {
	.contentt {
		padding: 0vw 0vw 7vw 5vw;
		grid-template-columns: 80vw;
    	grid-template-rows: auto;
		height: auto;
		margin-bottom: 0;
		--pieces-height: 50vh;
	}
	.slideshow {
		grid-area: 2 / 1 / 4 / 2;
	}
	.contentt__header {
		grid-column: 1 / 2;
	}
	.contentt__title {
		font-size: 3em;
		padding: 0.5em 0;
	}
	.menu {
		grid-area: 4 / 1;
	}
	.menu__item {
		font-size: 1.1em;
	}
}
    

