.Inicio
{
	text-align: center;
}
.Fondo
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 90vh;
	z-index: -1;
	overflow: hidden;
}
.Fondo .ImagenFondo
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.Fondo .FondoBlanco
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.8);
}
.Frente
{
	display: inline-block;
	width: 100%;
	max-width: 1000px;
	margin-top: 120px;
	background-color: rgb(255,255,255);
}
.FondoPrincipal
{
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.Gradient
{
	display: block;
	width: 100%;
	height: 200px;
	transform: translateY(-100%);
	/*background-image: linear-gradient(to bottom, rgba(255,255,255,0)0%, rgba(255,255,255,.7) 30%, rgba(255,255,255,1) 70%);*/
	background-image: linear-gradient(to bottom, rgba(255,255,255,0),rgba(255,255,255,.7) 30%, rgba(255,255,255,1));
}
.Frente .Centrar
{
	width: 100%;
	padding: 20px 60px;
	text-align: center;
	opacity: 0;
	animation: Entrada 1s forwards;
	animation-delay: .3s;
}
@keyframes Entrada
{
	from { transform: translateY(-100px); opacity: 0; }
	to { transform: translateY(-300px); opacity: 1;}
}
.Frente .Titulo
{
	position: relative;
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 3.5em;
	color: rgb(0,158,171);
	line-height: 1.1em;
	margin-bottom: 20px;
}
.Frente .Titulo:before,
.Frente .Titulo:after
{
	content: "";
	display: block;
	position: absolute;
	top: 35px;
	width: 150px;
	height: 500px;
	background-image: url(../Image/Fotos/Linea.svg);
	background-size: contain;
	background-repeat: no-repeat;
	border-top: solid 1px rgb(0,158,171);
	anim
}
.Frente .Titulo:before
{
	left: -30px;
	background-position: -4px;
	clip-path: polygon(100% 0, 100% 0, 100% 1%, 100% 1%);
	animation: LineaIzquierda .7s forwards;
	animation-delay: 1s;
}
@keyframes LineaIzquierda
{
	0%{ clip-path: polygon(100% 0, 100% 0, 100% 1%, 100% 1%); }
	50%{ clip-path: polygon(0 0, 100% 0, 100% 1%, 100% 1%); }
	100%{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
.Frente .Titulo:after
{
	right: -30px;
	background-position: 145px;
	clip-path: polygon(0 0, 0 0, 0 1%, 0 1%);
	animation: LineaDerecha .7s forwards;
	animation-delay: 1s;
}
@keyframes LineaDerecha
{
	0%{ clip-path: polygon(0 0, 0 0, 0 1%, 0 1%); }
	50%{ clip-path: polygon(0 0, 100% 0, 100% 1%, 0 1%); }
	100%{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
.Frente .Subtitulo
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.7em;
	color: rgb(0,0,0,.7);
	line-height: 1.1em;
	margin-bottom: 30px;
}
.Frente .Parrafo,
.Frente .Li
{
	text-align: justify;
	font-family: 'Roboto Condensed Regular', sans-serif;
	font-weight: 400;
	font-size: 1em;
	color: rgba(0,0,0,.7);
	letter-spacing: .05em;
}
.Frente .Parrafo .Negrita
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
}
.Frente .Parrafo .Enlace,
.Frente .Parrafo .Subrayado
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	color: rgb(0,158,171);
	border-bottom: solid 1px rgba(0,158,171,.7);
	cursor: pointer;
}
.Frente .Li
{
	position: relative;
	margin-left: 30px;
	margin-bottom: 30px;
}
.Frente .Li:before
{
	content: "";
	position: absolute;
	top: 5px;
	left: -25px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: rgb(0,158,171);
}
.Tours
{
	transform: translateY(-300px);
	margin-bottom: -300px;
	padding-bottom: 50px;
	width: 100vw;
	background-color: rgb(245,245,245);
	text-align: center;
	padding-top: 30px;
}
.Tours .Titulo
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 2.5em;
	color: rgb(0,158,171);
	line-height: 1.1em;
	margin-bottom: 50px;
}
.Tours .Centrar
{
	display: inline-block;
	width: 100%;
	max-width: 900px;
}
.Tours .Tour
{
	position: relative;
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 30px;
	width: 400px;
	padding: 15px;
	background-color: rgb(255,255,255);
	border-radius: 5px;
	vertical-align: top;
	box-shadow: 0px 0px 4px 4px rgba(0,0,0,.02);
}
.Tours .Tour:nth-child(4) .Subtitulo
{
	margin-bottom: 30px;
}
.Tours .Tour:nth-child(4) .Texto
{
	margin-bottom: 33px;
}
.Tour .Imagen
{
	width: 370px;
	height: 300px;
	object-fit: cover;
	object-position: center;
	border-radius: 5px;
}
.Tour .Texto
{
	padding: 15px 15px 0px 15px;
}
.Tour .Subtitulo
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	color: rgb(0,158,171);
	line-height: 1.1em;
}
.Tour .Parrafo
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.1em;
	color: rgba(0,0,0,.6);
	letter-spacing: .05em;
}
.Tour .Tiempo
{
	padding: 0px 15px 15px 15px;
	display: flex;
	justify-content: space-between;
}
.Tiempo .Icon,
.Tiempo .Parrafo
{
	display: inline-block;
}
.Tiempo .Parrafo
{
	font-size: 1.3em;
	color: rgba(0,0,0,.6);
}
.Tour .Icon
{
	margin-right: 10px;
	transform: translateY(7px);
	width: 30px;
	height: 30px;
}
.Tour .Botom
{
	display: block;
	width: 370px;
	padding: 15px;
	border-radius: 5px;
	background-color: #C8760C;
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.1em;
	color: rgb(255,255,255);
	cursor: pointer;
	text-transform: uppercase;
}
.Botonera .Parrafo
{
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.1em;
	color: rgba(0,0,0,.6);
	letter-spacing: .05em;
}
.Botonera .Botom
{
	display: inline-block;
	width: 400px;
	padding: 7px 20px;
	background-color: rgb(230,230,230);
	border-radius: 5px;
	box-shadow: 7px 7px 7px -4px rgba(0,0,0,.25);
	cursor: pointer;
	transition: all .3s;
}
.Botonera .Botom:hover
{
	transform: translate(7px,7px);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,.25);
}
.Botonera .Botom .LogoRoute
{
	width: 190px;
	height: 65px;
}
.Botonera .Botom .Span
{
	display: inline-block;
	transform: translateY(-20px);
	font-family: 'Roboto Condensed Bold', sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	color: rgba(0,0,0,.6);
	letter-spacing: .05em;
	text-transform: uppercase;
}