/* Estilos Globales */

html{
    font-family: 'Playlist';
    font-family: 'Roboto', sans-serif;
    
    font-size: 10px;
    
    --azul: #263047;
    --azulClaro: #2EADE4;
    --azulCielo: #2EADE4;
}

/********************
********************
Estilos Globales
********************
********************/

/******************** 
Botón WhatsApp
********************/

#botonWhatsapp{
	position: fixed;
	left: 5vw;
	bottom: 50px;
	z-index: 999;
	padding: 12px 25px 10px 25px;
	border: 1px solid #fff;
	border-radius: 30px;
	font-size: 1.8rem;
	font-weight: 400;
	color: #fff;
	background-color: #23D366;
	transition: all 0.3s ease;
}

#botonWhatsapp i{
	position: relative;
	top: 1px;
	margin-right: 5px;
	font-size: 2.2rem;
}

#botonWhatsapp:hover{
	background-color: var(--azul);
}

/******************** 
Aviso Legal
********************/

#aviso{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
	width: 100vw;
	background-color: var(--azulClaro);
	color: #fff;
	padding: 25px 5vw;
	box-sizing: border-box;
}

#aviso a{
    cursor: pointer;
	position: absolute;
	top: 25px;
	right: 5vw;
	font-size: 1.4rem;
	color: #fff;
}

#aviso a i{
	position: relative;
	top: 1px;
	font-size: 1.5rem;
}

/******************** 
Estilos Globales - Colores
********************/

.blanco{
    color: #fff;
}

.azul{
    color: var(--azul);
}

.azulClaro{
    color: var(--azulClaro);
}

.fondoBlanco{
    background-color: #fff;
}

.fondoAzul{
    background-color: var(--azul);
}

.fondoAzulClaro{
    background-color: var(--azulClaro);
}

.mitadAzulBlanco{
    background: linear-gradient(to bottom, var(--azul) 50%, #fff 50%);
}

.mitadBlancoAzul{
    background: linear-gradient(to bottom, #fff 50%, var(--azul) 50%);
}

.fondoBlanco70Azul30{
    background: linear-gradient(to bottom, #fff 75%, var(--azul) 25%);
}

.fondoAzul30Blanco30{
background: linear-gradient(to bottom, var(--azul) 30%, #fff 30%);
    }

.degradadoAzul{
    background: linear-gradient(to top, #2EADE4 0%, rgba(39, 47, 73, 0) 100%);    
}

.oculto{
    display: none;
}

/******************** 
Estilos Globales - Textos
********************/

h1{
    font-size: 9rem;
    line-height: 9rem;
    font-weight: 900;
}

h2{
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

h3{
    font-family: 'Playlist';
    font-size: 12rem;
    letter-spacing: 1px;
}

h4{
    font-size: 4rem;
    font-weight: 700;
}

h5{
    font-size: 2.6rem;
    line-height: 2.9rem;
    font-weight: 700;
}

h6{
    font-size: 2.2rem;
	line-height: 3rem;
    font-weight: 300;
}

p{
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 300;
}

.bold{
	font-weight: 600;
}

b{
    font-weight: 700;
    letter-spacing: 0.3px;
}

sup{
    vertical-align: super;
    font-size: 1.2rem;
}

.textoCentro{
    text-align: center;
}

.textoIzquierda{
    text-align: left;
}

.textoDerecha{
    text-align: right;
}

/******************** 
Estilos Globales - Retícula
********************/

.flex{
    display: flex;
    flex-wrap: wrap;
}

.between{
    justify-content: space-between;
}

.around{
    justify-content: space-around;
}

.center{
    justify-content: center;
}

.alignCenter{
    align-items: center;
}

.contentCenter{
    align-content: center;
}

.contentBetween{
    align-content: space-between;
}

.contentStart{
    align-content: flex-start;
}

.anchoMax{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.ancho100{
    width: 100%;
}

.ancho100 img{
    width: 100%;
}

.ancho80{
    width: 80%;
}

.ancho75{
    width: 75%;
}

.ancho70{
    width: 70%;
}

.ancho65{
    width: 65%;
}

.ancho60{
    width: 60%;
}

.ancho50{
    width: 50%;
}

.ancho45{
    width: 45%;
}

.ancho45 img{
    width: 100%;
}

.ancho40{
    width: 40%;
}

.ancho35{
    width: 35%;
}

.ancho30{
    width: 30%;
}

.ancho25{
    width: 25%;
}

.fotoCover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************** 
Estilos Globales - Padding & Margin
********************/

.paddingHorizontal{
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
}

.paddingVertical{
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.margenArriba{
    margin-top: 50px;
}

.margenAbajo{
    margin-bottom: 50px;
}

.margenAuto{
    margin-left: auto;
    margin-right: auto;
}

/******************** 
Estilos Globales - Botones
********************/

.boton{
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: 1px;
    padding: 10px 28px;
    box-sizing: border-box;
	overflow: hidden;
	transition: all 0.5s ease;
}

.boton i{
	position: relative;
    font-size: 1.8rem;
	margin: 0 0 0 10px;
	transform: translate(0, 0);
}

.animarBoton{
	padding: 10px 0px 10px 56px;
}

.animarBoton i{	
	animation: moverIcono 0.5s linear 0s 1 normal forwards;
	animation-timing-function: ease-in-out;
}

@keyframes moverIcono{
	0%{
		left: 0;
	}
	50%{
		left: 100px;
	}
	51%{
		left: -200px;
	}
	100%{
		left: calc(-100% - 10px);
	}
}

.animarSalida i{
	animation: salidaIcono 0.3s linear 0s 1 normal forwards;
	animation-timing-function: ease-in-out;
}

@keyframes salidaIcono{
	0%{
		left: -115%;
	}
	50%{
		left: -200px;
	}
	51%{
		left: 100px;
	}
	100%{
		left: 0;
	}
}

.botonGrande{
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 1.6rem;
	letter-spacing: 1px;
    padding: 15px 25px;
	box-sizing: border-box;
    line-height: 1.8rem;
}

.botonGrande p{
    font-size: 2rem;
    font-weight: 300;
}

.botonGrande p span{
    font-size: 1.4rem;
    font-weight: 100;
}

.botonGrande i{
    font-size: 1.6rem;
    margin: 0 0 0 25px;
}

.botonBlanco{
    color: #fff;
    border: 1px solid #fff;
}

.botonAzul{
    color: var(--azul);
    border: 1px solid var(--azul);
}

/******************** 
Estilos Globales - Cabeceras
********************/

.cabecera{
    width: 100%;
    height: 100vh;
    max-height: 900px;
    background-size: cover;
}

/******************** 
Estilos Globales - Titulo Sección
********************/

.tituloSeccion{
    margin: 0 auto;
    padding: 5% 0;
    box-sizing: border-box;
    position: relative;
    text-align: center;
}

.tituloSeccion h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-25%);
}

.tituloSeccion h3{    
    opacity: 0.2;
}

.tituloSeccion h3 i{
    font-size: 7.5rem;
    height: 20px;
}

.icono-sup{
    vertical-align: super;
}

.icono-sub{
    vertical-align: middle;
}

#textoComplementario {
    text-align: center;
}

/******************** 
MENÚ - Estilos Menú
********************/

#menu{
	opacity: 0;
	
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#menu > div{
    width: 50%;
    height: 100%;
}

#menuItems{
    clip-path: inset(100% 0px 0px 0px);
}

#menu div ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    text-align: center;
    width: 100%;
    height: 100%;    
    padding: 20vh 5vw;
    box-sizing: border-box;
}

#menu div ul li{
    width: 100%;    
}

#menu div ul li a{
    position: relative;
    color: #fff;
    font-size: 4.8rem;
    font-weight: 300;
}

#menu div ul li a span{
    vertical-align: super;
    font-size: 1.2rem;
    font-weight: 100;
    opacity: 0.5;
}

#menu div ul li a::after {
    content: '';
    width: 0%;
    top: 58%;
    height: 6px;
    background: var(--azulClaro);
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.2s ease;
}

#menu div ul li a:hover:after {
    opacity: 1;
    width: 90%;
}

#cuadriculaMenu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100vh;
}

#cuadriculaMenu a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50%;
    color: #fff;
    overflow: hidden;
}

.fullImagen img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    transform: scale(1);
    transition: all 0.5s ease;
}

#cuadriculaMenu .fullImagen:hover  img{
    transform: scale(1.1);
}

#planesCuadriculaMenu{
    clip-path: inset(100% 0px 0px 0px);
}

#logoCuadriculaMenu{
    background-color: var(--azulClaro);
    clip-path: inset(0px 0px 0px 0px);
}

#logoCuadriculaMenu img{
    width: 25%;
    height: 100%;
}

#cuadriculaMenu a div{
    position: relative;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(72, 113, 179, 0.6);    
    transition: all 0.2s ease;
}

#cuadriculaMenu a:hover div{
	background-color: rgba(72, 113, 179, 0.85);  
}

#cuadriculaMenu a p{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 4.8rem;
    font-weight: 300;
    opacity: 1;
    transition: all 0.2s ease;
}

#cuadriculaMenu a:hover p{
    opacity: 1;
    top: 52%;
}

/******************** 
Menú - Header Estático
********************/

#menuHeader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 5vw;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menuHeader a:first-child{
    width: 15%;
}

#menuHeader img{
    width: 100%;
	max-width: 220px;
    max-height: 75px;
    object-fit: contain;
}

#menuHeaderItems{
    width: 40%;
}

#menuHeaderItems ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    width: 100%;

}

#menuHeaderItems ul li a{
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
}

#iconoHamburguesa{
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}

#iconoCerrarMenu{
    position: fixed;
    top: 2.5vh;
    right: 5vw;
    z-index: 999;
    font-size: 3.6rem;
    color: #fff;
    opacity: 0;
    cursor: pointer;
}

/******************** 
Footer - Estilos Pie de Página
********************/

#contenidoFooter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5vh 0vw 5vh 0vw;
    box-sizing: border-box;
}

#logoFooter{
    width: 5%;
}

#logoFooter img{
    width: 100%;
    height: 100%;
}

#textoFooter{
    width: 90%;
}

#menuFooter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#menuFooter nav{
    width: 60%;
}

#menuFooter nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#menuFooter nav ul li a{
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
}

#redesFooter{
    display: flex;
    justify-content: flex-end;
    width: 20%;
}

#redesFooter a{
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 0 30px;
}

#copyFooter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 2.5% 0 0 0;
    font-size: 1.2rem;
    font-weight: 300;
}

#autorFooter{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5vh 5vw;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: 100;
}

#autorFooter a{
    font-weight: 300;
    color: var(--azul);
}

#autorFooter img{
    height: 25px;
    margin: 0 0 0 10px;
}

#popup{
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 3vw;
    max-width: 320px;
    background-color: var(--azulCielo);
    color: #fff;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.25);
    border-radius: 10px;
}

#popup span{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 2.4rem;
    cursor: pointer;
}

#popup p{
    margin: 10px 0;
}

#popup form input{
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    padding: 5px;
    box-sizing: border-box;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
}

#popup form input::placeholder{
    color: #fff;
    font-size: 15px;
    font-weight: 300
}

#popup form button{
    background: none;
    margin-top: 10px;
}

#popup > img{
    width: 100%;
}

#popup > div{
    width: 100%;
    padding: 15px 15px 20px 15px;
    box-sizing: border-box;
}

@media (max-width: 700px){
    #popup{
        bottom: 30px;
        right: 5vw;
        max-width: 260px;
    }

    #popup form input{
        font-size: 14px;
        margin-bottom: 10px;
    }

    #popup > div{
        padding: 10px 10px 15px 10px;
    }
}

/**************************************** 
**************************************** 
HOME - ESTILOS
****************************************
****************************************/

/******************** 
HOME - Cabecera Home
********************/

#banner_home{
    background-color: var(--azul);
    padding-bottom: 100px;
}

#slider_banner_home{
    background-color: var(--azul);
    max-width: 950px;
    margin: 0 auto;
}

#slider_banner_home .flickity-page-dots{
    bottom: 35px;
}

#slider_banner_home .carousel-cell{
    height: auto;
}

#slider_banner_home .flickity-button{
    background: none;
    color: #fff;
}

#slider_banner_home .flickity-prev-next-button.previous{
    left: -75px;
}

#slider_banner_home .flickity-prev-next-button.next{
    right: -75px;
}

#slider_banner_home .carousel-cell img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
}

#cabeceraHome{
    position: relative;
    padding: 20vh 0 5vh 0;
    box-sizing: border-box;
    background-image: url(../img/bg_home02.jpg);
	background-size: cover;
    background-position: top left;
}

#tortugaHome{
	position: absolute;
	z-index: 10;
	top: 30% !important;
	right: 11%;
	width: 45%;
}

@media (min-width: 2000px){
	#tortugaHome{
		top: 15% !important;
		right: 20%;
	}
}

#cifrasCabecera{
    width: 70vw;
    height: 65px;
}

#cifrasCabecera div{
    margin: 0 3% 0 0;
}

#cifrasCabecera div p{
    font-size: 2.2rem;
    letter-spacing: 1.2px;
}

.separadorVertical{
    width: 2px;
    height: 100%;
}

#cabeceraHome h1{
    position: relative;
    z-index: 5;
    width: 70vw;
    font-size: 8rem;
    line-height: 8rem;
}

#botonesCabecera{
    position: relative;
    z-index: 2;
    margin: 10% 0 0 0;
}

#redesCabecera{
    width: 15vw;
    font-size: 3rem;
}

#redesCabecera a{
    color: #fff;
    width: 100%;
}

#redesCabecera a:first-child{
    margin: 0 0 20px 0;
}

#buscarCabecera{
    width: 70vw;
}

#buscarCabecera a{
    width: 40%;
}

#cabeceraHome .degradadoAzul{
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 50vh;
}

/******************** 
HOME - Slider Planes
********************/

#sliderPlanes{
    padding: 0 2%;
    box-sizing: border-box;
}

#sliderPlanes .carousel-cell {
    width: 26%;
    margin: 0 3.66%;
}

.sliderPlan{
    display: block;
    width: 100%;
    height: 275px;
    margin: 0 auto 10% auto;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.sliderPlan .fotoPlanSlider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.sliderPlan .fotoPlanSlider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sliderPlan .degradadoAzul{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.75;
    border-radius: 10px;
}

.sliderPlan h5, .sliderPlan h6{
    top: 0;
    position: relative;
    width: 100%;
    transition: all 0.2s ease;
}

.sliderPlan h6{
    font-size: 2.2rem;
    font-weight: 100;
}

.sliderPlan .infoPlanSlider,
.sliderPlan .infoPlanHover{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10% 5%;
    box-sizing: border-box;
    border-radius: 10px;
}

.sliderPlan .infoPlanSlider{
    align-content: flex-end;
    align-items: flex-end;
}

.sliderPlan .infoPlanHover{
    top: 100%;    
    z-index: 10;   
    opacity: 0;
    align-content: center;
    align-items: center;    
    background-color: rgba(46, 173, 228, 0.7);

    transition: all 0.3s ease;
}

.sliderPlan .infoPlanHover p{
    width: 100%;
    margin: 10% 0 10% 0;
}

.sliderPlan:hover .infoPlanSlider h5,
.sliderPlan:hover .infoPlanSlider h6{
    top: 130px;
}

.sliderPlan:hover .infoPlanHover{
    top: 0;
    opacity: 1;
}

.insigniaMasBuscado {
    position: absolute;
    top: 10px;
    left: 10px;
    /* background: var(--azul); */

    background: linear-gradient(45deg, #ce9f4f 0%, #e8cc6f 38%, #ffe289 56%, #e1bd7a 80%, #ce9c47 95%);

    color: #000;
    padding: 5px 4px;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 999;
}

.insigniaMasBuscado span{
    display: block;
    padding: 5px 0px;
    margin-top: 5px;
    font-weight: 400;
    font-size: 1rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

/******************** 
HOME - Nosotros - Quiénes somos
********************/

#nosotrosHome iframe{
    height: 720px;
}

#textoNosotros {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

}

#textoNosotros p{
    text-align: center;
    width: 50%;
}

/******************** 
HOME - Slider Hoteles
********************/

#sliderHoteles{
    background: linear-gradient(to bottom, var(--azul) 50%, #fff 50%);
}

#sliderHoteles .carousel-cell {
    width: 20%;
    margin: 0 2.5%;
    border-radius: 10px;
}

.sliderHotel{
    display: block;
    width: 100%;
    height: 350px;
    margin: 0 auto 10% auto;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.sliderHotel .fotoHotelSlider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.sliderHotel .fotoHotelSlider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sliderHotel .degradadoAzul{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.75;
    border-radius: 10px;
}

.sliderHotel h5 {
    
    position: absolute;
    bottom: 0;
    padding: 0 0 8% 0;
    width: 100%;
}

.sliderHotel .infoHotelSlider{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10% 5%;
    box-sizing: border-box;
    border-radius: 10px;
}

.sliderHotel .infoHotelSlider{
    align-content: flex-end;
    align-items: flex-end;
}

.sliderHotel .infoHotelSlider,
.sliderHotel .infoHotelHover{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10% 5%;
    box-sizing: border-box;
}

.sliderHotel .infoHotelSlider{
    align-content: flex-end;
    align-items: flex-end;
}

.sliderHotel .infoHotelHover{
    top: 100%;    
    z-index: 10;   
    opacity: 0;
    align-content: center;
    align-items: center;    
    background-color: rgba(72, 113, 179, 0.7);
    transition: all 0.3s ease;
}

.sliderHotel .infoHotelHover p{
    width: 100%;
    margin: 10% 0 10% 0;
}

/***** Animación de salida de la ciudad y el nombre del plan *****/

.sliderHotel:hover .infoHotelSlider h5{
    top: 400px;
}

.sliderHotel:hover .infoHotelHover h5{
    top: 100px;
}

/***** Animación de entrada del cuadro azul con más información y boton - Ver Más + - *****/

.sliderHotel:hover .infoHotelHover{
    top: 0;
    opacity: 1;
}

/******************** 
HOME - Slider Blog
********************/

#sliderBlogs{
    width: 100%;
}

#sliderBlogs .carousel-cell {
   width: 100%; /* full width */
  margin-right: 10px;
}

.sliderBlog{
    display: flex;
    justify-content:space-around;
    
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.sliderBlog .fotoBlogSlider{
    width: 50%;
}

.sliderBlog .fotoBlogSlider img{
    width: 100%;
}

.sliderBlog h6{
    width: 100%;
    margin: 0 0 8% 0;
    font-size: 2.5rem; 
    font-weight: 300;
}

/******************** 
HOME - Formulario contacto
********************/

.formularioHome{
    width: 100%;
	padding-bottom: 5%;
}

.formularioHome form{
    width: 80%;
    margin: 5% auto 0 auto;
}

.formulario{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.formulario .ancho45:last-child{
    margin: 10% 0 0 0 ;
}

.formulario textarea{
    height: 100%;
    font-size: 1.4rem;
}

.formulario div div{
    margin-bottom: 30px;
}

.formulario div input, .formulario div label, .formulario div textarea{
    display: block;
    width: 100%;
    background: none;
    font-size: 1.4rem;
    border: none;
    box-sizing: border-box;
    font-weight: 300;
}

.formulario div label{
    margin-bottom: 5px;
    padding-left: 6px;
}

.formulario div input, .formulario div textarea{
    font-family: 'Roboto', sans-serif;
    padding: 8px 6px;
    border-bottom: 1px solid #fff;
}

.formulario input::placeholder, .formulario textarea::placeholder{
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.3;
}

input[type="date"]{
    font-family: 'Roboto', sans-serif;
}

.formulario button{
    display: block;
    background: none;
    margin: 0 auto;
}

/**************************************** 
**************************************** 
NOSOTROS - ESTILOS
****************************************
****************************************/

/******************** 
NOSOTROS - Cabecera Nosotros
********************/

#cabeceraSeccionNosotros{
    height: 100vh;
    width: 100%;
    
    padding: 40vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/divididas/01capados.jpg);
    background-size: cover;
    background-position: top right;
}


#cabeceraSeccionNosotros h1{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/******************** 
NOSOTROS - Texto Introducción
********************/

#textoSeccionNosotros {
    display:flex;
	flex-wrap: wrap;
    justify-content:space-around;
    align-items: center;
    align-content: center;
}

#textoSeccionNosotros p{
    text-align: left;
    width: 40%;
}

#textoSeccionNosotros img {
    width: 20%;
}

#videoSeccionNosotros{
	display:flex; 
	flex-wrap: wrap;
	width: 100%;
}

#dosBotonesFila {
	display: flex;
	flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: space-around;
    width: 40%;
}

#videoNosotros {
    width: 60%;
	height: 500px;
}

/******************** 
NOSOTROS - Plan de Ahorro
********************/

#planAhorro {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 20% 5vw 0 5vw;
}

#planAhorro img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#planAhorro > h4 {
    position: relative;
    z-index: 500;
    padding: 1.5%;
	box-sizing: border-box;
    border: 1px solid var(--azul);
}

#tarjetas {
	position: relative;
    top: -50%;
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    overflow: visible;
}

.tarjeta {
    transform: translate(0%, 50%);
    width: 30%;
    max-width: 400px;
    background-color: white;
    padding: 2% 3%;
}

.tarjeta a{
    margin-top: 15%;
}

#buscarNosotros{
    display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-top: 250px;
    padding-bottom: 5%
}

/**************************************** 
**************************************** 
PLANES - ESTILOS
****************************************
****************************************/

/******************** 
PLAN - Cabecera Planes
********************/

.cabeceraPlan{
    position: relative;
    height: 92vh;
    width: 100%;
    padding: 22vh 0 5vh 0;
    box-sizing: border-box;
}

.cabeceraPlan .portadaPlan{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#negroPortada{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}

.nombrePlan{
    position: relative;
    z-index: 1;
}

.nombrePlan h1{
    width: 100%;
}

.barraInfoPlan{
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 4;
    padding: 2% 5%;
    box-sizing: border-box;
    background-color: rgba(39, 47, 73, 0.85);;
}

.item{
    letter-spacing: 1px;
    padding: 10px 5px;
    box-sizing: border-box; 
}

.item i{
    font-size: 1.7rem;
    margin: 0 8px 0 0;
}

/*************** 
PLANES - Cuadrícula Lugares Turistícos
***************/

.cuadriculaFotos{
    position: relative;
    color: #fff;
}

.fotoCuadricula{
    position: relative;
    overflow: hidden;
}

.fotoCuadricula img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fotoCuadricula div{
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2; 
    width: 100%;
    height: 100%;
    background-color: rgba(72, 113, 179, 0.7);
    opacity: 0;
    padding: 10% 5%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.fotoCuadricula div h4 {
    width: 100%;
    margin: 0 0 3% 0;
}

.fotoCuadricula:hover div{
    top: 0;
    opacity: 1;
}

/*************** 
PLANES - Descripción del plan
***************/

#tarjetaDescripcionPlan{
    padding-right: 5vw;
}

#tarjetaDescripcionPlan .imagenPlan img{
    width:  100%;
    height: 100%;
    object-fit: cover;
}

.descripcionPlan {
    padding: 5% 25px 5% 50px;
    box-sizing: border-box;
    max-width: 750px;
    margin-left: auto;
}

.imagenPlan{
    max-width: 550px;
    margin-right: auto;
    
}

.texto90grados {
    position: relative;
}

.texto90grados .tiempoEstadia{
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: top left;
}

.texto90grados .temporada{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom left; 
}

.texto90grados .tiempoEstadia h2{
    font-size: 3.2rem;
}

.temporada i{
    font-size: 1.4rem;
    margin: 0 2% 0 0;
    color: #f4d600;
}

.textoDescripcionPlan{
    max-width: 530px;
}

.listadoDescripcion{
    width: 100%;
}

.listadoDescripcion ul li {
    width: 100%;
    display: flex;
    margin: 3% 0;
}

.listadoDescripcion ul li i{
    position: relative;
    top: 3px;
    width: 5%;
    margin-right: 3%;
    font-size: 1.5rem;
}

.listadoDescripcion ul li p{
    width: 92%;
}

.precioBoton .botonImpuestos a{
    margin-top: 12px;
}

.precio h6{
    width: 100%;
}



#otros_planes{
    width: 100%;
    padding: 0 0 100px 0;
    box-sizing: border-box;
}

#slider_otros_planes{
    max-width: min(1100px, 90vw);
    margin: 0 auto;
}

#slider_otros_planes .carousel-cell{
    width: 25%;
    margin: 0 4.165%;
    min-height: 400px;
    padding: 50px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    top: 0;
    transition: top ease 0.3s;
}

#slider_otros_planes .carousel-cell:hover{
    top: 5px;
}

#slider_otros_planes .carousel-cell:hover .info_plan{
    transform: translateY(-30px);
}

#slider_otros_planes .carousel-cell .degradadoAzul{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

#slider_otros_planes .carousel-cell img{
    width: 100%;
}

#slider_otros_planes .carousel-cell .info_plan{
    color: #fff;
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: all ease 0.3s;
}

#slider_otros_planes .flickity-button{
    background: none;
    color: #fff;
}

#slider_otros_planes .flickity-prev-next-button.next{
    right: -80px;
}

#slider_otros_planes .flickity-prev-next-button.previous{
    left: -80px;
}

@media (max-width: 700px){
    #slider_otros_planes .carousel-cell{
        width: 60%;
        margin: 0 5%;
    }

    #slider_otros_planes .flickity-prev-next-button.next{
        right: 10px;
    }
    
    #slider_otros_planes .flickity-prev-next-button.previous{
        left: 10px;
    }
    
}

/*************** 
PLANES - Formulario de reserva
***************/

.formularioReservaPlan {
    background-image: url(../img/planes/fondoReserva.png); 
    background-size: cover;
    background-position: top center;
}

.datosReserva img {
    width: 50%;
}

.datosReserva p{
    padding:  5%;
    box-sizing: border-box; 
}

/*************** 
PLANES - Términos & Condiciones
***************/

/* .terminosCondiciones{
} */

/**************************************** 
**************************************** 
HOTELES - ESTILOS
****************************************
****************************************/

#cabeceraAruba{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/aruba02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraAcapulco{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/acapulco02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraAmazona{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/amazonas02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraArmenia{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/armenia01.jpg);
    background-size: cover;
    background-position: top right;
}

#cabeceraCancun{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/cancun04.jpg);
    background-size: cover;
    background-position: bottom right;
}

#cabeceraCartagena{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/cartagena01.jpg);
    background-size: cover;
    background-position: top right;
}

#cabeceraHabana{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/habana02.jpg);
    background-size: cover;
    background-position: bottom right;
}

#cabeceraMexico{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/mexico02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraPanama{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/panama02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraPuntaCana{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/puntaCana03.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraSanAndres{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/sanAndres02.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraSantaMarta{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/santaMarta05.jpg);
    background-size: cover;
    background-position: center right;
}

#cabeceraVaradero{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    height: 60vh;
    width: 100%;
    padding: 10vh 0 5vh 0;
    box-sizing: border-box;
    
    background-image: url(../img/ciudades/varadero01.jpg);
    background-size: cover;
    background-position: center right;
}

.cajaHotel{
    display:flex;
	flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
    align-content: center; 
	width: 100%;
}

.imagenHotel{
	position: relative;
    width: 25%;
    height: 350px;
}

.imagenHotel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagenHotel h5{
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
	width: 100%;
    padding: 0% 5% 5% 5%;
    box-sizing: border-box;
    text-align: center;
}

.imagenHotel .degradadoAzul {
    position: absolute;
    z-index: 50;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.8;
}

.descripcionHotel{
    width: 30%;
}

.descripcionHotel ul li {
	display: flex;
    width: 100%;
    margin: 3% 0;
}

.descripcionHotel ul li i {
    width: 25px;
    height: 25px;
    text-align: center;
    align-content: center;
    font-size: 2rem;
    margin: 0 4% 0 0;
}

.botonHotel{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 20%;
}

.botonHotel > i {
    font-size: 7rem;
    opacity: 0.5;
}

.botonHotel .calificacionEstrellas{
    width: 100%;
    font-size: 2rem;
    margin: 0 0 10% 0;
}

.botonHotel .calificacionEstrellas i{
	margin: 0 5% 0 0;
}

.botonHotel > a img{
    display: none;
}



/*************** 
DESTINOS - Cuadrícula Lugares Turistícos
***************/

.cuadriculaFotosDestinos{
    position: relative;
    color: #fff;
}

.fotoCuadriculaDestino{
    position: relative;
    overflow: hidden;
    
}

.fotoCuadriculaDestino img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fotoCuadriculaDestino div{
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2; 
    width: 100%;
    height: 100%;
    background-color: rgba(72, 113, 179, 0.7);
    opacity: 0;
    padding: 10% 5%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.fotoCuadriculaDestino div h4 {
    width: 100%;
    margin: 0 0 3% 0;
}

.fotoCuadriculaDestino:hover div{
    top: 0;
    opacity: 1;
}




/**************************************** 
**************************************** 
BLOG - ESTILOS
****************************************
****************************************/

#cabeceraBlogs{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 10vh 0 10vh 0;
    box-sizing: border-box;
    background-image: url(../img/divididas/02capados.jpg);
    background-size: cover;
    background-position: top right;
}

.cajaBlog{
    display: flex;
	flex-wrap: wrap;
    justify-content:space-between;
    width: 100%;
	margin: 0 0 5% 0;
    text-align: center;
}

.cajaBlog .fotoBlog{
    display: flex;
    align-items: center;
    justify-content: center;
	width: 50%;
}

.cajaBlog .fotoBlog img{
	width: 80%;
}

.reves{
    flex-direction: row-reverse;
}

.infoHotel{
    width: 50%;
    padding: 5% 8%;
    box-sizing: border-box;    
}

.infoHotel p {
	margin: 5% 0 10% 0;
    text-align: left;
}

.infoHotel h6{
    margin: 0 0 5% 0;
}

/**************************************** 
**************************************** 
ARTÍCULO DEL BLOG - ESTILOS
****************************************
****************************************/

.portadaArticulo{
	position: relative;
	width: 100%;
	height: 50vh;
}

.portadaArticulo img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portadaArticulo h3{
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
	width: 80%;
    text-align: center;
    font-size: 6rem;
}

.portadaArticulo .degradadoAzul{
	position: absolute;
	bottom: 0;
	left: 0;
    z-index: 2;
	width: 100%;
	height: 40vh;
	opacity: 0.75;
}

.info_articulo{
    padding: 20px;
    box-sizing: border-box;
}

.info_articulo h5{
    margin-bottom: 20px;
}

.info_articulo p{
    margin-bottom: 10px;
}

.seccionBlog{
	display: flex;
	flex-wrap: wrap;
    justify-content:space-between;
	align-items: flex-start;
}

.resaltado{
	display: inline-block;
	margin: 0 0 10% 0;
	padding: 5px 20px;
	background-color: var(--azul);
}

.seccionBlog h5{
    margin: 0 0 4% 0;
}

.seccionBlog div > div {
    display: flex;
	flex-wrap: wrap;
    justify-content:space-between;
    margin: 0 0 5% 0;
}

hr{
	height: 2px;
	background-color: var(--azul);
	border: none;
	margin: 0 0 5% 0;
}

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

#paginaContacto {    
    background-image: url(../img/mapaGrandeContacto.png);
    background-size: contain;
	background-repeat: no-repeat;
    background-position: center;
}

#cabeceraContacto{
    padding: 10vh 0 0 0;
}

#redesContacto{
    display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
	margin: 5% 0 0 0;
    padding: 0 0 10% 0;
}

#mapa{
	width: 60%;
	height: 50vh;
}

#mapa2{
	width: 60%;
	height: 50vh;
}

.mapaDireccion {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.mapaDireccion ul{
    margin: 0 10%;
}

.mapaDireccion ul li {
	display: flex;
    width: 100%;
    margin: 5% 0; 
}

.mapaDireccion ul li i {
    width: 20px;
    height: 20px;
	margin: 0 5% 0 0;
	font-size: 1.8rem;
    text-align: center;
}



/******************** 
HOTELES - Slider Hoteles
********************/

/******************** 
HOME - Slider Hoteles
********************/

/* #hotelesSlider{
} */

#hotelesSlider .carousel-cell {
    width: 20%;
    height: 100vh;
}

.hotel{
    display: block;
    width: 100%;
    height: 100vh;
    margin: 0 auto 10% auto;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hotel .foto{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotel .foto img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel .degradadoAzul{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.75;
}

.hotel h4 {
    position: absolute;
    bottom: 0;
    padding: 0 0 35% 0;
    width: 100%;
}

.hotel .informacion{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10% 5%;
    box-sizing: border-box;
}

.hotel .informacion,
.hotel .infoHover{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;  
}


.hotel .infoHover{
    top: 100%;    
    z-index: 10;   
    opacity: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;    
    background-color: rgba(72, 113, 179, 0.7);
    transition: all 0.3s ease;
}

.hotel .infoHover h4{
    width: 100%;
    margin: 5% 0 10% 0;
}

.hotel .infoHover p{
    width: 100%;
    margin: 5% 0 10% 0;
}

/***** Animación de salida de la ciudad y el nombre del plan *****/

.hotel:hover .informacion h4{
    top: 1000px;
}

.hotel:hover .infoHover h4{
    top: 100px;
}

/***** Animación de entrada del cuadro azul con más información y boton - Ver Más + - *****/

.hotel:hover .infoHover{
    top: 0;
    opacity: 1;
}


/******************** 
ENVIO - Cabecera Envio formularios
********************/

#cabeceraSeccionEnvio{
    height: 75vh;
    width: 100%;
    
    padding: 30vh 10vw;
    box-sizing: border-box;
    background-image: url(../img/envioFormulario.jpg);
    background-size: cover;
    background-position: center right;
    
    position: relative;
    z-index: 1;
}

#cabeceraSeccionEnvio h1{
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 2%;
    text-align: center;
    position: relative;
    z-index: 3;
}

#cabeceraSeccionEnvio p{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 4;
	margin: 3% 0 0 0;
	font-size: 3rem;
	line-height: 4rem;
}


#cabeceraSeccionEnvio .degradadoAzul{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 75vh;
}




#botonReservar{
	cursor: pointer;
}

#popUpPago{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100vw;
}

#popUpPago > div{
	background-color: #fff;
}

.condicionesPago{
	margin-bottom: 20px;
	font-size: 1.2rem;
	line-height: 1.5rem;
}

#labelTerminos{
	font-size: 1.5rem;
	margin-left: 5px;
	margin-bottom: 25px;
}

.tituloPago{
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 25px;
}

#totalPagar{
	width: 100vw;
	font-size: 1.6rem;
	text-align: center;
}

#galeriaLogistica > div{
    width: 24%;
    margin-bottom: 20px;
}

#galeriaLogistica > div img{
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

#logos_clientes img{
    height: 100px;
    width: 150px;
    object-fit: contain;
    margin: 15px 30px;
}