* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.cabecera {
	background-color: rgb(255,255,255);
	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas: 
		"head-1 head-2";
}

.head-1 {
	grid-area: head-1;
	height: auto;
}

.head-2 {
	grid-area: head-2;
	height: auto;
    margin: 6px;

	display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*---- ESTILOS ----*/
.cabecera .head-1 .logo {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin-left: 20px;
}

.cabecera .head-1 .logo img {
	width: 300px;
	height: 100%;
	border-radius: 2px;
}

.cabecera .head-2 .emergencias {
	display: flex;
	justify-content: space-between;
}

.cabecera .head-2 .emergencias .fa-headset {
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 40px;
	margin: 12px 15px 12px 0;
	color: #050829;
	transition: .6s;
}

.cabecera .head-2 .emergencias .asistencias a {
	color: #050829;
	font-size: 14px;
    transition: .8s ease;
    font-family: 'Patrick Hand', cursive;
}

.cabecera .head-2 .emergencias .asistencias  a:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.cabecera .head-2 .acceso,
.cabecera .head-2 .bandera,
.cabecera .head-2 .membresia {
	margin-right: 15px;
}

.head-2 .acceso .blog {
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-2 .acceso .blog img {
    width: 20px;
}
.head-2 .acceso .blog a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.head-2 .acceso .blog a:hover {
    text-decoration: underline;
}
    /*----bandera------*/
.cabecera .head-2 .bandera {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .bandera img {
    width: 30px;
}
.cabecera .head-2 .bandera a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .bandera a:hover {
    text-decoration: underline;
}

    /*----MEMBRESIA------*/
.cabecera .head-2 .membresia {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .membresia img {
    width: 25px;
}
.cabecera .head-2 .membresia a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .membresia a:hover {
    text-decoration: underline;
}


.cabecera .head-2 .ico {
    padding: 10px;
    color: #050829;
    transition: .8s ease;
    border-radius: 4px;
}
.cabecera .head-2 .ico:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (max-width: 650px){
    .cabecera {
        grid-template-areas: 
        	"head-1 head-1"
        	"head-2 head-2";
    }

    .cabecera .head-1 .logo {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		margin-left: 0;
		margin: 0 5px;
	}

	.cabecera .head-1 .logo img {
		width: 100%;
		height: 100%;
		margin: 2px; 	
	}

	.cabecera .head-2 {
		display: flex;
		justify-content: space-around;
		margin: 5px;
		margin-right: 65px;
	}
      
}

@media screen and (max-width: 410px){
	.cabecera .head-2 {
		flex-wrap: nowrap;
	}
    .head-2 .acceso .blog a,
    .cabecera .head-2 .bandera a,
    .cabecera .head-2 .membresia a {
       font-size: 14px; 
    }
      
}
/*------ FIN HEADER ---- ---- ---- ----*/

/*---- ----- --- NAV ---- ---- ---- ---*/
.menu-boton {
	display: none;
}
.sidenav a{
	display: none;
}

.navegador {
	background-color: rgb(5,26,58);

	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas:
		"home navegacion";
}

.navegador .home {
	grid-area: home;
	height: 50px;
}

.navegador .navegacion {
	grid-area: navegacion;
	height: 50px;
}

.navegador .home {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;  
    
    margin-left: 40px;
}
.navegador .home a {
	color: #fff;
	padding: 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .6s ease;
}

.navegador .home a:hover {
    color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.navegador .navegacion {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.navegador .navegacion a {
	color: #fff;
	padding: 12px 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .5s ease;
}
.navegador .navegacion a:hover {
	color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

@media screen and (max-width: 650px){
	.navegador {
		display: none;
	}
    .menu-boton {
        display: inline-block;
        position: absolute;
        right: 0;
        padding: 8px;
        margin-right: 2px;
        margin-top: -40px;
        font-size: 20px;
        background-color: rgb(5,26,58,.88);
        color: #fff;
        font-family: 'Yanone Kaffeesatz', sans-serif;
        border-radius: 2px;
    }
.sidenav {
    width: 0;
    position: fixed;
    z-index: 1000;  
    top: 100px;
    right: 0;
    padding: 10px 0;
    background-color: #4091ec;
    overflow-x: hidden;
    transition: 0.7s;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
	}

.sidenav a {
    padding-left: 20px;
    font-size: 22px;
   	padding: 5px;
    color: #fff;
    display: block;
    transition: 0.3s;
	}

.sidenav a:hover {
    color: rgb(5,26,58);
    transition: .6s;
	}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
	}
}

.banner {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/banner-adventure.jpg);
    background-position: center;
    background-size: cover;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    
    z-index: 1;
    position: relative;
}
.banner::after {
    content:"";
    position:absolute;
    background:rgba(4,7,16,.3);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
    transition: 1s;
}
.banner:hover::after {
    content:"";
    position:absolute;
    background:rgba(4,7,16,.7);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
    transition: 1s;
}

.title-acuatic {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 55px;
    font-weight: 200;
    text-align: center;
    color: #fff;
    padding: 18px;
    border: 3px solid #fff;   
}
.title-acuatic .sub-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 35px;
    font-weight: 100;
}
/*---- ---- ---- ---- FIN DEL BANNER ---- ---- ----*/


/*--=======CONTENIDO PRINCIPAL=======--*/
.principal-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
}
.principal-content .box-destination {
    width: 300px;
    height: 400px;
    margin: 10px;
    padding: 12px;
}
.principal-content .box-destination .title-place {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 40px;
    font-weight: 100;
    padding: 4px;
    text-align: center;
    color: #fff;
}
.principal-content .box-destination .txt-place {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 6px;
    font-weight: 100;
    text-align: left;
    color: #fff;
}

/*----------backgrounds---------------*/

.destino1,
.destino2,
.destino3,
.destino4,
.destino5,
.destino6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    
    z-index: 1;
    position: relative;
}
.destino1::after,
.destino2::after,
.destino3::after,
.destino4::after,
.destino5::after,
.destino6::after {
    content:"";
    position:absolute;
    background:rgba(4,7,16,.4);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
    transition: 1s;
}
.destino1:hover::after,
.destino2:hover::after,
.destino3:hover::after,
.destino4:hover::after,
.destino5:hover::after,
.destino6:hover::after {
    content:"";
    position:absolute;
    background:rgba(5,26,58,.7);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
    transition: 1s;
}

.destino1 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/caja-1.jpg);
    background-position: center;
    background-size: cover;
}
.destino2 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/caja-2.jpg);
    background-position: center;
    background-size: cover;
}
.destino3 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/caja-3.jpg);
    background-position: center;
    background-size: cover;
}
.destino4 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/);
    background-position: center;
    background-size: cover;
}
.destino5 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/);
    background-position: center;
    background-size: cover;
}
.destino6 {
    background-color: #0e246d;
    height: 500px;
    background-image: url(../img/);
    background-position: center;
    background-size: cover;
}


/*--==========ENLACE TAKE ME THERE===========--*/
.enlace-destino {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 25px;
    font-weight: 100;
    padding: 6px;
    margin: 5px;
    border: 1px solid #e11030;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 10px;
    transition: .7s;
}
.enlace-destino:hover {
    border: 1px solid #ffff;
    background-color: #e11030;
    text-decoration: underline;
    transition: .7s;
    cursor: pointer;
}


/*--==========OVERLAY=====---*/

.overlay {
    height: 100%;
    width: 100%;
    background-image: url(../img/banner_adventure_2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    
    z-index: 1;
    position: relative;
}
.overlay::after {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: 1s;
}

.overlay-content {
    width: 100%;
    height: auto;
    text-align: center;
}

/*--======CONTENEDORES DEL OVERLAY=====--*/
.box-container {
    margin-top: 90px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.box-container .excursion-box {
    width: 400px;
    height: 560px;
    margin: 10px;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(51,153,255,1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(51,153,255,1);
    box-shadow: 0px 2px 2px 0px rgba(51,153,255,1);
    position: relative;
    overflow: hidden;
}

.box-container .excursion-box .title-activity {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 26px;
    font-weight: 100;
    text-align: center;
    margin: 5px;
    padding: 10px;
    color: #fff;
}
.box-container .excursion-box .txt-activity {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 100;
    text-align: left;
    margin: 0 4px 10px 4px;
    padding: 0 10px 8px 10px;
    color: #fff;
}
.box-container .excursion-box .enlace-activity {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    margin: 10px 5px;
    padding: 5px;
    color: #fff;
    border: 1px solid #fff;
    transition: .7s;
    
    position: absolute;
    bottom: 0;
    right: 0;
}

.box-container .excursion-box .enlace-activity:hover {
    color: #fb4f14;
    background-color: #fff;
    border: 2px dashed #fb4f14;
    transition: .7s;
}

/*--============IMG_BACKGROUNDS===============--*/

.img-box-tour {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

/*--=================--*/
/*--======FOOTER=====--*/
.final {
    width: 100%;
    min-height: 600px;
    background-color: #343a40; 
    padding-top: 90px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.final .caja-img-pie,
.final .caja-form-pie {
    width: 400px;
    min-height: 400px;
    margin: 20px;
}

.final .caja-txt-pie {
    max-width: 400px;
    min-height: 400px;
    position: relative;
}

.container-caja-pie-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.img-caja-1-a {
    background-image: url(../../img/boda1.jpg);
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
}
.img-caja-1-b {
    background-image: url(../../img/boda2.jpg);
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
}

.img-caja-2-a {
    background-image: url(../../img/mice1.jpg);
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
}
.img-caja-2-b {
    background-image: url(../../img/mice2.jpg);
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
}

.title-caja-1-img {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin: 15px 5px;
    padding: 8px;
    color: #fff;
}

.txt-caja-1-img {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    font-weight: 100;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #fff;
}

.caja-link-pie {
    display: flex;
    justify-content: center;
    align-items: center;
}
.link-caja-pie-1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin: 5px;
    padding: 10px;
    color: #fff;
    transition: .6s;
}
.link-caja-pie-1:hover {
    transition: .6s;
    color: #3399ff;
}
/*---========---*/

.txt-caja-2-img {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    font-weight: 100;
    text-align: center;
    margin: 10px;
    padding: 14px;
    color: #fff;
}

.caja-imagenes-caja-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    padding-top: 50px;
}

.para-img1-caja2 {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 2px;
    background-image: url(../../img/logo-qr.jpg);
    background-size: cover;
    background-position: center;
}
.para-img2-caja2 {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 2px;
    background-image: url(../../img/logo-mitur.jpg);
    background-size: cover;
    background-position: center;
}
.para-img3-caja2 {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 2px;
    background-image: url(../../img/qr-bre.png);
    background-size: cover;
    background-position: center;
}
/*--====--*/

.caja-form-pie {
    max-width: 400px;
    background-color: transparent;
    margin: 0 auto;
    padding: 10px;
    /*box-shadow: 0px 1px 2px rgba(0, 0, 0, .5);*/
}


.formulario input[type='text'],
.formulario textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 1px solid #999;
    color: #999;
    font-family: 'Open Sans',sans-serif;
    font-weight: 400;
    outline: 0;
}

.formulario textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    max-height: 150px;
}

.formulario input[type='text']:focus,
.formulario textarea:focus {
    border: 1px solid #15CF8A;
}

.formulario button {
    padding: 12px 30px;
    border: transparent;
    background: #e11030;
    color: #fff;
    cursor: pointer;
    float: right;
    transition: .6s;
}
.formulario button:hover {
    transition: .6s;
    background-color: #4091ec;
    text-decoration: underline;
}
/*--===--*/

.info {
    padding-top: 20px;
    margin-top: 20px;
}

.info .col {
    width: 100%;
    display: flex;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.info .col .icono {
    color: #fff;
    margin-right: 10px;
}

.info .col p,
.info .col a {
    color: #a3caf5;
    font-family: 'Patrick Hand', cursive;
    transition: .6s;
}
.info .col p:hover,
.info .col a:hover {
    transition: .6s;
    color: #4091ec;
}

.info .redes-s {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.info .redes-s a {
    display: flex;
    width: 40px;
    height: 40px;
    background: #3399ff;
    color: #fff;
    margin: 5px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .4);
    transition: .6s;
}
.info .redes-s a:hover {
    box-shadow: 0px 3px 8px #a3caf5;
    transition: .6s;
}
/*--==================--*/
/*--===FIN FOOTER=====--*/
