* {
    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 {
    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%;
        margin: 2px;    
    }

    .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 {
    display: grid;
    grid-template-columns: auto-fit, minmax(300px, 1fr);
    grid-template-rows: minmax(100px, 1fr);
    z-index: -1;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    overflow: hidden;
}

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;
    width: 100%;
    height: 100%;
    animation: slide 20s infinite;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
slide:nth-child(4) {
    left: 0%;
    animation-delay: -4s;
    background-image: url(../img/SunScape/Banner-1.jpg);
    background-size: cover;
    background-position: center;
    
}slide:nth-child(3) {
    animation-delay: 1s;
    background-image: url(../img/SunScape/Banner-2.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(2) {
    animation-delay: 6s;
    background-image: url(../img/SunScape/Banner-1.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(1) {
    left: 0%;
    animation-delay: 11s;
    background-image: url(../img/SunScape/Banner-2.jpg);
    background-size: cover;
    background-position: center;
}

slide p {
    font-family: 'Architects Daughter', cursive;
    color: #fff;
    text-align: right;
    font-size: 44px;
    letter-spacing: normal;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: uppercase;
    padding: 10px;
    margin: 0 10px;
}
slide address {
    font-family: 'Architects Daughter', cursive;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    padding: 10px;
    margin: 0 10px;
    text-align: 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: 24px;
	}
    slide address {
		font-size: 16px;
	}
}
/*---=================---*/
/*---===FIN BANNER====---*/


/*---======================---*/
/*---======Title Intro=====---*/
.box-title-intro{
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 540px;
}

.title-intro {
    font-family: 'Architects Daughter', cursive;
    color: #ef6c00;
    text-align: center;
    font-weight: 400;
    font-size: 38px;
    letter-spacing: normal;
    line-height: 1.1em;
    text-transform: uppercase;
    margin: 6px;
    padding: 10px;
}

.txt-intro {
    font-family: "proxima-nova",sans-serif;
    color: #333;
    text-align: center;
    font-weight: 400;
    font-size: 19px;
    text-transform: none;
    line-height: 1.5em;
}
/*---======================---*/
/*---==Fin Title Intro=====---*/


/*---======================---*/
/*---=========Seccion2=====---*/
.container-section-2 {
    margin-top: 90px;
    width: 100%;
    min-height: 535px;
    background-color: #f99a2b;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-2 {
    width: 1200px;
    min-height: 450px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 2px 1px 3px 1px rgba(51,51,51,1);
    -moz-box-shadow: 2px 1px 3px 1px rgba(51,51,51,1);
    box-shadow: 2px 1px 3px 1px rgba(51,51,51,1);
}

.title-s2 {
    font-family: 'Architects Daughter', cursive;
    color: #137ac8 !important;
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: normal;
    line-height: 1.1em;
    text-transform: uppercase;
    margin: 2px;
    padding: 8px;
}

.txt-s2 {
    font-family: "proxima-nova",sans-serif;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: normal;
    margin: 0 2px;
    padding: 0 12px;
}

.container-s2-txt {
    margin-top: 40px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box-container-s2 {
    max-width: 440px;
    height: auto;
}

.txt-box-container-s2 {
    font-family: "proxima-nova",sans-serif;
    text-align: left;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: normal;
    margin: 0 2px;
    padding: 10px 12px;
}
/*---======================---*/
/*---=====Fin Seccion2=====---*/


/*---==============================---*/
/*---=============Title-p-room=====---*/
.conatiner-txt-principal-room {
    margin: 0 auto;
    width: 80%;
    height: auto;
    margin-top: 130px;
}

.title-principal-room {
    font-family: "proxima-soft",sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: normal;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #333;
    margin: 0 12px;
    padding: 5px 12px;
    text-align: left;
}

.txt-principal-room {
    font-family: "proxima-soft",sans-serif;
    font-size: 16px;
    color: #333;
    margin: 5px 12px;
    padding: 5px 12px;
    text-align: left;
}
/*---==============================---*/
/*---=========Fin Title-p-room=====---*/


/*---==============================---*/
/*---================Rooms=========---*/
.container-rooms {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    margin-top: 110px;
}

.box-container-rooms {
    width: 565px;
    height: 840px;
    margin: 15px;
    -webkit-box-shadow: 7px 17px 13px 4px rgba(238,238,238,1);
    -moz-box-shadow: 7px 17px 13px 4px rgba(238,238,238,1);
    box-shadow: 7px 17px 13px 4px rgba(238,238,238,1);
}

.box-img-room {
    width: 100%;
    height: 350px;
    background-color: #137ac8;
}


/*--==--*/
.g-v {
    background-image: url(../img/SunScape/gardenview.jpg);
    background-size: cover;
    background-position: center;
}
.g-p {
    background-image: url(../img/SunScape/dlx_king_pv.jpg);
    background-size: cover;
    background-position: center;
}
.fm {
    background-image: url(../img/SunScape/dlx-gv-dbl-td.jpg);
    background-size: cover;
    background-position: center;
}
/*--==--*/

.room-name {
    font-family: "proxima-soft",sans-serif;
    font-size: 26px;
    color: #333;
    font-weight: 100;
    letter-spacing: 1px;
    margin: 16px;
    padding: 5px 12px 22px 12px;
    text-align: left;
    border-bottom: 2px dashed #333;
}

.icon-name-room {
    font-family: "proxima-soft",sans-serif;
    font-size: 20px;
    color: #333;
    font-weight: 100;
    letter-spacing: 1px;
    margin: 10px;
    padding: 12px;
    text-align: left;
}

.icon-name-room i {
    color: #ef6c00;
    font-size: 25px;
    padding: 10px 15px;
    margin: 2px 0;
}

.sub-room-detail {
    margin-left: 12px;
}
.info-room {
    font-family: "proxima-soft",sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 100;
    padding: 12px;
    text-align: left;
}

.cebo {
    border-bottom: 2px dashed #333;
}


.caja-enlace {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.enlace-room {
    background-color: #137ac8 !important;
    font-family: "proxima-soft",sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    padding: 12px;
    margin-right: 15px;
    margin-top: 20px;
    text-align: center;
}

/*--==--*/
@media screen and (max-width: 650px) {
	.icon-name-room {
        font-size: 14px;
        margin: 0;
        padding: 8px;
    }

    .icon-name-room i {
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

    .info-room {
        font-size: 12px;
    }
    
    .enlace-room {
        margin-top: 30px;
    }
    
    .box-container-rooms {
        height: 740px;
    }
    
}
/*---==============================---*/
/*---============Fin Rooms=========---*/



/*---===============================---*/
/*---=========TXT Room Club=========---*/
.container-description-club-room {
    margin-top: 110px;
    width: 100%;
    min-height: 585px;
    background-color: #eee;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-description-club-room {
    max-width: 1200px;
    min-height: 440px;
    
    padding: 18px;
}

.details-inclusion-club-room {
    display: flex;
    justify-content: center;
    align-items: center;
}

.txt-details-club-rooms {
    margin: 18px;
    padding: 18px;
    width: auto;
    height: auto;
    column-count: 2;
}

@media screen and (max-width: 580px) {
    .txt-details-club-rooms {
        column-count: 1;
        font-size: 14px;
        
    }
}
/*---===============================---*/
/*---=====Fin TXT Room Club=========---*/




/*----==============================---*/
/*----==========Club Room===========---*/
.c-1 {
    background-image: url(../img/SunScape/club-1.jpg);
    background-size: cover;
    background-position: center;
}
.c-2 {
    background-image: url(../img/SunScape/club-1.jpg);
    background-size: cover;
    background-position: center;
}
.c-3 {
    background-image: url(../img/SunScape/club-3.jpg);
    background-size: cover;
    background-position: center;
}
.c-4 {
    background-image: url(../img/SunScape/club-4.jpg);
    background-size: cover;
    background-position: center;
}
.c-5 {
    background-image: url(../img/SunScape/club-5.jpg);
    background-size: cover;
    background-position: center;
}
/*--==--*/

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

.box-note {
    position: absolute;
    top: 15px;
    left: 15px;
}

.txt-box-note {
    background-color: #137ac8;
    font-family: "proxima-soft",sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    text-align: center;
    border-radius: 3px;
}
/*----==============================---*/
/*----======Fin Club Room===========---*/


/*----=============================----*/
/*----=============Dinner==========----*/
.box-text-container {
    width: 80%;
    height: auto;
    margin: 0 auto;
    margin-top: 110px;
}

.title-dinner {
    font-family: 'Architects Daughter', cursive;
    color: #ef6c00 !important;
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: normal;
    line-height: 1.1em;
    text-transform: uppercase;
    margin: 2px;
    padding: 8px;
 }   
   
.txt-dinner {
    font-family: "proxima-nova",sans-serif;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: normal;
    margin: 0 2px;
    padding: 0 12px;
}
    
    
.container-restaurants {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    width: 100%;
    height: auto;
    margin-top: 90px;
} 

.box-restaurants {
    width: 1150px;
    height: 340px;
    margin: 15px;
    -webkit-box-shadow: 4px 4px 4px 0px rgba(51,51,51,1);
    -moz-box-shadow: 4px 4px 4px 0px rgba(51,51,51,1);
    box-shadow: 4px 4px 4px 0px rgba(51,51,51,1);
    
    display: flex;
    flex-direction: row;
}

/*--==--*/
.img-dinner {
    width: 450px;
    height: 340px;
    position: relative;
}

.txt-box-dinner {
    width: 700px;
    height: 340px;
    background-color: #fff;
}

.name-dinner,
.texto-dinner {
    font-family: "proxima-nova",sans-serif;
    text-align: left;
    color: #333;
    line-height: 1.5em;
    letter-spacing: normal;
    
}

.name-dinner {
    font-size: 26px;
    font-weight: 600;
    margin: 15px;
    padding: 12px;
}

.texto-dinner {
    font-size: 16px;
    font-weight: 300;
    margin: 5px 5px 0 15px;
    padding: 5px 5px 0 15px;
}

.dashed {
    padding-bottom: 12px;
    border-bottom: 2px dashed #137ac8;
}

.fas {
    color: #f99a2b;
    padding-right: 8px;
}

    /*--===--*/
.dinner-1 {
    background-image: url(../img/SunScape/dinner-1.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-3 {
    background-image: url(../img/SunScape/dinner-3.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-2 {
    background-image: url(../img/SunScape/dinner-2.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-4 {
    background-image: url(../img/SunScape/dinner-4.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-5 {
    background-image: url(../img/SunScape/dinner-5.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-6 {
    background-image: url(../img/SunScape/dinner-6.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-7 {
    background-image: url(../img/SunScape/dinner-7.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-8 {
    background-image: url(../img/SunScape/dinner-8.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-9 {
    background-image: url(../img/SunScape/dinner-9.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-10 {
    background-image: url(../img/SunScape/dinner-10.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-11 {
    background-image: url(../img/SunScape/dinner-11.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-12 {
    background-image: url(../img/SunScape/dinner-12.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-13 {
    background-image: url(../img/SunScape/dinner-13.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-14 {
    background-image: url(../img/SunScape/dinner-14.jpg);
    background-size: cover;
    background-position: center;
}
.dinner-15 {
    background-image: url(../img/SunScape/dinner-13.jpg);
    background-size: cover;
    background-position: center;
}
/*--==--*/


/*--===@media===--*/
@media screen and (max-width: 1166px){
    .box-restaurants {
        width: 950px;
        height: 240px;
    }
    
    .img-dinner {
        width: 350px;
        height: 240px;
    }

    .txt-box-dinner {
        width: 600px;
        height: 240px;
    }
}
/*--==--*/

@media screen and (max-width: 964px){
    .box-restaurants {
        width: 750px;
        min-height: 240px;
    }
    
    .name-dinner {
        font-size: 16px;
    }

    .texto-dinner {
        font-size: 12px;
    }
    
}
/*--==--*/


@media screen and (max-width: 768px){
    .box-restaurants {
        width: 550px;
        min-height: 240px;
    }
    
    .img-dinner {
        width: 250px;
        height: 240px;
    }

    .txt-box-dinner {
        width: 300px;
        height: 240px;
    }
    
}
/*--==--*/

@media screen and (max-width: 564px){
    .box-restaurants {
        width: 300px;
        height: 410px;
        
        display: flex;
        flex-direction: column;
    }
    
    .img-dinner {
        width: 100%;
        height: 240px;
    }
    
    .txt-box-dinner {
        height: 100%;
    }
    
}
/*----=============================----*/
/*----==========Fin Dinner=========----*/   
    

/*----=============================----*/
/*----============Location=========----*/  
.container-location {
    margin-top: 110px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box-location-img {
    width: 400px;
    min-height: 250px;
    background-image: url(../img/SunScape/location.jpg);
    background-size: cover;
    background-position: center;
}

.box-location-txt {
    width: 600px;
    min-height: 250px;
}

.title-location {
    font-family: 'Architects Daughter', cursive;
    color: #137ac8 !important;
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: normal;
    line-height: 1.1em;
    text-transform: uppercase;
    margin: 2px;
    padding: 8px;
}

.txt-location {
    font-family: "proxima-soft",sans-serif;
    font-size: 16px;
    color: #333;
    margin: 5px 12px;
    padding: 5px 12px;
    text-align: left;
}

/*----=============Location========----*/
/*----=========Fin Location========----*/  



/*----=======================----*/
/*----=========Galery========----*/
.container-galery {
    margin-top: 110px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box-galery {
    width: 330px;
    height: 330px;
    margin: 3px;
}

/*--==--*/

.img-1 {
    background-image: url(../img/SunScape/img-1.jpg);
    background-size: cover;
    background-position: center;
}
.img-2 {
    background-image: url(../img/SunScape/img-2.jpg);
    background-size: cover;
    background-position: center;
}
.img-3 {
    background-image: url(../img/SunScape/img-5.jpg);
    background-size: cover;
    background-position: center;
}
.img-4 {
    background-image: url(../img/SunScape/img-6.jpg);
    background-size: cover;
    background-position: center;
}
.img-5 {
    background-image: url(../img/SunScape/img-7.jpg);
    background-size: cover;
    background-position: center;
}
.img-6 {
    background-image: url(../img/SunScape/img-8.jpg);
    background-size: cover;
    background-position: center;
}
.img-7 {
    background-image: url(../img/SunScape/img-9.jpg);
    background-size: cover;
    background-position: center;
}
.img-8 {
    background-image: url(../img/SunScape/img-10.jpg);
    background-size: cover;
    background-position: center;
}
.img-9 {
    background-image: url(../img/SunScape/img-11.jpg);
    background-size: cover;
    background-position: center;
}
.img-10 {
    background-image: url(../img/SunScape/img-12.jpg);
    background-size: cover;
    background-position: center;
}
.img-11 {
    background-image: url(../img/SunScape/img-13.jpg);
    background-size: cover;
    background-position: center;
}
.img-12 {
    background-image: url(../img/SunScape/img-14.jpg);
    background-size: cover;
    background-position: center;
}
.img-13 {
    background-image: url(../img/SunScape/img-15.jpg);
    background-size: cover;
    background-position: center;
}
.img-14 {
    background-image: url(../img/SunScape/img-16.jpg);
    background-size: cover;
    background-position: center;
}
.img-15 {
    background-image: url(../img/SunScape/img-17.jpg);
    background-size: cover;
    background-position: center;
}
.img-16 {
    background-image: url(../img/SunScape/img-18.jpg);
    background-size: cover;
    background-position: center;
}
.img-17 {
    background-image: url(../img/SunScape/img-19.jpg);
    background-size: cover;
    background-position: center;
}
.img-18 {
    background-image: url(../img/SunScape/img-21.jpg);
    background-size: cover;
    background-position: center;
}
.img-19 {
    background-image: url(../img/SunScape/img-22.jpg);
    background-size: cover;
    background-position: center;
}
.img-20 {
    background-image: url(../img/SunScape/location-img.jpg);
    background-size: cover;
    background-position: center;
}
/*----=======================----*/
/*----=====Fin Galery========----*/


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














    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
















































