/* RESET */

* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
}

/* WEBFONTS */

@font-face {
    font-family: 'suisse';
    src: url('../fonts/SuisseBPIntl-Regular.otf') format('opentype');
}

/* GLOBAL */

body {
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	font-family: 'suisse', Helvetica, Arial, sans-serif;
	background-color: #000;
	color: #FFF;
	overflow: hidden;
	height: 100dvh;
}

.slider {
	height: 90%;
	width: 100vw;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	flex-wrap: nowrap;
}

.slider .single-slide {
	margin-right: 2vw;
	flex: 0 0 auto;
	height: 100%;
}

.slider .single-slide.image-slide img {
	height: 100%;
	width: auto;
}

.slider .single-slide.video-slide video {
	height: 100%;
	width: auto;
}

.slider .single-slide.text-slide {
	width: 30vw;
	padding: 4vw 2vw;
	white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider .single-slide.text-slide p {
	color: #FFF;
	font-size: 3vw;
	margin-bottom: 3vw;
	text-align: center;
}

.footer {
	display: flex;
	align-items: center;
	height: 10%;
	padding: 0px 4vw;
}

.footer p, .footer a {
	color: #FFF;
	font-size: 1.6vw;
}

@media screen and (max-width: 992px) {

	.slider .single-slide {
		margin-right: 4vw;
	}

	.slider .single-slide.text-slide {
		width: 80vw;
		padding: 8vw 4vw;
	}

	.slider .single-slide.text-slide p {
		font-size: 6vw;
		margin-bottom: 6vw;
	}

	.footer {
		padding: 0px 8vw;
	}

	.footer p, .footer a {
		font-size: 5.5vw;
	}

}