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

.cabecera {
	width: 100%;
	height: 600px;
	background-attachment: fixed;
	z-index: 1;
    position: relative;
}
.cabecera::after {
	content:"";
    position:absolute;
    background: rgba(0,0,0,.3);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.cabecera-hotel {
    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-hotel .head-1 .logo {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-left: 20px;
}

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

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

.cabecera-hotel .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-hotel .head-2 .emergencias .asistencias a {
    color: #050829;
    font-size: 14px;
    transition: .8s ease;
    font-family: 'Patrick Hand', cursive;
}

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

.cabecera-hotel .head-2 .acceso,
.cabecera-hotel .head-2 .bandera,
.cabecera-hotel .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-hotel .head-2 .bandera {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera-hotel .head-2 .bandera img {
    width: 30px;
}
.cabecera-hotel .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-hotel .head-2 .bandera a:hover {
    text-decoration: underline;
}

    /*----MEMBRESIA------*/
.cabecera-hotel .head-2 .membresia {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera-hotel .head-2 .membresia img {
    width: 25px;
}
.cabecera-hotel .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-hotel .head-2 .membresia a:hover {
    text-decoration: underline;
}


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

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

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

    .cabecera-hotel .head-1 .logo img {
        width: 100%;
        height: 100%;
    }

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

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

/*---=================---*/
/*---===FIN CABECERA===---*/

/*---=================---*/
/*---===BOTON MENU===---*/
.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 BOTON MENU==---*/

/*---=================---*/
/*---======BANNER=====---*/
.banner {
    z-index: -1;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    overflow: hidden;
    background-color: #3399FF;

    background-image: url(../img/Be-Live-Canoa/be-live-canoa-banner.jpg);
    background-size: cover;
    background-position: center;

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

.h1-box {
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 14px 20px;
}

.collection {
    color: #fff;
    text-align: center;
    font-size: 10px;
}
.collection-span1 {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.principal-title {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.collection2 {
    color: #fff;
    text-align: center;
    font-size: 20px;
}
/*---=================---*/
/*---===FIN BANNER====---*/

/*--===========================--*/
/*--========TITLE-SECTION======--*/
.title-section {
    margin-top: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title-section-h {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    color: #000;
    margin: 0 5px;
    padding: 0 30px;
}
.txt-section-h {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 18px;
    text-align: center;
    color: #000;
    padding: 10px 30px;
}

/*--===========================--*/
/*--========TITLE-SECTION======--*/

/*--===========================--*/
/*--============ROOMS==========--*/
.title-section2 {
    margin: 0 auto;
    margin-top: 90px;
    width: 60%;
    display: flex;
    flex-direction: column;
}
.title-section-r {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 28px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    color: #000;
    margin: 15px;
    padding: 10px;
}


.rooms-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    width: auto;
    height: auto;
    margin-bottom: 90px;
}

.img-room-container {
    width: 650px;
    min-height: 520px;
}
.txt-room-container {
    width: 430px;
    min-height: 520px;
    /*background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);*/
}

.separador {
    padding: 10px;
    color: red;
}
/*--=====--*/

.d-sp-v {
    background-image: url(../img/Be-Live-Canoa/d-sp-v.jpg);
    background-size: cover;
    background-position: center;
}
.f-ms {
    background-image: url(../img/Be-Live-Canoa/f-ms.jpg);
    background-size: cover;
    background-position: center;
}
.deluxe {
    background-image: url(../img/Be-Live-Canoa/deluxe.jpg);
    background-size: cover;
    background-position: center;
}
.s-d {
    background-image: url(../img/Be-Live-Canoa/s-d.jpg);
    background-size: cover;
    background-position: center;
}
.j-s-a-c {
    background-image: url(../img/Be-Live-Canoa/j-s-a-c.jpg);
    background-size: cover;
    background-position: center;
}
.m-js-gv {
    background-image: url(../img/Be-Live-Canoa/m-js-gv.jpg);
    background-size: cover;
    background-position: center;
}
.m-js-ov {
    background-image: url(../img/Be-Live-Canoa/m-js-ov.jpg);
    background-size: cover;
    background-position: center;
}
.h-vll {
    background-image: url(../img/Be-Live-Canoa/h-vll.jpg);
    background-size: cover;
    background-position: center;
}

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

.name-room {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin: 5px;
    padding: 0 10px;
}

.txt-room-detail {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 15px;
    text-align: left;
    color: #666666;
    padding: 5px 10px;
}


.title-room-detail {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 16px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin: 0 5px;
    padding: 0 4px;
}

.sub-room-details {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 12px;
    text-align: left;
    color: #666666;
    padding: 5px;
}

.enlace-tour {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #213480;
    margin: 5px;
    padding: 6px;
    transition: .6s;
}
.enlace-tour:hover {
    transition: .6s;
    background-color: #3399ff;
}
/*--===========================--*/
/*--========FIN ROOMS==========--*/


/*--===========================--*/
/*--===========GALERY==========--*/
.images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.box-image {
    width: 300px;
    height: 300px;
    margin: 10px;
}


.img-1 {
    background-image: url(../img/Be-Live-Canoa/img-1.jpg);
    background-size: cover;
    background-position: center;
}
.img-2 {
    background-image: url(../img/Be-Live-Canoa/img-2.jpg);
    background-size: cover;
    background-position: center;
}
.img-3 {
    background-image: url(../img/Be-Live-Canoa/img-3.jpg);
    background-size: cover;
    background-position: center;
}
.img-4 {
    background-image: url(../img/Be-Live-Canoa/img-4.jpg);
    background-size: cover;
    background-position: center;
}
.img-5 {
    background-image: url(../img/Be-Live-Canoa/img-5.jpg);
    background-size: cover;
    background-position: center;
}
.img-6 {
    background-image: url(../img/Be-Live-Canoa/img-6.jpg);
    background-size: cover;
    background-position: center;
}
.img-7 {
    background-image: url(../img/Be-Live-Canoa/img-7.jpg);
    background-size: cover;
    background-position: center;
}
.img-8 {
    background-image: url(../img/Be-Live-Canoa/img-8.jpg);
    background-size: cover;
    background-position: center;
}
.img-9 {
    background-image: url(../img/Be-Live-Canoa/img-9.jpg);
    background-size: cover;
    background-position: center;
}
.img-10 {
    background-image: url(../img/Be-Live-Canoa/img-10.jpg);
    background-size: cover;
    background-position: center;
}
.img-11 {
    background-image: url(../img/Be-Live-Canoa/img-11.jpg);
    background-size: cover;
    background-position: center;
}
.img-12 {
    background-image: url(../img/Be-Live-Canoa/img-12.jpg);
    background-size: cover;
    background-position: center;
}
.img-13 {
    background-image: url(../img/Be-Live-Canoa/img-13.jpg);
    background-size: cover;
    background-position: center;
}
.img-14 {
    background-image: url(../img/Be-Live-Canoa/img-14.jpg);;
    background-size: cover;
    background-position: center;
}
.img-15 {
    background-image: url(../img/Be-Live-Canoa/img-15.jpg);
    background-size: cover;
    background-position: center;
}
.img-16 {
   background-image: url(../img/Be-Live-Canoa/img-16.jpg);
    background-size: cover;
    background-position: center;
}
.img-17 {
    background-image: url(../img/Be-Live-Canoa/img-17.jpg);
    background-size: cover;
    background-position: center;
}
.img-18 {
    background-image: url(../img/Be-Live-Canoa/img-18.jpg);
    background-size: cover;
    background-position: center;
}
.img-19 {
    background-image: url(../img/Be-Live-Canoa/img-19.jpg);
    background-size: cover;
    background-position: center;
}
.img-20 {
    background-image: url(../img/Be-Live-Canoa/img-20.jpg);
    background-size: cover;
    background-position: center;
}
.img-21 {
    background-image: url(../img/Be-Live-Canoa/img-21.jpg);
    background-size: cover;
    background-position: center;
}
.img-22 {
    background-image: url(../img/Be-Live-Canoa/img-22.jpg);
    background-size: cover;
    background-position: center;
}
.img-23 {
    background-image: url(../img/Be-Live-Canoa/img-23.jpg);
    background-size: cover;
    background-position: center;
}
.img-24 {
    background-image: url(../img/Be-Live-Canoa/img-24.jpg);
    background-size: cover;
    background-position: center;
}
.img-25 {
    background-image: url(../img/Be-Live-Canoa/img-25.jpg);
    background-size: cover;
    background-position: center;
}
.img-26 {
    background-image: url(../img/Be-Live-Canoa/img-26.jpg);
    background-size: cover;
    background-position: center;
}
.img-27 {
    background-image: url(../img/Be-Live-Canoa/img-27.jpg);
    background-size: cover;
    background-position: center;
}
.img-28 {
    background-image: url(../img/Be-Live-Canoa/img-28.jpg);
    background-size: cover;
    background-position: center;
}
.img-29 {
    background-image: url(../img/Be-Live-Canoa/img-29.jpg);
    background-size: cover;
    background-position: center;
}
.img-30 {
    background-image: url(../img/Be-Live-Canoa/img-30.jpg);
    background-size: cover;
    background-position: center;
}
.img-31 {
    background-image: url(../img/Be-Live-Canoa/img-31.jpg);
    background-size: cover;
    background-position: center;
}
.img-32 {
    background-image: url(../img/Be-Live-Canoa/img-32.jpg);
    background-size: cover;
    background-position: center;
}
.img-33 {
    background-image: url(../img/Be-Live-Canoa/img-33.jpg);;
    background-size: cover;
    background-position: center;
}
/*--===========================--*/
/*--=======FIN GALERY==========--*/


/*--========================--*/
/*--======ALL-INCLUSIVE=====--*/
.all-inclusive {
    width: 100%;
    min-height: 1000px;
    background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
}

.txt-all-inclusive {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 14px;
    text-align: left;
    color: #000;
    padding: 10px 30px;
}

ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    width: 70%;
    margin: 0 auto;
}
li {
    margin: 5px 15px;
    text-align: center;
    font-family: 'Lato', sans-serif, Arial;
    font-size: 14px;
    text-align: left;
    color: #000;
    padding: 10px 30px;
}


.title-servicio {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 18px;
    text-align: left;
    color: #000;
    padding: 5px 30px;
    width: 70%;
    margin: 10px auto;
}
/*--=====*--/


/*--====*--/
/*--=HOVER-IMG=--*/
.all-inclusive-hover {
    margin-top: 90px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.hover-image {
    width: 400px;
    height: 350px;
    margin: 10px;
    position: relative;
}

.all-img-1 {
    background-image: url(../img/Be-Live-PUJ/all-inclusive-1.jpg);
    background-size: cover;
    background-position: center;
}
.all-img-2 {
    background-image: url(../img/Be-Live-PUJ/all-inclusive-2.jpg);
    background-size: cover;
    background-position: center;
}
.all-img-3 {
    background-image: url(../img/Be-Live-PUJ/all-inclusive-3.jpg);
    background-size: cover;
    background-position: center;
}
.all-img-5 {
    background-image: url(../img/Be-Live-PUJ/all-inclusive-4.jpg);
    background-size: cover;
    background-position: center;
}
.all-img-6 {
    background-image: url(../img/Be-Live-PUJ/all-inclusive-6.jpg);
    background-size: cover;
    background-position: center;
}
/*-====--*/

.box-bottom-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;
    background-color: rgba(0, 0, 0, .5);
}
.box-bottom-title:hover {
    display: none;
    position: relative;
    z-index: -10;
}

.bottom-title {
    font-family: 'Lato', sans-serif, Arial;
    font-size: 18px;
    text-align: center;
    color: #fff;
    padding: 5px;
    margin: 10px auto;
    text-transform: uppercase;
}

/*--==OVERLAY==--*/
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(14,36,109,.8);
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .6s ease;
    transition: .6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.hover-image:hover .overlay, 
.hover-image:hover .overlay,
.hover-image:hover .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.title-overlay-s3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    margin: 30px 10px 10px 10px;
    padding: 0 15px;
    color: #fff;
}

.txt-overlay-s3 {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    text-align: left;
    font-size: 15px;
    margin: 0 10px;
    padding: 10px 30px;
    color: #fff;
}

.enlace-overlay {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    text-align: center;
    font-size: 20px;
    margin: 30px;
    margin-left: 100px;
    padding: 30 15px;
    color: #fff;
    transition: .6s;
}
.enlace-overlay:hover {
    text-decoration: underline;
    color: #0e246d;
    transition: .6s;
}

.text {
    overflow: auto;
}
/*--========================--*/
/*--==FIN ALL-INCLUSIVE=====--*/

/*--====================--*/
/*--======YAKY INFO=====--*/
.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;
    margin-top: 110px;
    background-image: 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;
}
.img-yaky .txt-img {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    text-align: left;
    position: absolute;
    bottom: -44px;
    left: 14px;
}

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

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