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

body {
    background-image: url(../img/back_1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    position: relative;
    z-index: 1;
}

body::after {
    content:"";
    position:absolute;
    background:rgba(255,255,255,.9);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1000;
}

.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;
    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.jpeg);
    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;
	}
}

    /*--====IMG_PNG====--*/
.banner .imagen_png1 {
    position: absolute;
    z-index: 1000;
    bottom: -60px;
    right: -25px;
    width: 300px;
}

/*----====TEXTO BIENVENIDA====---*/
.txt_container_intro {
    width: 100%;
    height: auto;
    margin-top: 475px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 116px;
}

.letras { 
    background-color: #020716;
    margin: 0 auto;
    max-width: 700px;
    padding: 20px;
    border-radius: 2px;
}

.txt_p {
    font-family: 'Charm', cursive;
	letter-spacing: 2;
	border: 4px double rgba(255,255,255,.25);
	border-width: 4px 0;
	padding: 10px;
	margin: 15px;
    text-align: center;
    color: rgba(255,255,255,.50);
    font-size: 18px;
}
  
.txt_p span {
      font-size: 35px;
      letter-spacing: 0;
      padding: 12px 5px;
      display: block;
      margin: 0 auto;
      text-shadow: 0 0 80px rgba(255,255,255,.5);
      color: #fff;
}
/*--Fin Header--*/
/*--======--*/

    /*--===@media===--*/
@media screen and (max-width: 1184px) {
    .txt_p {
        padding: 6px;
        margin: 10px;
        font-size: 15px;
    }
  
    .txt_p span {
          font-size: 28px;
          letter-spacing: 0;
          padding: 8px 2px;
    }
    
    .txt_container_intro {
        bottom: 93px;
        position: relative;
        z-index: 1100;
    }
}

    /*--===@media===--*/
@media screen and (max-width: 1030px) {
    
    .imagen_png1 {
        width: 250px;
    }

    .imagen_png2 {
        width: 250px;
    }
        /*--*/
}

    /*--===@media===--*/
@media screen and (max-width: 800px) {
    
    .nav-container {
        display: grid;
        grid-template-columns: 1ft;
        grid-template-rows: repeat(auto-fit, 1fr);
        grid-template-areas: 
        "logo-box"
        "nav-box-1"
        "nav-box-2";
    }
        /*--*/

    .nav-box-1 {
        grid-area: nav-box-1;
        height: 40px;
        margin: 6px 0;
        padding: 10px 0;
    }

    .logo-box {
        grid-area: logo-box;
        height: auto;
    }

    .nav-box-2 {
        grid-area: nav-box-2;
        height: 40px;
        margin: 6px 0;
        padding: 10px 0;
    }
        /*--*/
    
    
}

   /*-===@media===*/
@media screen and (max-width: 580px) {
    
    .container-header {
        height: 600px;
    }
    
    .nav-box-1,
    .nav-box-2 {
        height: 30px;
        margin: 5px;
        padding: 10px;
    }
    
    .enlace_nav {
        font-size: 18px;
        margin: 0 11px;
        padding: 5px;
    }
    
    .logo-box {
        max-width: 200px;
    }

    .img_logo {
        max-width: 200px;
    }
    /*--=====--*/

    .imagen_png1 {
        width: 220px;
    }

    .imagen_png2 {
        width: 260px;
    }
    
}
    /*-===@media===*/ 
 /*--===========================================--*/
/*--=====Fin Bienvenida Header y Bienvenida=====--*/   


/*--========================--*/
/*--===========Welcome======--*/
.container-welcome {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 700px;
}
.container-welcome .welcome-box {
    width: 500px;
    max-height: 500px;
    margin: 12px;
}
@media screen and (max-width: 1048px) {
	.container-welcome {
		margin-bottom: 110px;
	}
}
@media screen and (max-width: 380px) {
	.container-welcome {
		margin-bottom: 180px;
	}
}
    /*-====-*/
.img-welcome {
    display: grid;
    grid-gap: 2px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
        "img-1 img-2"
        "img-3 img-3";
}

.img-1 {
    grid-area: img-1;
    max-width: 250px;
    height: 288px;
}
.img-2 {
    grid-area: img-2;
    max-width: 250px;
    height: 288px;
}
.img-3 {
    grid-area: img-3;
    max-width: 100%;
    height: 210px;
}

    /*--====img====--*/
.img-1 {
    background-image: url(../img/img-1.jpg);
    background-position: left;
    background-size: cover;
}
.img-2 {
    background-image: url(../img/img-2.jpg);
    background-position: left;
    background-size: cover;
}
.img-3 {
    background-image: url(../img/img-3.jpg);
    background-position: center;
    background-size: cover;
}

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

    /*--====TXT WELCOME====--*/
.title-welcome {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    padding: 8px 10px;
    margin: 5px;
}
.txt-welcome {
    font-family: 'Patrick Hand', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: left;
    color: goldenrod;
    padding: 5px;
    width: 100%;   
}
/*--========================--*/
/*--=======Fin Welcome======--*/
    
/*--========================--*/
/*--===========VIDEO========--*/
.video-container {
    padding-top: 90px;
	width: 100%;
	min-height: 600px;

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

	background-image: url(../img/banner-video.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
    background-color: #0e246d;
}

.caja-video {
	width: 400px;
	height: 400px;
	margin: 20px;
	border-radius: 50%;
	box-shadow: 1px 1px 1px 1px #3399ff;
}
.caja-video iframe {
	width: 100%;
	height: 100%;
	padding: 6px;
	border-radius: 50%;
}

.caja-txt-video {
	max-width: 700px;
	min-height: 400px;
	margin: 20px;
	background-color: rgb(0,0,0,.5);
}
/*--====--*/

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

.txt-2-video {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    font-size: 50px;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    margin: 25px;
    text-transform: uppercase;
}
.txt-2-video span {
	color: #fb4f14;
}

.txt-3-video {
	font-family: 'Patrick Hand', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 15px;
    margin: 20px;
}

    /*--==@media==--*/
@media screen and (max-width: 580px) {
    .txt-2-video {
        font-size: 35px;
        text-align: left;
    }
}

@media screen and (max-width: 414px) {
    .txt-2-video {
        font-size: 25px;
        text-align: center;
    }
}

/*--========================--*/
/*--=======Fin VIDEO========--*/
    
    
    
/*--========================--*/
/*--=========OFERTAS========--*/   
.container_txt_principal {
    width: 100%;
    min-height: 400px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.box_p_principales {
    width: auto;
    height: auto;
}

.title_principal {
    font-family: 'Charm', cursive;
    font-size: 62px;
    text-align: center;
    color: #e41434;
    padding: 8px 10px;
}
.title_principal span {
    color: #ffae3b;
}
    /*--*/

.txt_principal {
    font-family: 'Charm', cursive;
    font-size: 32px;
    text-align: center;
    color: #020716;
    padding: 0 8px;
}

.extra_txt_principal {
    font-family: 'Charm', cursive;
    font-size: 22px;
    text-align: center;
    color: #000;
    padding: 0 8px;
}
.rojo {
    color: rgba(230,20,51,1);
    font-weight: 600;
}
    /*--=====--*/

.container_box_ofert {
    width: 100%;
    height: auto;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box_ofert {
    width: 350px;
    min-height: 500px;
    margin: 10px;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(14,36,109,1);
    -moz-box-shadow: 0px 3px 5px -1px rgba(14,36,109,1);
    box-shadow: 0px 3px 5px -1px rgba(14,36,109,1);
    border-radius: 0 0 12px 0;
}
    /*--====--*/

.slider_container {
    width: 300px;
    margin: 0 auto;
    height: 250px;
    overflow: hidden;
}

.slider_container ul {
    display: flex;
    animation: cambio 20s infinite alternate linear;
    width: 400%;
}

.slider_container ul li {
    width: 100%;
    height: 250px;
    list-style: none;
}

.slider_container ul li img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@keyframes cambio{
    0%{margin-left: 0;}
    20%{margin-left: 0;}

    25%{margin-left: -100%;}
    45%{margin-left: -100%;}

    50%{margin-left: -200%;}
    70%{margin-left: -200%;}

    75%{margin-left: -300%;}
    100%{margin-left: -300%;}
}
     /*--====--*/

.hotel_name {
    font-family: 'Charm', cursive;
    font-size: 36px;
    text-align: center;
    color: #020716;
    padding: 8px;
    border-bottom: 3px double #4B0082;
}
    /*--====--*/

.container_detail_price {
    width: 100%;
    height: auto;
}

.box_txt_price {
    width: 100%;
    height: 55px;
    margin: 4px 0;
    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    
    background-color: rgba(75,0,130,.1);
    border-radius: 0 0 8px 0;
}

.box-txt-detail,
.box-hotel-price {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.box-txt-detail h5 {
    width: 175px;
    height: 100%;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px;
    color: #000;
    text-align: center;
}

.box-txt-detail h6 {
    width: 175px;
    height: 100%;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: #0e246e;
    text-align: center;
}


.box-hotel-price {
    width: 175px;
    height: 100%;
    
    background: rgba(240,47,23,1);
    background: -moz-radial-gradient(center, ellipse cover, rgba(240,47,23,1) 0%, rgba(251,79,20,1) 0%, rgba(228,20,52,1) 62%, rgba(230,20,51,1) 71%, rgba(230,20,51,1) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(240,47,23,1)), color-stop(0%, rgba(251,79,20,1)), color-stop(62%, rgba(228,20,52,1)), color-stop(71%, rgba(230,20,51,1)), color-stop(100%, rgba(230,20,51,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(240,47,23,1) 0%, rgba(251,79,20,1) 0%, rgba(228,20,52,1) 62%, rgba(230,20,51,1) 71%, rgba(230,20,51,1) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(240,47,23,1) 0%, rgba(251,79,20,1) 0%, rgba(228,20,52,1) 62%, rgba(230,20,51,1) 71%, rgba(230,20,51,1) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(240,47,23,1) 0%, rgba(251,79,20,1) 0%, rgba(228,20,52,1) 62%, rgba(230,20,51,1) 71%, rgba(230,20,51,1) 100%);
    background: radial-gradient(ellipse at center, rgba(240,47,23,1) 0%, rgba(251,79,20,1) 0%, rgba(228,20,52,1) 62%, rgba(230,20,51,1) 71%, rgba(230,20,51,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f02f17', endColorstr='#e61433', GradientType=1 );
    
    border-radius: 14px 0;
}

.box-hotel-price p {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
}
    /*---=====---*/

@media screen and (max-width: 370px) {
    .box-txt-detail h5,
    .box-txt-detail h6,
    .box-hotel-price {
        width: 160px;
    }
}
    /*--====--*/

.box_p_principales-2 {
    margin: 60px;
}
/*--==========================--*/
/*--=======Fin OFERTAS========--*/ 















/*--==========================--*/
/*--============PORQUE========--*/ 
.porque-container {
    padding-top: 90px;
	width: 100%;
	min-height: 600px;

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

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

.caja-img-porque {
    overflow: hidden;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 9px 3px rgba(14,36,109,1);
    -moz-box-shadow: 0px 1px 9px 3px rgba(14,36,109,1);
    box-shadow: 0px 1px 9px 3px rgba(14,36,109,1);
}
    /*--==--*/

.txt-1-porque {
	font-family: 'Charm', cursive;
    font-weight: 100;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    text-align: left;
    padding: 8px;
    margin: 5px;
}
.txt-1-porque span {
	color: #ffae3b;
    font-size: 30px
}
.txt-1-porque strong {
    letter-spacing: 1px;
}

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

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

/*--==========================--*/
/*--==========HOTELES=========--*/ 
.caja-acordeon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: ;
}

.accordion,
.accordion2 {
    padding: 5px 18px;
    width: auto;
    height: auto;
    color: #0e246d;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    display: inline-block;
    transition: 0.4s;
}

.active, .accordion:hover, 
.active, .accordion2:hover {
    text-decoration: underline;
    transition: 0.4s;
}

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


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

.panel {
    padding: 0 18px;
    margin: 1px 12px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-out;
} 
    /*--====--*/

.category-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #0e246d;
    margin-top: 45px;
    width: auto;
    height: auto;
}
    /*----======----*/
.sunscape-caja-color {
    background-color: #fff;
}
.zoetry-caja-color {
    background-color: #72392c;
}
.secred-caja-color {
    background-image: url(../img/secred/bg.png);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
}
.whala-caja-color {
    background-color: #163c2d;
}
.D-M-B-P-caja-color {
    background-image: url(../img/Dreams-Macao/body-background.png);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    
    z-index: 1;
    position: relative;
}
.D-M-B-P-caja-color::after {
    content:"";
    position:absolute;
    background:rgba(0,0,0,.2);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.Barcelo-caja-color {
    background-color: #f5f5f5;
    z-index: 1;
    position: relative;
}
.Barcelo-caja-color::after {
    content:"";
    position:absolute;
    background:rgba(0,0,0,.6);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.princess-caja-color {
    background-image: url(../img/hotel/bavaro-princess-back.jpg);
    background-position: bottom;
    background-size: cover;

    background-color: #f6f6f6;
    z-index: 1;
    position: relative;
}
.princess-caja-color::after {
    content:"";
    position:absolute;
    background:rgba(0,0,0,.5);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.be-live-puj-caja-color {
    /*background-color: #282828;*/
    background: linear-gradient(to bottom, #cccccc 0%, #000000 100%);
    z-index: 1;
    position: relative;
}
.be-live-puj-caja-color::after {
    content:"";
    position:absolute;
    background:rgba(0,0,0,.4);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

/*--======--*/
.img-category {
    width: 300px;
    height: 250px;
}

.txt-category {
    max-width: 550px;
    height: auto;
    
}
.txt-box-category{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    
    width: 100%;
    height: auto;
}

.link-category {
    width: 200px;
    height: auto;
    border-left: 1px solid #fff;
}
    /*--==--*/
@media screen and (max-width: 1050px) {
    .link-category {
        border-left: none;
    }
}

    /*--===STYLE Category-box=====--*/
.sunscape {
    background-image: url(../img/hotel/img-12.jpg);
    background-position: center;
    background-size: cover;
}
.zoetry {
    background-image: url(../img/hotel/caja-Zoetry.jpg);
    background-position: center;
    background-size: cover;
}
.tangery {
    background-image: url(../img/hotel/caja-tanguery.jpeg);
    background-position: center;
    background-size: cover;
}
.secred-royal {
    background-image: url(../img/hotel/caja-secred.jpg);
    background-position: center;
    background-size: cover;
}
.viva-samana {
    background-image: url(../img/hotel/caja-viva-samana.jpeg);
    background-position: center;
    background-size: cover;
}
.serenade {
    background-image: url(../img/hotel/caja-serenade.jpeg);
    background-position: center;
    background-size: cover;
}
.whala {
    background-image: url(../img/hotel/caja-whala.jpg);
    background-position: center;
    background-size: cover;
}
.Dreams-M-B-P {
    background-image: url(../img/hotel/caja-dream-m.jpg);
    background-position: center;
    background-size: cover;
}
.viva-dominicus {
    background-image: url(../img/hotel/caja-dominicus.jpeg);
    background-position: center;
    background-size: cover;
}
.Barcelo-P {
    background-image: url(../img/hotel/caja-barcelo.jpg);
    background-position: center;
    background-size: cover;
}
.princess {
    background-image: url(../img/hotel/caja-princess.jpg);
    background-position: center;
    background-size: cover;
}
.C-D-princess {
    background-image: url(../img/hotel/caja-c-d-princess.jpg);
    background-position: center;
    background-size: cover;
}
.Occidental-P {
    background-image: url(../img/hotel/caja-occidental.jpg);
    background-position: center;
    background-size: cover;
}
.PUJ-Princess {
    background-image: url(../img/hotel/caja-puj-princess.jpg);
    background-position: center;
    background-size: cover;
}
.dream-royal-beach {
    background-image: url(../img/hotel/caja-dream-r-b.jpg);
    background-position: center;
    background-size: cover;
}
.Tropical-Princess {
    background-image: url(../img/hotel/caja-tropical-p.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-puj {
    background-image: url(../img/hotel/caja-be-live-puj.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-hamaca {
    background-image: url(../img/hotel/caja-be-live-hamaca.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-suite {
    background-image: url(../img/hotel/caja-be-live-suite.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-hamaca-beach {
    background-image: url(../img/hotel/caja-be-live-hamaca-beach.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-marien {
    background-image: url(../img/hotel/caja-be-live-marien.jpg);
    background-position: left;
    background-size: cover;
}
.be-live-canoa {
    background-image: url(../img/hotel/img-31.jpg);
    background-position: center;
    background-size: cover;
}


    /*--==Estilos .txt-category==--*/
.category-name {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: underline;
    color: #fff;
    margin: 5px 10px;
    padding: 4px;
}

/*--==--*/
.category-sunscape {
    font-family: 'Architects Daughter', cursive;
    color: #137ac8 !important;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: underline;
    margin: 5px 10px;
    padding: 4px;
}
.details-sunscape {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    color: #ef6c00;
    padding: 8px 16px;
    margin: 4px;
}
/*--==--*/



.details-category {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    color: #fff;
    padding: 8px 16px;
    margin: 4px;
}
    /*--====--*/

.link-category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.precio-categorias span {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    padding: 4px;
}
.precio-categorias {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
    padding: 6px;
    color: #ffae3b;
}
.reservar-link {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: #fff;
    color: #000;
    box-shadow: 0 .5px .5px .5px rgba(0,0,0,0.5);
    background-color: #c1ac6b;
    padding: 6px;
    border-radius: 2px;
    transition: .6s;
}
.reservar-link:hover {
    background-image: -webkit-linear-gradient(#cdbd89, #c1ac6b);
    background-image: -o-linear-gradient(#cdbd89, #c1ac6b);
    background-image: linear-gradient(#cdbd89, #c1ac6b);
    transition: .6s;
}
/*--==========================--*/
/*--======FIN HOTELES=========--*/   

/*--========================--*/
/*--=======CIRCUITOS========--*/
.circuits-container {
	width: 100%;
	min-height: 1000px;
	/*background: linear-gradient(135deg, #780c0b, #ff596d);*/
	background: linear-gradient(140deg, #01061d, #3399ff);
}

.caja-textos-intro {
	margin: 0 auto;
	padding: 30px;
	height: auto;
	max-width: 500px;
}

.txt-intro-circuito {
	font-family: 'Charm', cursive;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    padding: 8px;
    margin: 8px;
}

.title-into-circuito {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 38px;
    text-align: center;
    margin: 8px;
    padding: 6px;
    color: #fff;
}

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

.caja-img-slide,
.caja-txt-slide {
	width: 500px;
	min-height: 500px;
	margin: 12px 20px;
}

.caja-txt-slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/*--====--*/

/*---=========---*/
.slideshow-container {
    max-width: 500px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
    /*--==--*/
.imagen_circuito {
    width: 60px;
    height: auto;
    position: absolute;
    bottom: -14px;
    left: -4px;
    z-index: 1000;
}
.imagen_circuito2 {
    width: 60px;
    height: auto;
    position: absolute;
    bottom: -34px;
    left: -30px;
    z-index: 1000;
}
.imagen_circuito3 {
    width: 90px;
    height: auto;
    position: absolute;
    bottom: -34px;
    right: 40%;
    z-index: 1000;
}
    /*--==--*/

.mySlides {
    display:none;
}

.mySlides .room-img-1,
.mySlides .room-img-2,
.mySlides .room-img-3,
.mySlides .room-img-4,
.mySlides .room-img-5,
.mySlides .room-img-6,
.mySlides .room-img-7,
.mySlides .room-img-8,
.mySlides .room-img-9,
.mySlides .room-img-10,
.mySlides .room-img-11,
.mySlides .room-img-12,
.mySlides .room-img-13,
.mySlides .room-img-14,
.mySlides .room-img-15,
.mySlides .room-img-16,
.mySlides .room-img-17,
.mySlides .room-img-18,
.mySlides .room-img-19,
.mySlides .room-img-20 {
    max-width: 500px;
    min-height: 500px;
    position: relative;
}

.fade{
    -webkit-animation-name:fade;
    -webkit-animation-duration:1s;
    animation-name:fade;
    animation-duration:1s;
}
@-webkit-keyframes fade{
    from{opacity:.4}
    to{opacity:1}
}
@keyframes fade{
    from{opacity:.4}
    to{opacity:1}
}


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

.txt-intro-circuito2 {
	font-family: 'Charm', cursive;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 1px dashed #fff;
}

.title-into-circuito2 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 34px;
    text-align: center;
    padding: 6px;
    color: #fff;
}

.link-txt-slide {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #fff;
    margin: 8px;
    padding: 6px;
    transition: .6s;
}
.link-txt-slide:hover {
	color: darkgreen;
	transition: .6s;
}
/*--========================--*/
/*--====FIN CIRCUITOS========--*/


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









