body{
  font-family: 'Lato', sans-serif;
  background: #fafafa;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/loader.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}

/* Menu */
header{
  width: 100%;
  background: white;
  position: fixed;
  z-index: 100;
  padding: 15px 0;
}
#hamburger{
  width: 30px;
}
.menu{
  width: 95%;
  max-width: 1280px;
  margin: auto;
  padding: 0.5em 0;
  /* Acomoda proporcionalemnte los elementos*/
  display: flex;
  justify-content: space-between;
  /* centrar verticalmente */
  align-items: center;
}
#logo_menu{
  width: 180px;
}
.menu .container-menu .logo .btn-menu{
  color: #282828;
  font-size: 30px;
  display: none;
}
.menu .menu-link ul li{
  position: relative;
  display: inline-block;
}
.menu .menu-link ul li a{
  text-decoration: none;
  color: #282828;
  margin-left: 15px;
  font-size: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  transition: .8s;
}
.menu .menu-link ul li a:hover{
  color: #5e5d5d;
}

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

  /* Media Queries */

/* Dispositivos muy pequeños (teléfonos de hasta 768px de anchura) */
/* No se define ninguna media query porque este es el estilo por
   defecto utilizado por Bootstrap 3 */
 
/* Dispositivos pequeños (tablets, anchura mayor o igual a 768px) */
@media (max-width: 768px) { 
  .flex-parent, .flex-child {
    display: block;
  }
  .mitad{
    width: 90%;
  }
  .logo_portada{
    width: 200px;
    margin-top: 60%;
   }
   #flecha_top{
    position: fixed;
    bottom: 80px;
    right: 30px;
  }
   .menu .container-menu .logo .btn-menu {
    display: block;
   }
   .menu .container-menu{
    width: 100%;
   }
   .menu .container-menu .logo {
      display: flex;
      -ms-align-items: center;
      align-items: center;
      justify-content: space-between;
    }
  .menu .menu-link{
    position: absolute;
    background: rgba(255,255,255,.7);
    height: 100vh;
    width: 100%;
    top: 52px;
    left: -100%; /* Para ocultar el menu */
    z-index: 1000;
    transition: 0.8s ease;
   }
   .menu .menu-link ul li{
      display: block;
    }
  .menu .menu-link ul li a{
        display: block;
        height: 50px;
        border-bottom: 1px solid #fff;
        padding: 15px;
        text-align: center;
        font-weight: 400;
        margin: 0;
      }
      .menu .menu-link ul li ul {
        position: absolute;
        z-index: 10;
        margin-top: 10px;
      }
      .menu .menu-link ul li ul li {
        opacity: 0;
        background: white;
        color: #272727;
        width: 180px;
        text-align: left;
        max-height: 0;
        transition: 1.5s ease;
        width: 150px;
      }
}

