/*
 * Slider
 */
.rio-slider {
	position: relative;
	width: 100vw;
	overflow: hidden;
}

.rio-slider-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.rio-slider-slide img {
	height: 60vh;
	width: auto;
}

.rio-slider-layer {
	position: absolute;
	top: 66.6666%;
	left: 5vw;
	padding: 2em;
	width: 90vw;
	background-color: white;
	border-radius: 2em;
	text-align: left;
	color: #494998;
}

.rio-slider-layer p {
	color: #494998;
}

.rio-slider-layer-inicio {
	font-family: 'D-DIN Exp Italic';
}

.rio-slider-layer-title {
	padding: 1em 0;
	font-family: 'DIN Alternate Bold';
	font-size: 1.25em;
}

.rio-slider-layer-link a {
	padding: 0.5em 1.5em;
	background-color: #494998;
	border-radius: 2em;
	font-family: 'DIN Alternate Bold';
	font-size: 0.8em;
	text-decoration: none;
	color: white;
}

/*
 * Estilos por pantalla
 */
@media all and ( orientation: landscape ) {
	.rio-slider-slide img {
		height: auto;
		width: 100%;
	}

	.rio-slider-layer {
		top: 50%;
		left: 15vw;
		width: 25%;
		background-color: transparent;
		transform: translateY( -50% );
	}

	.rio-slider-layer p {
		color: white;
	}

	.rio-slider-layer-link a {
		background-color: white;
		font-size: 0.8em;
		color: #494998;
	}
}

@media all and ( orientation: landscape ) and ( min-width: 500px ) {
	.rio-slider-layer {
		width: 50%;
	}

	.rio-slider-layer-title {
		font-size: 1em;
	}
}

@media all and ( orientation: landscape ) and ( min-width: 700px ) {
	.rio-slider-layer {
		width: 33.3333%;
	}

	.rio-slider-layer-title {
		font-size: 1.25em;
	}
}

@media all and ( orientation: landscape ) and ( min-width: 900px ) {
	.rio-slider-layer {
		width: 25%;
	}

	.rio-slider-layer-title {
		font-size: 2em;
	}
}