* {
    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,.88);

	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas:
		"home navegacion";
}

.navegador .home {
	grid-area: home;
	height: 50px;
}

.navegador .navegacion {
	grid-area: navegacion;
	height: 50px;
}

.navegador .home {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;  
    
    margin-left: 40px;
}
.navegador .home a {
	color: #fff;
	padding: 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .6s ease;
}

.navegador .home a:hover {
    color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.navegador .navegacion {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.navegador .navegacion a {
	color: #fff;
	padding: 12px 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .5s ease;
}
.navegador .navegacion a:hover {
	color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

@media screen and (max-width: 650px){
	.navegador {
		display: none;
	}
    .menu-boton {
        display: inline-block;
        position: absolute;
        right: 0;
        padding: 8px;
        margin-right: 2px;
        margin-top: -40px;
        font-size: 20px;
        background-color: rgb(5,26,58,.88);
        color: #fff;
        font-family: 'Yanone Kaffeesatz', sans-serif;
        border-radius: 2px;
    }
.sidenav {
    width: 0;
    position: fixed;
    z-index: 1;  
    top: 100px;
    right: 0;
    padding: 10px 0;
    background-color: #4091ec;
    overflow-x: hidden;
    transition: 0.7s;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
	}

.sidenav a {
    padding-left: 20px;
    font-size: 22px;
   	padding: 5px;
    color: #fff;
    display: block;
    transition: 0.3s;
	}

.sidenav a:hover {
    color: rgb(5,26,58);
    transition: .6s;
	}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
	}
}
/*---- ---- ---- ---- FIN DEL NAV ---- ---- ----*/



/*--=====================--*/
/*--========Banner=======--*/
.banner {
    background-image: url(../img/banner.jpg);
    background-size: cover;
    background-position: center;
    
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    overflow: hidden;
    z-index: -1;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.principal-title h1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 60px;
    color: #fff;
    text-align: center;
    font-weight: 100;
}

.principal-title address {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-weight: 100;
}
/*--=====================--*/
/*--====Fin Banner=======--*/


/*--=====================--*/
/*--=======Welcome=======--*/
.welcome {
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 550px;
}

.welcome h2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #ffc61a;
    text-align: center;
    font-weight: 100;
}

.welcome h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 50px;
    color: #000;
    text-align: center;
    font-weight: 100;
    margin-bottom: 45px;
}

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

.services {
    width: 300px;
    height: 260px;
}

.lado {
    border-right: 1px dashed #000;
}

.img-services {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.img-services img {
    object-fit: cover;
}

.services h4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
    color: #000;
    text-align: center;
    text-transform: capitalize;
    font-weight: 100;
    margin: 4px;
    margin-top: 20px;
    padding: 2px;
}

.services p {
    font-family: 'Patrick Hand', cursive;
    font-size: 15px;
    color: #000;
    text-align: center;
    font-weight: 100;
    padding: 2px 12px;
}
    /*--====--*/

@media screen and (max-width: 1000px) {
    .lado {
        border-right: none;
    }
}
/*--=====================--*/
/*--===Fin Welcome=======--*/


/*--=====================--*/
/*--=======Tarifa=======--*/
.tarifa-container {
    width: 100%;
    min-height: 500px;;
    margin: 0 auto;
    margin-top: 90px;
    padding: 30px 15px;
    
    background-image: url(../img/banner-tarifa.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tarifa-container h2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #ffc61a;
    text-align: center;
    font-weight: 100;
}

.tarifa-container h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-weight: 100;
    margin-bottom: 45px;
}

.containes-box-tarifa {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box-tarifa {
    width: 250px;
    min-height: 350px;
    margin: 13px;
    border: 1px solid #ffc61a;
    
    position: relative;
}

.box-tarifa h4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    font-weight: 100;
    margin: 4px;
    margin-top: 20px;
    padding: 2px;
}

.box-tarifa p {
    font-family: 'Patrick Hand', cursive;
    font-size: 15px;
    color: #fff;
    text-align: left;
    font-weight: 100;
    padding: 2px 12px;
}

.precio {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px;
    background-color: #fb4f14;
    border-radius: 30px 0 0 0;
    -webkit-box-shadow: -1px -1px 5px 0px rgba(255,255,255,1);
    -moz-box-shadow: -1px -1px 5px 0px rgba(255,255,255,1);
    box-shadow: -1px -1px 5px 0px rgba(255,255,255,1);
    transition: .5s;
}

.precio .txt-precio {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
}
.precio .txt-precio span {
    font-family: 'Patrick Hand', cursive;
    font-size: 14px;
}

.img-tarifa {
    border-radius: 50%;
    margin-bottom: 20px;
}
    /*--====--*/

.box-tarifa h4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 38px;
    color: #fff;
    text-align: center;
    font-weight: 100;
    margin: 10px 5px 0 5px;
}
.box-tarifa h4 span {
    color: #fb4f14;
    font-size: 48px;
    text-transform: uppercase;
}
    /*--====--*/

.box-tarifa .txt-book {
    font-family: 'Patrick Hand', cursive;
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 100;
    margin: 0 5px;
    padding: 6px;
}
.box-tarifa .txt-book span {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    color: #ffc61a;
    font-size: 48px;
    text-transform: uppercase;
}
    /*--====--*/

.txt-enlace {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px;
    color: #fff;
    padding: 12px;
    transition: .5s;
}
.precio:hover {
    transition: .5s;
    color: #fb4f14;
    background-color: #fff;
}
.txt-enlace:hover,
.txt-precio:hover {
    transition: .5s;
    color: #fb4f14;
}



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


.slideshow-container {
    width: 250px;
    height: 350px;
}

.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,
.mySlides .room-img-21 {
    width: 248px;
    height: 350px;
    position: relative;
}

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


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

/*--====FIN slide-grid-offer====--*/

/*--=====================--*/
/*--====Fin Tarifa=======--*/


hr.lg {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEY1ODZBODExOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEY1ODZBODIxOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowRjU4NkE3RjE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowRjU4NkE4MDE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpfBKyQAAAAuSURBVHjaYvz//38DAx7Az8+PT5qBiYFCMGrAYDCAhVA8f/z4cTQQh78BAAEGANaYBsy1QBT+AAAAAElFTkSuQmCC") 0% 0% repeat-x;
    
    height: 16px !important;
    margin: 0;
    display: block;
    width: 100%;
    border: none;
}


/*--======================--*/
/*--=======Nosotros=======--*/
.container-nosotros {
    width: 100%;
    min-height: 500px;
    
    background-image: url(../img/banner-nosotros.png);
    background-position: right;
    background-size: auto;
    background-repeat: no-repeat;
}

.txt-intro-container {
    width: auto;
    height: auto;
}

.container-nosotros h2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 50px;
    color: #ffc61a;
    text-align: left;
    font-weight: 100;
    margin-top: 90px;
    margin-left: 50px;
}

.container-nosotros h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #000;
    text-align: left;
    font-weight: 100;
    margin-left: 50px;
}

.container-nosotros address {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    color: #000;
    text-align: left;
    font-weight: 100;
    margin-left: 50px;
    padding-bottom: 15px;
}
    /*--====--*/

@media screen and (max-width: 370px) {
    .container-nosotros address,
    .container-nosotros h3,
    .container-nosotros h2 {
        margin-left: 10px;
        margin-right: 5px;
    }
}
    /*--====--*/

.container-explain {
    max-width: 500px;
    height: auto;
}

.txt-explain {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #000;
    text-align: left;
    font-weight: 100;
    margin: 15px;
    padding: 20px;
}
.txt-explain span {
    color: #0e246e;
}


.lista-container {
    max-width: 340px;
    min-height: 60px;
    column-count: 2;
    margin-left: 50px;
    padding-bottom: 20px;
}

.lista-container li {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #0e246e;
}
.lista-container li span {
    color: #ffc61a;
}
    /*--====--*/


@media screen and (max-width: 370px) {
    
    .lista-container {
        margin-left: 10px;
    }
}
    /*--====--*/


@media screen and (max-width: 1140px) {
    
    .container-explain,
    .lista-container {
        background-color: rgba(255,255,255,.7);
    }

}


@media screen and (max-width: 710px) {
    .txt-intro-container,
    .container-explain,
    .lista-container {
        background-color: rgba(255,255,255,.7);
    }

}
/*--======================--*/
/*--====Fin Nosotros======--*/


/*--====================--*/
/*--========Precios=====--*/
.precios-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    margin-top: 90px;
}

.box-price {
    width: 300px;
    min-height: 400px;
    margin: 5px;
    -webkit-box-shadow: 3px 6px 15px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 6px 15px -2px rgba(0,0,0,0.75);
    box-shadow: 3px 6px 15px -2px rgba(0,0,0,0.75);
}
    /*---=====---*/

.img-price {
    width: 100%;
    height: 150px;
    background-image: url(../img/puj-bav.jpeg);
    background-position: center;
    background-size: cover;
    
    position: relative;
    z-index: 1;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.img-price::after {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: rgb(0,0,0,.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.uvero {
    background-image: url(../img/uvero.jpg);
    background-position: center;
    background-size: cover;
}
.bayahibe {
    background-image: url(../img/bayahibe.jpg);
    background-position: center;
    background-size: cover;
}
.sdq {
    background-image: url(../img/sdq.jpg);
    background-position: center;
    background-size: cover;
}


.txt-price {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    padding: 18px;
    margin: 5px;
}

.pie-txt-price {
    font-family: 'Patrick Hand', cursive;
    font-size: 15px;
    color: #fff;
}
    /*--====--*/

.container-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto-fit, 1fr;
    grid-template-areas: 
        "column-price column-price-2"
        "column-enlace column-enlace";
}

.column-price {
    grid-area: column-price;
    min-height: 250px;
    border-right: 1px solid #0e246e;
}

.column-price-2 {
    grid-area: column-price-2;
    min-height: 250px;
}

.column-enlace {
    grid-area: column-enlace;
    height: 50px;
    background-color: #cc0066;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


/*.column-price {
    width: 150px;
    min-height: 250px;*/
}
.linea {
    border-right: 1px solid #0e246e;
}
    /*--====--*/

.name-transfer {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    color: #000;
    padding: 10px;
    border-bottom: 1px solid #0e246e;
}

.name-vip {
    background-color: #040710;
    color: #fff;
}

.name-private {
    background-color: #cc9e14;
    color: #fff;
}

.txt-lista {
    font-family: 'Patrick Hand', cursive;
    font-size: 15px;
    font-weight: 500;
    color: #040710;
    padding: 8px;
    text-align: left;
}
.txt-lista span {
    color: #0e246e;
    font-size: 17px;
    font-family: 'Yanone Kaffeesatz', sans-serif; 
}

.fondo-lista {
    background-color: #fff9e8;
}




.txt-enlace-column {
    color: #fff;
    font-size: 22px;
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    border-radius: 6px;
    padding: 4px;
    -webkit-box-shadow: 3px 3px 54px 6px rgba(255,255,255,1);
    -moz-box-shadow: 3px 3px 54px 6px rgba(255,255,255,1);
    box-shadow: 3px 3px 54px 6px rgba(255,255,255,1);
}
.txt-enlace-column span {
    color: #ffc61a;
}

/*--====================--*/
/*--====Fin Precios=====--*/


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


























































