html {
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
	overflow: hidden;
}
body {
	margin: 0;
}
*, *:before, *:after {
	box-sizing: inherit;
	outline: none;
}

header {
	display: flex;
	position: fixed;
	top: 0;
	width: 346px;
	height: 100vh;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 3000;
	background-color: rgba(0, 52, 130, 0.6);
	color: #FFF;
	font-size: 1.2em;
}
header span {
	display: inline-block;
}
header span:first-child {
	font-size: 40px;
	padding-bottom: 15px;
}
header span:last-child {
	font-size: 16px;
	border-top: solid 2px #fff;
	padding-top: 15px;
}
main {
	display: flex;
	height: 100vh;
	align-items: center;
	align-content: center;
	justify-content: center;
}
video {
	max-width: 100%;
	position: fixed;
	top: 0;
}
.slideshow {
	max-width:100%;
}
.slide-item {
	position: relative;
	width: 100%;
	height: 300px;
	text-align: center;
}
.slide-item img {
	width: auto;
	display: inline-block !important;
	height: 100%;
	max-height: 650px;
	border: solid 20px #fff;
	box-shadow: 5px 5px 8px rgb(94, 94, 94);
	margin-bottom: 30px;
}
footer {
	display: flex;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 346px;
	height: 100vh;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 3000;
	background-color: rgba(0, 52, 130, 0.6);
	color: #FFF;
	font-size: 1.2em;
}
.playlist  {
	display: none;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}
footer .mensaje-content {
	padding: 0 16px;
}

@media screen and (max-width: 700px) {
	html, body {
		background-image: url('img/clouds.jpg');
		background-repeat: no-repeat;
		background-position: right center;
	}
	video {
		width: auto;
		max-width: none;
		height: 830px;
		max-width: none;
		right: 0;
	}
	.slide-item img {
		max-height: 340px;
		max-width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 1199px) {
	html, body {
		background-color:#022258;
	}
	header {
		height: 135px;
		width: 100vw;
	}
	header span {
		display: block;
	}
	header span:first-child {
		font-size: 30px;
	}
	header span:last-child {
		font-size: 14px;
	}
	main {
		padding-top: 135px;
		height: 85vh;
	}
	video {
		display: none;
		width: auto;
		height: 100vh;
	}
	.slide-item img {
		max-height: 450px;
	}
	footer {
		height: 100px;
		width: 100vw;
		background-color: transparent;
	}
	.playlist {
		display: block;
		padding: 5px 8px;
		border: solid 1px #fff;
		border-radius: 3px;
		background-color: rgba(0, 52, 130, 0.6);

	}
	.playlist:after {
		content: 'Show';
		display: inline-block;
		margin-left: 8px;
	}
	.playlist.active:after {
		content: 'Hide';
	}
	iframe {
		position: fixed;
		top: 0;
		bottom: 0;
		margin-top: auto;
		margin-bottom: auto;
		right: -300px;
		transition: all ease 0.5s;
	}
	iframe.active {
		right: 20px;
	}
}