*{
    box-sizing: border-box;
}

body{
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #E1F3F6;
}

/*CCONTENEDOR*/
.contenido_datos{
    display: flex;
    justify-content: space-between;
}

/*-----TEXTOS-----*/
.texto{
    font-size: 40pt;
    margin-left: 5%;
    margin-top: 10%;
}

.texto_arriba{
	line-height: 1.5;
	margin-bottom: 35px;
}

.texto_abajo{
    font-family: 'Prata', serif;
    padding-bottom: 1%;
}


/*-----MAPA-----*/
.mapa{
    position: absolute;
    width: 50%;
    height: 80%;
    margin-top: 100px;
    margin-left: 5%;
    right: 5%;
    z-index: -1;
}

.mapa::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../img/map.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 10%;
  border-bottom-right-radius: 10%;
}


/*-----PIE DE PAGINA-----*/
.pie_datos{
	position: fixed;
	bottom: 0;
	left:0;
    width: 55%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: space-around;
    padding: 2%;
}

.horario, .direccion, .contacto{
    line-height: 1.5;
    font-weight: 500;
}

.titulo{
    margin-bottom: 10%;
}

.direccion a, .contacto a{
    text-decoration: none;
    color: #52A29F;
}


/*RESPONSIVE*/
@media (min-width: 650px) and (max-width: 1024px) {
    .texto{
        margin-top: 15%;
        font-size: 45pt;
    }

    .mapa{
        position: absolute;
        width: 100%;
        height: 80%;
        margin-top: 54px;
        z-index: -1;
    }
    .pie_datos{
        width: 100%;
    }
    .horario, .direccion, .contacto{
        padding: 2%;
        text-align: center;
        font-weight: 100;
        font-size: 12pt;
    }
}
@media (min-width: 500px) and (max-width: 650px) {
    .contenido_datos{
        flex-wrap: wrap;
    }
    .texto{
        margin-top: 15%;
        font-size: 30pt;
    }
    .mapa{
        position: absolute;
        width: 100%;
        height: 70%;
        margin-top: 10%;
        z-index: -1;
    }
    .pie_datos{
        width: 100%;
    }
    .horario, .direccion, .contacto{
        padding: 2%;
        text-align: center;
        font-weight: 100;
        font-size: 12pt;
    }
}

@media (min-width:366px) and (max-width: 450px) {
    .contenido_datos{
        flex-direction: column;
    }

    .texto{
        margin-top: 15%;
        font-size: 25pt;
    }

    .mapa{
        position: absolute;
        width: 100%;
        margin-top: 54px;
        z-index: -1;
    }
    .pie_datos{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .horario, .direccion, .contacto{
      padding: 2%;
      text-align: center;
      font-weight: 100;
      font-size: 14pt;
    }
    .titulo{
        margin-bottom: 5%;
    }
}

@media (max-width: 365px) {
    .contenido_datos{
        flex-direction: column;
    }

    .texto{
        margin-top: 25%;
        font-size: 23pt;
    }
    .texto_abjo{
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .mapa{
        position: absolute;
        width: 100%;
        height: 55%;
        margin-top: 54px;
        margin-left: inherit;
        right: inherit;
        z-index: -1;
    }
    .pie_datos{
        width: 100%;
        height: 50%;
        flex-direction: column;
        align-items: center;
    }
    .horario, .direccion, .contacto{
      padding: 2%;
      text-align: center;
      font-weight: 100;
      font-size: 8pt;
    }
    .titulo{
        margin-bottom: 5%;
    }
}