* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	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,.88);

	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: 1;  
    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;
	}
}
/*---- ---- ---- ---- FIN DEL NAV ---- ---- ----*/

/*---- ---- INICIO SLIDE ---- ---- ----*/
.banner {
    z-index: -1;
    width: 100%;
    height: 660px;
    position: absolute;
    top: 0;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imagen_png1 {
    width: 400px;
    height: auto;
    position: absolute;
    bottom: -200px;
    left: -90px;
    z-index: 1000;
}
    /*--===@media===--*/
@media screen and (max-width: 650px) {
    .imagen_png1 {
        width: 300px;
        bottom: -130px;
    }   
}

@media screen and (max-width: 425px) {
    .imagen_png1 {
        width: 200px;
        bottom: -19px;
        left: -70px;
    }   
}
    /*--===@media===--*/

slider {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0e246d;
    overflow: hidden;
    position: absolute;
    box-shadow: 5px 5px 15px rgb(0,0,57);  
}

slide {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    animation: slide 20s infinite;
    overflow: hidden;
}
slide:nth-child(4) {
    left: 0%;
    animation-delay: -4s;
    background-image: url(../img/banner-4.jpg);
    background-size: cover;
    background-position: center;
    
}slide:nth-child(3) {
    animation-delay: 1s;
    background-image: url(../img/banner-3.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(2) {
    animation-delay: 6s;
    background-image: url(../img/banner-2.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(1) {
    left: 0%;
    animation-delay: 11s;
    background-image: url(../img/banner-1.jpg);
    background-size: cover;
    background-position: center;
}

@keyframes slide {
    0% {left: 100%; width: 100%;}
    5% {left: 0%;}
    25% {left: 0%;}
    30% {left: -100%; width: 100%;}
    30.0001% {left: -100%; width: 0%;}
    100% {left: 100%; width: 0%;} 
}

@media screen and (max-width: 650px) {
	slide p {
		font-size: 50px;
		margin-top: 400px;
	}
}
    /*---====---*/

.txt-container-banner {
    width: 80%;
    height: 500px;
    z-index: 10;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.banner-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-txt h1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-align: center;
    color: #ffc61a;
    text-shadow: 1px 2px 1px #000;
    font-size: 60px;
    margin-top: 200px;
}

/*--=======================--*/
/*--=======Fin Banner======--*/

/*--===========================--*/
/*--=======Fin seccion 02======--*/
.section-2 {
	background-color: #0e246e;
	min-height: 650px;
	width: 100%;
	margin-top: 480px;

	background-image: url(../img/banner-back.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
    
    z-index: 1;
    position: relative;
}
.section-2::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    /*--===@media===--*/
@media screen and (max-width: 650px) {
    .section-2 {
        margin-top: 450px;
    }   
}
    /*--===@media===--*/

.video-container {
	width: 100%;
	min-height: 550px;
    padding: 50px 0;

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

.area-video {
	width: 530px;
	min-height: 350px;
}

.video-container-video {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
	/*--====--*/

.texto-video {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	background-color: rgb(0,0,0,0.5);
}
	/*--===--*/

.txt-video {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size: 24px;
	text-align: left;
	font-weight: 300;
	color: #fff;
	letter-spacing: 1px;
	padding: 10px 18px;	
}

.txt-video span {
	color: #ffc61a;    
	font-size: 30px;
}

.caja-video {
	width: 100%;
	height: 350px;
}

.caja-video iframe {
	width: 550px;
	height: 350px;
	border: 0;
}
@media screen and (max-width: 554px){
	.caja-video iframe {
		min-height: 350px;
		max-width: 330px;
	}
}

/*--===========================--*/
/*--=======Fin seccion 02======--*/


/*---=================---*/
/*---=======Area 3====---*/
.contenedor-03 {
    background-image: url(../img/back_grid.jpg);
    background-position: center;
    background-size: cover;
    
    width: 100%;
    min-height: 700px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    z-index: 1;
    position: relative;
}
.contenedor-03::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container-for-grid {
    width: 80%;
    min-height: 400px;
}

.grid-box {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-template-areas:   
        "caja-1 caja-2 caja-3 caja-4"
        "caja-1 caja-5 caja-6 caja-7";
}

.caja-1 {
    grid-area: caja-1;
    min-height: 400px;
    
    background-image: url(../img/chavon.jpg);
    background-size: cover;
    background-position: center;
}

.caja-2 {
    grid-area: caja-2;
    height: 200px;
    
    background-image: url(../img/catalina.jpg);
    background-size: cover;
    background-position: center;
}

.caja-3 {
    grid-area: caja-3;
    height: 200px;
    
    background-image: url(../img/almuerzo.jpg);
    background-size: cover;
    background-position: center;
}

.caja-4 {
    grid-area: caja-4;
    height: 200px;
    
    background-image: url(../img/embarcacion.jpg);
    background-size: cover;
    background-position: center;
}

.caja-5 {
    grid-area: caja-5;
    height: 200px;
    
    background-image: url(../img/rio.jpg);
    background-size: cover;
    background-position: center;
}

.caja-6 {
    grid-area: caja-6;
    height: 200px;
    
    background-image: url(../img/meeting.jpg);
    background-size: cover;
    background-position: center;
}

.caja-7 {
    grid-area: caja-7;
    height: 200px;
    
    background-image: url(../img/snorkel.jpg);
    background-size: cover;
    background-position: center;
}
/*--====--*/

/*--==@media==--*/
@media screen and (max-width: 1100px) {
        .grid-box {
        display: grid;
        grid-gap: 5px;
        grid-template-columns: 1fr 1fr 1fr;
	    grid-template-rows: 1fr 1fr 1fr;
	    grid-template-areas:   
            "caja-1 caja-7 caja-3"
            "caja-1 caja-4 caja-5"
            "caja-6 caja-2 caja-2";
    }
}

@media screen and (max-width: 720px) {
        .grid-box {
        display: grid;
        grid-gap: 5px;
        grid-template-columns: 1fr 1fr;
	    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	    grid-template-areas:   
            "caja-1 caja-5"
            "caja-1 caja-3"
            "caja-4 caja-6"
            "caja-2 caja-2"
            "caja-7 caja-7";
    }
}


@media screen and (max-width: 500px) {
      .container-for-grid {
        width: 90%;
    }  
}

@media screen and (max-width: 370px) {
      .container-for-grid {
        width: 95%;
    }  
}
/*--==--*/

.caja-1,
.caja-2,
.caja-3,
.caja-4,
.caja-5,
.caja-6,
.caja-7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.txt-caja {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
    margin-bottom: 30px;
}

/*---=================---*/
/*---===FIN Area 3====---*/



/*---=================---*/
/*---=======Area 4====---*/
.esperar_container {
    background-image: url(../img/banner-back.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
    
    width: 100%;
    min-height: 800px;
    
    z-index: 1;
    position: relative;
}
.esperar_container::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
    /*---==========---*/


.title_esperar {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 54px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    padding: 10px;
    padding-top: 90px;
    text-decoration: underline;
}
    /*---==========---*/


.container_boxes {
    max-width: 1000px;
    height: auto;
    padding: 90px 12px;
    margin: 0 auto;
    margin-top: 90px;
    background: rgba(4,7,16,.8);
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box-esperar {
    width: 250px;
    min-height: 300px;
    margin: 10px;
    background: rgba(255,255,255);
    
    display: flex;
    flex-direction: row;
}
    /*---==========---*/


.box_color {
    width: 50px;
    min-height: 320px;
    background-color: #fb4f14;
}

.box_txt_esperar h5 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 34px;
    text-align: center;
    color: #000;
    padding: 5px;
}

.box_txt_esperar p {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    text-align: left;
    color: #000;
    padding: 5px 12px;
}

/*---=================---*/
/*---===FIN Area 4====---*/



/*---=======================---*/
/*---=======Area Precios====---*/
.container_prices {
    width: 100%;
    min-height: 700px;
    background: #050504;
    padding: 40px 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}


/*---=======================---*/
/*---===FIN Area Precios====---*/
.box_container_price {
    max-width: 1000px;
    min-height: 430px;
    margin: 0 auto;
    background-color: #fa0d1c;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box_praices {
    width: 300px;
    height: auto;
    background-color: #fafa3b;
    margin: 10px;
    padding: 12px;
}
    /*---==========---*/

.box_1_price {
    background-color: #fa0d1c;
    width: 100%;
    min-height: 50px;
    border: 2px solid #000;
}


.box_1_price  h5 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 34px;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.txt-price-p {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    text-align: left;
    color: #000;
    padding: 5px;
    margin-left: 20px;
    margin-top: 20px;
    text-decoration: line-through;
}

.txt-price-h {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 90px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #000;
    padding: 5px;
}
/*--========================--*/
/*--=======Fin Area Precios========--*/




/*--========================--*/
/*--===========VIDEO========--*/
.recomendacion-container {
	width: 100%;
	min-height: 800px;

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

	background-image: url(../img/banner-back.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
    background-color: #0e246d;
    
    z-index: 1;
    position: relative;
}
.recomendacion-container::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.caja-recomendacion {
	width: 400px;
	height: 400px;
	margin: 20px;
	border-radius: 50%;
	box-shadow: 1px 1px 1px 1px #3399ff;
    
    background-image: url(../img/sugerencia.jpg);
	background-size: cover;
	background-position: center;
}

    /*----======----*/
@media screen and (max-width: 500px) {
    .caja-recomendacion {
        width: 300px;
	    height: 300px;
    }

}

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

.caja-txt-hotels {
	width: 500px;
	min-height: 400px;
	margin: 20px;
	background-color: rgb(14,36,110,.8);
}
/*--====--*/

.txt-1-hotels {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    font-size: 34px;
    color: #fff;
    text-align: left;
    padding: 8px;
}
.txt-1-hotels span {
	color: #ffae3b;
}

.txt-2-hotels {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: #fff;
    text-align: left;
    padding: 8px 10px;
}

.txt-3-hotels {
	font-family: 'Patrick Hand', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 15px;
    margin: 20px;
}
/*--========================--*/
/*--=======Fin VIDEO========--*/


/*--====================--*/
/*--======YAKY INFO=====--*/
.reserva_container {
    width: 100%;
    min-height: 400px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title_reservar {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 90px;
    color: #fb4f14;
    text-align: center;
    padding: 10px;
}
.title_reservar span {
    font-size: 120px;
    color: #fa0d1c;
}

.whatapp_reserva,
.mail_reserva {
    width: 150px;
    height: 50px;
    margin: 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #0e246d;
    
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatapp_reserva {
    background-color: rgb(37,211,102);
    transition: .6s;
}
.whatapp_reserva:hover {
    background-color: #126963;
    transition: .6s;
}

.mail_reserva {
    background-color: #db4a39;
    transition: .6s;
}
.mail_reserva:hover {
    background-color: #6D251C;
    transition: .6s;
}

.whatapp_reserva a,
.mail_reserva a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #fff;
    padding: 10px;
}



 /*-----=============------*/
.yaky-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    margin: 20px auto;
    padding: 20px;
    margin-bottom: 150px;
    background-image: linear-gradient(90deg, rgb(255,0,128) 0%, rgba(255,0,128, 0.3) 25%, transparent 80%), linear-gradient(270deg, rgb(255,0,128) 0%, rgba(255,0,128, 0.3) 25%, transparent 80%), url(../img/textura-1.png);
    background-repeat: repeat;
    background-size: contain;
}
.img-yaky {
    background-image: url(../img/yaky.jpg);
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 40px 15px;
    padding: 15px 10px;
    -webkit-box-shadow: 0px 0px 1px 3px rgba(153,204,255,1);
    -moz-box-shadow: 0px 0px 1px 3px rgba(153,204,255,1);
    box-shadow: 0px 0px 1px 3px rgba(153,204,255,1);
    position: relative;
}
.txt-yaky {
    height: auto;
    width: 400px;
    margin: 10px;
}
.parrafo-yaky {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
    padding: 10px;
    margin: 2px;
}
.parrafo-yaky a {
    color: #00bfff;
    text-decoration: underline
}
.sub-txt-yaky {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    font-weight: 100;
    color: #fff;
    text-align: left;
    padding: 0 10px;
}
.sub-txt-yaky span {
    font-size: 16px;
    color: #fb4f14;
}

.title-form {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 55px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    padding: 18px;
    margin: 5px;
}
/*--====================--*/
/*--==FIN YAKY INFO=====--*/


/*--====================--*/
/*--======Intereses=====--*/
.container_interes {
    background-color: #2a89a0;
    height: auto;
    
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
        "box_1 box_1 box_2 box_3"
        "box_1 box_1 box_4 box_5";
}

.box_1 {
    grid-area: box_1;
    height: 610px;
    background-color: transparent;
    
    background-image: url(../img/banner-4.jpg);
    background-position: center;
    background-size: cover;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_2 {
    grid-area: box_2;
    height: 300px;
}

.box_3 {
    grid-area: box_3;
    height: 300px;
}

.box_4 {
    grid-area: box_4;
    height: 300px;
}

.box_5 {
    grid-area: box_5;
    height: 300px;
}
    /*---======---*/


.container_border {
    border: 3px solid #fff;
    width: 100%;
    padding: 40px;
    height: auto;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_border {
    border: 1px solid #fff;
    width: 80%;
    min-height:  400px;
    background-color: rgb(21,68,80,.8);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.txt_interes {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 28px;
    font-weight: 100;
    text-align: center;
    color: #fff;
    padding: 5px;
}
.txt_interes span {
    color: #fafa3b;
    font-size: 60px;
    font-weight: 600;
}

.box_border p {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    padding: 5px;
    padding-top: 30px;
}
    /*--====--*/
    

    /*--==IMG==--*/
.box_2, 
.box_3, 
.box_4, 
.box_5 {
    position: relative;
}

.box_img_box {
    max-width: 467.5px;
    height: 300px;
    overflow: hidden;
    transition: all 500ms ease;
}

.img-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}
.img-box:hover {
    transform: scale(1.2);
    transition: all 500ms ease;
}

.box_img_box a {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fff;
    padding: 5px 12px;
    font-size: 25px;
    position: absolute;
    bottom: 12px;
    right: 15px;
    background-color: rgb(251,79,20,.9);
    border-radius: 12px 0 12px 0;
    text-decoration: underline;
    transition: all 500ms ease;
}
.box_img_box a:hover {
    color: #3399ff;
    transition: all 500ms ease;
    
}

    /*----======----*/
@media screen and (max-width: 940px) {
    .container_interes{
        height: 1260px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas: 
            "box_1 box_1"
            "box_2 box_3"
            "box_4 box_5";
    }
}

@media screen and (max-width: 500px) {
    .container_interes{
        height: 1680px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-template-areas: 
            "box_1"
            "box_2"
            "box_3"
            "box_4"
            "box_5";
    }
    
    .anchar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box_1 {
        grid-area: box_1;
        height: auto;
        width: 300px;
    }
    
    .container_border {
        height: 320px;
        padding: 0;
        margin: 0;
    }
    .box_border {
        
        border: 1px solid #fff;
        width: 80%;
        min-height:  200px;
        background-color: rgb(21,68,80,.8);
    }
    .txt_interes {
        font-size: 18px;
    }
    .txt_interes span {
        font-size: 30px;
    }

    .box_border p { 
        font-size: 20px;
    }
    
    .box_img_box a {
        font-size: 20px;
    }
    

}
/*--====================--*/
/*--==FIN Intereses=====--*/



/*--=================--*/
/*--======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=====--*/

























































