* {
    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: 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 ---- ---- ----*/
.banner-hotel {
	background-image: url(../img/Serenade/banner-serenade.jpg);
	background-position: center;
	background-size: cover;
    background-attachment: fixed;
	min-height: 500px;
    margin-bottom: 50px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
    
    z-index: 1;
    position: relative;
}
.banner-hotel::after {
    content:"";
    position:absolute;
    background:rgba(0,0,0,.4);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}


.title-puj {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    padding: 16px 24px;
    border: 2px solid #fff;
    text-transform: capitalize;
}

.separador-banner {
    width: 10%;
    margin: 0 auto;
    margin-top: 40px;
    color: gold;
}
/*--=========fin banner===============--*/


/*----=========TXT INTRO========-----*/
.title-container-principal {
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}

.title-principal {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 45px;
    text-align: center;
    color: #2bb0a3;
    margin: 10px;
    margin-bottom: 0;
    padding: 12px;
    padding-bottom: 0;
}
.sub-principal {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
    color: #000;
    padding: 0 12px;
}
.txt-principal {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    font-size: 20px;
    text-align: left;
    color: #000;
    padding: 12px;
    margin: 10px;
}
/*----=====FIN TXT INTRO========-----*/

.separador-banner {
    width: 10%;
    margin: 10px auto;
    color: gold;
}

.caja-principal-habitaciones {
    margin-top: 110px;
}
.principal-habitaciones {
    text-align: left;
}
/*---=======----*/




/*---=====ACORDEON FACILITIES===----*/
.accordeon-caontainer {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.accordion {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    background-color: #3399ff;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 350px;
    margin-top: 90px;
    border: none;
    border-radius: 2px;
    text-align: center;
    outline: none;
    font-size: 25px;
    transition: 0.5s;
}

.active, .accordion:hover {
  background-color: #0e246d;
}

.accordion:after {
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    font-size: 20px;
    text-align: left;
    color: #000;
    margin: 15px 8px;
    padding: 0 18px;
    background-color: #f2f2f2;
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/*---=====FIN ACORDEON FACILITIES===----*/




/*---=========CATEGORIAS DE HABITACIONES=====----*/
.rooms-content {
    margin-top: 90px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
}

.rooms-content .img-box-volunteer,
.rooms-content .txt-box-volunteer {
    width: 500px;
    height: 300px;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(214,212,193,1);
    -moz-box-shadow: 0px 0px 1px 1px rgba(214,212,193,1);
    box-shadow: 0px 0px 1px 1px rgba(214,212,193,1);
}

.img-box-volunteer {
    position: relative;
}

.title-volunteer {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-align: center;
    font-weight: 100;
    font-size: 36px;
    color: #2bb0a3;
    margin: 10px;
    padding: 6px 12px;
}
.txt-volunteer {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    text-align: left;
    font-size: 16px;
    color: #000;
    padding: 10px;
    margin: 0 10px;
}

.price-room {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
    font-weight: 100;
    text-align: center;
    color: #fb4f14;
    padding: 1px 10px;
    position: absolute;
    bottom: 0px;
    left: 6px;
}
.price-room span {
    font-size: 12px;
    color: #000;
}
.price-room-2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
    font-weight: 100;
    text-align: center;
    color: #fb4f14;
    padding: 1px 10px;
    position: absolute;
    bottom: 0px;
    left: 110px;
}
.price-room-2 span {
    font-size: 12px;
    color: #000;
}



.link-room {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    color: #000;
    box-shadow: 0 .5px .5px .5px rgba(0,0,0,0.5);
    background-color: #c1ac6b;
    padding: 10px;
    margin: 2px;
    transition: .6s;
    position: absolute;
    bottom: 6px;
    right: 6px;
}
.link-room:hover {
    background-image: -webkit-linear-gradient(#cdbd89, #c1ac6b);
    background-image: -o-linear-gradient(#cdbd89, #c1ac6b);
    background-image: linear-gradient(#cdbd89, #c1ac6b);
    transition: .6s;
}


.separador-banner-2 {
    width: 10%;
    margin: 0 auto;
    color: gold;
}

/*-----------------------*/
@media screen and (max-width: 530px) {
    .txt-box-volunteer .ism-slider ol li img {
        width: 400px;
    }
    .txt-volunteer {
        font-size: 14px;
        padding: 0 6px;
    }
    .title-volunteer {
        font-size: 30px;
        margin: 6px;
        padding: 12px;
    }
    .price-room-2 {
        font-size: 18px;
    }
    .link-room {
    font-size: 18px;
    padding: 6px;
    }
}

    /*---=======CAJA SLIDE===---*/
.ism-slider > ol, .ism-slider > ol > li, .ism-slider > ol > li > img { width: 100%; list-style: none; margin: 0; padding: 0; }
.ism-slider {
  overflow: hidden;
  position: relative;
  padding: 0 !important;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-animation: ism-fadein 3s;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
@-webkit-keyframes ism-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@-webkit-keyframes ism-loading {
  50% { left: 120px; }
}

.ism-slider .ism-slides {
  list-style: none;
  position: absolute;
  height: 100%;
  top: 0;
  padding: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1;
}

.ism-slider li.ism-slide {
  height: 100%;
  overflow: hidden;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #d5d5d5;
  text-align: center;
}

.ism-slider .ism-img-frame {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ism-slider .ism-img {
  display: block;
  border: none;
  position: absolute;
  pointer-events: none;
}

/* SLIDER */

#my-slider,
#my-slider-2,
#my-slider-3,
#my-slider-4,
#my-slider-5,
#my-slider-6,
#my-slider-7
{
    width: auto;
    height: 300px;
    border-radius: 0;
}

/* SLIDES */

#my-slider .ism-slide-0 .ism-img-frame {
    width: 100%;
}

#my-slider .ism-slide-0 .ism-img,
#my-slider-2 .ism-slide-0 .ism-img,
#my-slider-3 .ism-slide-0 .ism-img,
#my-slider-4 .ism-slide-0 .ism-img,
#my-slider-5 .ism-slide-0 .ism-img,
#my-slider-6 .ism-slide-0 .ism-img,
#my-slider-7 .ism-slide-0 .ism-img
{
    width: 100%;
    top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);
}

#my-slider .ism-slide-1 .ism-img-frame {
    width: 100%;
}

#my-slider .ism-slide-1 .ism-img,
#my-slider-2 .ism-slide-1 .ism-img,
#my-slider-3 .ism-slide-1 .ism-img,
#my-slider-4 .ism-slide-1 .ism-img,
#my-slider-5 .ism-slide-1 .ism-img,
#my-slider-6 .ism-slide-1 .ism-img,
#my-slider-7 .ism-slide-1 .ism-img {
    width: 100%;
    top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);
}

#my-slider .ism-slide-2 .ism-img-frame {
    width: 100%;
}

#my-slider .ism-slide-2 .ism-img,
#my-slider-2 .ism-slide-2 .ism-img,
#my-slider-3 .ism-slide-2 .ism-img,
#my-slider-4 .ism-slide-2 .ism-img,
#my-slider-5 .ism-slide-2 .ism-img,
#my-slider-6 .ism-slide-2 .ism-img,
#my-slider-7 .ism-slide-2 .ism-img {
    width: 100%;
    top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);
}

#my-slider .ism-slide-3 .ism-img-frame {
    width: 100%;
}

#my-slider .ism-slide-3 .ism-img,
#my-slider-2 .ism-slide-3 .ism-img,
#my-slider-3 .ism-slide-3 .ism-img,
#my-slider-4 .ism-slide-3 .ism-img,
#my-slider-5 .ism-slide-3 .ism-img,
#my-slider-6 .ism-slide-3 .ism-img,
#my-slider-7 .ism-slide-3 .ism-img {
    width: 100%;
    top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);
}
    /*---===FIN CAJA SLIDE===---*/
/*---=====FIN CATEGORIAS DE HABITACIONES=====----*/






/*----========CULINARIOS========-----*/
.margen-culinario {
    margin-top: 110px;
}

.container-culinario {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    margin-top: 90px;
}
.container-culinario .img-culinario {
    width: 400px;
    height: 400px;
}
.container-culinario .txt-culinario {
    max-width: 600px;
    height: auto;
}
    /*---======---*/

.img-culinario {
    background-image: url(../img/Serenade/culinario-img.jpg);
    background-size: cover;
    background-position: center;
}
.bar-culinario {
    background-image: url(../img/Serenade/culinario-bar.jpg);
    background-size: cover;
    background-position: center;
}


.title-culinario {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    color: #2bb0a3;
    padding: 10px;
    margin: 2px 10px;
}
.txt-culinario {
    font-family: 'Patrick Hand', cursive;
    font-weight: 100;
    text-align: left;
    font-size: 17px;
    color: #000;
    padding: 10px;
    margin: 0 10px;
}

.bar-txt-culinario {
    font-size: 16px;
}
/*----====FIN CULINARIOS========-----*/


/*----==============IMAGENES============----*/
.contenedor-caja-imagenes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
}
.contenedor-caja-imagenes .caja-imagenenes {
    width: 200px;
    height: 200px;
    margin: 1px;
}
    /*--====--*/


.img-01 {
    background-image: url(../img/Serenade/img-1.jpg);
    background-position: center;
    background-size: cover;
}
.img-02 {
    background-image: url(../img/Serenade/img-2.jpg);
    background-position: center;
    background-size: cover;
}
.img-03 {
    background-image: url(../img/Serenade/img-3.jpg);
    background-position: center;
    background-size: cover;
}
.img-04 {
    background-image: url(../img/Serenade/img-4.jpg);
    background-position: center;
    background-size: cover;
}
.img-05 {
    background-image: url(../img/Serenade/img-5.jpg);
    background-position: center;
    background-size: cover;
}
.img-06 {
    background-image: url(../img/Serenade/img-6.jpg);
    background-position: center;
    background-size: cover;
}
.img-07 {
    background-image: url(../img/Serenade/img-7.jpg);
    background-position: center;
    background-size: cover;
}
.img-08 {
    background-image: url(../img/Serenade/img-8.jpg);
    background-position: center;
    background-size: cover;
}
.img-09 {
    background-image: url(../img/Serenade/img-9.jpg);
    background-position: center;
    background-size: cover;
}
.img-010 {
    background-image: url(../img/Serenade/img-10.jpg);
    background-position: center;
    background-size: cover;
}
.img-011 {
    background-image: url(../img/Serenade/img-11.jpg);
    background-position: center;
    background-size: cover;
}
.img-012 {
    background-image: url(../img/Serenade/img-12.jpg);
    background-position: center;
    background-size: cover;
}
.img-013 {
    background-image: url(../img/Serenade/img-13.jpg);
    background-position: center;
    background-size: cover;
}
.img-014 {
    background-image: url(../img/Serenade/img-14.jpg);
    background-position: center;
    background-size: cover;
}
.img-015 {
    background-image: url(../img/Serenade/img-15.jpg);
    background-position: center;
    background-size: cover;
}
.img-016 {
    background-image: url(../img/Serenade/img-16.jpg);
    background-position: center;
    background-size: cover;
}
.img-017 {
    background-image: url(../img/Serenade/img-17.jpg);
    background-position: center;
    background-size: cover;
}
.img-018 {
    background-image: url(../img/Serenade/img-18.jpg);
    background-position: center;
    background-size: cover;
}
.img-019 {
    background-image: url(../img/Serenade/img-19.jpg);
    background-position: center;
    background-size: cover;
}
.img-020 {
    background-image: url(../img/Serenade/img-20.jpg);
    background-position: center;
    background-size: cover;
}
/*----==========FIN IMAGENES============----*/


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












































