@charset "utf-8";

/* BODY ------------------------------------ */

body{ 
	margin: 0;
	background: #FFFFFF; 
}

/* Estilos Tipografía ------------------------ */

@font-face {
	font-family: "Thin";
	src: url("fonts/Montserrat-Thin.ttf") format("truetype");
}

@font-face {
	font-family: "Light";
	src: url("fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
	font-family: "Regular";
	src: url("fonts/Montserrat-Regular.ttf") format("truetype")
}

@font-face {
	font-family: "Medium";
	src: url("fonts/Montserrat-Medium.ttf") format("truetype")
}

@font-face {
	font-family: "SemiBold";
	src: url("fonts/Montserrat-SemiBold.ttf") format("truetype")
}

@font-face {
	font-family: "Bold";
	src: url("fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Black";
	src: url("fonts/Montserrat-Black.ttf") format("truetype");
}

/* ESTILO LINKS ---------------------------- */

a:link {
	color: #000;
	text-decoration: none;
	
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
	color: #000;
}

.linkFooter:link {
	color: #FFF;
	text-decoration: none;
	
}
.linkFooter:visited {
	text-decoration: none;
	color: #FFF;
}
.linkFooter:hover {
	text-decoration: none;
	color: #FFF;
}
.linkFooter:active {
	text-decoration: none;
	color: #FFF;
}

/* ESTILO CAMPOS ---------------------------- */

.txtBox { 
	width: 100%;
	height: 40px; 
	padding: 0px 10px 0px 10px;  
	margin-top: 8px;

	font-family: "Medium";
	font-size: 16px; 
	color: #000000;

	border: 1px solid #979797;
    background: none;
    box-sizing: border-box;
    background: #FFFFFF;
    outline: none; 

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
} 
 
.txtBox:focus { 
    border: 1px solid #999; 
    box-shadow: 0px 0px 5px #CCC; 
    -moz-box-shadow: 0px 0px 5px #CCC; 
    -webkit-box-shadow: 0px 0px 5px #CCC; 
} 

::-webkit-input-placeholder {
	font-family: "Medium";
    color: #999999;
	font-size: 14px;  
	letter-spacing: 1px;
} /* WebKit */

:-moz-placeholder { 
	font-family: "Medium";
	color: #999999;
	font-size: 14px;   
	letter-spacing: 1px;
} /* Firefox 18- */

::-moz-placeholder { 
	font-family: "Medium";
	color: #999999;
	font-size: 14px;  
	letter-spacing: 1px;
} /* Firefox 19+ */

:-ms-input-placeholder { 
	font-family: "Medium";
	color: #999999;
	font-size: 14px;   
	letter-spacing: 1px;
} /* IE 10+ */

/* ESTILO BOTON SUBMIT ----------------------- */

.button_1 {
	width: 100%;
	height: auto;
	padding: 10px 20px 10px 20px;

	font-family: "Medium";
	font-size: 14px;
	color: #FFF;
	letter-spacing: 1px;
	border: 0;

	float: left;
	box-sizing: border-box;
	cursor: pointer;
	background: #333333;
	outline: none;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_1:hover {
	background: #000000;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_2 {
	width: 210px;
	height: auto;
	margin-top: 25px;
	padding: 10px 20px 10px 20px;

	font-family: "Medium";
	font-size: 14px;
	color: #FFF;
	letter-spacing: 1px;
	border: 0;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	background: #333333;
	outline: none;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_2:hover {
	background: #000000;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_3 {
	width: 75%;
	height: auto;
	margin-top: 25px;
	padding: 12px 20px 12px 20px;

	font-family: "Bold";
	font-size: 14px;
	color: #000;
	letter-spacing: 1px;
	border: 0;

	position: absolute;
	bottom: 8%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	background: #f6c245;
	outline: none;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_3:hover {
	background: #ffb400;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/* HEADER ----------------------------- */

header {
	width: 100%; 
	height: auto;
	padding: 5px 0px 10px 0px;
	text-align: center;
	position: fixed;
	float: left;
	box-sizing: border-box;
	z-index: 15;
	background: #FFFFFF;
	/*border: 1px solid #FF0000;*/
}

.logo {
	width: auto; 
	height: auto;
	margin-left: 8%;
	float: left;
	box-sizing: border-box;
	cursor: pointer;
	/*border: 1px solid #FF0000;*/
}

.logo img {
	width: 95px;
	height: auto;
	float: left;
}

.caja-header-right {
	width: auto; 
	height: auto;
	margin: 22px 5% 0px 0px;
	float: right;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-telefono {
	width: auto; 
	height: auto;
	margin: -8px 10px 0px 10px;
	padding: 0px 0px 0px 50px;

	font-family: "Bold";
	font-size: 14px;
	color: #666;
	text-align: right;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-telefono p {
	margin: 5px 0px 5px 0px;
}

.caja-telefono p:hover {
	color: #000;
}

.caja-telefono img {
	width: 40px;
	height: auto;
	position: absolute;
	top: 5px;
	left: 0;
}

#tel_h_desktop {
	display: inherit;
}

#tel_h_movil {
	display: none;
}

.caja-redes {
	width: auto; 
	height: auto;
	margin: 0px 10px 0px 10px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-redes img {
	float: left;
}

.caja-ico-menu{
	width: auto; 
	height: 35px;
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 0px 20px;
	float: left;
	cursor: pointer;
	box-sizing: border-box;
	border-left: 2px solid #000000;
}

#ico-desktop {
	display: inherit;
}

#ico-movil {
	display: none;
}

.caja-separador {
	width: 1.5px; 
	height: 35px;
	margin: 0px 20px 0px 20px;
	float: left;
	box-sizing: border-box;
	background: #000000;
}

.cont-menu {
	width: 350px;
	height: 100vh;
	position: fixed;
	right: 0;
	box-sizing: border-box;
	z-index: 20;
	overflow: hidden;
	display: none;

	background: #000000;
	/*background: rgba(0,0,0,.96);*/
}

.close-menu {
	width: auto;
	height: auto;
	padding: 20px 35px 20px 25px;
	margin-bottom: 0px;

	font-family: "Light";
	font-size: 24px; 
	text-align: right;
	color: #999;
	letter-spacing: 1px:;

	float: right;
	box-sizing: border-box;
	background: #000000;
	cursor: pointer;

	-webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.close-menu:hover {
	color: #FFF;
}

.btn-menu {
	width: 1018px;
	height: auto;
	padding: 15px 710px 15px 25px;

	font-family: "Regular";
	font-size: 18px; 
	color: #999;
	letter-spacing: 1px:;

	float: left;
	box-sizing: border-box;
	border-bottom: 1px solid #333;
	cursor: pointer;

	-webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.btn-menu:hover {
	color: #333333;
	font-family: "Regular";
	background: #FFFFFF;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/* BANNER ----------------------------- */

.cont-banner {
	width: 100%;
	height: 83vh;
	margin-top: 110px;
	position: relative;
	float: left;
	box-sizing: border-box;
	z-index: 0;
	/*border: 1px solid #000;*/
}

.txt-caja-banner {
	width: 640px;
	height: auto;

	font-family: "Thin";
	font-size: 48px; 
	color: #FFFFFF;
	line-height: 50px;

	position: absolute;
	top: 35%;
	left: 65%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 5;
    /*border: 1px solid #FF0000;*/
}

.sub-txt-caja-banner {
	width: 100%;
	height: auto;

	font-family: "Medium";
	font-size: 12px; 
	color: #FFFFFF;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.whatsapp-caja-banner {
	width: auto;
	height: auto;

	position: absolute;
	bottom: 45px;
	right: 15%;
	z-index: 5;
    /*border: 1px solid #FF0000;*/
}

.whatsapp-caja-banner img {
	float: left;
}

.cont-banner-dtllreserva {
	width: 100%;
	height: 0px;
	margin-top: 110px;
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.txt-caja-banner-reserva {
	width: 640px;
	height: auto;

	font-family: "Thin";
	font-size: 48px; 
	color: #FFFFFF;
	line-height: 50px;

	position: absolute;
	top: 40%;
	left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 5;
    /*border: 1px solid #FF0000;*/
}

.whatsapp-caja-banner-reserva {
	width: auto;
	height: auto;

	position: absolute;
	bottom: 30px;
	right: 8%;
    /*border: 1px solid #FF0000;*/
}

/* RESERVA ----------------------------- */

.cont-reserva {
	width: 100%;
	height: auto;
	padding: 40px 0px 40px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-reserva {
	width: 1000px;
	height: auto;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.cont-caja-dtll-reserva {
	width: 700px;
	height: auto;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.caja-dtll-reserva {
	width: 100%;
	height: auto;
	margin-bottom: 1px;

	float: left;
	box-sizing: border-box;
	background: #1d1d1d;
	/*border: 1px solid #000;*/
}

.info-dtll-reserva {
	width: 50%;
	height: auto;
	padding: 10px 15px 10px 25px;
	
	font-family: "Medium";
	font-size: 14px;
	color: #FFF;
	text-align: left;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.info-dtll-reserva-2 {
	font-family: "Bold";
	font-size: 16px;
	color: #000;
	background: #f0f0f0;
}

.tit-caja-reserva {
	width: 100%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "Bold";
	font-size: 30px; 
	color: #000000;
	text-align: left;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva {
	width: 50%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "Bold";
	font-size: 14px; 
	color: #000000;
	text-align: left;
	letter-spacing: 1px;
	
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

/*.input-caja-reserva {
	width: 33.33%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "Bold";
	font-size: 14px; 
	color: #000000;
	text-align: left;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	border: 1px solid #FF0000;
}*/

.input-caja-reserva-hora {
	width: auto;
	height: auto;
	
	position: absolute;
	top: 29px;
	right: 15px;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-hora select {
	width: auto;
	height: 35px;
	margin-top: 0;
	border: 0;
}

.input-caja-reserva-hora select:focus { 
    border: 0; 
    box-shadow: inherit; 
    -moz-box-shadow: inherit; 
    -webkit-box-shadow: inherit; 
}

.input-caja-reserva button {
	margin-top: 25.5px;
}

.input-caja-reserva-width-1 {
	width: 50%;
	float: left;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-width-2 {
	width: 50%;
	float: right;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-width-3 {
	width: 66.6%;
	float: left;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-width-4 {
	width: 100%;
	float: left;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-width-5 {
	height: 60px;
	/*border: 1px solid #FF0000;*/
}

.input-caja-reserva-width-6 {
	width: 33.33%;
	/*border: 1px solid #FF0000;*/
}

.cont-cant-pasajeros {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.ico-cant-pasajeros {
	width: auto;
	height: auto;
	position: absolute;
	top: 18px;
	left: 10px;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.cont-cant-pasajeros input {
	padding: 0px 0px 0px 45px;
}

.cant-pasajeros {
	width: 100%;
	height: auto;
	padding: 25px 20px 25px 20px;
	position: absolute;
	top: 54px;
	box-sizing: border-box;
	background: #FFF;
	z-index: 1;

	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
	/*border: 1px solid #FF0000;*/
}

.indicador-cant-pasajeros {
	width: auto;
	height: auto;
	position: absolute;
	top: -15px;
	left: 0px;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-cant-pasajeros-1 {
	width: 100%;
	height: auto;
	margin: 10px 0px 10px 0px;

	font-family: "Medium";
	font-size: 18px; 
	color: #333;
	letter-spacing: 1px;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #EEE;*/
}

.caja-cant-pasajeros-1 span {
	font-family: "Regular";
	font-size: 14px; 
	color: #999;
}

.caja-cant-pasajeros-2 {
	width: 100%;
	height: auto;
	margin: 10px 0px 10px 0px;

	font-family: "Medium";
	font-size: 16px; 
	color: #333;
	letter-spacing: 1px;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #EEE;*/
}

.caja-cant-pasajeros-2 span {
	font-family: "Regular";
	font-size: 14px; 
	color: #999;
}

.filtro-cant-pasajeros {
	width: 35%;
	height: auto;
	padding: 10px 0px 10px 0px;
	text-align: center;

	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
	border-radius: 6px;
	border: 1px solid #CCC;
}

.caja-filtro-cant-pasajeros {
	width: 33.33%;
	height: auto;
	color: #999;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-filtro-cant-pasajeros:hover {
	color: #333333;
}

/* MEJORES EXPERIENCIAS ----------------------------- */

.cont-mejores-experiencias {
	width: 100%;
	height: auto;
	padding: 40px 0px 100px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	background: #f0f0f0;
	/*border: 1px solid #000;*/
}

.caja-mejores-experiencias {
	width: 1000px;
	height: auto;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.tit-caja-mejores-experiencias {
	width: 100%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "SemiBold";
	font-size: 28px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.tit-caja-mejores-experiencias p {
	margin-top: 10px;
	position: relative;
	font-family: "Light";
	font-size: 16px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;
	/*border: 1px solid #FF0000;*/
}

.info-caja-mejores-experiencias {
	width: 31%;
	height: 400px;
	margin: 0px 8px 0px 8px;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.info-caja-mejores-experiencias .button_3 {
	bottom: -70px;
}

/* EXPERIENCIA ----------------------------- */

.cont-experiencia {
	width: 100%;
	height: auto;
	padding: 40px 0px 30px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.cont-caja-experiencia {
	width: 970px;
	height: auto;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.caja-experiencia-1 {
	width: 40%;
	height: auto;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.img-top-experiencia-1 {
	width: 95%;
	height: 560px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.img-bottom-experiencia-1 {
	width: 65%;
	height: 240px;

	position: absolute;
	bottom: 0;
	right: 0;
	box-sizing: border-box;
	display: none;
	/*border: 1px solid #000;*/
}

.caja-experiencia-2 {
	width: 60%;
	height: auto;
	padding: 140px 0px 0px 25px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.tit-caja-experiencia {
	width: 100%;
	height: auto;

	font-family: "SemiBold";
	font-size: 28px; 
	color: #000000;
	text-align: left;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.tit-caja-experiencia p {
	margin-top: 30px;
	margin-bottom: 18px;
	position: relative;
	font-family: "Bold";
	font-size: 12px; 
	color: #000000;
	text-align: left;
	letter-spacing: 1px;
	/*border: 1px solid #FF0000;*/
}

.desc-caja-experiencia {
	width: 100%;
	height: auto;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.desc-caja-experiencia p {
	font-family: "Light";
	font-size: 14px; 
	color: #000000;
	text-align: justify;
	letter-spacing: 1px;
	line-height: 23px;
	margin: 0px 0px 15px 0px;
}

#n_experiencia {
	display: inherit;
}

#n_experiencia_movil {
	display: none;
}

/* TESTIMONIOS ----------------------------- */

.cont-testimonios {
	width: 100%;
	height: auto;
	padding: 40px 0px 60px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.caja-testimonios {
	width: 800px;
	height: auto;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.tit-caja-testimonios {
	width: 100%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "SemiBold";
	font-size: 28px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.cont-caja-testimonios {
	width: 100%;
	height: auto;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.info-caja-testimonios {
	width: 100%;
	height: auto;
	padding: 35px 20px 0px 0px;

	font-family: "light";
	font-size: 16px; 
	color: #000000;
	text-align: center;
	line-height: 25px;
	letter-spacing: 1px;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.info-caja-testimonios p {
	margin-top: 25px;
	font-family: "Bold";
	font-size: 14px; 
	color: #000000;
}

.tripadvisor-caja-testimonios {
	width: auto;
	height: auto;
	margin-top: 40px;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
} 

/* BANNER INFERIOR ----------------------------- */

.cont-banner-inferior {
	width: 100%;
	height: 70vh;
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.txt-caja-banner-inferior {
	width: 500px;
	height: auto;

	font-family: "Thin";
	font-size: 40px; 
	color: #FFFFFF;
	line-height: 50px;

	position: absolute;
	top: 40%;
	left: 28%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*border: 1px solid #FF0000;*/
}

/* SECCION INTERNA ---------------------- */

.banner-header-tour {
	width: 100%;
	height: 70vh;
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.txt-banner-header-tour {
	width: 640px;
	height: auto;

	font-family: "Light";
	font-size: 40px;
	color: #000000;
	line-height: 50px;

	position: absolute;
	top: 62%;
	left: 34%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*border: 1px solid #FF0000;*/
}

.txt-banner-header-tour p {
    width: 100%;
    height: auto;
    margin: -18px 0px -4px 0px;
    font-family: "Medium";
    font-size: 12px;
    color: #000000;
    letter-spacing: 1px;
    float: left;
    box-sizing: border-box;
    /* border: 1px solid #FF0000; */
}

.cont-tour {
	width: 100%;
    height: auto;
    text-align: center;

    position: relative;
    float: left;
    box-sizing: border-box;
    /*border: 1px solid #000;*/
}

.tit-tour {
	width: 80%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;

    font-family: "Bold";
    font-size: 32px;
    color: #000000;
    text-align: center;
    letter-spacing: 1px;

    position: relative;
    display: inline-block;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/ 
}

.tit-tour p {
	margin-top: 10px;
    position: relative;
    font-family: "Medium";
    font-size: 16px;
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
    /* border: 1px solid #FF0000; */
}

.cont-imgs-tour {
	width: 1010px;
    height: auto;
    margin-bottom: 80px;
	position: relative;
    display: inline-block;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/
}

.imgs-tour-1 {
	width: 58%;
	height: 430px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.imgs-tour-2 {
	width: 42%;
	position: relative;
}

.imgs-tour-3 {
	width: 80%;
	height: 320px;
	margin: 45px 0px 0px 0px;
	left: -130px;
	position: relative;
	float: left;
	box-sizing: border-box;
	display: none;
	/*border: 1px solid #000;*/
}

.txt-imgs-tour {
	width: 395px;
	height: auto;
	padding: 30px 35px 30px 35px;

	font-family: "Light";
    font-size: 22px;
    color: #000000;
    text-align: left;
    letter-spacing: 1px;

	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    background: #f6c245;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.cont-info-tour {
	width: 1010px;
    height: auto;
    margin-bottom: 80px;
	position: relative;
    display: inline-block;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/
}

.menu-info-tour {
	width: 25%;
    height: auto;
	float: left;
    display: inline-block;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/
}

.btn-menu-info-tour {
	width: 100%;
	height: auto;
	margin: 0px 0px 1px 0px;
	padding: 10px 0px 10px 20px;

	font-family: "Medium";
    font-size: 14px;
    color: #000000;
    text-align: left;
    letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	background: #f1f1f1;
	cursor: pointer;
}

.btn-menu-info-tour:hover {
	background: #f6c245;
}

.btn-menu-info-tour-active {
	background: #f6c245;
}

.descripcion-info-tour {
	width: 75%;
    height: auto;
    padding: 0px 0px 0px 40px;

    font-family: "Medium";
    font-size: 14px;
    color: #000000;
    text-align: left;
    letter-spacing: 1px;
    line-height: 23px;

	float: left;
    display: inline-block;
    box-sizing: border-box;
    /*border-left: 1px solid #989898;*/
}

.descripcion-info-tour p {
	margin-top: 0px;
	font-family: "Regular";
    font-size: 14px;
    color: #000000;
    text-align: justify;
    letter-spacing: 1px;
}

.tit-descripcion-info-tour {
	width: 100%;
    height: auto;
    margin-bottom: 20px;

    font-family: "Bold";
    font-size: 16px;
    color: #000000;
    text-align: left;
    letter-spacing: 1px;

	float: left;
    display: inline-block;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/
}

#desc_desktop {
	display: inherit;
}

#desc_movil {
	display: none;
}

.banner-footer-tour {
	width: 100%;
	height: 450px;
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.txt-banner-footer-tour {
	width: 100%;
	height: auto;

	font-family: "Thin";
	font-size: 48px;
	color: #FFFFFF;
	line-height: 50px;

	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*border: 1px solid #FF0000;*/
}

.txt-banner-footer-tour .button_3 {
	padding: 0;
	position: relative;
	display: inline-block;
	bottom: inherit;
    left: inherit;
    transform: inherit;
    -webkit-transform: inherit;
}

/* CONTACTO ----------------------------- */

.cont-contacto {
	width: 100%;
	height: auto;
	padding: 105px 0px 60px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.caja-contacto {
	width: 800px;
	height: auto;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.tit-caja-contacto {
	width: 100%;
	height: auto;
	padding: 0px 12px 0px 12px;
	margin-bottom: 15px;

	font-family: "SemiBold";
	font-size: 28px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.tit-caja-contacto p {
	margin-bottom: 20px;
	font-family: "light";
	font-size: 18px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;
	/*border: 1px solid #FF0000;*/
}

.separador-tit-caja-contacto {
	height: 30px;
	/*border: 1px solid #FF0000;*/
}

.cont-caja-contacto {
	width: 100%;
	height: auto;
	margin-top: 30px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.tit-cont-caja-contacto {
	width: 100%;
	height: auto;
	margin-bottom: 45px;

	font-family: "SemiBold";
	font-size: 22px; 
	color: #000000;
	text-align: center;
	letter-spacing: 1px;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

/* ORDER MP --------------------------- */

.order-mp {
	width: 100%;
	height: 100vh;
	position: fixed;
	box-sizing: border-box;
	z-index: 20;
	background: rgba(0,0,0,.9);
	display: none;
	/*border: 1px solid #FF0000;*/
}

iframe {
	width: 100%;
	max-width: 800px;
	height: 600px;

	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    border: 2px solid #FFF;
    background: #FFF;
}

.status-order {
	width: 100%;
	height: auto;
	margin: 230px 0px 200px 0px;
	padding: 0px 10px 0px 10px;

	font-family: "Light";
	font-size: 18px; 
	color: #333;
	text-align: center;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

/* FOOTER ----------------------------- */

footer {
	width: 100%;
	height: auto;
	padding: 40px 0px 60px 0px;
	text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;
	background: #000000;
}

.caja-footer-1 {
	width: auto;
	height: auto;
	margin-left: 8%;
	text-align: left;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-footer-1 img {
	margin-bottom: 20px;
}

.caja-footer-1 p {
	margin-bottom: 18px;
	font-family: "Light";
	font-size: 12px; 
	color: #FFFFFF;
	letter-spacing: 1px;
}

.caja-footer-2 {
	width: auto;
	height: auto;
	margin-right: 8%;

	position: relative;
	float: right;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-redes-footer-2 {
	width: auto; 
	height: auto;
	margin: 115px 25px 0px 25px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.caja-redes-footer-2 img {
	float: left;
}

.caja-footer-3 {
	width: 100%;
	height: auto;
	margin-top: 50px;

	font-family: "Light";
	font-size: 10px; 
	color: #FFFFFF;
	text-align: center;
	letter-spacing: 1px;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.txt-caja-footer-3 {
	width: auto;
	height: auto;
	margin: 0px 35px 0px 35px;
	position: relative;
	display: inline-block;
	/*border: 1px solid #FF0000;*/
}

/* CAJA FLOTANTE ----------------------- */

#caja-flotante {
	width: 40px;
	height: 40px;
	background: none;
	position: fixed;
	right: 2%;
	bottom: 7%;
	z-index: 15;
}

#caja-flotante img {
	width:100%;
	height: auto;
}

/* DATEPICKER ----------------------- */

div.ui-datepicker{
   font-size:14px;
}