@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.cdnfonts.com/css/glacial-indifference-2");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}

body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
body header {
  width: 100%;
  height: 95vh;
  display: flex;
}
body header aside {
  width: 5%;
  height: 100%;
  background-color: #57213B;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-right: 1px solid #fff;
  z-index: 2;
}
body header aside .menu-hamburguesa,
body header aside .menu-redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
body header aside .menu-hamburguesa a,
body header aside .menu-redes a {
  color: #fff;
}
body header .menu-escondido {
  width: 95%;
  height: 100vh;
  margin-left: 5%;
  background-color: #333;
  background-image: url(/img/resto/fondo-emerg-op.png);
  background-size: cover;
  background-position: 100%;
  transform: translateX(-100%);
  position: fixed;
  z-index: 1;
  /* Ocultar el contenido que sobresale */
  overflow: hidden;
  /* Transición suave para la expansión */
  transition: transform 1s ease-in-out;
  /* opacity: .9; */
}
body header .menu-escondido .nav-escondido {
  width: 100%;
  height: 100%;
}
body header .menu-escondido .nav-escondido ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body header .menu-escondido .nav-escondido ul li {
  width: 100%;
  /* Para que ocupe todo el ancho del menú */
  text-align: center;
  /* Centrar texto en el menú */
  margin: 10px 0;
  /* Espacio entre los elementos del menú */
  display: flex;
}
body header .menu-escondido .nav-escondido ul li a {
  width: 100%;
  display: block;
  padding: 10px 0;
  font-size: 28px;
  color: #fff;
  text-align: center;
  /* Alinear texto a la izquierda en el menú expandido */
}
body header .menu-escondido .nav-escondido ul li a:hover {
  color: #57213B;
}
body header .menu-escondido .nav-escondido ul li:hover {
  color: #57213B;
}
body header .menu-escondido .nav-escondido ul .redes {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  padding: 0 20px;
  align-items: center;
  font-size: 28px;
  color: #fff;
}
body header .menu-escondido .nav-escondido ul .redes a {
  font-size: 22px;
}
body header .menu-escondido .nav-escondido ul .redes i {
  margin-left: 10px;
  font-size: 20px;
}
body header .menu-escondido .nav-escondido ul .separador {
  width: 10%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  /* Espacio entre los elementos del menú */
}
body header .menu-escondido.expandido {
  /* Mostrar el menú al expandir */
  transform: translateX(0);
}
body header section {
  width: 95%;
  height: 100%;
  transform: translateX(5%);
  display: flex;
}
body header section .section-content {
  width: 88%;
  height: 100%;
  display: flex;
  justify-content: center;
}
body header section .section-content p {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
}
body header section .section-foto {
  height: 100%;
}
body header section .section-foto img {
  height: 100%;
}
body footer {
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #57213B;
}
body footer p {
  font-size: 20px;
  color: #fff;
  font-family: "Glacial Indifference", sans-serif;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000px);
  }
}
@media only screen and (max-width: 400px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body header section {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body header section .section-content {
    width: 100%;
    height: 100%;
    display: flex;
  }
  body header section .section-content p {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
  }
  body header section .section-foto {
    width: 0;
    height: 100%;
  }
  body header section .section-foto img {
    visibility: hidden;
    display: none;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 401px) and (max-width: 576px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body header section {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body header section .section-content {
    width: 100%;
    height: 100%;
    display: flex;
  }
  body header section .section-content p {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
  }
  body header section .section-foto {
    width: 0;
    height: 100%;
  }
  body header section .section-foto img {
    visibility: hidden;
    display: none;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  body {
    max-width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body header section {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body header section .section-content {
    width: 100%;
    height: 100%;
    display: flex;
  }
  body header section .section-content p {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
  }
  body header section .section-foto {
    width: 0;
    height: 100%;
  }
  body header section .section-foto img {
    visibility: hidden;
    display: none;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  body {
    max-width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body header section {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body header section .section-content {
    width: 100%;
    height: 100%;
    display: flex;
  }
  body header section .section-content p {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 19px;
  }
  body header section .section-foto {
    width: 0;
    height: 100%;
  }
  body header section .section-foto img {
    visibility: hidden;
    display: none;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  body {
    max-width: 100vw;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body header section {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    display: flex;
    justify-content: center;
  }
  body header section .section-content {
    width: 90%;
    height: 100%;
    display: flex;
  }
  body header section .section-content p {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 19px;
  }
  body header section .section-foto {
    width: 0;
    height: 100%;
  }
  body header section .section-foto img {
    visibility: hidden;
    display: none;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}/*# sourceMappingURL=style-bio-v1.1.css.map */