@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300');

body {
	margin: 0;
	font-family: 'Roboto Condensed', sans-serif;
	color: white;
	overflow-y: hidden;
}

a {
	color: white;
	text-decoration: none;
}

.menu {
	margin-top: 2.625rem;
	text-align: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.menu-item {
	font-weight: normal;
	display: inline-block;
	margin: 0 2rem;
	font-size: 1.25rem;
	letter-spacing: 0.01rem;
	text-transform: uppercase;
}

.morph-logo {
	width: 14rem; 
	line-height: 0;
	margin-bottom: -0.55rem;
}

.morph-logo img {
	width: 100%;
	height: auto;
}

.contact-box-toggle a:hover {
	cursor: pointer;
}

.contact-box {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	background-color: white;
	color: black;
	font-size: 0.9rem;
	text-align: left;
	text-transform: initial;
	padding: 0.25rem 1rem;
	line-height: 1.8;
	margin-top: 1rem;
	transition: visibility 0s linear 0.1s, opacity 0.1s;
}

.contact-box.active {
	opacity: 1;
	visibility: visible;
	transition: visibility 0s, opacity 0.1s;
}

.contact-box p {
	margin: 0;
}

.contact-box p + p {
	margin-top: 1rem;
}

.contact-box a {
	color: rgba(0,0,0,0.75);
	text-decoration: underline;
}

.slideshow {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	object-fit: cover;
	font-family: 'object-fit: contain;'; /* For IE polyfill (ofi.min.js)  */
}
.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: contain;'; /* For IE polyfill (ofi.min.js)  */
}

.slide.fade-in {
	opacity: 1;
	z-index: 1;
	/*-webkit-animation: fade-in 1s;
    animation: fade-in 1s;*/
}

.slide.fade-out {
	opacity: 1;
	z-index: -1;
}

@-webkit-keyframes fade-in {
	from {opacity: 0}
	to {opacity: 1}
}
@keyframes fade-in {
	from {opacity: 0}
	to {opacity: 1}
}

@media (max-width: 860px) {
	.menu {
		align-items: flex-start;
		text-align: left;
		flex-direction: column;
	}
	.menu-item {
		margin-bottom: 1rem;
	}
}