@charset "UTF-8";
:root {
  --color-fondo: #fff;
  --color-enfasis: #000;
  --color-texto: rgb(80, 80, 80);
  --color-subtitulo: rgb(117, 117, 117);
  --color-suave: rgb(239, 239, 239);
  --color-suave1: #ccc;
  --color-color: #ff0000;
  --color-color2: #8b4513;
  --color-transp01: rgba(0, 0, 0, 0.1);
  --color-transp25: rgba(0, 0, 0, 0.25);
  --color-transp50: rgba(0, 0, 0, 0.5);
  --color-transp_sec08: rgba(255, 255, 255, 0.8);
  --color-transp_sec50: rgba(255, 255, 255, 0.5);
  --color-transp_sec25: rgba(255, 255, 255, 0.25);
  --color-transp_sec01: rgba(255, 255, 255, 0.1);
  --color-shadow: 5px 6px 8px rgba(0, 0, 0, 0.2);
  --color-shadow_strong: 7px 8px 10px rgba(0, 0, 0, 0.6);
  --theme: "light";
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-fondo: #000;
    --color-enfasis: #fff;
    --color-texto: rgb(239, 239, 239);
    --color-subtitulo: #ccc;
    --color-suave: rgb(117, 117, 117);
    --color-suave1: rgb(80, 80, 80);
    --color-color: #ff0000;
    --color-color2: #8b4513;
    --color-transp01: rgba(255, 255, 255, 0.1);
    --color-transp25: rgba(255, 255, 255, 0.3);
    --color-transp50: rgba(255, 255, 255, 0.5);
    --color-transp_sec08: rgba(0, 0, 0, 0.8);
    --color-transp_sec50: rgba(0, 0, 0, 0.5);
    --color-transp_sec25: rgba(0, 0, 0, 0.25);
    --color-transp_sec01: rgba(0, 0, 0, 0.1);
    --color-shadow: 5px 6px 8px rgba(255, 255, 255, 0.4);
    --color-shadow_strong: 7px 8px 10px rgba(255, 255, 255, 0.6);
    --theme: "dark";
  }
}

:root {
  --typewriterSpeed: 6s;
  --typewriterCharacters: 24;
  --size-desktop: 992px;
  --size-ipad: 768px;
  --size-movil: 500px;
  --size-width-desktop: 1024px;
  --min-width-movil: 320px;
}

*,
*::before,
*::after {
  padding-inline: 0;
  margin-inline: 0;
  /* font-family: "Optima", sans-serif; */
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  line-height: 1.5;
  color: var(--color-texto);
  /* outline: 2px solid lightgreen; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p,
li {
  /*width <  65ch;*/
  text-wrap: pretty;
}

header,
footer,
main,
section,
article {
  container-type: inline-size;
}

.espacio_4em {
  height: 30em;
  width: 100%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .espacio_4em {
    height: 20em;
    width: 100%;
  }
}

.imagen_contain {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.espacio5rem {
  height: 0;
  width: 100%;
  margin-top: 5rem;
}

.centrado,
video {
  position: relative;
  display: flex;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-wrap: nowrap;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}

.height_news {
  height: 80dvh !important;
}
.espacio02 {
  height: 20em;
  max-width: 1400px;
  width: 100%;
  position: relative;
  @media (width <= 2000px) {
    height: 80em;
  }
  @media (width <= 868px) {
    height: 60em;
  }
  @media (width <= 500px) {
    height: 14em;
  }
}

@media (width <= var(--size-movil)) {
  .espacio02 {
    height: 14em;
  }
}

.espacio12rem {
  height: 12rem;
  width: auto;
}

.espacio {
  width: 100%;
  height: 30em;
}

.espacio_1em {
  height: 1em;
  width: 100%;
}

.espacio_2em {
  height: 2em;
  width: 100%;
}

.espacio_100px {
  height: 100px;
}

.espacio_bottom {
  height: 5em;
}

.espacio01 {
  height: 100vh;
  width: 100%;
  position: relative;
}

.body {
  margin: auto;
  position: relative;
  min-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

video {
  width: 100%;
}

.master_container {
  container-type: inline-size;
}

.grid_container {
  display: grid;
  gap: 1rem;
}

.grid_item {
  height: 10rem;
  border: solid 2px var(--color-enfasis);
}

@media (width > 90ch) {
  .grid_container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.columna_flexible {
  --main-min-width: 45ch;
  --sidebar-size: 250px;
  --gap: 2rem;
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  & > :first-child {
    flex-grow: 999;
    flex-basis: calc(
      (var(--main-min-width) - (100% - var(--sidebar-size) - var(--gap))) * 9999
    );
  }
  & > :last-child {
    flex-basis: var(--sidebar-size);
    flex-grow: 1;
  }
  & > * {
    flex-grow: 1;
  }
  p {
    text-wrap: pretty;
  }
}
.columna_flexible main {
  display: block;
}

.sidebar {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--suave);
}

.wrapper {
  width: min(var(--content-max-width), 100% - 2rem);
  margin-inline: auto;
}

.grid_flexible {
  /* user setting */
  --min-column-size: 200px;
  --column-count: 4;
  --gap: 2rem;
  /* calculations */
  --breakpoint: calc(
    var(--min-column-size) * var(--column-count) +
      (var(--gap) * (var(--column-count) - 1))
  );
  --column-size: calc((100% / var(--column-count)) - var(--gap));
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(
    auto-fit,
    minmax(
      min(max(var(--column-size), (100% - var(--breakpoint)) * -999), 100%),
      1fr
    )
  );
  h2 {
    font-size: 3rem;
  }
}

.grid_flexible .section-title {
  line-height: 1.1;
}

.typing {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  &::before {
    background: var(--color-fondo);
    animation: typewriter var(--typewriterSpeed)
      steps(var(--typewriterCharacters)) 1s forwards;
  }
  &::after {
    width: 0.125em;
    background: var(--color-color);
    animation:
      typewriter var(--typewriterSpeed) steps(var(--typewriterCharacters)) 1s
        forwards,
      blink 750ms steps(var(--typewriterCharacters)) infinite;
  }
}

.subtitle {
  color: hsla(0, 0%, 0%, 0.7);
  font-size: 2rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(3rem);
  animation: fadeInUp 2s ease calc(var(--typewriterSpeed) + 2s) forwards;
}

@keyframes typewriter {
  to {
    left: 100%;
  }
}
@keyframes blink {
  to {
    background: transparent;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#yt-link {
  position: absolute;
  bottom: 2em;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  &:hover,
  &:focus {
    color: var(--color-subtitulo);
  }
}

.banner_new {
  display: flex;
  width: 100vw;
  text-justify: center;
  position: absolute;
  top: 3em;
  z-index: 999999999;
  text-align: center;
}

.banner_new01,
.banner_new02,
.banner_new03,
.banner_new04 {
  font-size: 22px;
  margin: 0 auto;
  z-index: 999;
  width: 100vw;
  background: var(--color-transp01);
  text-align: center;
  padding: 0 0.5rem;
  &:hover {
    background: var(--color-fondo);
    transition: 0.5s;
  }
  & p {
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    text-align: center;
    letter-spacing: 0.1em;
    margin: auto;
    width: 0;
  }

  @media only screen and (width < var(--size-width-desktop)) {
    font-size: 18px;
    padding: 0.5rem 0;
  }
  @media only screen and (width < var(--size-movil)) {
    font-size: 14px;
    padding: 0.2rem 0;
  }
}

.banner_new01 p {
  color: var(--color-color);
  animation: typing 40s infinite alternate steps(190);
}

.banner_new02 p {
  color: var(--color-color2);
  animation: typing 30s infinite alternate steps(110);
}

.banner_new03 p {
  color: var(--color-color);
  animation: typing 20s infinite alternate steps(169);
}

.banner_new04 p {
  color: var(--color-color2);
  animation: typing 25s infinite alternate steps(107);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.mySlides_banner {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: relative;
  background-image: url(../../imagenes/imagenes_db/jungla_santera.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.banner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  h1 {
    text-align: center;
    color: var(--color-subtitulo);
    margin: 0;
  }
}

.imagen_banner {
  height: 15em;
  width: 100%;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.search_menu {
  position: relative;
  height: 100%;
}
.search_menu input {
  border-radius: 25px;
  border: 1px solid var(--color-subtitulo);
  padding: 0.2rem;
  @media screen and (width < var(--size-width-desktop)) {
    border: 1px solid var(--color-enfasis);
    width: 100%;
  }
}
.search_menu input:active,
.search_menu input:focus {
  border: 1px solid var(--color-subtitulo);
}
.search_menu input:focus {
  outline: none;
}

.busqueda {
  background: transparent;
}

.search_menu__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 25px;
  border: none;
}

#search_menu__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

#form_get {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0.2rem;
  width: 2rem;
  padding: 0.2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--color-enfasis);
  background: none;
  transition: all 0.5s;
  cursor: pointer;
  &:hover {
    background-color: var(--color-transp25);
  }
  @media screen and (width < 1200px) {
    background-color: var(--color-transp25);
    color: var(--fondo);
    padding: 0.5rem;
  }
}

@media screen and (width < var(--size-width-desktop)) {
  #form_get {
    background-color: var(--color-transp25);
    color: var(--fondo);
    padding: 0.5rem;
  }
}

.imagen_buscador {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70% 1fr;
  width: 100%;
  padding: 0.5rem;
  box-shadow: var(--color-shadow);
  height: 13rem;
}
.imagen_buscador p {
  font-size: 0.8rem;
  padding: 0.5rem;
}
.imagen_buscador img {
  width: 100%;
  max-height: 12rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.resultados_search {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 5rem;
  margin-top: 5rem;
  @media only screen and (width < 500px) {
    width: 94%;
    grid-template-columns: 1fr;
  }
}
@media only screen and (width < var(--size-movil)) {
  .resultados_search {
    width: 94%;
    grid-template-columns: 1fr;
  }
}

.header_top {
  position: fixed;
  top: 0.5rem;
  left: 20rem;
  z-index: 9999;
  color: var(--color-enfasis);
  @media screen and (width < 1200px) {
    left: 10rem;
    font-size: 1rem;
  }
  @media screen and (width < 500px) {
    left: 5.5rem;
    top: 1rem;
    font-size: 0.8rem;
  }
}
@media screen and (width < var(--size-width-desktop)) {
  .header_top {
    left: 10rem;
    font-size: 1rem;
  }
}
@media screen and (width < var(--size-movil)) {
  .header_top {
    left: 5.5rem;
    top: 1rem;
    font-size: 0.8rem;
  }
}

.contenedor_search {
  margin-top: 3rem;
  display: grid;
  grid-template-rows: 5% 1fr 10%;
}

.resultados_registros {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 90%;
  -moz-column-gap: 1em;
  column-gap: 1em;
  padding-bottom: 1em;
  margin: auto;
  vertical-align: middle;
  row-gap: 10px;
  grid-auto-rows: 20em;
  @media only screen and (width < 1200px) {
    width: 90%;
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media only screen and (width < 500px) {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-top: 0;
    grid-row-gap: 0.5em;
    grid-auto-rows: auto;
    margin: auto;
    margin-top: 2.5em;
    grid-template-rows: 1fr 1fr 1fr;
    width: 100%;
    height: auto;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  .resultados_registros {
    width: 90%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (width < var(--size-movil)) {
  .resultados_registros {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-top: 0;
    grid-row-gap: 0.5em;
    grid-auto-rows: auto;
    margin: auto;
    margin-top: 2.5em;
    grid-template-rows: 1fr 1fr 1fr;
    width: 100%;
    height: auto;
  }
}

.contenedor_registros {
  width: 90%;
  margin: auto;
  border: none;
}

.contenedor_registros__3row {
  display: grid;
  grid-template-rows: 10% 1fr 10%;
  grid-gap: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contenedor_registros__2row {
  display: grid;
  grid-template-rows: 10% 1fr;
  grid-gap: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
}

.container_card {
  margin: 0 auto;
  padding: 0px 20px 20px 20px;
  display: grid;
  /* width: 800px; */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
  @media screen and (width < 1100px) {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 60px;
  }
  @media screen and (width < 600px) {
    grid-template-columns: 1fr;
    grid-row-gap: 60px;
  }
}

.contenedor_pag {
  display: table;
  content: " ";
  padding: 0.5rem;
  margin: auto;
  position: relative;
  z-index: 1;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  width: 70vw;
  padding-bottom: 1rem !important;
  padding-top: 4rem !important;
  padding-left: 0;
  margin: 20px auto;
  border-radius: 4px;
  justify-content: center !important;
  @media screen and (width < 1200px) {
    width: 100vw;
    padding-top: 3rem !important;
  }
  @media screen and (width < 500px) {
    width: 100vw;
  }
}
.pagination li {
  display: inline;
}
.pagination li:last-child > a,
.pagination li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination li > a,
.pagination li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--color-suave);
  text-decoration: none;
  background-color: var(--color-fondo);
  border: 1px solid var(--color-suave);
}
@media screen and (width < var(--size-width-desktop)) {
  .pagination {
    width: 100vw;
    padding-top: 3rem !important;
  }
}
@media screen and (width < var(--size-movil)) {
  .pagination {
    width: 100vw;
  }
}

.card_tittle {
  margin-left: 3rem;
  font-size: 1.2rem;
  padding: 0.5rem;
  padding-left: 1rem;
  @media screen and (width < 500px) {
    margin-left: 0;
    font-size: 1rem;
  }
}
@media screen and (width < var(--size-movil)) {
  .card_tittle {
    margin-left: 0;
    font-size: 1rem;
  }
}

.blog-post {
  position: relative;
  margin-bottom: 15px;
  margin: 0.5rem;
  img {
    width: 100%;
    height: 15rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
  }
}

.blog-post .category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.3rem 0.5rem;
  font-size: 12px;
  text-decoration: none;
  background-color: var(--color-suave1);
  color: var(--color-fondo);
  border-radius: 5px;
  box-shadow: var(--color-shadow);
  text-transform: uppercase;
}

.text-content {
  position: absolute;
  bottom: -0.5rem;
  padding: 0.5rem;
  background-color: var(--color-fondo);
  width: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: var(--color-shadow);
  padding-top: 1rem;
  h2 {
    font-size: 1rem;
    font-weight: 400;
  }
  img {
    height: 70px;
    width: 70px;
    border: 5px solid var(--color-transp01);
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 35px;
  }
}

.tags a {
  color: var(--subtitulo);
  font-weight: 700;
  text-decoration: none;
  margin-right: 15px;
  transition: 0.3s ease;
}
.tags a:hover {
  color: var(--color-enfasis);
}

.page-item {
  height: 2.4rem;
  margin-bottom: 1rem;
}
@media screen and (width < var(--size-width-desktop)) {
  .page-item {
    height: 2rem;
    margin-bottom: 0.5rem;
  }
}

.page-link {
  z-index: 3;
  color: var(--color-enfasis);
  background-color: var(--color-suave1);
  border-color: var(--color-suave1);
  position: relative;
  display: block;
  color: var(--color-subtitulo);
  text-decoration: none;
  background-color: var(--color-fondo);
  border: 1px solid var(--color-suave);
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.page-link:hover {
  z-index: 2;
  color: var(--color-subtitulo);
  background-color: var(--color-fondo);
  border-color: var(--color-suave);
}

.page-item.active .page-link {
  z-index: 3;
  color: var(--color-fondo);
  background-color: var(--color-subtitulo);
  border-color: var(--color-subtitulo);
}

.active {
  border-bottom: 4px solid var(--color-transp25);
  opacity: 1;
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-enfasis);
}

.pagination li > a,
.pagination li > span {
  position: relative;
  float: left;
  padding: 6px 1.2rem;
  margin-left: -1px;
  margin-bottom: 1rem;
  line-height: 1.42857143;
  color: var(--color-suave1);
  text-decoration: none;
  background-color: var(--color-fondo);
  border: 1px solid var(--color-suave);
  border-top-color: var(--color-suave);
  border-right-color: var(--color-suave);
  border-bottom-color: var(--color-suave);
  border-left-color: var(--color-suave);
  @media screen and (width < 1200px) {
    padding: 2px 0.5rem;
  }
}
@media screen and (width < var(--size-width-desktop)) {
  .pagination li > a,
  .pagination li > span {
    padding: 2px 0.5rem;
  }
}

.pagination li:last-child > a,
.pagination li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.search_form {
  margin: 0.5rem;
  position: relative;
  width: 100%;
}

.input_search {
  border-radius: 10px;
  border: 1px solid var(--color-suave);
  height: 2rem;
  width: 100%;
  top: 0.2rem;
  padding: 0.5rem;
}
.input_search:focus,
.input_search:target {
  outline: none;
  border-color: var(--color-enfasis);
}

.input_group {
  position: absolute;
  top: 0;
  right: 0;
}

.menu_admin {
  margin: auto;
  width: 50%;
  margin-bottom: 4rem;
  display: grid;
  grid-template-rows: auto;
}

.btn_menu {
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem 2rem;
  margin: 1.5rem auto;
  background-color: var(--color-suave);
  box-shadow: var(--color-shadow_strong);
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
}
.btn_menu:hover {
  background-color: var(--color-suave1);
  color: var(--color-fondo);
}

.barra_navegacion {
  display: grid;
  grid-template-columns: 25% 1fr;
  width: 100%;
  position: relative;
  backdrop-filter: blur(2px);
}
@media only screen and (width < var(--size-width-desktop)) {
  .barra_navegacion {
    height: 3em;
    margin-right: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .barra_navegacion {
    grid-template-columns: 60% 1fr;
    height: 3em;
  }
}

.navegacion {
  grid-column: 2;
  display: flex;
  margin-right: 20px;
  -o-object-position: bottom;
  object-position: bottom;
  float: right;
  list-style: none;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  li {
    display: inline-block;
    line-height: 2.8rem;
    margin: 0 1.5rem;
    @media only screen and (width < 1200px) {
      margin: 0 0.5rem;
    }
  }
}
@media only screen and (width < var(--size-ipad)) {
  .navegacion {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--color-transp01);
    top: 50px;
    right: -100%;
    text-align: center;
    transition: all 0.5s;
    flex-direction: column;
    z-index: 999999;
    margin-right: 0;
  }
}

@media only screen and (width < var(--size-width-desktop)) {
  .navegacion li {
    margin: 0 0.5rem;
  }
}
@media only screen and (width < var(--size-ipad)) {
  .navegacion li {
    display: block;
    margin-top: 150px;
    line-height: 2rem;
    flex-direction: column;
    margin: 0.5rem auto;
    margin-bottom: 1rem;
    transform: translateY(30px);
  }
}
.navegacion li a {
  color: var(--color-enfasis);
  font-size: 1rem;
  padding: 0px 10px;
  text-transform: uppercase;
}
.navegacion li a:active,
.navegacion li a:focus,
.navegacion li a:hover {
  transition: border-bottom 0.5s;
  border-bottom: 2px solid var(--color-transp25);
  font-weight: bolder;
}
@media only screen and (width < var(--size-ipad)) {
  .navegacion li a {
    font-size: 1.5em;
    color: var(--color-enfasis);
  }
  .navegacion li a:active,
  .navegacion li a:focus,
  .navegacion li a:hover {
    background: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-enfasis);
    font-size: 26px;
  }
}

.back_menu {
  margin-left: 4rem;
  padding: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.5s;
}
.back_menu:hover {
  text-decoration: underline;
  cursor: pointer;
}

.back_menu_btn {
  position: fixed;
  left: 5%;
  top: 6rem;
  padding: 0.5rem 1rem;
  z-index: 999999999;
  cursor: pointer;
  background-color: var(--color-transp01);
  width: 2.5rem;
  overflow: hidden;
  transition: all 1s ease;
  &:hover {
    width: auto;
  }
  @media only screen and (width < var(--size-width-desktop)) {
    left: 2%;
    top: 5rem;
    width: auto;
  }
  @media only screen and (width < var(--size-movil)) {
    top: 10rem;
    left: 5%;
  }
}

.back_menu_btn_cont {
  display: grid;
  grid-template-columns: 1rem 1fr;
  img {
    height: 1.5rem;
    width: 1rem;
  }
  p {
    margin-left: 0.5rem;
    @media only screen and (width < var(--size-movil)) {
      margin-left: 0.1rem;
    }
  }
}

.scrolled {
  transition: all 0.5s ease;
  padding: 0 25px;
}
.scrolled .link_nombre {
  font-size: 1.2rem;
}

.fixed {
  position: fixed;
  top: 1rem;
  left: 1rem;
}

.off {
  transform: translateY(-300px);
  transition: 0.5s ease 0.5s;
}

.solid {
  background: var(--color-transp_sec08);
  transition: all 0.5s ease;
  padding: 0 25px;
}
.solid .link_nombre {
  font-size: 1.2rem;
}

header {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999999999;
  width: 100vw;
}

.logomacho {
  grid-column: 1;
  margin-left: 2em;
  margin-top: 5px;
  cursor: pointer;
  height: 1em;
}
.logomacho img {
  height: 2.2em;
}
.logomacho:focus,
.logomacho:hover {
  margin-left: 2.5em;
  transition: all 1s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .logomacho {
    margin-left: 20px;
    margin-top: 10px;
  }
  .logomacho img {
    height: 1.5em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .logomacho {
    margin-left: 5px;
    height: 2em;
    width: 4.5em;
  }
  .logomacho img {
    height: 1.8em;
  }
}

#check {
  display: none;
}

.checkbtn {
  font-size: 30px;
  color: var(--color-enfasis);
  position: absolute;
  right: 1em;
  line-height: 80px;
  margin-right: 1rem;
  cursor: pointer;
  display: none;
  margin-top: 0.1rem;
  svg {
    fill: var(--color-enfasis);
    height: 1em;
    width: 1em;
  }
  @media only screen and (width < 800px) {
    right: 0;
    display: block;
  }
}
.checkbtn img {
  height: 1em;
  width: 1em;
}
@media only screen and (width < var(--size-ipad)) {
  .checkbtn {
    right: 0;
    display: block;
  }
}
@media only screen and (width < var(--size-movil)) {
  .checkbtn {
    line-height: 60px;
  }
}

.btn_tecnica {
  position: fixed;
  right: 12%;
  top: 2rem;
  padding: 0.5rem;
  text-transform: uppercase;
  text-align: center;
}
.btn_tecnica:hover {
  text-decoration: underline;
  font-weight: bold;
  transition: all 0.5s;
}

.btn_tecnica_clicked {
  position: fixed;
  right: 12%;
  top: 5rem;
  padding: 0.5rem;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline;
  font-weight: bold;
  transition: all 0.5s;
}

.pag {
  position: relative;
  box-shadow: none;
}

.bars_menu {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 0;
}

.bars_menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-enfasis);
  margin-top: 6px;
  transform-origin: 0px 100%;
  transition: all 300ms;
}

.activeline1_bars-menu {
  transform: rotate(45deg) translate(-2px, 1px);
}

.activeline2_bars-menu {
  opacity: 0;
  margin-left: -30px;
}

.activeline3_bars-menu {
  transform: rotate(-45deg) translate(-4px, 2px);
}

.boton_search {
  margin: 0.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 20px;
  width: 20px;
  svg {
    fill: var(--color-enfasis);
  }
}

.boton_cerrar_search {
  height: 20px;
  width: 20px;
}
.boton_cerrar_search svg {
  fill: var(--color-texto);
}

.menu_bar {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(
    var(--color-transp50),
    var(--color-transp01),
    transparent
  );
  backdrop-filter: blur(2px);
}

nav {
  width: 100vw;
  padding: 15px 20px;
  justify-content: space-between;
}
nav li a {
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 1rem;
}
@media screen and (width < 1160px) {
  nav {
    padding: 15px 100px;
  }
  nav .search-box {
    right: 150px;
  }
}
@media screen and (width < 950px) {
  nav {
    padding: 15px 50px;
  }
  nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (width < var(--size-ipad)) {
  nav {
    padding: 15px 20px;
  }
}

nav,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links {
  -moz-column-gap: 20px;
  column-gap: 20px;
  list-style: none;
}
.nav-links a {
  transition: all 0.2s linear;
  color: var(--color-enfasis);
}
.nav-links a:hover {
  border-bottom: 2px solid var(--color-transp25);
  opacity: 1;
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-enfasis);
}
@media screen and (width < 650px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding-top: 100px;
    row-gap: 30px;
    box-shadow: var(--color-shadow);
    transition: all 0.4s ease;
    background-color: var(--color-transp25);
    text-align: center;
    flex-direction: column;
    z-index: 99;
  }
  .nav-links li {
    display: block;
    margin-top: 150px;
    line-height: 2rem;
    margin: 0.5rem auto;
    margin-bottom: 1rem;
    transform: translateY(30px);
  }
  .nav-links li a {
    color: var(--color-enfasis);
    font-size: 1rem;
    padding: 0px 10px;
    text-transform: uppercase;
  }
}

.search-icon {
  color: var(--color-transp25);
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px;
  margin-right: 3rem;
}
@media screen and (width < var(--size-movil)) {
  .search-icon {
    margin-right: 3rem;
  }
}

.search-box {
  position: absolute;
  right: 250px;
  height: 35px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: var(--color-transp25);
  padding: 0 15px 0 60px;
}
.search-box input:active,
.search-box input:focus,
.search-box input:target {
  border: none;
  outline: none;
}
@media screen and (width < 850px) {
  .search-box {
    max-width: 455px;
  }
}

nav .navOpenBtn,
nav .navCloseBtn {
  display: none;
}
@media screen and (width < 650px) {
  nav .navOpenBtn,
  nav .navCloseBtn {
    display: block;
  }
}

.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: var(--color-transp25);
  transform: translateY(-50%);
}

nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}

nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}

@media screen and (width < 800px) {
  nav.openNav .nav-links {
    left: 0;
  }
}
@media screen and (width < var(--size-ipad)) {
  nav .navOpenBtn {
    color: var(--color-fondo);
    font-size: 20px;
    cursor: pointer;
  }
  nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-fondo);
    font-size: 20px;
    cursor: pointer;
  }
  nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: var(--color-shadow);
  }
  nav.openNav .nav-links {
    left: 0;
  }
}
#form_get1 {
  position: absolute;
  background: none;
  cursor: pointer;
  left: 0;
  display: block;
  height: 100%;
  border: none;
}

.updated_news {
  position: absolute;
  top: 2.5rem;
  left: 4rem;
  transform: rotate(-30deg);
  text-align: center;
  animation: blink 5s linear;
}
.updated_news h2,
.updated_news p {
  color: var(--color-color) !important;
}
@media screen and (width < var(--size-width-desktop)) {
  .updated_news {
    transform: rotate(-10deg);
    top: 0.2rem;
    background-color: var(--color-transp_sec08);
    left: 1rem;
  }
}
@media screen and (width < var(--size-movil)) {
  .updated_news h2 {
    font-size: 1rem;
  }
  .updated_news p {
    font-size: 0.8rem;
  }
}

.menu_scroll {
  margin: 1rem 0;
  margin-bottom: 3rem;
  height: 22rem;
  overflow-x: auto;
  display: grid;
  gap: 10px;
  grid-auto-flow: column;
  grid-auto-columns: 28%;
  overscroll-behavior-inline: contain;
}
@media screen and (width < var(--size-movil)) {
  .menu_scroll {
    height: 21rem;
  }
}

.menu_scroll::-webkit-scrollbar {
  height: 0.5rem;
  background-color: var(--color-transp25);
}
@media screen and (width < var(--size-movil)) {
  .menu_scroll::-webkit-scrollbar {
    height: 0.2rem;
  }
}

.menu_scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-texto);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu_scroll::-webkit-scrollbar-thumb:hover {
  box-shadow: var(--color-enfasis);
}

.menu_scroll__element {
  inline-size: 100%;
  height: 20rem;
  position: relative;
  transition: 0.5s;
  box-shadow: var(--color-shadow);
  overflow: hidden;
}
.menu_scroll__element:hover {
  box-shadow: var(--color-shadow_strong);
}
.menu_scroll__element img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}
.menu_scroll__element img:hover {
  width: 120%;
}
.menu_scroll__element p {
  position: absolute;
  bottom: 0;
  font-size: 2rem;
  text-transform: uppercase;
  width: 100%;
  padding: 0.5rem;
  background-color: var(--color-transp_sec50);
}
@media screen and (width < var(--size-movil)) {
  .menu_scroll__element p {
    font-size: 1rem;
  }
}
@media screen and (width < var(--size-movil)) {
  .menu_scroll__element {
    height: 20rem;
  }
}

.snaps_inline {
  scroll-snap-type: inline mandatory;
}
.snaps_inline > * {
  scroll-snap-align: start;
}

.wrapper_cards {
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container_cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.container_cards img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.menu_card {
  width: 10%;
  height: 25rem;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.7s ease;
}
.menu_card h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-fondo);
  position: absolute;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
@media screen and (width < var(--size-width-desktop)) {
  .menu_card {
    height: 15rem;
  }
}

.card_detail {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-transp25);
  width: 100%;
  padding: 1rem 2rem;
}
.card_detail p {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: var(--color-enfasis);
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
@media screen and (width < var(--size-width-desktop)) {
  .card_detail {
    display: none;
  }
}

.menu_card.active {
  width: 60% !important;
  height: 25rem !important;
}
@media screen and (width < var(--size-width-desktop)) {
  .menu_card.active {
    height: 15rem !important;
  }
}

.menu_card.active h2 {
  display: none;
}
@media screen and (width < var(--size-width-desktop)) {
  .menu_card.active h2 {
    display: block;
    left: -1rem;
    font-size: 30px;
  }
}

.menu_card.active .card_detail p,
.menu_card.active .card_detail h2 {
  display: block;
  border-bottom: none !important;
}

.active {
  border-bottom: none !important;
}

.menu_slider {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: 20rem;
  width: 100%;
  margin: 3rem auto;
  padding: 0;
}
.menu_slider a {
  position: relative;
  margin: 0.4rem;
  background: none no-repeat center/cover;
  min-height: 100%;
  overflow: hidden;
  flex-grow: 1;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu_slider a:hover {
  flex-grow: 5;
}
.menu_slider a:hover p {
  transform: rotateZ(0) translateY(0);
}
.menu_slider li {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  height: 100%;
}
@media screen and (width < var(--size-width-desktop)) {
  .menu_slider {
    height: 15rem;
  }
}

.genero_slider {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100vw;
  padding: 0.5rem;
  font-size: 2rem;
  transform-origin: left top;
  transform: rotateZ(90deg) translateY(0);
  transition: 0.5s cubic-bezier(0.2, 0, 0, 1);
  background-color: var(--color-transp25);
}
@media screen and (width < var(--size-width-desktop)) {
  .genero_slider {
    transform: rotateZ(0) translateY(0);
    font-size: 1rem;
  }
}

.uno {
  background-image: url("../imagenes/imagenes_db/cubanisimas__el_jinetero.webp") !important;
}

.dos {
  background-image: url("../imagenes/imagenes_db/black_forest.webp") !important;
}

.tres {
  background-image: url("../imagenes/imagenes_db/perlas_gone-with-the-macho.webp") !important;
}

.cuatro {
  background-image: url("../imagenes/imagenes_db/proyecto__drawing_projects03.webp") !important;
}

.cinco {
  background-image: url("../imagenes/videos/still_25mentiras.webp") !important;
}

.newsletter {
  margin: auto;
  margin: 1rem auto 4rem;
  padding: 4rem 20%;
  background: var(--color-transp01);
}
.newsletter p {
  text-transform: uppercase;
  text-align: center;
  margin: 1rem auto 2rem;
}
.newsletter form {
  display: grid;
  margin: auto;
  grid-template-columns: 40% 55%;
  -moz-column-gap: 5%;
  column-gap: 5%;
}
.newsletter form button {
  padding: 0.2rem 1rem;
  margin: auto;
  width: 50%;
  align-content: center;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 2rem;
  border-radius: 10px;
  border: none;
  background-color: var(--color-subtitulo);
  color: var(--color-fondo);
  cursor: pointer;
}
.newsletter form input {
  border: none;
  border-radius: 15px;
  padding: 0 0.5rem;
  height: 2.8rem !important;
  margin-top: 0.3rem;
  background-color: var(--color-transp25);
}
.newsletter form input::-moz-placeholder {
  color: var(--color-enfasis);
}
.newsletter form input::placeholder {
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-movil)) {
  .newsletter {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }
  .newsletter form {
    grid-template-columns: 1fr;
  }
  .newsletter form input {
    width: 80%;
    margin: 0.2rem 10% 0 10%;
  }
}

.newsletter_encabezamiento {
  text-align: center;
}

.encabezamiento {
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: 1rem;
  margin-top: 2rem;
  height: 2rem;
  font-size: 2rem;
}

#newsletter_email {
  grid-column: 2;
}
@media only screen and (width < var(--size-movil)) {
  #newsletter_email {
    grid-column: 1;
  }
}

#newsletter_submit {
  grid-column: 1/3;
}
@media only screen and (width < var(--size-movil)) {
  #newsletter_submit {
    grid-column: 1;
  }
}

.switch {
  background: transparent;
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
  border: none;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  svg {
    height: 1.5rem;
    width: 1.5rem;
    line-height: 1.5rem;
    display: block;
    background: none;
    fill: var(--color-enfasis);
    transition: all 0.5s ease-in-out;
    &:hover {
      fill: var(--color-fondo);
    }
  }
}

@media screen and (width < var(--size-movil)) {
  .switch {
    display: flex !important;
  }
}

#switch svg:last-child {
  display: none;
}

.darkmode #switch svg:first-child {
  display: none;
}

.darkmode #switch svg:last-child {
  display: block;
  fill: var(--color-fondo);
}

#preloader {
  background: var(--color-fondo) url(../imagenes/botones/loading.gif) no-repeat
    center center;
  background-size: 5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 99999999999999;
}

.preload_container {
  position: absolute;
  background-color: var(--color-fondo);
  color: var(--color-suave1);
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.loading {
  margin: auto;
  width: 12rem;
  height: 1.5rem;
  position: relative;
}
.loading p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.loading::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  border-radius: 20px;
  background-color: var(--color-suave1);
  animation: preloader 10s infinite;
}

@keyframes preloader {
  0% {
    width: 0;
  }
  90% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.loading_out {
  animation: loading_out 2s infinite;
  transition: all 2s;
}

@keyframes loading_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.loader {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    90deg,
    var(--color-transp25) 0%,
    var(--color-fondo) 100%
  );
  display: inline-flex;
  border-radius: 50%;
  animation-name: loadgiros;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes loadgiros {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader_img {
  width: 120px;
  height: 120px;
  position: absolute;
}

.openModal {
  width: 80%;
  height: 80vh;
}

.modal img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cartela_modal {
  background: var(--color-transp25);
  position: absolute;
  bottom: 0px;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 10px 10px;
}
.cartela_modal a {
  color: var(--color-enfasis);
  margin-bottom: 0.5em;
  border-bottom: 1px var(--color-transp25);
}
.cartela_modal a:hover {
  border-bottom: 1px solid var(--color-transp50);
}
.cartela_modal h2,
.cartela_modal p {
  transition: 0.5s ease;
  text-align: left;
  font-size: 0.8em;
}
@media only screen and (width < var(--size-movil)) {
  .cartela_modal h2,
  .cartela_modal p {
    font-size: 0.6em;
    text-align: center;
  }
}

.cartela_modal_menu {
  background: var(--color-transp25);
  position: absolute;
  bottom: 0px;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0.3em 1em;
}
.cartela_modal_menu p {
  font-size: 0.8em;
}
.cartela_modal_menu h2 {
  transition: 0.5s ease;
  text-align: center;
  font-size: 1em;
  color: var(--color-enfasis);
}

.ventana_modal {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

#cerrar:checked + label,
#cerrar:checked ~ .modal_cookie {
  display: none;
  transition: all 2s;
}

.cerrar_cookie {
  animation: cookie 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 5rem;
  cursor: pointer;
  z-index: 999999999999;
}
@media only screen and (width < var(--size-movil)) {
  .cerrar_cookie {
    height: 7rem;
  }
}

#cerrar_cookie:checked + label,
#cerrar_cookie:checked ~ .modal_cookie {
  display: none;
  transition: all 2s;
}

#cerrar_cookie {
  opacity: 0;
  visibility: hidden;
  width: 0;
}

.cookie {
  display: flex;
  bottom: 0;
  width: 100%;
  align-content: center;
  position: absolute;
  z-index: 999999999;
  margin: 0;
}

.importante {
  display: flex;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  align-content: center;
  position: fixed;
  z-index: 999999999;
  margin: 0;
}

.cerrar_importante {
  animation: importante 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30rem;
  height: 30rem;
  cursor: pointer;
  z-index: 999999999999;
}

.modal_cookie {
  animation: cookie 2s;
  animation-delay: 3s;
  visibility: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
}

.modal_importante {
  animation: importante 2s;
  animation-delay: 1s;
  visibility: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
  margin: auto;
  height: 60dvh;
  width: 60%;
  background-color: var(--color-transp50);
  padding: 1.5rem;
  position: relative;
  a {
    cursor: pointer;
  }
  @media only screen and (width < 500px) {
    height: 30rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

.contenido_importante {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  padding: 1.5rem;
  img,
  video {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  video {
    padding-bottom: 2rem;
  }
  p {
    color: var(--color-fondo);
    padding: 1rem;
    font-size: 14px;
    text-align: center;
    a {
      color: var(--color-fondo);
      border-bottom: 1px solid var(--color-fondo);
    }
  }
  h2 {
    color: var(--color-fondo);
    font-size: 30px;
    text-align: center;
  }
  h3 {
    color: var(--color-fondo);
    font-size: 22px;
    text-align: center;
  }
}

@media only screen and (width < var(--size-movil)) {
  .contenido_importante p {
    padding: 10px 20px;
    font-size: 11px;
    padding-bottom: 2em;
  }
}

#cerrar_importante:checked + label,
#cerrar_importante:checked ~ .modal_importante {
  display: none;
  transition: all 2s;
}

#cerrar_importante {
  opacity: 0;
  visibility: hidden;
  width: 0;
}

#cerrar {
  display: none;
}

@keyframes importante {
  to {
    visibility: visible;
    opacity: 1;
  }
}
#cerrar + label {
  color: var(--color-fondo);
  background: var(--color-enfasis);
  border-radius: 30px;
  padding: 10px;
  font-family: sans-serif;
  cursor: pointer;
  line-height: 20px;
  font-weight: bolder;
  height: 35px;
  width: 35px;
  z-index: 9999999999999;
  order: 2;
  float: right;
  bottom: 70px;
  left: 2em;
  position: absolute;
  font-size: 35px;
  text-align: center;
  vertical-align: middle;
  animation: cookie 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (width < var(--size-movil)) {
  #cerrar + label {
    left: 0.1em;
  }
}
#cerrar + label:hover {
  background: var(--color-transp50);
  color: var(--color-fondo);
  transition: all 2s;
}

@keyframes modal {
  to {
    visibility: visible;
    opacity: 1;
  }
}
.contenido_cookie {
  width: 100vw;
  background: var(--color-transp50);
}
.contenido_cookie p {
  color: var(--color-fondo);
  padding: 1rem;
  font-size: 14px;
  text-align: center;
}
.contenido_cookie p a {
  color: var(--color-fondo);
  border-bottom: 1px solid var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .contenido_cookie p {
    padding: 10px 20px;
    font-size: 11px;
    padding-bottom: 2em;
  }
}

.slideshow-container_modal {
  width: 80%;
  height: 65vh;
  position: relative;
  margin: auto;
  margin-top: 1em;
}

.modalOpen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999999999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalOpen:target {
  opacity: 1;
  pointer-events: auto;
}

.modalNewsOpen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000000000000000000000000000000;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalNewsOpen:target {
  opacity: 1;
  pointer-events: auto;
}

.modalNewsOpen > div {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: var(--color-transp25);
}
@media screen and (width < var(--size-movil)) {
  .modalNewsOpen > div {
    width: 100%;
    height: 100%;
  }
}

.modalOpen > div {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 10px;
  background: var(--color-transp_sec01);
}

.modalClose {
  font-size: 1.5em;
  background: var(--color-transp01);
  color: var(--color-enfasis);
  line-height: 40px;
  position: absolute;
  right: 0.5em;
  text-align: center;
  top: 0.5em;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: var(--color-shadow);
  z-index: 99999999;
  font-family: "arial";
  font-weight: bolder;
}
@media only screen and (width < 500px) {
  .modalClose {
    top: 4em;
    right: 1em;
    line-height: 30px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}

.modalDialog_estudios {
  position: fixed;
  top: 20%;
  right: 20%;
  bottom: 20%;
  left: 20%;
  z-index: 999999999999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
@media only screen and (width < 500px) {
  .modalDialog_estudios {
    top: 20%;
    right: 0;
    bottom: 10%;
    left: 0;
  }
}

.modalDialog_estudios:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog_estudios > div {
  width: auto;
  height: 20rem;
  position: relative;
  margin: 5% auto;
  padding: 40px;
  background: var(--color-transp25);
}
@media only screen and (width < 500px) {
  .modalDialog_estudios > div {
    height: auto;
    margin: auto;
    padding: 0;
    padding-top: 20%;
    padding-bottom: 10%;
    width: 100%;
  }
}

.tarjeta_info_modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-fondo);
}

.tarjeta_info_modal_video {
  position: absolute;
  bottom: 1rem;
}

.imagen__tarjeta_imagen_modal {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border: none;
}

.modal_banner {
  animation: modal 2s;
  animation-delay: 0.5s;
  visibility: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
}

.obraModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-transp01);
  z-index: 99999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.obraModal > div {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 4em;
  background: var(--color-transp50);
}
@media only screen and (width < 500px) {
  .obraModal > div {
    padding: 1em;
  }
}

.obraModal:target {
  opacity: 1;
  pointer-events: auto;
}

.obraModal_modal {
  width: 100%;
  height: 100%;
  background: transparent;
}

.obraModal_close {
  font-size: 1em;
  background: var(--color-transp25);
  color: var(--color-enfasis);
  line-height: 40px;
  position: absolute;
  right: -3em;
  text-align: center;
  top: 3em;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  z-index: 1000000000000000000;
  padding: 0.3em;
}
@media screen and (width < 1024px) {
  .obraModal_close {
    right: -1.5rem;
    top: 2rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .obraModal_close {
    font-weight: normal;
    line-height: 30px;
    font-size: 0.8rem;
    right: -20px;
    top: 40px;
    color: var(--color-subtitulo);
    background: var(--color-suave1);
  }
  .obraModal_close img {
    height: 0.8em;
    width: 0.8em;
  }
}
.obraModal_close img {
  width: 1em;
  height: 1em !important;
}
.obraModal_close:hover {
  background: var(--color-suave);
  transition: all 0.5s;
}

.obraModal_cartela {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-transp50);
  width: 100%;
  height: 10%;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 99;
}
.obraModal_cartela h2 p {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-enfasis);
}
.obraModal_cartela h2,
.obraModal_cartela p {
  font-size: 0.8em;
  text-align: center;
  color: var(--color-enfasis);
}
.obraModal_cartela h2 {
  padding-top: 1em;
}
.obraModal_cartela .precio {
  color: var(--color-color);
  opacity: 0;
}
@media only screen and (width < 1024px) {
  .obraModal_cartela {
    padding: 0.5em 1em;
    height: 16%;
  }
  .obraModal_cartela h2,
  .obraModal_cartela p {
    font-size: 0.8em;
  }
}

.imagen_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
}
@media only screen and (width < 768px) {
  .imagen_modal {
    width: 100%;
    height: 90%;
  }
  .imagen_modal img {
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-fondo);
  z-index: 999999999999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 90%;
  height: 80vh;
  position: relative;
  margin: 5% auto;
  padding: 10px;
  background: var(--color-transp50);
}
@media only screen and (width < var(--size-movil)) {
  .modalDialog > div {
    height: 90vh;
    margin: auto;
    padding: 0;
    width: 100%;
  }
}

.modalDialog_img {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-transp_sec08);
  z-index: 10000000000000000;
  opacity: 0;
  padding: 2rem;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  @media only screen and (width < 500px) {
    padding: 0.5rem;
  }
}
.modalDialog_img:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog_img > div {
  width: 90%;
  height: 90vh;
  position: relative;
  margin: auto;
  padding: 10px;
  @media only screen and (width < 500px) {
    height: 95vh;
    padding: 0;
    width: 100%;
  }
}

.modalDialog_on {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--color-transp01);
  z-index: 100000000000000000000;
  opacity: 0;
  padding: 2rem;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog_on:target {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000000000000000000000000000000000;
}

.modalDialog_on > div {
  width: 80%;
  height: 50vh;
  position: relative;
  margin: auto;
  padding: 10px;
  opacity: 1;
  z-index: 1000000000000000000000000000000000;
}
@media only screen and (width < var(--size-movil)) {
  .modalDialog_on > div {
    height: 75vh;
    padding: 0;
    width: 100%;
  }
}

.modalDialog_news:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog_news {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0%;
  left: 0;
  z-index: 999999999999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  background: var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .modalDialog_news {
    position: relative;
  }
}

.modalDialog_news > div {
  width: 90%;
  height: 100%;
  position: relative;
  margin: 1% auto;
  padding: 10px;
  background: var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .modalDialog_news > div {
    margin: auto;
    padding: 0;
    width: 100%;
  }
}

.close {
  font-size: 1em;
  background: var(--color-suave1);
  color: var(--color-enfasis);
  line-height: 40px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  z-index: 9999999;
  padding: 0.3em;
  @media only screen and (width < 500px) {
    top: 10px;
    right: 12px;
  }
}

.close img {
  width: 1em;
  height: 1em;
}
.close:hover {
  background: var(--color-suave1);
  transition: all 0.5s;
}

.close_fake {
  font-size: 1rem;
  background: var(--color-subtitulo);
  color: var(--color-enfasis);
  line-height: 40px;
  position: fixed;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  z-index: 9999999;
  padding: 0.3em;
}

.auto_grid,
.videos_container,
.auto_grid_rows {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 90%;
  @media only screen and (width < 500px) {
    width: 100%;
  }
}

.auto_grid_100 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.auto_grid_rows {
  grid-auto-rows: 20rem;
}
@media only screen and (width < 500px) {
  .auto_grid_rows {
    grid-auto-rows: 15rem;
  }
}

.content_page {
  position: relative;
  width: 100%;
  height: 100dvh;
  margin: auto;
  bottom: 0;
  z-index: 10;
  background-color: var(--color-fondo);
}
.content {
  background-color: var(--color-fondo);
  z-index: 10;
  position: relative;
  min-height: max-content;
}
.content_carrousel {
  z-index: 10;
  position: relative;
  background-color: var(--color-fondo);
}
.flexible_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flexible_grid > * {
  flex: 1;
}

.reel {
  --gap: 1rem;
  display: grid;
  gap: var(--gap);
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - var(--gap) / 2);
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--gap);
}
.reel > * {
  scroll-snap-align: start;
}

.main_with_sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: start;
}
.main_with_sidebar > :first-child {
  flex-basis: 60%;
  flex-grow: 999;
}
.main_with_sidebar > :last-child {
  flex-basis: 40%;
  flex-grow: 1;
}

.main {
  margin: auto;
  margin-top: 4rem;
  padding: 2rem;
  @media only screen and (width < 500px) {
    width: 100%;
    padding: 0.5rem;
  }
}
.contenedor_galeria {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 10em;
  grid-column-gap: 1%;
  grid-row-gap: 2%;
  background: var(--color-fondo);
  margin-bottom: 5rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .contenedor_galeria {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_galeria {
    grid-template-columns: 1fr;
    grid-row-gap: 1%;
  }
}

.contenedor_silent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 18rem;
  width: 90%;
  max-width: 1400px;

  margin: auto;
  padding-top: 5rem;
  -moz-column-gap: 2%;
  column-gap: 2%;
  row-gap: 5%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .contenedor_silent {
    width: 100%;
    grid-auto-rows: 14rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_silent {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    row-gap: 2%;
    grid-auto-rows: 10rem;
    height: 100vh;
  }
}

.contenedor_botones_60 {
  display: flex;
  flex-wrap: nowrap;
  width: 60%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .contenedor_botones_60 {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
  }
}

.contenedor_estudios {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 90vh 4em;
  width: 100%;
  margin: auto;
  -moz-column-gap: 1%;
  column-gap: 1%;
  margin-top: 0;
}
@media only screen and (width < var(--size-width-desktop)) {
  .contenedor_estudios {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_estudios {
    grid-template-columns: 1fr;
  }
}

.contenedor_noticias {
  padding: 1rem 0;
  margin: 2rem auto;
  margin-bottom: 0;
  align-items: center;
  width: 100vw;
  z-index: 2;
  position: relative;
  background: var(--color-fondo);
}
.contenedor_noticias .noticia:nth-child(2),
.contenedor_noticias .noticia:nth-child(4),
.contenedor_noticias .noticia:nth-child(6),
.contenedor_noticias .noticia:nth-child(8),
.contenedor_noticias .noticia:nth-child(10),
.contenedor_noticias .noticia:nth-child(12),
.contenedor_noticias .noticia:nth-child(14),
.contenedor_noticias .noticia:nth-child(16),
.contenedor_noticias .noticia:nth-child(18),
.contenedor_noticias .noticia:nth-child(20) {
  background: var(--color-transp01);
}
@media only screen and (width < var(--size-width-desktop)) {
  .contenedor_noticias {
    grid-template-columns: 1fr;
    margin: 1em auto;
    margin-bottom: 2em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_noticias {
    width: 100%;
    padding: 0;
  }
}
.contenedor_noticias_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  .noticia:nth-child(1),
  .noticia:nth-child(4),
  .noticia:nth-child(5),
  .noticia:nth-child(8),
  .noticia:nth-child(9),
  .noticia:nth-child(12),
  .noticia:nth-child(13),
  .noticia:nth-child(16),
  .noticia:nth-child(17),
  .noticia:nth-child(20),
  .noticia:nth-child(21) {
    background: var(--color-transp01);
  }
  @media only screen and (width < 500px) {
    grid-template-columns: 1fr;
    column-gap: 0;
    .noticia:nth-child(1),
    .noticia:nth-child(3),
    .noticia:nth-child(5),
    .noticia:nth-child(7),
    .noticia:nth-child(9),
    .noticia:nth-child(11),
    .noticia:nth-child(13),
    .noticia:nth-child(15),
    .noticia:nth-child(17),
    .noticia:nth-child(19),
    .noticia:nth-child(21) {
      background: var(--color-transp01);
    }
    .noticia:nth-child(2),
    .noticia:nth-child(4),
    .noticia:nth-child(6),
    .noticia:nth-child(8),
    .noticia:nth-child(10),
    .noticia:nth-child(12),
    .noticia:nth-child(14),
    .noticia:nth-child(16),
    .noticia:nth-child(18),
    .noticia:nth-child(20),
    .noticia:nth-child(22) {
      background: transparent !important;
    }
    .noticia:nth-child(1) {
      grid-column: 1/3;
      background: var(--color-transp01);
    }
    .noticia:nth-child(1),
    .noticia:nth-child(4),
    .noticia:nth-child(5),
    .noticia:nth-child(8),
    .noticia:nth-child(9),
    .noticia:nth-child(12),
    .noticia:nth-child(13),
    .noticia:nth-child(16),
    .noticia:nth-child(17),
    .noticia:nth-child(20),
    .noticia:nth-child(21) {
      background: var(--color-transp01);
    }
  }
}

.news_item01,
.news_item02,
.news_item03 {
  padding: 1rem 10rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .news_item,
  .news_item01,
  .news_item02,
  .news_item03 {
    padding: 1rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .news_item,
  .news_item01,
  .news_item02,
  .news_item03 {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.news_item {
  background-color: var(--color-suave);
}

.news_item01 {
  background-color: var(--color-suave);
}

.news_item02 {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: 10% 30% 30% 20% 10%;
  background-color: var(--color-fondo);
  margin-bottom: 2rem;
}
@media only screen and (width < var(--size-movil)) {
  .news_item02 {
    grid-template-columns: 1fr;
    grid-template-rows: 10% 30% 30% 1fr 10%;
  }
}

.news_item03 {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: 60% 1fr;
}
@media only screen and (width < var(--size-movil)) {
  .news_item03 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

.encabezamiento_content {
  grid-column: 1/3;
}
@media only screen and (width < var(--size-movil)) {
  .encabezamiento_content {
    grid-column: 1;
    height: 100%;
  }
}

.contenedor_news {
  overflow: hidden;
  max-width: 1200px;
  height: 40em;
  margin: 1em auto;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_news {
    overflow: hidden;
    width: 100%;
    height: 35em;
    margin: 0;
  }
}
@media only screen and (width < var(--min-width-movil)) {
  .contenedor_news {
    height: 28em;
  }
}
.contenedor_news figure {
  position: relative;
  width: 500%;
  margin: 0;
  animation: animate 30s infinite;
}

.contenido_banner_new {
  width: 100vw;
  margin: auto;
  background: var(--transparente1);
}
.contenido_banner_new p {
  color: var(--color-color);
  padding: 10px 50px;
  font-size: 22px;
  text-align: center;
}
.contenido_banner_new p a {
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-movil)) {
  .contenido_banner_new p {
    padding: 10px;
    font-size: 14px;
  }
}

.contenedor_diapos {
  width: 100%;
  height: 100%;
  position: relative;
}

.contenedor_diapos_news {
  width: 100%;
  height: 35rem;
  position: relative;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_diapos_news {
    height: 28rem;
  }
}
.expand {
  grid-column: 1/3;
}
.contenedor_diapos_important {
  width: 100%;
  height: 35rem;
  position: relative;
  @media only screen and (width < 500px) {
    height: 30rem;
  }
}
@media only screen and (width < 400px) {
  .contenedor_diapos_important {
    height: 28rem;
  }
}
.catalogos {
  padding: 1rem 15%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}
@media only screen and (width < 500px) {
  .catalogos {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
    width: 90%;
    margin: auto;
    margin-bottom: 1rem;
    overflow-y: auto;
    overscroll-behavior-inline: contain;
    grid-auto-columns: 28%;
  }
}

.catalogos::-webkit-scrollbar {
  height: 0.2rem;
  background-color: var(--color-transp01);
}

.catalogos::-webkit-scrollbar-thumb {
  background-color: var(--color-transp25);
  border-radius: 5px;
}

#column2 {
  grid-column: 2;
}
@media only screen and (width < var(--size-movil)) {
  #column2 {
    grid-column: 1;
    grid-row: 5;
  }
}

#slideshow {
  background-color: var(--color-suave);
  padding: 1rem;
  margin: auto;
  align-items: center;
  width: 100vw;
  height: 30rem;
}
@media only screen and (width < var(--size-movil)) {
  #slideshow {
    padding: 1rem 0;
  }
}
#slideshow .mySlides {
  max-width: 1400px;
}
#slideshow .mySlides img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 1400px;
  margin: auto;
}

.contenedor_botones_instagram {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 10em;
  width: 90%;
  margin: 4em auto;
  grid-gap: 2%;
  row-gap: 1rem;
}
@media only screen and (width < 860px) {
  .contenedor_botones_instagram {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    row-gap: 2rem;
    margin: auto;
    margin-bottom: 5rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_botones_instagram {
    grid-template-columns: 1fr;
    margin-bottom: 10rem;
  }
}

.contenedor_botones_instagram_pares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 10em 10em 10em;
  width: 80%;
  margin: 2em auto;
  grid-gap: 2%;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_botones_instagram_pares {
    grid-template-rows: repeat(6, 6em);
    width: 90%;
    margin: auto;
  }
}

.contenedor_contenido {
  margin: auto;
  margin-top: 2rem;
  width: 80%;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_contenido {
    width: 100%;
    padding: 1rem;
  }
}

.contenedor_banner {
  position: absolute;
  width: 100vw;
  top: 3rem;
  margin: auto;
  z-index: 9999999;
  background: var(--transparente2);
}
@media only screen and (width < var(--size-ipad)) {
  .contenedor_banner {
    left: 0;
  }
}

.contenedor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contenedor_datos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  box-shadow: var(--color-shadow);
  margin: auto;
  margin-bottom: 10rem;
  width: 90%;
  grid-auto-rows: auto;
  background-color: var(--color-suave);
  -moz-column-gap: 1px;
  column-gap: 1px;
  row-gap: 1px;
}

.contenedor_accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contenedor_studios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_studios {
    grid-template-columns: 1fr;
  }
}

.loader_container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow-container_4,
.slideshow-container_news {
  max-width: 1400px;
  width: 90%;
  height: 80%;
  position: relative;
  margin: 2em auto;
  background-color: var(--color-fondo);
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_4,
  .slideshow-container_news {
    margin: auto;
    width: 100%;
    height: auto;
  }
}

@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_news {
    order: 1;
  }
}

.noticias_link_contenedor {
  display: flex;
  width: 80%;
  position: absolute;
  bottom: 5em;
  right: 0;
}

.slideshow-container {
  width: 100%;
  height: 30rem;
  position: relative;
  margin: auto;
}

.slideshow-container_1 {
  width: 90%;
  height: 85vh;
  position: relative;
  margin: auto;
}
@media only screen and (width < var(--size-movil)) {
  .slideshow-container_1 {
    width: 100%;
    height: 32em;
    position: relative;
    margin: 2em auto;
  }
}

.slideshow-container_2 {
  width: 80%;
  height: 37em;
  position: relative;
  margin: 2em auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_2 {
    width: 100%;
  }
}

.slideshow-container_3 {
  width: 100%;
  height: 80%;
  position: relative;
  margin: 2em auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_3 {
    margin: auto;
  }
}

.slideshow-container_3_fondo {
  width: 100%;
  height: 80%;
  position: relative;
  margin: 2em auto;
  background-image: url(/imagenes/image_news/junglas_mua-1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_3_fondo {
    margin: auto;
  }
}

.slideshow-container_index {
  width: 100vw;
  height: 100vh;
  position: relative;
  margin: auto;
}

.slideshow-container_banner {
  width: 100%;
  height: 30em;
  position: relative;
  margin: auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_banner {
    height: 48em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .slideshow-container_banner {
    height: 31em;
  }
}

.slideshow-container_galeria {
  width: 90%;
  height: 85vh;
  position: relative;
  margin: auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshow-container_galeria {
    width: 100%;
    height: 100vh;
    padding-top: 3em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .slideshow-container_galeria {
    padding-top: 1em;
  }
}

.slideshow_container_importante {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
}

#wallpaper {
  width: 100vw;
  height: 100vh;
}
#wallpaper .mySlides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#container {
  font-size: 16px;
  text-align: center;
  color: var(--color-color);
}
#container:hover {
  color: var(--color-enfasis);
  cursor: pointer;
  transition: all;
}
@media only screen and (width < var(--size-movil)) {
  #container {
    font-size: 12px;
  }
}

#container2 {
  font-size: 16px;
  text-align: center;
  color: var(--color-color2);
}
@media only screen and (width < var(--size-movil)) {
  #container2 {
    font-size: 12px;
  }
}

.wrapper {
  padding: 1.5rem;
}

.contenedor_obras {
  display: grid;
  width: 80%;
  margin: auto;
  margin-top: 10rem;
  grid-template-columns: 1fr 1fr;
  row-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
@media only screen and (width < var(--size-movil)) {
  .contenedor_obras {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.btn_obras {
  position: relative;
  height: 14rem;
  box-shadow: var(--color-shadow);
  transition: all 0.5s ease;
}
.btn_obras:hover {
  box-shadow: var(--color-shadow_strong);
}
.btn_obras:hover .cartela,
.btn_obras:hover .cartela_info {
  height: 400%;
}
.btn_obras img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-movil)) {
  .btn_obras {
    height: 10rem;
  }
}

.btn_series {
  width: 80%;
  margin: auto;
  margin-top: 3rem;
  text-align: center;
  padding: 0.6rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  background-color: var(--color-transp01);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: var(--color-shadow);
}
.btn_series:hover {
  transition: all 0.5s ease;
  box-shadow: var(--color-shadow_strong);
}

.cartela_obra {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
  width: 100%;
  background: var(--transparente2);
  text-transform: uppercase;
  transition: all 0.5s;
}
.cartela_obra:hover {
  opacity: 1;
}

.contenedor_dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.video_inicio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-aspect-ratio: 16/9) {
  .video_inicio {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-aspect-ratio: 16/9) {
  .video_inicio {
    width: auto;
    height: 100%;
  }
}
.img_inicio {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacto_portada {
  background: var(--color-fondo);
  margin-top: 4rem;
  width: auto;
}

.mySlides_auto {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.videos_container {
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-auto-rows: 10rem;
}
@media only screen and (width < 566px) {
  .videos_container {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  }
}

.video_btn {
  margin-top: 5rem;
  height: 15rem;
  width: 100%;
  position: relative;
  cursor: pointer;
  img {
    height: 100% !important;
    width: 100%;
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  video {
    width: 100%;
    height: 100%;
  }
  @media only screen and (width < 500px) {
    margin-top: 0;
    height: auto;
  }
}
@media only screen and (width < 500px) {
  .video_btn {
    margin-top: 0;
    height: auto;
  }
}
.video_btn img {
  height: 100% !important;
  width: 100%;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
.video_btn video {
  width: 100%;
  height: 100%;
}
.video_btn1 {
  position: relative;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    position: relative;
  }
}
.btn_video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  background-color: var(--color-transp_sec25);
}
.img_btn_video {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30% !important;
  height: 20% !important;
  @media only screen and (width < 500px) {
    width: 20% !important;
  }
}
.height_30rem {
  height: 40rem !important;
  object-fit: contain;
}
#video_maca {
  svg {
    width: 100%;
    height: 100%;
  }
}
.height100 {
  height: 100% !important;
  display: block;
}

.poster,
.poster_intramuros {
  grid-column: 2;
  grid-row: 2;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  /* height: 45rem !important; */
  img {
    height: 100% !important;
  }
  @media only screen and (width < 500px) {
    grid-column: 1 !important;
  }
}

#studio_cajaMuda {
  display: grid;
  grid-template-columns: 1fr 30%;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  position: relative;
  @media only screen and (width < 500px) {
    grid-template-columns: 1fr;
  }
}

/* #video_cajaMuda {
  grid-column: 2;
  grid-row: 1;
  @media only screen and (width < 500px) {
    grid-column: 1;
    grid-row: 2;
  }
} */

#whatsap_cajaMuda {
  right: 5rem !important;
  top: 1rem !important;
}

.mapa_google {
  width: 100%;
  height: 100%;
  grid-column: 2/4;
  transition: all 0.5s;
}
.mapa_google:hover {
  box-shadow: var(--color-shadow);
}
@media only screen and (width < 566px) {
  .mapa_google {
    grid-column: 1;
  }
}

#cajaMuda_slideshow {
  grid-row: 1;
  grid-column: 1/2;
  width: 100%;
  @media only screen and (width < 500px) {
    grid-row: 1;
  }
}
#descripcion_caja_muda {
  grid-column: 1 !important;
}
#ceiba_lam_content,
#intramuros_content,
#euipo_content,
#cajamuda2025_content {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1rem;
  position: relative;
  @media only screen and (width < 500px) {
    grid-template-columns: 1fr;
  }
}
/* @media only screen and (width <  var(--size-width-desktop)) {
  #ceiba_lam_content,
  #intramuros_content,
  #euipo_content {
    grid-template-columns: 1fr;
  }
} */

#ceiba_lam_slideshow,
#euipo_slideshow {
  grid-column: 1/3;
  max-height: 80dvh;
  @media only screen and (width < 500px) {
    grid-column: 1;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  #ceiba_lam_slideshow,
  #euipo_slideshow {
    grid-column: 1;
  }
}

#video_lam2024 {
  margin-top: 0;
  margin: auto;
}
#video_euipo {
  grid-row: 2;
  margin-top: 0;
  margin: auto;

  overflow: hidden;
  img {
    object-fit: cover;
  }
  @media only screen and (width < 500px) {
    grid-row: 3;
  }
}
#video_lam2024 img,
#video_intramuros img {
  height: 100% !important;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-width-desktop)) {
  #video_lam2024,
  #video_intramuros,
  #video_euipo {
    grid-row: 3;
  }
}

#openModal_lam2024 video {
  height: 100%;
}

#video_intramuros {
  grid-column: 2;
}

.cartela_info {
  height: 2rem !important;
  position: absolute;
  bottom: 0%;
  left: 0;
  background: var(--transparente2);
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  padding-bottom: 4rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .cartela_info {
    padding-bottom: 5rem;
  }
}

.accordion {
  width: 80vw;
  border-radius: 5px;
  background: var(--color-fondo);
  position: relative;
  z-index: 999;
}
@media only screen and (width < var(--size-movil)) {
  .accordion {
    width: 100vw;
  }
}

.accordion__label,
.accordion__label_video,
.accordion__content {
  padding: 0.8rem 1.2rem;
}

.accordion__label,
.accordion__label_video {
  display: block;
  color: var(--color-enfasis);
  text-decoration: underline;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.5s all;
  position: relative;
}
.accordion__label:hover,
.accordion__label_video:hover {
  font-weight: bold;
  text-decoration: none;
}
@media only screen and (width < var(--size-movil)) {
  .accordion__label,
  .accordion__label_video {
    font-size: 0.7rem;
  }
}

.accordion__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30%;
  width: 1rem;
  height: 1rem;
  background-image: url(/imagenes/botones/chevron-down-solid01.svg);
  background-size: contain;
  transition: transform 0.4s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .accordion__label::after {
    left: 50%;
  }
}

.accordion__label_video::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20%;
  width: 1rem;
  height: 1rem;
  background-image: url(/imagenes/botones/chevron-down-solid01.svg);
  background-size: contain;
  transition: transform 0.4s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .accordion__label_video::after {
    left: 50%;
  }
}

.accordion__content,
.accordion__content_video {
  background: var(--transparente2);
  line-height: 1.6;
  font-size: 0.85em;
  display: none;
  padding: 2rem;
}
@media only screen and (width < var(--size-movil)) {
  .accordion__content,
  .accordion__content_video {
    font-size: 0.6rem;
    padding: 1rem;
  }
}

.accordion__input {
  display: none;
}

.accordion__input:checked ~ .accordion__label::after {
  transform: translateY(-50%) rotate(0.5turn);
}

.accordion__input:checked ~ .accordion__content {
  display: block;
  position: absolute;
  left: 0;
  bottom: 2rem;
  color: var(--color-enfasis);
  transition: all 0.5s;
  width: 80vw;
}
@media only screen and (width < var(--size-width-desktop)) {
  .accordion__input:checked ~ .accordion__content {
    width: 90vw;
  }
}
@media only screen and (width < var(--size-movil)) {
  .accordion__input:checked ~ .accordion__content {
    width: 100vw;
  }
}

.accordion__input:checked ~ .accordion__content_video {
  display: block;
  position: absolute;
  left: 0;
  bottom: 4rem;
  color: var(--color-enfasis);
  transition: all 0.5s;
  width: 80vw;
}
@media only screen and (width < 810px) {
  .accordion__input:checked ~ .accordion__content_video {
    width: 100vw;
    left: -100%;
    right: 0;
  }
}

.popup_importante {
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  align-content: center;
  position: fixed;
  z-index: 999999999;
  margin: 0;
  background-color: var(--color-fondo);
  box-shadow: var(--color-shadow);
  border-radius: 20px;
}
@media only screen and (width < 400px) {
  .popup_importante {
    width: 100%;
  }
}
.popup_importante button {
  display: block;
  margin: 0 0 20px auto;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 2rem;
  color: var(--color-suave1);
  cursor: pointer;
}
@media only screen and (min-width: var(--size-width-desktop)) {
  .popup_importante {
    width: 50%;
  }
}

.importante__titulo {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 100;
  color: var(--color-color);
}

.importante__text {
  position: absolute;
  left: -5%;
  top: 5%;
  transform: rotate(-15deg);
  font-size: 3rem;
  color: var(--color-color) !important;
  font-weight: bold;
  background-color: var(--color-transp50);
}
@media only screen and (width < var(--size-movil)) {
  .importante__text {
    font-size: 2rem;
    left: 10%;
  }
}

.importante__modal {
  animation: importante 2s;
  visibility: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
  margin: auto;
  height: 80vh;
  width: 100%;
  /* background-color: var(--color-transp50); */
  padding: 1.5rem;
  position: relative;
  display: grid;
  grid-template-rows: 5% 10% 1fr 10%;
}
@media only screen and (width < 400px) {
  .importante__modal {
    height: 90vh;
    padding: 0;
  }
}
.importante_content {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  margin: 0px auto;
}
.importante_content img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.importante_content p {
  padding: 0.5rem;
  font-size: 1rem;
  text-align: justify;
}
.importante_content p a {
  color: var(--color-fondo);
  border-bottom: 1px solid var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .importante_content p {
    padding: 10px 20px;
    font-size: 11px;
    padding-bottom: 2em;
  }
}

@keyframes importante {
  to {
    visibility: visible;
    opacity: 1;
  }
}
.importante__submit {
  position: absolute !important;
  bottom: 0.2rem;
  right: 0.2rem;
  margin: auto;
  text-align: center;
  background-color: var(--color-transp50);
  color: var(--color-fondo);
  text-decoration: none;
  padding: 0.2rem 1.2rem;
  border-radius: 20px;
  font-size: 1rem;
}

.darkmode {
  background: var(--color-enfasis);
}
.darkmode .solid,
.darkmode .footer,
.darkmode .content_page,
.darkmode .bilio_imagen {
  background: var(--color-enfasis) !important;
  color: var(--color-fondo);
  fill: var(--color-fondo) !important;
}
.darkmode .solid a,
.darkmode .solid p,
.darkmode .footer a,
.darkmode .footer p,
.darkmode .content_page a,
.darkmode .content_page p,
.darkmode .bilio_imagen a,
.darkmode .bilio_imagen p {
  color: var(--color-fondo);
}
.darkmode .solid .content,
.darkmode .solid .content_index,
.darkmode .solid .footer,
.darkmode .solid .content_carrousel,
.darkmode .footer .content,
.darkmode .footer .content_index,
.darkmode .footer .footer,
.darkmode .footer .content_carrousel,
.darkmode .content_page .content,
.darkmode .content_page .content_index,
.darkmode .content_page .footer,
.darkmode .content_page .content_carrousel,
.darkmode .bilio_imagen .content,
.darkmode .bilio_imagen .content_index,
.darkmode .bilio_imagen .footer,
.darkmode .bilio_imagen .content_carrousel {
  background: var(--color-enfasis);
}
.darkmode .solid .content p,
.darkmode .solid .content h1,
.darkmode .solid .content h2,
.darkmode .solid .content h3,
.darkmode .solid .content h4,
.darkmode .solid .content h5,
.darkmode .solid .content_index p,
.darkmode .solid .content_index h1,
.darkmode .solid .content_index h2,
.darkmode .solid .content_index h3,
.darkmode .solid .content_index h4,
.darkmode .solid .content_index h5,
.darkmode .solid .footer p,
.darkmode .solid .footer h1,
.darkmode .solid .footer h2,
.darkmode .solid .footer h3,
.darkmode .solid .footer h4,
.darkmode .solid .footer h5,
.darkmode .solid .content_carrousel p,
.darkmode .solid .content_carrousel h1,
.darkmode .solid .content_carrousel h2,
.darkmode .solid .content_carrousel h3,
.darkmode .solid .content_carrousel h4,
.darkmode .solid .content_carrousel h5,
.darkmode .footer .content p,
.darkmode .footer .content h1,
.darkmode .footer .content h2,
.darkmode .footer .content h3,
.darkmode .footer .content h4,
.darkmode .footer .content h5,
.darkmode .footer .content_index p,
.darkmode .footer .content_index h1,
.darkmode .footer .content_index h2,
.darkmode .footer .content_index h3,
.darkmode .footer .content_index h4,
.darkmode .footer .content_index h5,
.darkmode .footer .footer p,
.darkmode .footer .footer h1,
.darkmode .footer .footer h2,
.darkmode .footer .footer h3,
.darkmode .footer .footer h4,
.darkmode .footer .footer h5,
.darkmode .footer .content_carrousel p,
.darkmode .footer .content_carrousel h1,
.darkmode .footer .content_carrousel h2,
.darkmode .footer .content_carrousel h3,
.darkmode .footer .content_carrousel h4,
.darkmode .footer .content_carrousel h5,
.darkmode .content_page .content p,
.darkmode .content_page .content h1,
.darkmode .content_page .content h2,
.darkmode .content_page .content h3,
.darkmode .content_page .content h4,
.darkmode .content_page .content h5,
.darkmode .content_page .content_index p,
.darkmode .content_page .content_index h1,
.darkmode .content_page .content_index h2,
.darkmode .content_page .content_index h3,
.darkmode .content_page .content_index h4,
.darkmode .content_page .content_index h5,
.darkmode .content_page .footer p,
.darkmode .content_page .footer h1,
.darkmode .content_page .footer h2,
.darkmode .content_page .footer h3,
.darkmode .content_page .footer h4,
.darkmode .content_page .footer h5,
.darkmode .content_page .content_carrousel p,
.darkmode .content_page .content_carrousel h1,
.darkmode .content_page .content_carrousel h2,
.darkmode .content_page .content_carrousel h3,
.darkmode .content_page .content_carrousel h4,
.darkmode .content_page .content_carrousel h5,
.darkmode .bilio_imagen .content p,
.darkmode .bilio_imagen .content h1,
.darkmode .bilio_imagen .content h2,
.darkmode .bilio_imagen .content h3,
.darkmode .bilio_imagen .content h4,
.darkmode .bilio_imagen .content h5,
.darkmode .bilio_imagen .content_index p,
.darkmode .bilio_imagen .content_index h1,
.darkmode .bilio_imagen .content_index h2,
.darkmode .bilio_imagen .content_index h3,
.darkmode .bilio_imagen .content_index h4,
.darkmode .bilio_imagen .content_index h5,
.darkmode .bilio_imagen .footer p,
.darkmode .bilio_imagen .footer h1,
.darkmode .bilio_imagen .footer h2,
.darkmode .bilio_imagen .footer h3,
.darkmode .bilio_imagen .footer h4,
.darkmode .bilio_imagen .footer h5,
.darkmode .bilio_imagen .content_carrousel p,
.darkmode .bilio_imagen .content_carrousel h1,
.darkmode .bilio_imagen .content_carrousel h2,
.darkmode .bilio_imagen .content_carrousel h3,
.darkmode .bilio_imagen .content_carrousel h4,
.darkmode .bilio_imagen .content_carrousel h5 {
  color: var(--color-fondo);
}
.darkmode .contenedor_noticias .noticia:nth-child(2),
.darkmode .contenedor_noticias .noticia:nth-child(4),
.darkmode .contenedor_noticias .noticia:nth-child(6),
.darkmode .contenedor_noticias .noticia:nth-child(8),
.darkmode .contenedor_noticias .noticia:nth-child(10),
.darkmode .contenedor_noticias .noticia:nth-child(12),
.darkmode .contenedor_noticias .noticia:nth-child(14),
.darkmode .contenedor_noticias .noticia:nth-child(16),
.darkmode .contenedor_noticias .noticia:nth-child(18),
.darkmode .contenedor_noticias .noticia:nth-child(20) {
  background: var(--color-transp_sec01);
}
.darkmode .importante__modal,
.darkmode .importante__titulo,
.darkmode .importante_content,
.darkmode .reviews li a,
.darkmode .titulo,
.darkmode .contact_form,
.darkmode .contact_title,
.darkmode .link_gallery,
.darkmode .resultados_busqueda,
.darkmode .contenedor_noticias {
  background: var(--color-enfasis);
  color: var(--color-fondo) !important;
}
.darkmode .importante__modal > p,
.darkmode .importante__modal h1,
.darkmode .importante__modal h2,
.darkmode .importante__modal h3,
.darkmode .importante__modal h4,
.darkmode .importante__modal h5,
.darkmode .importante__titulo > p,
.darkmode .importante__titulo h1,
.darkmode .importante__titulo h2,
.darkmode .importante__titulo h3,
.darkmode .importante__titulo h4,
.darkmode .importante__titulo h5,
.darkmode .importante_content > p,
.darkmode .importante_content h1,
.darkmode .importante_content h2,
.darkmode .importante_content h3,
.darkmode .importante_content h4,
.darkmode .importante_content h5,
.darkmode .reviews li a > p,
.darkmode .reviews li a h1,
.darkmode .reviews li a h2,
.darkmode .reviews li a h3,
.darkmode .reviews li a h4,
.darkmode .reviews li a h5,
.darkmode .titulo > p,
.darkmode .titulo h1,
.darkmode .titulo h2,
.darkmode .titulo h3,
.darkmode .titulo h4,
.darkmode .titulo h5,
.darkmode .contact_form > p,
.darkmode .contact_form h1,
.darkmode .contact_form h2,
.darkmode .contact_form h3,
.darkmode .contact_form h4,
.darkmode .contact_form h5,
.darkmode .contact_title > p,
.darkmode .contact_title h1,
.darkmode .contact_title h2,
.darkmode .contact_title h3,
.darkmode .contact_title h4,
.darkmode .contact_title h5,
.darkmode .link_gallery > p,
.darkmode .link_gallery h1,
.darkmode .link_gallery h2,
.darkmode .link_gallery h3,
.darkmode .link_gallery h4,
.darkmode .link_gallery h5,
.darkmode .resultados_busqueda > p,
.darkmode .resultados_busqueda h1,
.darkmode .resultados_busqueda h2,
.darkmode .resultados_busqueda h3,
.darkmode .resultados_busqueda h4,
.darkmode .resultados_busqueda h5 {
  color: var(--color-fondo);
}
.darkmode .menu_bar a,
.darkmode .nav-links a:hover,
.darkmode strong,
.darkmode .descripcion_serie2,
.darkmode .newsletter_encabezamiento {
  color: var(--color-fondo);
}
.darkmode .cartela,
.darkmode .menu_scroll__element p,
.darkmode .freebie_cartela,
.darkmode .back_menu_btn,
.darkmode .modalDialog_img,
.darkmode .tarjeta_info_modal,
.darkmode .pagination li > a,
.darkmode .pagination li > span {
  background: var(--color-transp50);
}
.darkmode .menu_scroll::-webkit-scrollbar,
.darkmode .newsletter {
  background-color: var(--color-texto);
}
.darkmode .menu_scroll::-webkit-scrollbar-thumb,
.darkmode .link,
.darkmode .newsletter form input,
.darkmode .titulo_instagram_post,
.darkmode .freebies {
  background-color: var(--color-transp_sec08);
}
.darkmode .scrolled,
.darkmode .updated_news {
  background: transparent;
}
.darkmode .link_redes a svg,
.darkmode .social_media_link svg {
  fill: var(--color-fondo);
}
@media screen and (width < var(--size-ipad)) {
  .darkmode nav .navOpenBtn {
    color: var(--color-enfasis) !important;
    fill: var(--color-fondo);
  }
  .darkmode nav .navCloseBtn,
  .darkmode .boton_cerrar_search svg,
  .darkmode .next svg,
  .darkmode .prev svg {
    fill: var(--color-fondo);
  }
}
@media screen and (width < 645px) {
  .darkmode .nav-links {
    background: var(--color-transp25);
  }
  .darkmode .nav-links li {
    display: flex;
  }
}
.darkmode .btn_resume {
  color: var(--color-enfasis) !important;
}
.darkmode .degrad_footer {
  background: linear-gradient(transparent, var(--color-enfasis));
}
.darkmode .boton_search svg,
.darkmode .contact_form svg {
  fill: var(--color-fondo);
}
.darkmode .noticia label::after {
  color: var(--color-transp50);
}
.darkmode .noticia:hover label::after {
  color: var(--color-fondo);
}

#carousel-example-generic {
  display: inline-block;
}

ul.thumbnails-carousel {
  padding: 5px 0 0 0;
  margin: 0;
  margin-top: 2rem;
  list-style-type: none;
  text-align: center;
}
ul.thumbnails-carousel .center {
  display: inline-block;
}
ul.thumbnails-carousel li {
  margin-right: 5px;
  float: left;
  cursor: pointer;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100%;
}

.controls-background-reset {
  background: none !important;
}

.active-thumbnail {
  opacity: 0.4;
}

.indicators-fix {
  bottom: 70px;
}

.container {
  width: 90vw;
  margin: auto;
  height: 100%;
}
.container:after,
.container:before {
  content: "";
  display: table;
  clear: both;
}

.carousel {
  width: 100%;
  position: relative;
}

.carousel-inner {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.carousel-inner .active {
  left: 0;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.img-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.item {
  display: none;
  position: relative;
  height: 50vh;
  transition: 0.6s ease-in-out left;
  background-color: var(--color-fondo);
}
.item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0.5rem;
  color: var(--color-fondo);
  text-align: center;
  text-shadow: var(--color-shadow);
  background-color: var(--color-transparente5);
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--color-enfasis);
  border: 1px solid var(--color-fondo);
  border-radius: 10px;
}
.carousel-indicators li:active {
  background-color: var(--color-fondo);
}
.carousel-indicators li:hover {
  background-color: var(--color-transp01);
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: var(--color-fondo);
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.2;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: var(--color-fondo);
  text-align: center;
  text-shadow: var(--color-shadow);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: var(--color-fondo);
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.icon-prev {
  left: 50%;
  margin-left: -10px;
}
.icon-prev:before {
  content: "";
}

.icon-next {
  right: 50%;
  margin-right: -10px;
}
.icon-next:before {
  content: "›";
}

.icon-prev,
.icon-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
  line-height: 1;
}

.left {
  right: auto;
  left: 0;
  z-index: 1000000000000000000000000;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.0001) 50%
  );
}

.right {
  right: 0;
  left: auto;
  z-index: 999999999999999;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0001) 0%,
    rgba(0, 0, 0, 0.5) 50%
  );
}

.thumb {
  width: 6rem;
  height: 6rem;
  margin-right: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
  border-radius: 20px;
  box-shadow: var(--color-shadow_strong);
}
.thumb:hover {
  opacity: 1;
}
.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: var(--size-ipad)) {
  .glyphicon-chevron-right,
  .icon-next {
    margin-right: -15px;
  }
}
.icon-prev,
.glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.icon-prev,
.icon-next,
.glyphicon-chevron-left,
.glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 10000000000000000000;
  display: inline-block;
}
@media screen and (min-width: var(--size-width-desktop)) {
  .icon-prev,
  .icon-next,
  .glyphicon-chevron-left,
  .glyphicon-chevron-right {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
}

.icon-next,
.glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
  color: var(--color-fondo);
}

.thumbnail_contenedor {
  display: flex;
  height: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.slide_grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.slide_card {
  display: grid;
  grid-template-rows: 1fr 30%;
  height: 13rem;
  position: relative;
  box-shadow: var(--color-shadow);
}
.slide_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide_card_text {
  padding: 0.5rem;
}

.slide_card_text_titulo {
  font-size: 0.8rem;
}

.slide_card_text_info {
  font-size: 0.6rem;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  width: 100%;
  height: 60vh;
  margin: auto;
}

.carousel-control.left {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.1) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
}

.carousel-control.right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.1) 100%
  );
}

#slideshow_wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* Or set a fixed height */
}

#progress_bar_container {
  position: absolute;
  height: 0.3rem;
  background-color: var(--color-transp01);
  width: 100%;
  top: 0;
  z-index: 1000;
}

#progress_bar {
  height: 100%;
  background-color: var(--color-transp50);
  border-radius: 0 3px 3px 0;
  transition: width 1s;
}

#diapos {
  position: relative;
  z-index: 998;
  height: 100%;
}
#diapos img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

#img2 {
  left: 100%;
}

.activo {
  left: 0 !important;
}

#indicadores {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 2rem;
  z-index: 999;
}

.indicador_circulo {
  border: var(--color-suave) 1px solid;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin: 0 1rem 0 1rem;
  background-color: transparent;
  border-radius: 50%;
}

.resaltado {
  background-color: var(--color-suave1);
  transition: background-color 0.5s;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Optima", sans-serif;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  line-height: 1.5;
  color: var(--color-texto);
}

a {
  color: var(--color-texto);
}

body {
  position: relative;
  width: 100%;
  height: 100dvh;
  margin: auto;
  scroll-behavior: smooth;
  background-color: var(--color-fondo);
}
@media only screen and (width < 430px) {
  body {
    padding: 0;
  }
}

.btn,
.btn_resume {
  box-shadow: var(--color-shadow);
  height: 100%;
  width: 100%;
  position: relative;
  color: var(--color-enfasis);
  background-color: var(--color-suave1);
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 25pc;
  margin: 1rem auto;
  text-align: center;
}
.btn:hover,
.btn_resume:hover {
  color: var(--color-fondo);
  background-color: var(--color-enfasis);
}
.btn p,
.btn_resume p {
  text-align: center;
  justify-content: center;
}

.carrousel {
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
@media only screen and (width < 500px) {
  .carrousel {
    width: 100vw;
  }
}

.link_nombre {
  width: 100%;
  font-size: 1.8rem;
  padding: 0.2rem;
  margin-left: 1rem;
  color: var(--color-enfasis);
  @media only screen and (width < 500px) {
    font-size: 1rem;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  .link_nombre {
    font-size: 1.5rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .link_nombre {
    font-size: 1.2rem;
    padding: 0.7rem 0;
  }
}

.mySlides_banner_news {
  width: 100%;
  height: 60vh;
  margin: 2rem auto;
  position: relative;
  background-image: url(http://machoenterprise.com/imagenes/image_news/junglas_mua-45webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mySlides_banner_news img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-width-desktop)) {
  .mySlides_banner_news {
    margin: auto;
    height: 30vh;
    margin-top: 2rem;
  }
}
@media only screen and (width < 400px) {
  .mySlides_banner_news {
    margin-top: 1rem;
    height: 10rem;
  }
  .mySlides_banner_news img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mySlides_banner_news_harvard {
  width: 100%;
  height: 60vh;
  margin: 2rem auto;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mySlides_banner_news_harvard img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-width-desktop)) {
  .mySlides_banner_news_harvard {
    margin: auto;
    height: 50vh;
    margin-top: 2rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .mySlides_banner_news_harvard {
    margin-top: 1rem;
    background-size: cover;
  }
  .mySlides_banner_news_harvard img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mySlides_banner_news_nylaa {
  width: 100%;
  height: 60vh;
  margin: 2rem auto;
  position: relative;
  background-image: url(http://machoenterprise.com/imagenes/image_news/nylaa/nylaa_01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mySlides_banner_news_nylaa img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-width-desktop)) {
  .mySlides_banner_news_nylaa {
    margin: auto;
    height: 50vh;
    margin-top: 2rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .mySlides_banner_news_nylaa {
    margin-top: 1rem;
    background-size: cover;
  }
  .mySlides_banner_news_nylaa img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mySlides_banner_news_nyc {
  grid-column: 1/3;
  grid-row: 2;
  width: 100%;
  height: 30rem;
  margin: auto;
  position: relative;
  background-image: url(https://machoenterprise.com/imagenes/image_news/junglas_nyc/junglas_nyc-3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mySlides_banner_news_nyc img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-width-desktop)) {
  .mySlides_banner_news_nyc {
    margin: auto;
    height: 50vh;
    margin-top: 2rem;
  }
}
@media only screen and (width < 400px) {
  .mySlides_banner_news_nyc {
    margin-top: 1rem;
    background-size: cover;
    grid-column: 1;
  }
  .mySlides_banner_news_nyc img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.video_vimeo01 {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  height: 20em;
}

.macho_video {
  width: 100%;
  height: 100%;
}

.imagen_banner {
  height: 10em;
  width: 100%;
}
.imagen_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obra {
  box-shadow: var(--color-shadow);
  width: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  padding: 0.5rem;
}
.obra a img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.obra:hover {
  box-shadow: var(--color-shadow_strong);
  transition: all 0.3s;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  #check:checked ~ ul {
    right: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  #cerrar + label {
    left: 1em;
  }
}
.galeria {
  padding: 2em;
  max-width: 1400px;
  margin: 3rem auto;
  background: var(--color-fondo);
  height: 40rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .galeria {
    padding: 0.8em;
  }
}

.silent_item {
  position: relative;
}
.silent_item:hover .cartela {
  height: 50%;
}
.silent_item a img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#top {
  grid-column: 1/3;
  grid-row: 1;
}
@media only screen and (width < var(--size-movil)) {
  #top {
    grid-column: 1;
  }
}

.boton_galeria {
  box-shadow: var(--color-shadow);
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.boton_galeria img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.boton_galeria:hover .cartela {
  height: 500%;
}

.cartela {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-transp_sec08);
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  h2 {
    padding-top: 1em;
    font-size: 1rem;
    text-transform: capitalize;
    p {
      position: absolute;
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
      color: var(--color-texto);
      font-size: 0.8rem;
    }
  }
  &:hover {
    height: 40%;
    cursor: pointer;
    transition: all 0.3s;
  }

  @media only screen and (width < var(--size-width-desktop)) {
    height: 40%;
    h2,
    p {
      font-size: 1em;
    }
  }
}

#tropical {
  grid-column: 4/7;
  grid-row: 7;
  background-image: url(../imagenes/imagenes_db/tropical_garden01.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media only screen and (width < var(--size-ipad)) {
  #tropical {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
}
@media only screen and (width < var(--size-movil)) {
  #tropical {
    grid-column: 1;
    grid-row: 1;
  }
}

#lam {
  grid-column: 1/3;
  grid-row: 1/3;
  background-image: url(../imagenes/imagenes_db/jungla_canibal06.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #lam {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
}
@media only screen and (width < var(--size-movil)) {
  #lam {
    grid-column: 1;
    grid-row: 3;
  }
}

#macara {
  grid-column: 3/5;
  grid-row: 3/4;
  background-image: url(../imagenes/imagenes_db/tropical__macara.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #macara {
    grid-column: 3;
    grid-row: 1;
  }
}
@media only screen and (width < var(--size-movil)) {
  #macara {
    grid-column: 1;
    grid-row: 2;
  }
}

#utopic_drawing {
  grid-column: 5/7;
  grid-row: 1;
  background-image: url(../imagenes/imagenes_db/drawing_projects02_x1.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #utopic_drawing {
    grid-column: 2;
    grid-row: 3;
  }
}
@media only screen and (width < var(--size-movil)) {
  #utopic_drawing {
    grid-column: 1;
    grid-row: 4;
  }
}

#forest {
  grid-column: 1/2;
  grid-row: 3;
  background-image: url(../imagenes/imagenes_db/forest01.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #forest {
    grid-column: 3;
    grid-row: 8;
  }
}
@media only screen and (width < var(--size-movil)) {
  #forest {
    grid-column: 1;
  }
}

#mulatisimas {
  grid-column: 3/5;
  grid-row: 4 / span 2;
  background-image: url(../imagenes/imagenes_db/mulatisima_la_banana.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #mulatisimas {
    grid-column: 3;
    grid-row: 5;
  }
}
@media only screen and (width < var(--size-movil)) {
  #mulatisimas {
    grid-column: 1;
  }
}

#tropical_pintura {
  grid-column: 6/7;
  grid-row: 2 / span 2;
  background-image: url(../imagenes/imagenes_db/proyecto_tropical_forest_2_4_x1.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #tropical_pintura {
    grid-column: 1 / span 2;
    grid-row: 4;
  }
}
@media only screen and (width < var(--size-movil)) {
  #tropical_pintura {
    grid-column: 1;
    grid-row: 6;
  }
}

#puzzle {
  grid-column: 1/3;
  grid-row: 5;
  background-image: url(../imagenes/imagenes_db/puzzle__puzzle01.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #puzzle {
    grid-column: 1/3;
    grid-row: 5;
  }
}
@media only screen and (width < var(--size-movil)) {
  #puzzle {
    grid-column: 1;
    grid-row: 7;
  }
}

#guardia {
  grid-column: 3/6;
  grid-row: 2;
  background-image: url(../imagenes/imagenes_db/guardia_la_creacion.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #guardia {
    grid-column: 1/3;
    grid-row: 6;
  }
}
@media only screen and (width < var(--size-movil)) {
  #guardia {
    grid-column: 1;
    grid-row: 9;
  }
}

#instalaciones {
  grid-column: 5/7;
  grid-row: 4 / span 2;
  background-image: url(../imagenes/imagenes_db/installation__cadenas.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #instalaciones {
    grid-column: 2 / span 2;
    grid-row: 7;
  }
}
@media only screen and (width < var(--size-movil)) {
  #instalaciones {
    grid-column: 1;
    grid-row: 10;
  }
}

#table {
  height: 35rem;
}

#tauromaquia {
  grid-column: 5;
  grid-row: 3/4;
  background-image: url(../imagenes/imagenes_db/tauro_carnaval.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #tauromaquia {
    grid-column: 1/3;
    grid-row: 8;
  }
}
@media only screen and (width < var(--size-movil)) {
  #tauromaquia {
    grid-column: 1;
    grid-row: 11;
  }
}

#black_garden {
  grid-column: 3 / span 2;
  grid-row: 6;
  background-image: url(../imagenes/imagenes_db/black_garden.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #black_garden {
    grid-column: 3;
    grid-row: 1/2;
  }
}
@media only screen and (width < var(--size-movil)) {
  #black_garden {
    grid-column: 1;
    grid-row: 12;
  }
}

#venidas {
  grid-column: 2;
  grid-row: 3 / span 2;
  background-image: url(../imagenes/imagenes_db/venidas_el-encuentro.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #venidas {
    grid-column: 1 / span 3;
    grid-row: 6;
  }
}
@media only screen and (width < var(--size-movil)) {
  #venidas {
    grid-column: 1;
    grid-row: 13;
  }
}

#forest_drawing {
  grid-column: 4;
  grid-row: 1;
  background-image: url(../imagenes/imagenes_db/forest__dibujo006.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #forest_drawing {
    grid-column: 3;
    grid-row: 3 / span 2;
  }
}
@media only screen and (width < var(--size-movil)) {
  #forest_drawing {
    grid-column: 1;
    grid-row: 14;
  }
}

#ceiba_negra {
  grid-column: 1 / span 2;
  grid-row: 6 / span 2;
  background-image: url(../imagenes/imagenes_db/ceiba__ceiba.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #ceiba_negra {
    grid-column: 1/3;
    grid-row: 6;
  }
}
@media only screen and (width < var(--size-movil)) {
  #ceiba_negra {
    grid-column: 1;
    grid-row: 15;
  }
}

#instagram {
  grid-column: 5 / span 2;
  grid-row: 6;
  background-image: url(../imagenes/imagenes_db/utopic__branderburg.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #instagram {
    grid-column: 1/2;
    grid-row: 7;
  }
}
@media only screen and (width < var(--size-movil)) {
  #instagram {
    grid-column: 1;
    grid-row: 16;
  }
}

#ceramica {
  grid-column: 1;
  grid-row: 4;
  background-image: url(../imagenes/imagenes_db/forest_on_the_wall02.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #ceramica {
    grid-column: 1;
    grid-row: 3;
  }
}
@media only screen and (width < var(--size-movil)) {
  #ceramica {
    grid-column: 1;
    grid-row: 17;
  }
}

#confinamiento {
  grid-column: 3;
  grid-row: 7;
  background-image: url(../imagenes/imagenes_db/facemask__mascarilla_azul03.webp);
  background-size: cover;
  background-position: center;
}
@media only screen and (width < var(--size-ipad)) {
  #confinamiento {
    grid-column: 1/4;
    grid-row: 9;
  }
}
@media only screen and (width < var(--size-movil)) {
  #confinamiento {
    grid-column: 1;
    grid-row: 18;
  }
}

.confinamiento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 15em;
  grid-gap: 2em;
  width: 80%;
  margin: 5em auto;
}
@media only screen and (width < var(--size-ipad)) {
  .confinamiento {
    grid-template-columns: 1fr;
    grid-auto-rows: 12em;
    grid-gap: 1.5rem;
    width: 100%;
    margin: 2em auto;
  }
}

.btn_search {
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 25pc;
  background: #fff;
  overflow: hidden;
  margin: 0.8rem 4rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .btn_search {
    width: 15rem;
  }
}
.btn_search img {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  color: rgb(155, 155, 155);
}
.btn_search:hover {
  width: 20rem;
  border: 2px solid rgb(223, 223, 223);
  text-align: center;
}
@media only screen and (width < var(--size-width-desktop)) {
  .btn_search:hover {
    width: 15rem;
  }
}

.btn_conf {
  box-shadow: var(--color-shadow);
  height: 100%;
  width: 100%;
  position: relative;
}
.btn_conf:hover {
  box-shadow: var(--color-shadow_strong);
}

.credito {
  margin-top: 2em;
  padding-top: 3em;
}

.texto_cartela {
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9em;
}
@media only screen and (width < var(--size-ipad)) {
  .texto_cartela {
    bottom: 3em;
  }
}

.img_btn_conf {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new {
  position: absolute;
  left: 4rem;
  top: 2rem;
  color: var(--color-color);
  font-size: 4rem;
  transform: rotate(-15deg);
  z-index: 99999;
  background-color: transparent;
  animation-name: blink;
  animation-duration: 3s;
  animation-iteration-count: 10;
  text-transform: uppercase;
  @media only screen and (width > 768px) {
    font-size: 2.5rem;
  }
  @media only screen and (width < 500px) {
    font-size: 2.5rem;
    left: 0;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  .new {
    font-size: 2.5rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .new {
    font-size: 1.5rem;
  }
}

.blink {
  animation-name: blink;
  animation-duration: 5s;
  animation-iteration-count: 10;
}

.new_news {
  grid-column: 1;
  color: var(--color-color);
  font-size: 1.5em;
  transform: rotate(-15deg) translate(0, -3rem);
  z-index: 99999;
  grid-row: 1;
}

.email_elio,
.link_gallery {
  text-align: center;
  margin-top: 3rem;
  font-size: 1em;
  align-items: center;
  padding: 0.5em;
}
.email_elio a p,
.link_gallery a p {
  color: var(--color-texto);
  border-bottom: 1px solid var(--color-fondo);
}
.email_elio a p:hover,
.link_gallery a p:hover {
  color: var(--color-color);
  transition: all 0.5s;
  cursor: pointer;
}
.email_elio a img,
.link_gallery a img {
  height: 2em;
  width: 2em;
}
@media only screen and (width < var(--size-ipad)) {
  .email_elio,
  .link_gallery {
    padding: 0.8em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .email_elio,
  .link_gallery {
    font-size: 1em;
    grid-column: 1;
  }
}

.link_gallery {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (width < var(--size-movil)) {
  .link_gallery {
    font-size: 1rem;
  }
}

.link_gallery_btn:hover {
  text-decoration: underline;
}

.link_gallery01 {
  text-align: center;
}

.instagram_post {
  height: auto;
  width: 60%;
  margin: auto;
  padding-bottom: 2rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .instagram_post {
    width: 100%;
  }
}

.resume {
  display: flex;
  flex-direction: column;
  flex-flow: nowrap;
  margin: 2em auto;
  max-width: 1400px;
}
@media only screen and (width < var(--size-movil)) {
  .resume {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    margin: 1em 0px;
  }
}

.foto_artista_big {
  display: flex;
  height: 45em;
  flex-basis: 30%;
  margin: 0;
  left: 0px;
  width: 30%;
  position: sticky;
  top: 6em;
  z-index: 99;
}
.foto_artista_big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-ipad)) {
  .foto_artista_big {
    display: none;
    height: 0em;
    flex-basis: 0%;
    margin: 0;
    left: 0px;
    width: 0%;
  }
}

.foto_artista_small {
  display: none;
  height: 0px;
  flex-basis: 0%;
  width: 0px;
}
@media only screen and (width < var(--size-ipad)) {
  .foto_artista_small {
    display: flex;
    height: 20em;
    flex-basis: 30%;
    width: 20em;
    position: sticky;
    top: 4em;
    z-index: 99;
    margin: 0;
    background: var(--color-fondo);
    padding-bottom: 0.5em;
  }
  .foto_artista_small img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .foto_artista_small {
    height: 5em;
    flex-basis: 100%;
    width: 100%;
    position: sticky;
    top: 2.7em;
    border-bottom: 1em solid var(--color-fondo);
  }
}

.texto_resume {
  display: block;
  min-height: 50em;
  flex-basis: 80%;
  width: 70%;
  margin-top: 1em;
  margin-bottom: 3rem;
  margin: 1rem auto 2rem;
}
.texto_resume a {
  color: var(--color-texto);
  border-bottom: 1px solid var(--color-transp01);
}
.texto_resume a:hover {
  border-bottom: 1px solid var(--color-enfasis);
  cursor: pointer;
  transition: all 0.5s;
}
.texto_resume p {
  font-size: 1em;
  padding: 0px;
  grid-column: 2/2;
  text-align: left;
  margin: 0;
  line-height: 1.2;
}
@media only screen and (width < var(--size-width-desktop)) {
  .texto_resume {
    width: 90%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .texto_resume {
    flex-basis: 100%;
    width: 100%;
  }
  .texto_resume p {
    padding: 0px 1em;
  }
}

.link_redes {
  text-align: center;
}
.link_redes a {
  font-size: 4em;
  padding: 0px 1em;
  @media only screen and (width < 500px) {
    padding: 0px 0.5em;
  }
}
.link_redes a img,
.link_redes a svg {
  height: 1em;
  width: 1em;
  fill: var(--color-enfasis);
}
.link_redes a:hover {
  color: var(--color-transp50);
  cursor: pointer;
  transition: all 0.5s;
}
@media only screen and (width < var(--size-movil)) {
  .link_redes {
    margin: 0.5em;
  }
  .link_redes a {
    font-size: 2em;
    padding: 0px 1em;
  }
}

.titulo_instagram_post {
  background: var(--color-transp01);
  position: relative;
}
.titulo_instagram_post h2 {
  text-align: center;
  font-size: 1.4rem;
  padding: 0.5em;
  text-transform: uppercase;
}

.seccion {
  position: relative;
  display: grid;
  grid-gap: 0.2em 0px;
  margin: 0;
  text-align: left;
  grid-template-columns: 1fr 9fr;
}

.anos {
  grid-column: 1/2;
  position: sticky;
  top: 3em;
  font-size: 0.9em;
  text-align: center;
  padding: 0.5em;
  margin: 0;
  padding-top: 0px;
}
@media only screen and (width < var(--size-width-desktop)) {
  .anos {
    position: sticky;
    top: 3rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .anos {
    position: sticky;
    top: 2.5em;
  }
}

.contact_links {
  padding: 2em;
}
@media only screen and (width < var(--size-movil)) {
  .contact_links {
    padding: 0;
  }
}

@media only screen and (width < var(--size-movil)) {
  .estudio_carabanchel {
    grid-row: 3;
  }
}

.estudio_elche,
.estudio_carabanchel {
  box-shadow: var(--color-shadow);
  width: 100%;
  height: 100%;
}
.estudio_elche img,
.estudio_carabanchel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.estudio_elche p,
.estudio_carabanchel p {
  font-size: 0.9em;
}
@media only screen and (width < var(--size-movil)) {
  .estudio_elche p,
  .estudio_carabanchel p {
    font-size: 0.7em;
  }
}

.estudio_elche_diapos,
.estudio_habana_diapos {
  overflow: hidden;
  max-width: 1400px;
  height: 50vh;
  margin: 1em auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .estudio_elche_diapos,
  .estudio_habana_diapos {
    height: 20em;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .estudio_elche_diapos,
  .estudio_habana_diapos {
    height: 16em;
  }
}
@media only screen and (width < 380px) {
  .estudio_elche_diapos,
  .estudio_habana_diapos {
    height: 12em;
  }
}
.estudio_elche_diapos figure,
.estudio_habana_diapos figure {
  position: relative;
  width: 500%;
  margin: 0;
  animation: animate 30s infinite;
}

.estudio_img {
  float: left;
  width: 20%;
  position: relative;
}
.estudio_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.estudio_habana_diapos {
  width: 100%;
  height: 50vh;
}
.estudio_habana_diapos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.estudio_habana_diapos p {
  font-size: 0.9em;
}
@media only screen and (width < var(--size-movil)) {
  .estudio_habana_diapos p {
    font-size: 0.7em;
  }
}

.addreess {
  margin-top: 1em;
  text-align: center;
}
.addreess a {
  color: var(--color-texto);
}

.boton_news {
  height: 100%;
  width: 100%;
  background: var(--color-suave);
  margin: auto;
  position: relative;
  box-shadow: var(--color-shadow);
}
.boton_news h2,
.boton_news a p {
  font-size: 1em;
  text-align: center;
  padding: 2em 1em;
  color: var(--color-texto);
}
@media only screen and (width < var(--size-movil)) {
  .boton_news h2,
  .boton_news a p {
    font-size: 0.8em;
    text-align: center;
    padding: 2em 0.8em;
  }
}
.boton_news:hover {
  box-shadow: var(--color-shadow_strong);
  cursor: pointer;
  transition: all 0.5s;
  background: var(--color-fondo);
}

.noticia01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .noticia01 {
    grid-template-columns: 1fr;
  }
}

.noticia01_caja01 {
  margin: 1rem auto;
  grid-column: 1/3;
  height: 35rem;
}
.noticia01_caja01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-movil)) {
  .noticia01_caja01 {
    grid-column: 1;
    height: 25rem;
  }
}

.noticia06_caja01 {
  margin: 1rem auto;
  grid-column: 1/3;
  height: 35rem;
}
.noticia06_caja01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-movil)) {
  .noticia06_caja01 {
    grid-column: 1;
    height: 25rem;
  }
}

#harvard2022 {
  height: 30rem;
}
@media only screen and (width < var(--size-movil)) {
  #harvard2022 {
    height: 22rem;
  }
}
#harvard2022 .mySlides img {
  -o-object-fit: cover;
  object-fit: cover;
}

#slide_news01 {
  grid-column: 1/3;
  width: 90%;
  overflow: hidden;
  margin: auto;
}
#slide_news01 .mySlides {
  width: 100%;
  height: 100%;
}
#slide_news01 .mySlides img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-movil)) {
  #slide_news01 {
    height: 25rem;
  }
}

#slide_news03 .mySlides img {
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-movil)) {
  #slide_news03 {
    grid-column: 1;
    height: 25rem;
  }
}

#slide_news04 {
  height: 25rem;
}
#slide_news04 .mySlides img {
  -o-object-fit: cover;
  object-fit: cover;
}

.noticia03,
#jungla_mua {
  display: grid;
  grid-template-columns: 60% 1fr;
}
@media only screen and (width < var(--size-movil)) {
  .noticia03,
  #jungla_mua {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

.noticia02,
.noticia04,
.noticia06 {
  background-color: var(--color-transp01);
}

.noticia07 {
  background-color: var(--color-transp50);
}

.noticia01,
.noticia02,
.noticia03,
.noticia04,
.noticia05,
.noticia06,
.noticia07 {
  position: relative;
  width: 100%;
  padding: 1rem 10%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .noticia01,
  .noticia02,
  .noticia03,
  .noticia04,
  .noticia05,
  .noticia06,
  .noticia07 {
    padding: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .noticia01,
  .noticia02,
  .noticia03,
  .noticia04,
  .noticia05,
  .noticia06,
  .noticia07 {
    padding: 1rem;
  }
}

.noticia {
  position: relative;
  width: 100%;
  padding: 1rem 10%;
  overflow: hidden;

  /*parámetros animacion */
  animation: fadeIn ease-in-out;
  animation-timeline: view();
  animation-range: entry 0 cover 30%;
  @media only screen and (width < 500px) {
    grid-column: 2;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100px);
    scale: 0.8;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    scale: 1;
  }
}

.noticia input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 1rem;
  height: 1rem;
}
.noticia input:checked ~ label::after {
  transform: rotate(90deg);
}
.noticia input:checked ~ .noticia_content,
.noticia input:checked ~ .noticia_content01 {
  max-height: 100rem;
}
.noticia input:checked ~ #jungla_ny_content {
  max-height: 120rem;
}
.noticia input:checked ~ #harvard_content {
  max-height: 100rem;
}
.noticia input:checked ~ #ny_trienal {
  max-height: 75rem;
}
.noticia label {
  cursor: pointer;
}
.noticia label::after {
  content: "<";
  transform: rotate(-90deg);
  position: absolute;
  right: 6rem;
  top: 3rem;
  font-size: 2rem;
  color: var(--color-transp25);
  transition: transform 1s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .noticia label::after {
    display: none;
  }
}
.noticia:hover label::after {
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-width-desktop)) {
  .noticia {
    padding: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .noticia {
    padding: 1rem;
  }
}

#gabinete,
#barcelona2023,
#table_project,
#copiloto_content {
  max-height: 120rem;
}
@media screen and (width < var(--size-width-desktop)) {
  #gabinete,
  #barcelona2023,
  #table_project,
  #copiloto_content {
    max-height: 160rem;
  }
}

#jungla_mua {
  display: grid;
  grid-template-columns: 60% 1fr;
}
@media only screen and (width < var(--size-movil)) {
  #jungla_mua {
    grid-template-columns: 1fr;
  }
}

#mua_content,
#jungla_ny_content {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 60% 1fr;
}
@media only screen and (width < var(--size-movil)) {
  #mua_content,
  #jungla_ny_content {
    grid-template-columns: 1fr;
  }
}

.noticia_content {
  max-height: 0;
  transition: 1s;
  overflow: hidden;
  background-color: var(--color-fondo);
  padding: 0 10%;
  @media screen and (width < 500px) {
    padding: 0;
  }
}

.noticia_content01 {
  max-height: 0;
  transition: 1s;
  overflow: hidden;
  margin: 1rem auto;
  grid-column: 1/3;
}
.noticia_content01 a img {
  width: 100%;
  height: 30rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.noticia_width {
  grid-column: 1/5;
  grid-row: 1;
}
@media only screen and (width < var(--size-width-desktop)) {
  .noticia_width {
    grid-column: 1;
  }
}

.noticia_contenedor {
  position: relative;
  p {
    padding: 1rem;
    text-align: center;
  }
}
.noticia_contenedor img {
  height: 25rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.carrousel_imagenes_news {
  margin: auto;
  max-width: 1400px;
  position: fixed;
  top: 0;
  z-index: 1;
  background-color: var(--color-fondo);
}
@media only screen and (width < var(--size-width-desktop)) {
  .carrousel_imagenes_news {
    height: 90vh;
    margin: auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}

@media only screen and (width < var(--size-movil)) {
  #barcelona2023 {
    height: auto;
  }
}

.social_media_link {
  position: absolute;
  right: 8rem;
  top: 12rem;
}
.social_media_link img,
.social_media_link svg {
  height: 2.5rem;
  width: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  color: var(--color-transp50);
}
@media screen and (width < var(--size-width-desktop)) {
  .social_media_link {
    top: 6rem;
    right: 6rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .social_media_link {
    right: 1rem;
    top: 32rem;
  }
  .social_media_link img {
    height: 1, 5rem;
    width: 1.5rem;
  }
}
.social_media_link1 {
  position: absolute;
  right: 1rem;
  top: 4rem;
  a img,
  a svg {
    height: 2.5rem;
    width: 2.5rem;
    -o-object-fit: contain;
    object-fit: contain;
    color: var(--color-texto);
  }
}
.map_link {
  position: absolute;
  right: 8rem;
  top: 25rem;
}
.map_link img {
  height: 6rem;
  width: 8rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-width-desktop)) {
  .map_link {
    position: relative;
    top: 90%;
    display: flex;
    flex-direction: column;
    width: 100%;
    right: 0;
  }
  .map_link img {
    margin: auto;
  }
  .map_link p {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (width < 566px) {
  .map_link {
    top: 0;
  }
}

.imagen {
  height: 100%;
}
.imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cartela_rollout {
  position: absolute;
  bottom: 1rem;
  right: 0;
  height: 5rem;
  overflow: hidden;
  padding: 1.5rem 20%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  z-index: 99999999999;
  line-height: 30px;
}
.cartela_rollout p {
  color: var(--color-transp50);
}
.cartela_rollout:hover {
  height: 80%;
  cursor: pointer;
}
.cartela_rollout:hover p {
  color: var(--color-texto);
}
.cartela_rollout:hover a {
  font-weight: bold;
  text-decoration: underline;
}
@media only screen and (width < var(--size-width-desktop)) {
  .cartela_rollout {
    height: 100%;
    position: relative;
    overflow: scroll;
    padding: 1rem 5%;
    line-height: 20px;
    order: 2;
  }
  .cartela_rollout p {
    color: var(--color-texto);
  }
}
@media only screen and (width < var(--size-movil)) {
  .cartela_rollout p {
    font-size: 0.7em;
  }
}

.catalogos_download {
  display: grid;
  width: 90%;
  grid-auto-columns: 1fr 10% 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10%;
  row-gap: 1rem;
  margin: auto;
  grid-auto-rows: 15rem;
}
.catalogos_download a {
  margin: 0;
  text-decoration: none;
}
@media only screen and (width < var(--size-width-desktop)) {
  .catalogos_download {
    grid-auto-rows: 10rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .catalogos_download {
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    row-gap: 2rem;
    margin-top: 6rem;
  }
}

.download {
  width: 100%;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download a {
  width: 100%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .download {
    width: 90%;
    margin: 2rem auto;
    margin-bottom: 8rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .download {
    margin-bottom: 1rem;
    width: 100%;
  }
}

.catlg_item {
  display: grid;
  grid-template-rows: 1fr 10%;
}
.catlg_item p {
  margin: 1rem auto;
  text-align: center;
  font-size: 1em;
}
.catlg_item a {
  width: 100%;
  margin: auto;
  height: 15rem;
  margin: 0;
}
.catlg_item a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
}
.catlg_item a img:hover {
  cursor: pointer;
  transition: all 0.4s;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.4));
}

.noticia_link {
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.6em;
}
.noticia_link p {
  padding: 0.5em 3em;
  color: var(--color-texto);
  text-align: center;
}
@media only screen and (width < var(--size-movil)) {
  .noticia_link p {
    padding: 0.6em;
    color: var(--color-texto);
    text-align: center;
    font-size: 1em;
  }
}
.noticia_link p a {
  margin: auto;
}
.noticia_link p:hover {
  background: var(--color-fondo);
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: var(--color-shadow_strong);
}

.video_youtube01 {
  background-image: url(../imagenes/still_video_museo.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}

.youtube {
  width: 80vw;
  margin: auto;
  margin-bottom: 3rem;
}
@media only screen and (width < var(--size-movil)) {
  .youtube {
    width: 100%;
  }
}

.youtube01 {
  display: flex;
  margin: auto;
  width: 100%;
  height: 100%;
  align-items: center;
}
@media only screen and (width < var(--size-movil)) {
  .youtube01 {
    width: 100%;
    height: 50%;
    margin-top: 4rem;
  }
}

.news {
  float: left;
  width: 20%;
  position: relative;
  height: 40em;
}
.news a,
.news p {
  position: absolute;
  color: var(--color-texto);
  background: var(--color-transp01);
  padding: 1em;
  bottom: 0px;
  text-align: center;
  width: 100%;
  font-size: 0.7em;
}
.news img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-movil)) {
  .news {
    height: 35em;
  }
}
@media only screen and (width < var(--min-width-movil)) {
  .news {
    height: 28em;
  }
}

.enfasis {
  color: var(--azul_60);
}

@keyframes animate {
  0% {
    left: 0;
  }
  10% {
    left: 0;
  }
  12% {
    left: -100%;
  }
  22% {
    left: -100%;
  }
  24% {
    left: -200%;
  }
  34% {
    left: -200%;
  }
  36% {
    left: -300%;
  }
  46% {
    left: -300%;
  }
  48% {
    left: -400%;
  }
  58% {
    left: -400%;
  }
  60% {
    left: -300%;
  }
  70% {
    left: -300%;
  }
  72% {
    left: -200%;
  }
  82% {
    left: -200%;
  }
  84% {
    left: -100%;
  }
  94% {
    left: -100%;
  }
  96% {
    left: 0%;
  }
}
@keyframes cookie {
  to {
    visibility: visible;
    opacity: 1;
  }
}
.promo {
  width: 50%;
  height: 30em;
  margin: 2em auto;
}
.promo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-width-desktop)) {
  .promo {
    width: 90%;
    height: 26em;
  }
}
@media only screen and (width < 434px) {
  .promo {
    width: 100%;
    height: 15em;
  }
}

.mySlides1,
.mySlides2,
.mySlides3,
.mySlides4,
.mySlides5,
.mySlides6,
.mySlides7,
.mySlides8,
.mySlides9,
.mySlides10,
.mySlides11,
.mySlides12,
.mySlides13,
.mySlides14,
.mySlides15,
.mySlides16,
.mySlides17,
.mySlides18,
.mySlides19,
.mySlides20 {
  display: none;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
  }
}
@media screen and (width < 700px) {
  .mySlides1,
  .mySlides2,
  .mySlides3,
  .mySlides4,
  .mySlides5,
  .mySlides6,
  .mySlides7,
  .mySlides8,
  .mySlides9,
  .mySlides10,
  .mySlides11,
  .mySlides12,
  .mySlides13,
  .mySlides14,
  .mySlides15,
  .mySlides16,
  .mySlides17,
  .mySlides18,
  .mySlides19,
  .mySlides20 {
    p {
      font-size: 0.8em;
      left: 20%;
      transform: translate(-20%, 0);
    }
  }
}
.mySlides_galeria {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mySlides1 img,
.mySlides2 img,
.mySlides3 img,
.mySlides4 img,
.mySlides5 img,
.mySlides6 img,
.mySlides7 img,
.mySlides8 img,
.mySlides9 img,
.mySlides10 img,
.mySlides11 img,
.mySlides12 img,
.mySlides13 img,
.mySlides14 img,
.mySlides15 img,
.mySlides16 img,
.mySlides_galeria img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}

.mySlides_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mySlides1 a img,
.mySlides2 a img,
.mySlides3 a img,
.mySlides4 a img,
.mySlides5 a img,
.mySlides6 a img,
.mySlides7 a img,
.mySlides8 a img,
.mySlides9 a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.carrousel_imagenes {
  margin: auto;
  max-width: 1400px;
  height: 100%;
  position: relative;
}

.creditos_mySlides {
  position: absolute;
  bottom: 4rem;
  left: 0;
  background-color: var(--color-transp50);
  padding: 1rem 5rem;
}
.creditos_mySlides h5,
.creditos_mySlides p {
  color: var(--color-transp50);
  font-size: 12px;
}
@media only screen and (width < var(--size-ipad)) {
  .creditos_mySlides {
    bottom: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .creditos_mySlides {
    padding: 1rem;
  }
}

.next,
.prev {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 45%;
  height: 100%;
  padding: 16px 8px;
  margin-top: -22px;
  color: var(--color-enfasis);
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  & img,
  svg {
    width: 4rem !important;
    height: 5rem !important;
    position: absolute;
    padding: 1rem;
    top: 50%;
    &:hover {
      background-color: var(--color-transp01);
    }
    @media screen and (width < 800px) {
      display: none;
    }
  }
}
.prev svg,
.prev img {
  left: 2rem;
}
.next svg,
.next img {
  right: 2rem;
}

@media only screen and (width < var(--size-width-desktop)) {
  .next,
  .prev {
    width: 50%;
    top: 0;
    padding: 0;
    margin-top: 0;
    color: transparent;
    height: 100%;
    background: transparent;
    opacity: 0;
    & img,
    svg {
      width: 0;
      height: 0;
    }
    &:active,
    &:focus,
    &:hover {
      background-color: transparent;
    }
  }
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.text_caption {
  color: var(--color-texto);
  font-size: 12px;
  padding: 8px 4em;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: var(--color-transp50);
}
.text_caption p {
  font-size: 0.8em;
  color: var(--color-texto);
}
.text_caption h2 {
  color: var(--color-texto);
  font-size: 1em;
}
.text_caption a {
  color: var(--color-texto);
  border-bottom: 1px solid var(--color-texto);
}

.texto_caption {
  color: var(--color-texto);
  font-size: 12px;
  padding: 8px 4em;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: var(--color-transp50);
}
.texto_caption:hover {
  color: var(--color-transp50);
  border-bottom: 1px solid var(--color-suave);
  transition: all 0.4s;
  cursor: pointer;
}
.texto_caption p {
  font-size: 0.8em;
  color: var(--color-texto);
}
.texto_caption h2 {
  color: var(--color-texto);
  font-size: 1em;
}
.texto_caption a {
  color: var(--color-texto);
  border-bottom: 1px solid var(--color-texto);
}

.caption_sec_thumnail {
  bottom: -23em;
  font-size: 12px;
  background-color: rgba(var(--color-transp50));
  padding: 1em;
  min-height: 5em;
  margin-bottom: 3em;
  visibility: hidden;
}
.caption_sec_thumnail:checked {
  visibility: visible;
}

.caption_sec h2,
.caption_sec p {
  color: var(--color-texto);
  font-size: 12px;
  text-align: start;
}

.descripcion_noticia {
  padding: 0.5em 1em;
  line-height: 1.5rem;
  margin: auto;
  grid-column: 1/3;
}
@media only screen and (width < var(--size-width-desktop)) {
  .descripcion_noticia {
    font-size: 0.8em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .descripcion_noticia {
    width: 90%;
    grid-row: 3;
    grid-column: 1;
  }
}

#hideText {
  display: none;
}

#hideText01 {
  display: none;
}

.showText {
  display: block;
}

.readMore_btn,
link {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background-color: var(--color-transp01);
  margin: 1rem 20%;
  text-align: center;
}
.readMore_btn:hover,
link:hover {
  background-color: var(--color-enfasis);
  color: var(--color-fondo);
  transition: all 0.3s;
}
.readMore_btn:hover a,
link:hover a {
  color: var(--color-fondo);
}
@media only screen and (width < var(--size-width-desktop)) {
  .readMore_btn,
  link {
    font-size: 1rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .readMore_btn,
  link {
    font-size: 0.8rem;
    margin: 1rem 30%;
  }
}

.descripcion_serie {
  position: absolute;
  bottom: -10em;
  padding: 0.5em 10em;
}

.descripcion_serie1 {
  padding: 0.5em 1em;
  line-height: 1.2rem;
  font-size: 0.8em;
}

.descripcion_serie2 {
  padding: 0.5em 1em;
  line-height: 1.5rem;
  margin: auto;
  grid-column: 1/4;
  margin-top: 1rem;
  text-align: center;
}

@media only screen and (width < var(--size-width-desktop)) {
  .descripcion_serie2 {
    font-size: 0.8em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .descripcion_serie2 {
    width: 90%;
    grid-row: 3;
    grid-column: 1;
  }
}

.descripcion_serie3 {
  padding: 1em 3rem;
  line-height: 1.5rem;
  width: 100%;
  margin: auto;
}
@media only screen and (width < var(--size-width-desktop)) {
  .descripcion_serie3 {
    font-size: 0.8em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .descripcion_serie3 {
    width: 90%;
    padding: 1em;
  }
}
.descripcion_serie4 {
  line-height: 1.5rem;
  margin: auto;
  margin-top: 1rem;
  text-align: center;
  grid-column: 1/3;
}

.descripcion_news01 {
  padding: 0.5em 1em;
  line-height: 1.5rem;
  margin: auto;
  grid-column: 2;
}
@media only screen and (width < var(--size-width-desktop)) {
  .descripcion_news01 {
    font-size: 0.8em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .descripcion_news01 {
    width: 90%;
    grid-row: 3;
    grid-column: 1;
  }
}

.encabezamiento_news {
  text-align: center;
  text-transform: uppercase;
  padding: 0 1em;
  font-size: 2rem;
  @media only screen and (width < 500px) {
    font-size: 1.3rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .encabezamiento_news {
    font-size: 1rem;
  }
}

.encabezamiento_news_sub {
  font-size: 1.3rem;
  text-align: center;
  text-transform: capitalize;
  @media only screen and (width < 500px) {
    font-size: 1rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .encabezamiento_news_sub {
    font-size: 0.8rem;
    color: var(--color-transp50);
  }
}

.encabezamiento_news_sub01 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (width < var(--size-movil)) {
  .encabezamiento_news_sub01 {
    font-size: 0.8rem;
  }
}
.encabezamiento_news01 {
  text-align: center;
  text-transform: uppercase;
  padding: 0 1em;
  font-size: 1.3rem;
}
.mySlides1 p,
.mySlides2 p,
.mySlides3 p,
.mySlides4 p,
.mySlides5 p {
  font-size: 0.8em;
  text-align: center;
  padding: 0.5em;
}

.mySlides,
.Slide {
  display: none;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
}
.mySlides img,
.Slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mySlides_studio {
  display: none;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
}
.mySlides_studio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-width-desktop)) {
  .mySlides_studio {
    display: block;
    border-bottom: 1px solid #b9b9b9;
    position: relative;
  }
}

.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (width < var(--size-width-desktop)) {
  .slideshowCircles {
    width: 90%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .slideshowCircles {
    bottom: 1%;
  }
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: solid 1px var(--color-transp25);
  transition: 1s ease-in-out;
}
@media only screen and (width < var(--size-movil)) {
  .circle {
    width: 5px;
    height: 5px;
  }
}

.image,
.image a {
  font-size: 0.9em;
  color: var(--color-texto);
  text-align: center;
  margin: 0.8em;
  margin-top: 3em;
}
@media only screen and (width < var(--size-width-desktop)) {
  .image,
  .image a {
    font-size: 0.7em;
    padding: 0.5em;
  }
}

.image a {
  border-bottom: 1px solid var(--color-transp25);
  line-height: 1;
}
.image a:hover {
  border-bottom: 1px solid var(--color-enfasis);
  cursor: pointer;
  transition: all 0.4s;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  margin-top: 0.8em;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  background-color: var(--color-transp01);
}
.dot:active,
.dot:focus,
.dot:hover {
  background-color: var(--color-transp50);
  opacity: 1;
}
@media only screen and (width < var(--size-movil)) {
  .dot {
    margin: 0 1px;
    height: 8px;
    width: 8px;
  }
}

.dot_1 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 10px;
  margin-top: 0.5em;
  background-color: var(--color-transp50);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot_1:active,
.dot_1:focus,
.dot_1:hover {
  background-color: var(--color-texto);
  opacity: 1;
}
@media only screen and (width < var(--size-movil)) {
  .dot_1 {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    margin-top: 0.5em;
  }
}

.dot_thumnail {
  cursor: pointer;
  height: 5em;
  width: 5em;
  margin: 0 0.5em;
  display: inline-block;
  transition: background-color 0.6s ease;
  opacity: 0.4;
}
.dot_thumnail:active,
.dot_thumnail:focus,
.dot_thumnail:hover {
  background-color: var(--color-texto);
  opacity: 1;
  border-bottom: 2px solid var(--color-transp50);
}
.dot_thumnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (width < var(--size-movil)) {
  .dot_thumnail {
    height: 4em;
    width: 3.5em;
    margin: 0 0.1em;
  }
}

.active {
  border-bottom: 4px solid var(--color-transp50);
  opacity: 1;
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-enfasis);
}

.descripcion_series {
  grid-column: 1/3;
  font-size: 1.2em;
  padding: 1em;
  min-height: 5em;
  line-height: 1.5;
  margin: 0px 2em;
  margin-top: 0.5em;
  margin-bottom: 5em;
}
.descripcion_series h2,
.descripcion_series p {
  font-size: 0.9em;
  padding: 0px 2em;
  text-align: center;
}
.descripcion_series a {
  color: var(--color-texto);
  border-bottom: 1px solid var(--color-transp50);
  text-align: center;
}
@media only screen and (width < var(--size-movil)) {
  .descripcion_series {
    font-size: 1em;
    padding: 0.4em;
    min-height: 5em;
    margin-bottom: 5em;
    line-height: 1.5;
    margin: auto;
    grid-column: 1;
  }
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  0% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.link_galeria {
  position: fixed;
  top: 1rem;
  z-index: 10000000000000000000000;
  left: 65%;
  transform: translateX(-50%);
  border-bottom: 1px solid #b9b9b9;
  visibility: hidden;
  text-transform: uppercase;
}
.link_galeria a {
  color: var(--color-texto);
  font-size: 0.9em;
}
@media only screen and (width < var(--size-movil)) {
  .link_galeria a {
    font-size: 0.6em;
  }
}
.link_galeriafocus,
.link_galeria:hover {
  border-bottom: 1px solid var(--color-texto);
}
@media only screen and (width < var(--size-movil)) {
  .link_galeria {
    visibility: visible;
  }
}

.boton_instagram {
  position: relative;
  width: 100%;
  height: 100%;
}
.boton_instagram:hover {
  box-shadow: var(--color-shadow_strong);
  transition: all 0.3s;
}
.boton_instagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (width < 860px) {
  #ultimo {
    grid-column: 1/3;
  }
}

.texto_02 {
  max-width: 1200px;
  padding: 4em auto;
  margin: auto;
  width: 90%;
}
@media only screen and (width < var(--size-movil)) {
  .texto_02 {
    font-size: 0.8em;
  }
}

.cartela_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-transp50);
  width: 100%;
  height: 500%;
  overflow: hidden;
  padding: 0.5em;
}
.cartela_overlay h2 p {
  text-align: center;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-texto);
  font-size: 0.7rem;
}
@media only screen and (width < var(--size-movil)) {
  .cartela_overlay h2 p {
    bottom: 5%;
  }
}
.cartela_overlay h2,
.cartela_overlay p {
  font-size: 0.8rem;
  text-align: center;
  color: var(--color-texto);
}
@media only screen and (width < var(--size-movil)) {
  .cartela_overlay h2,
  .cartela_overlay p {
    font-size: 0.6em;
  }
}
.cartela_overlay h2 {
  padding-top: 0.5em;
}
@media only screen and (width < var(--size-movil)) {
  .cartela_overlay h2 {
    padding-top: 0;
  }
}

.copyrigth {
  padding: 0px 2em;
}
.copyrigth a {
  color: var(--color-texto);
  border-bottom: 1px solid var(--gris_60);
  cursor: pointer;
}
.copyrigth h2,
.copyrigth p {
  font-size: 1em;
}
.copyrigth:hover {
  border-bottom: 1px solid var(--negro);
  cursor: pointer;
  transition: all 0.4s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .copyrigth {
    padding: 0px 1em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .copyrigth {
    font-size: 0.8em;
  }
}

.abajo {
  position: absolute;
  bottom: 6rem;
  margin: auto;
  z-index: 10000000000000000;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.abajo img {
  height: 3em;
  width: 5em;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 20%;
}
@media only screen and (width < var(--size-movil)) {
  .abajo img {
    height: 4em;
  }
}
.abajo img:hover {
  background: var(--color-transp01);
  transition: all 0.3s;
}

.menu {
  background: var(--color-transp25);
  box-shadow: var(--color-shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3em;
  z-index: 999999999;
}

.footer {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 4em;
  width: 100%;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  background-color: var(--color-suave);
}

.design_by {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 0.3em;
  grid-row: 2;
}
.design_by a {
  color: var(--color-enfasis);
  text-align: center;
  font-size: 0.6em;
  border-bottom: 1px solid var(--color-enfasis);
}

.logo {
  grid-column: 1;
  grid-row: 1/3;
  margin-left: 1em;
  cursor: pointer;
}
.logo img {
  height: 7em;
  width: 20em;
  -o-object-fit: contain;
  object-fit: contain;
}
.logo img:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
@media only screen and (width < var(--size-movil)) {
  .logo img {
    height: 5em;
    width: 14em;
  }
}
@media only screen and (width < var(--size-width-desktop)) {
  .logo {
    grid-column: 1 / span2;
    grid-row: 1;
  }
}
@media only screen and (width < var(--size-movil)) {
  .logo {
    margin-left: 0;
    grid-column: 1 / span2;
    grid-row: 1;
  }
}

.social {
  grid-column: 3;
  grid-row: 1/4;
  align-items: center;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-content: space-between;
  flex-direction: column;
}
.social a {
  color: var(--color-enfasis);
  text-decoration: none;
  font-size: 1.5em;
  vertical-align: middle;
  cursor: pointer;
  align-content: space-around;
}
.social a img {
  height: 2em;
  width: 2em;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0.5em;
  margin-left: 2em;
}
.social a img:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
@media only screen and (width < var(--size-width-desktop)) {
  .social a img {
    margin: 1em;
    margin-bottom: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .social {
    grid-column: 3;
    grid-row: 1 / span2;
  }
  .social a img {
    height: 1.5em;
    width: 1.5em;
    margin: 0.8em;
  }
}

.private {
  grid-row: 1;
  grid-column: 1;
  height: 2rem;
  width: 2rem;
  padding: 0.3rem;
  margin-left: 10%;
  opacity: 0;
  transition: opacity 0.5s;
}
.private img {
  -o-object-fit: contain;
  object-fit: contain;
}
.private:hover {
  opacity: 0.2;
}
@media only screen and (width < var(--size-width-desktop)) {
  .private {
    height: 1.5rem;
    width: 1.5rem;
    opacity: 0;
  }
}
@media only screen and (width < var(--size-movil)) {
  .private {
    padding: 1rem;
  }
}

.privacidad {
  grid-row: 1;
  grid-column: 1;
  width: 60%;
  align-self: center;
  justify-self: center;
}
.privacidad a {
  text-decoration: none;
  text-align: center;
}
.privacidad a p {
  color: var(--color-texto);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1em;
}
.privacidad a p:hover {
  border-bottom: 1px solid var(--color-enfasis);
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (width < var(--size-movil)) {
  .privacidad a p {
    font-size: 0.8em;
  }
}

.search_field {
  grid-column: 2;
  grid-row: 2;
  margin: 0 3rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .search_field {
    grid-row: 3;
    grid-column: 1;
  }
}
@media only screen and (width < var(--size-movil)) {
  .search_field {
    grid-column: 1/3;
    margin: 0 0.5rem;
  }
}

.estudio {
  grid-column: 2 / span2;
  grid-row: 1;
  font-size: 0.8em;
  vertical-align: bottom;
  padding: 0.5em;
  margin-left: 1em;
}
.estudio p {
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-width-desktop)) {
  .estudio {
    grid-column: 1/3;
    grid-row: 2;
  }
}
@media only screen and (width < var(--size-movil)) {
  .estudio {
    grid-column: 1/3;
    grid-row: 2;
    font-size: 0.6em;
  }
}

.texto_presentacion {
  margin: 1em auto;
  padding: 2em;
  max-width: 1200px;
}
.texto_presentacion p {
  font-size: 1.1rem;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (width < var(--size-width-desktop)) {
  .texto_presentacion p {
    font-size: 1rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .texto_presentacion {
    padding: 0.5em;
  }
  .texto_presentacion p {
    font-size: 0.8rem;
  }
}

.firma {
  text-align: right;
}

.inicio {
  width: 100%;
  height: 20em;
  margin-top: 50%;
}

#presentacion {
  margin-top: 35em;
}

.ir-arriba {
  display: none;
  padding: 0.01em 0.3em;
  font-size: 3em;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: fixed;
  bottom: 10%;
  right: 1%;
  z-index: 9999999999;
  font-weight: 100;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  line-height: 12px;
}
.ir-arriba:hover {
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.ir-arriba img {
  width: 1em;
  height: 1em;
  opacity: 0.6;
}
@media only screen and (width < var(--size-width-desktop)) {
  .ir-arriba {
    opacity: 0;
  }
  .ir-arriba img {
    opacity: 0;
  }
}

.relativo {
  padding: 1rem;
  position: relative;
  height: 10rem;
}
.relativo p {
  text-align: center;
  margin-top: 3rem;
  color: var(--color-color);
  font-size: 0.8rem;
}

.policy {
  padding: 2em;
  max-width: 1200px;
  margin: auto;
}
.policy p > a {
  color: var(--color-enfasis);
  border-bottom: 1px solid #b9b9b9;
  cursor: pointer;
}
.policy p > a:hover {
  border-bottom: 1px solid var(--color-enfasis);
  transition: all 0.4s;
}
.policy h2,
.policy p {
  font-size: 1em;
}
@media only screen and (width < var(--size-width-desktop)) {
  .policy {
    padding: 0px 1em;
  }
}
@media only screen and (width < var(--size-movil)) {
  .policy {
    font-size: 0.8em;
  }
}

.fondo_footer {
  background: rgba(255, 255, 255, 0.5);
  grid-column: 1/4;
  grid-row: 1/5;
  height: 100%;
  z-index: -1;
}

.link_estudio p {
  color: var(--color-enfasis);
  cursor: pointer;
}
.link_estudio p:hover {
  font-weight: bold;
  transition: all 0.3s;
}

.aclaraciones {
  position: absolute;
  bottom: 10em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  color: var(--color-color);
}

.text_anim {
  font-style: normal;
  color: var(--color-color);
  padding: 1em 0.5em;
  font-size: 18px;
}
@media only screen and (width < var(--size-movil)) {
  .text_anim {
    font-size: 14px;
  }
}

.titulo {
  padding: 0.5em 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9;
}
@media only screen and (width < var(--size-movil)) {
  .titulo {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5em;
    position: sticky;
    text-align: justify;
    font-size: 12px;
  }
}

.img_banner_news {
  margin: 1rem auto;
  padding: 1rem;
  height: 90%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-movil)) {
  .img_banner_news {
    height: 80%;
  }
}

.news_link {
  margin: auto;
  text-decoration: underline;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.news_link:hover {
  color: var(--color-color);
  transition: all 0.3s;
}
@media only screen and (width < var(--size-movil)) {
  .news_link {
    font-size: 0.8rem;
  }
}

.contact_formulario {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30em;
  align-items: center;
  background: var(--color-transp01);
  box-shadow: var(--color-shadow_strong);
  align-content: center;
  padding: 1em;
}
.contact_formulario img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < 500px) {
  .contact_formulario {
    width: 90vw;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contact_formulario {
    margin: auto 0;
    margin-top: 4em;
  }
}

.contact_form {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: 30em;
  align-items: center;
  align-content: center;
  padding: 1em;
}
.contact_form img,
.contact_form svg {
  width: 100%;
  padding: 0 1rem;
  fill: var(--color-enfasis);
}
@media only screen and (width < 500px) {
  .contact_form {
    width: 90vw;
  }
}
@media only screen and (width < var(--size-movil)) {
  .contact_form {
    margin: auto 0;
    margin-top: 4em;
  }
}

.contact_title {
  margin: auto;
  color: var(--color-enfasis);
  text-transform: uppercase;
  padding: 0.6em;
  text-align: center;
}

form {
  transition: all 4s;
}

form .submit {
  background: var(--color-transp50);
  border-color: transparent;
  color: var(--color-enfasis);
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 1em;
  width: 60%;
  margin: auto;
  padding: 1.5em;
  border-radius: 15px;
  cursor: pointer;
}
form .submit:hover {
  background: var(--color-enfasis);
  transition: all 0.3s;
  color: var(--color-fondo);
}
form .submit:disabled,
form .submit[disabled] {
  filter: grayscale(1);
  opacity: 0.2;
  cursor: default;
}

.form_control {
  width: 100%;
  background: var(--color-fondo);
  border: none;
  outline: none;
  border-bottom: 1px solid var(--color-transp01);
  color: var(--color-enfasis);
  font-size: 0.8em;
  margin-bottom: 1em;
  padding: 0.5em;
}

.form_item {
  width: 100%;
  background: var(--color-fondo);
  border: none;
  outline: none;
  border-bottom: 1px solid var(--color-transp01);
  color: var(--color-enfasis);
  margin-bottom: 1em;
  padding: 0.5em;
  font-size: 1rem;
  transition: all 0.5s ease-out;
}
.form_item::-moz-placeholder {
  color: var(--color-suave1);
  font-size: 0.8rem;
}
.form_item::placeholder {
  color: var(--color-suave1);
  font-size: 0.8rem;
}
.form_item:focus {
  border: 1px solid var(--color-suave);
}

.form_search_control {
  position: absolute;
  left: 80px;
  height: 2rem;
  border: none;
  font-size: 12px;
  transition: all 0.5s;
  text-align: center;
}
@media only screen and (width < var(--size-width-desktop)) {
  .form_search_control {
    width: 5rem;
  }
}
.form_search_control:hover,
.form_search_control:focus,
.form_search_control:active {
  opacity: 1;
  width: 20rem;
  outline: none;
}

input {
  height: 3em;
  width: 100%;
}

.main_contacto {
  margin: auto;
  margin-top: 4rem;
  padding: 2rem;
  width: 80%;
}
@media only screen and (width < var(--size-width-desktop)) {
  .main_contacto {
    width: 100%;
    padding: 1rem;
  }
}

.deslizante {
  background: var(--color-fondo);
  width: 100%;
  z-index: 3;
  padding: 5rem 10rem;
  position: sticky;
  top: 80%;
  transition: all;
}
.deslizante p {
  line-height: 24px;
}
.deslizante:hover {
  top: 40%;
  cursor: pointer;
}

.figura_fija {
  background-color: var(--color-transp01);
  width: 90%;
  margin: auto;
  height: 80vh;
  top: 2%;
  z-index: 2;
}

.caja_contenido {
  position: fixed;
  z-index: 3;
  margin-top: 3%;
  width: 100%;
}

.banner_text {
  text-align: center;
}
.banner_text p {
  color: var(--color-color);
  padding: 0.5rem 1rem;
  letter-spacing: 0.15em;
  font-size: 16px;
  background: transparent;
}
.banner_text p:hover {
  background: var(--color-fondo);
  transition: 0.5s;
}
@media only screen and (width < var(--size-movil)) {
  .banner_text p {
    font-size: 12px;
  }
}

.disponible {
  color: var(--color-color);
}

.menu_studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 20rem;
  width: 90%;
  margin: auto;
  margin-top: 4rem;
  row-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  min-height: 100dvh;
  @media only screen and (width < 800px) {
    grid-auto-rows: 10rem;
  }
  @media only screen and (width < 500px) {
    grid-template-columns: 1fr;
    width: 100%;
    grid-auto-rows: 6rem;
  }
}

.item_studio {
  width: 100%;
  height: 20rem;
  position: relative;
  box-shadow: var(--color-shadow);
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media only screen and (width < 800px) {
    height: 100% !important;
  }
  @media only screen and (width < 500px) {
    height: 6rem !important;
  }
}

.item_studio:hover {
  box-shadow: var(--color-shadow_strong);
  transition: 0.3s;
}

.item_studio_long {
  width: 100%;
  height: 20rem;
  position: relative;
  box-shadow: var(--color-shadow);
  grid-column: span 2;
  &:hover {
    box-shadow: var(--color-shadow_strong);
    transition: 0.3s;
  }
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media only screen and (width < 800px) {
    height: 10rem;
  }
  @media only screen and (width < 500px) {
    grid-column: span 1;
    height: 6rem !important;
  }
}

.cartela_studio {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 2rem;
  background: var(--color-transp25);
}
.cartela_studio p {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.back {
  padding: 1rem;
  background: var(--color-transp01);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  border-radius: 5px;
}
.back p {
  font-size: 16px;
  color: var(--color-texto);
}
.back:hover {
  background: var(--color-suave1);
}
@media only screen and (width < var(--size-movil)) {
  .back {
    padding: 0.4rem;
    margin-bottom: 1rem;
  }
}

.checklist {
  text-align: center;
  margin: 1rem auto;
  margin-top: 5rem;
}
@media only screen and (width < var(--size-movil)) {
  .checklist {
    margin: auto;
  }
}

.mapa {
  height: 1rem;
  width: 100%;
  cursor: pointer;
}
.mapa:hover {
  height: 10rem;
  background-color: var(--color-fondo);
  transition: all 0.3s;
}

.mapa_frame {
  display: none;
}
.mapa_frame:hover,
.mapa_frame:active {
  display: block;
}

.gallerima {
  width: 25%;
  height: 2rem;
  margin: auto;
}
.gallerima img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (width < var(--size-movil)) {
  .gallerima {
    width: 50%;
  }
}

.formulario {
  background-color: var(--color-transp01);
  padding: 20px;
  width: 35rem;
  height: auto;
  margin: auto;
  transform: translateY(50%);
  box-shadow: var(--color-shadow);
}
.formulario input {
  width: auto;
  height: auto;
}

.titulo_formulario {
  margin: auto;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.tabla_formulario {
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  color: rgb(87, 85, 85);
  padding: 5px;
}

.enviar {
  padding: 0.5rem 2rem;
  background-color: var(--color-suave);
  color: var(--color-enfasis);
  border: none;
  border-radius: 25pc;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: bold;
  margin: auto;
  font-size: 24px;
  width: auto;
  height: auto;
}
.enviar:hover {
  background-color: var(--color-suave);
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-movil)) {
  .enviar {
    padding: 0.5rem 1rem;
    font-size: 18px;
    font-weight: normal;
    text-align: right;
    margin-right: 0.5rem;
  }
}

.tabla_titulo {
  grid-column: span 10;
  text-align: center;
  background-color: var(--color-transp50);
  color: var(--color-fondo);
  text-transform: uppercase;
  padding: 10px;
}

.tabla_header {
  padding: 10px;
  background-color: var(--color-suave);
  color: var(--color-enfasis);
  text-align: center;
}

.tabla_item {
  font-size: 12px;
  height: auto;
  max-height: 8rem;
  padding: 1rem;
  text-align: center;
  background-color: var(--color-fondo);
  color: var(--color-enfasis);
}

#id {
  grid-column: 1;
}

#titulo,
#genero,
#serie,
#imagen {
  grid-column: span 2;
}

#info {
  grid-column: span 3;
}

.container-add {
  width: 70%;
  margin: 2rem auto 5rem;
  box-shadow: var(--color-shadow);
  background-color: var(--color-suave);
}

.datos_ingresar {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  padding: 1rem;
}

.container_title {
  text-align: center;
  background-color: rgb(31, 30, 30);
  color: var(--color-fondo);
  text-transform: uppercase;
  padding: 10px;
}

.container_label {
  margin: auto;
  font-size: 14px;
  color: var(--color-transp50);
  padding: 0.5rem;
}

.container_input {
  width: 100%;
  min-height: 1.5rem;
  margin: 0.5rem auto 0.5rem;
}

.campo_oculto {
  display: none;
  height: 0;
}

.ingreso {
  width: 50%;
  margin: 2rem auto;
  background-color: var(--color-fondo);
  box-shadow: var(--color-shadow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (width < var(--size-width-desktop)) {
  .ingreso {
    width: 80%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .ingreso {
    width: 100%;
  }
}

.formulario_subida {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.form_group {
  width: 100%;
  height: 4rem;
  font-size: 12px;
  margin-bottom: 0.5rem;
  color: var(--color-transp50);
}
.form_group input {
  width: 100%;
  font-size: 16px;
}
@media only screen and (width < var(--size-movil)) {
  .form_group input {
    font-size: 12px;
  }
}

.imagen_form {
  width: 100%;
  height: 10rem;
  font-size: 12px;
  margin-bottom: 1rem;
  color: var(--color-transp50);
  grid-row: 1/3;
}

.header_form {
  grid-column: span 2;
  background-color: var(--color-suave);
  color: var(--color-enfasis);
  font-size: 24px;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media only screen and (width < var(--size-movil)) {
  .header_form {
    font-size: 18px;
  }
}

#imagen_pic {
  grid-column: 2;
  grid-row: 1;
}

#genero_item {
  grid-column: 2;
  grid-row: 2;
}

#titulo_item {
  grid-column: 1/3;
  grid-row: 3;
}

#serie_item {
  grid-column: 1;
  grid-row: 4;
}

#precio_item {
  grid-column: 2;
  grid-row: 4;
}

#row_1 {
  grid-column: 2;
  grid-row: 2;
}

#info_item {
  grid-column: 1/3;
  grid-row: 5;
}

#notas_item {
  grid-column: 1/3;
  grid-row: 6;
}

#ubic_item {
  grid-column: 2;
  grid-row: 5;
}

#row_2 {
  grid-column: span 2;
  grid-row: 1;
  height: auto;
}

#row_3 {
  grid-column: 1/2;
}

.resultados_db,
.resultados_busqueda {
  width: 90%;
  margin: auto;
  margin-bottom: 5rem;
  @media only screen and (width < 500px) {
    width: 100%;
  }
}

@media only screen and (width < var(--size-movil)) {
  .resultados_db,
  .resultados_busqueda {
    width: 94%;
  }
}

.resultados_cards {
  width: 90%;
  margin: auto;
  background-color: var(--color-fondo);
  margin-bottom: 5rem;
  margin-top: 12rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .resultados_cards {
    margin-top: 9rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .resultados_cards {
    width: 94%;
    margin-top: 12rem;
  }
}

.header_biblio {
  text-align: center;
  font-size: 24px;
  padding: 1rem;
  background-color: var(--color-suave);
  color: var(--color-transp50);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media only screen and (width < var(--size-movil)) {
  .header_biblio {
    font-size: 18px;
    font-weight: normal;
  }
}

.bilio_imagen {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  width: 100%;
}

.tarjeta_imagen {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  row-gap: 0.1rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .tarjeta_imagen {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .tarjeta_imagen {
    grid-template-columns: 1fr 1fr;
  }
}

#info_informacion {
  grid-column: span 2;
  grid-row: 2;
}

.tarjeta_info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem;
}
.tarjeta_info p {
  font-size: 0.8rem;
}

.imagen__tarjeta_imagen {
  max-height: 12rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
}

.imagen__tarjeta_biblio {
  max-height: 14rem;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border: none;
}

.imagen__tarjeta_resultado {
  max-height: 12rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
}
@media only screen and (width < var(--size-width-desktop)) {
  .imagen__tarjeta_resultado {
    height: 12rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .imagen__tarjeta_resultado {
    height: 10rem;
  }
}

.placeholder {
  background: var(--color-suave);
  min-height: 1.2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.placeholder::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--color-suave),
    rgb(223, 223, 223),
    var(--color-suave)
  );
  transform: translateX(-100%);
  filter: blur(5px);
  animation: pre_loader 1.5s linear infinite;
}

@keyframes pre_loader {
  100% {
    transform: translateX(100%);
  }
}
.info_titulo {
  font-size: 0.8rem;
  padding: 0.1rem;
  grid-column: 1/3;
}

.info_notas,
.info_ubicacion {
  font-weight: lighter;
  padding: 0.1rem;
  color: var(--color-transp50);
}

.info_precio {
  padding: 0.1rem;
  color: var(--color-color);
}

.info_info,
.info_serie,
.info_genero {
  font-weight: lighter;
}

._info_serie {
  font-weight: lighter;
  color: var(--color-transp50);
  grid-column: 1/3;
}

.card {
  box-shadow: var(--color-shadow);
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--color-fondo);
}

.card__tarjeta {
  height: 20rem;
}

.card__biblio,
.card__tarjeta {
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 20%;
}
.card__biblio img,
.card__tarjeta img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 16rem;
  background-color: var(--color-transp01);
}

.info_serie_biblio {
  grid-column: 1/3;
}

.imagen__card__tarjeta {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 16rem;
}

.card__resultado {
  padding: 0.5rem;
  width: 100%;
  height: 20rem;
  display: grid;
  grid-template-rows: 1fr 20%;
}

.alert {
  position: relative;
  background-color: var(--color-transp50);
}

.btn_close {
  position: absolute;
  right: 0;
  top: 0;
}

.buscador {
  margin: auto;
  margin-bottom: 3rem;
  height: 5rem;
}
@media only screen and (width < var(--size-movil)) {
  .buscador {
    height: auto;
    margin-bottom: 0.5rem;
  }
}

.search_btn_menu {
  display: grid;
  grid-template-columns: 1fr 30%;
}

.search_btn_menu1 {
  display: grid;
  grid-template-columns: 1fr 30%;
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 25pc;
  background: var(--color-fondo);
  overflow: hidden;
  margin: 0.8rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .search_btn_menu1 {
    width: 15rem;
  }
}
.search_btn_menu1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  color: var(--color-transp50);
}
.search_btn_menu1:hover {
  width: 20rem;
  border: 2px solid var(--color-suave);
  text-align: center;
}
@media only screen and (width < var(--size-width-desktop)) {
  .search_btn_menu1:hover {
    width: 15rem;
  }
}

.search_btn_menu_input {
  border: 0;
  color: var(--color-transp50);
  padding: 0.1rem;
  background: none;
}
.search_btn_menu_input:focus {
  outline: none;
}

.search_btn_menu_input1 {
  position: absolute;
  left: 80px;
  height: 2rem;
  border: none;
  color: var(--color-transp50);
  font-size: 12px;
  padding: 0.1rem;
  transition: all 0.5s;
  background: var(--color-fondo);
}
.search_btn_menu_input1:focus {
  outline: none;
}

.search_btn_enviar {
  padding: 0.2rem 1rem;
  background-color: var(--color-suave);
  color: var(--color-enfasis);
  border: none;
  border-radius: 25pc;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: bold;
  margin: auto;
  width: auto;
  height: auto;
}
.search_btn_enviar:hover {
  background-color: var(--color-suave);
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-movil)) {
  .search_btn_enviar {
    padding: 0.5rem 1rem;
    font-size: 18px;
    font-weight: normal;
    text-align: right;
    margin-right: 0.5rem;
  }
}

.search_btn_enviar1 {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 1px;
  background: var(--color-fondo);
}

.input_buscar {
  color: var(--color-transp50);
  padding: 0.5rem;
  margin: 1rem 4rem;
  border: 0;
  width: 80%;
  background: var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .input_buscar {
    width: 100%;
    margin: 0.5rem 0;
  }
}
.input_buscar:focus {
  outline: none;
}

.buscador_form {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 10rem;
  background: var(--color-fondo);
}
@media only screen and (width < var(--size-movil)) {
  .buscador_form {
    padding: 0.4rem;
  }
}

.indice {
  padding: 15px;
  list-style: none;
  display: flex;
  margin-top: 15px;
  justify-content: flex-end;
}
.indice li {
  background: var(--color-fondo);
  margin: auto 0.5rem;
}
.indice li a {
  color: var(--color-transp50);
  border: 1px solid var(--color-suave);
  padding: 10px;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  width: 45px;
  cursor: pointer;
  transition: all 0.3s;
}
.indice li a:hover {
  background: var(--color-transp50);
  color: var(--color-enfasis);
}

.pageSelected {
  color: var(--color-enfasis);
  border: 1px solid var(--color-transp50);
  padding: 10px;
  width: 45px;
  text-align: center;
}

.paginador {
  width: 80%;
  margin: auto;
  padding: 0.5rem;
  text-align: center;
}
.paginador a {
  padding: 0.5rem;
  border: 2px solid var(--color-suave);
  color: var(--color-transp50);
  margin-left: 0.5rem;
  transition: all 0.3s;
}
.paginador a:hover,
.paginador a :active {
  background: var(--color-suave);
  color: var(--color-enfasis);
}
@media only screen and (width < var(--size-width-desktop)) {
  .paginador {
    width: 90%;
  }
  .paginador a {
    margin-left: 0.2rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .paginador {
    display: flex;
    flex-wrap: wrap;
  }
  .paginador a {
    font-size: 10px;
    padding: 0.2rem;
    margin-bottom: 0.5rem;
  }
}

.resultados {
  margin-top: 4rem;
  margin-right: 6rem;
  color: var(--color-transp50);
  text-align: end;
  font-size: 12px;
}

#paginas {
  margin: 1rem auto 3rem;
}
#paginas ul {
  margin: 10px auto;
  padding: 0;
  width: 80%;
  align-content: center;
  display: flex;
}
#paginas ul li {
  display: inline-block;
  margin: 10px auto;
  padding: 2px;
}
#paginas ul li a {
  background: var(--color-fondo);
  border-radius: 3px;
  color: var(--color-transp50);
  padding: 10px 15px;
  font-size: 12px;
}
#paginas ul li a:hover {
  background: var(--color-suave);
  transition: all 0.3s;
}

.actual {
  background: var(--color-transp50) !important;
  color: var(--color-fondo) !important;
}

#contenido_page {
  width: 90%;
  margin: 0 auto;
}

.search {
  position: absolute;
  top: 20px;
  left: 5rem;
  color: var(--color-transp50);
  transition: all 0.3s;
}
.search:hover input {
  width: 20rem;
  transition: all 0.3s;
  padding-left: 50px;
  opacity: 1;
}
.search:focus input {
  border: var(--color-suave);
}
.search input {
  width: 0;
  padding: 0.5rem 1rem;
  background: var(--color-fondo);
  border-radius: 30px;
  border: none;
  opacity: 0;
}

.submit_icon {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  border: 2px solid var(--color-transp50);
  text-align: center;
}

i.fas {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-enfasis);
}

.total_registro {
  padding: 0.5rem;
  font-weight: lighter;
  grid-column: span 7;
  padding: 1rem;
}
@media only screen and (width < var(--size-width-desktop)) {
  .total_registro {
    grid-column: span 4;
  }
}
@media only screen and (width < var(--size-movil)) {
  .total_registro {
    grid-column: span 2;
  }
}

.total_obras {
  color: var(--color-transp50);
  margin-top: 2rem;
  padding: 0.5rem;
  text-align: center;
  margin: auto;
}

.menu_series {
  display: grid;
  width: 90%;
  margin: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 10rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 2rem;
  text-transform: uppercase;
  margin-left: 10rem;
  padding: 2rem 1rem;
  font-size: 1.5rem;
}
.menu_series:hover {
  text-decoration: underline;
  color: var(--color-transp50);
}
@media only screen and (width < var(--size-width-desktop)) {
  .menu_series {
    width: 100%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .menu_series {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    width: 100%;
    text-align: center;
  }
}

.serie_btn {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: var(--color-shadow);
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  &:hover .cartela {
    height: 40%;
  }
  /*parámetros animacion */
  animation: fadeIn ease-in-out;
  animation-timeline: view();
  animation-range: entry 0 cover 30%;
}

.ingresar_datos {
  background-color: var(--color-transp50);
  padding: 1rem;
  border-radius: 25pc;
  margin: auto;
  width: 20rem;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 20px;
}
.ingresar_datos:hover {
  background-color: var(--color-fondo);
  box-shadow: var(--color-shadow_strong);
  transition: all 0.5s;
}

.serie_description {
  margin: auto;
  margin-bottom: 1rem;
  width: 80%;
  text-align: center;
  margin-top: 6rem;
  p {
    color: var(--color-transp50);
  }
  h4 {
    font-size: 2rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
  }

  @media only screen and (width < var(--size-width-desktop)) {
    margin-top: 1rem;
  }
  @media only screen and (width < var(--size-movil)) {
    width: 90%;
    h5 {
      padding-bottom: 0.5rem;
      font-size: 14px;
    }
    p {
      font-size: 14px;
    }
  }
}
.serie_description1 {
  margin: auto;
  margin-bottom: 1rem;
  width: 80%;
  text-align: center;
  margin-top: 1rem;
  p {
    color: var(--color-transp50);
  }
  h4 {
    font-size: 2rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
  }

  @media only screen and (width < var(--size-width-desktop)) {
    margin-top: 1rem;
  }
  @media only screen and (width < var(--size-movil)) {
    width: 90%;
    h5 {
      padding-bottom: 0.5rem;
      font-size: 14px;
    }
    p {
      font-size: 14px;
    }
  }
}
.texto_descripcion {
  text-align: center;
}
@media only screen and (width < var(--size-movil)) {
  .texto_descripcion {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

.junglas_miscelaneas {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: 60% 1fr;
  /* grid-auto-rows: 15rem; */
  margin-top: 1rem;
  /* margin-bottom: 3rem; */
  grid-column-gap: 3%;
  grid-row-gap: 10px;
  grid-column: 1/3;
}
@media only screen and (width < 600px) {
  .junglas_miscelaneas {
    grid-template-columns: 50% 50%;
  }
}

.catalg_junglas {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80% 1fr;
  height: 20rem !important;
  margin-top: 10rem;
}
.catalg_junglas p {
  text-align: center;
  padding: 0.5rem;
  /* padding-top: 2rem; */
}
@media only screen and (width < var(--size-movil)) {
  .catalg_junglas p {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}
.catalg_junglas img {
  width: auto;
  margin: auto;
  height: 10rem;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.5s;
}
.catalg_junglas img:hover {
  box-shadow: var(--color-shadow_strong);
}

#download_catalogo {
  align-self: center;
  justify-self: center;
}

.boton_youtube_junglas img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.boton_youtube_junglas img:hover {
  box-shadow: var(--color-shadow_strong);
}

.boton_gris {
  padding: 1rem;
  margin: auto;
  width: 80%;
  background-color: var(--color-transp01);
  text-align: center;
  margin-top: 2rem;
  border-radius: 1rem;
  transition: all 0.5s;
}
.boton_gris:hover {
  box-shadow: var(--color-shadow_strong);
}

.edicion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.6rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.edicion a {
  font-size: 1rem;
  color: var(--color-transp50);
}
.edicion a:hover {
  text-decoration: underline;
  color: var(--color-enfasis);
}

.fantasma {
  display: none;
}

.form_login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  margin: auto;
  padding: 1rem;
  background: var(--color-transp50);
  box-shadow: var(--color-shadow);
}
@media only screen and (width < 860px) {
  .form_login {
    width: 50%;
  }
}
@media only screen and (width < var(--size-movil)) {
  .form_login {
    width: 80%;
  }
}

.form_login_input {
  background-color: var(--color-fondo);
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
}

.background {
  background-image: url(../imagenes/imagenes_db/jungla.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blanco {
  background: var(--color-transp01);
  width: 100%;
  height: 100vh;
  position: relative;
}

.btn_logout {
  background: var(--color-color_transp);
  border: none;
  padding: 0.2rem 1rem;
  margin-top: 1rem;
  border-radius: 25px;
  color: var(--color-transp50);
  margin-bottom: 4rem;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn_logout:hover {
  background: var(--color-color);
  color: var(--color-fondo);
}

.logout {
  background: var(--color-color_transp);
  border: none;
  padding: 0.5rem 2rem;
  margin: auto;
  border-radius: 25px;
  color: var(--color-enfasis);
  margin-bottom: 4rem;
  box-shadow: var(--color-shadow);
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.logout:hover {
  background: var(--color-color);
  color: var(--color-fondo);
}

.account_login {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.account_login a {
  color: var(--color-transp50);
  text-decoration: underline;
}
.account_login a:hover {
  color: var(--color-color);
}

.user {
  display: flex;
  flex-direction: column;
  align-items: justify;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.back_btn {
  background: var(--color-transp25);
  border: none;
  padding: 0.2rem 1rem;
  margin-top: 1rem;
  border-radius: 25px;
  color: var(--color-transp50);
  position: absolute;
  top: 0;
  left: 10rem;
  transform: translate(-50%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.back_btn:hover {
  background: var(--color-transp50);
  color: var(--color-fondo);
}
@media only screen and (width < 860px) {
  .back_btn {
    background: var(--color-transp50);
    color: var(--color-fondo);
    margin-top: 0.5rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .back_btn {
    position: relative;
    background: var(--color-transp50);
    color: var(--color-fondo);
    left: 1rem;
  }
}

.video_browser {
  width: 100%;
  height: 25rem;
  margin: 1rem auto;
  background-image: url(../imagenes/image_news/junglas_nyc/poster_junglas_nyc01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
@media only screen and (width < var(--size-ipad)) {
  .video_browser {
    height: 15rem;
  }
}
@media only screen and (width < var(--size-movil)) {
  .video_browser {
    width: 90vw;
  }
}

.skeleton {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.skeleton img {
  opacity: 0;
  overflow: hidden;
}
.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    rgba(111, 111, 111, 0.01),
    rgba(73, 73, 73, 0.5),
    rgba(111, 111, 111, 0.01)
  );
  filter: blur(5px);
  animation: anim_skeleton 4s linear infinite;
}

@keyframes anim_skeleton {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}
.dots_thumnail_contenedor {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 50%;
}

.hidden {
  height: 0;
  opacity: 0;
}

.g-recaptcha {
  height: 6rem;
  width: 10rem;
  padding: 0.5rem;
}

.espacio03 {
  position: relative;
  height: 100vh;
  width: 100vw;
}
@media screen and (width < var(--size-width-desktop)) {
  .espacio03 {
    height: 30rem;
  }
}
@media screen and (width < var(--size-movil)) {
  .espacio03 {
    height: 10rem;
  }
}

.remember_btn {
  width: 1rem;
  height: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-suave);
  cursor: pointer;
  border: var(--color-transp50) solid 1px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.remember_btn::after {
  content: "\f00c";
  font-size: 1rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-fondo);
  display: none;
}
.remember_btn:hover,
.remember_btn:focus,
.remember_btn:focus-within,
.remember_btn:focus-visible,
.remember_btn:active {
  background-color: var(--color-transp50);
}
.remember_btn:checked {
  background-color: var(--color-enfasis);
}
.remember_btn:checked::after {
  display: block;
  border: none;
  outline: none;
}

.success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 10rem;
  width: 60%;
  margin: auto;
  background-color: var(--color-transp25);
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--color-shadow);
}
.success p {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-color);
}
@media screen and (width < var(--size-movil)) {
  .success {
    width: 90%;
    height: 5rem;
    padding: 1rem;
  }
  .success p {
    font-size: 0.8rem;
  }
}
.success:hover {
  background-color: var(--color-transp50);
  transition: all 0.3s;
}
.success:hover .hidden_hover {
  visibility: visible;
  font-weight: normal;
  color: var(--color-enfasis);
}
@media screen and (width < var(--size-ipad)) {
  .success:hover .hidden_hover {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}
.success .hidden_hover {
  visibility: hidden;
}

.gris50 {
  background-color: var(--color-transp01);
  padding: 0.8rem;
  width: 100%;
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}
@media screen and (width < var(--size-movil)) {
  .gris50 {
    grid-template-columns: 1fr;
  }
}

.center {
  margin: auto;
  margin-top: 2rem;
  width: 80%;
  display: block;
}

.photo_artist {
  margin-top: 6rem;
  margin-left: 10%;
  margin-right: 10%;
  height: 20rem;
  overflow: hidden;
}
.photo_artist img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (width < var(--size-width-desktop)) {
  .photo_artist {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (width < var(--size-movil)) {
  .photo_artist {
    height: 15rem;
  }
}

.link_resume {
  padding: 1rem;
  margin-left: 4rem;
  margin-bottom: 2rem;
}

.espacio_blanco {
  height: 10rem;
  width: 100%;
  background-color: var(--color-fondo);
}

.reviews {
  position: relative;
  background: var(--color-transp25);
  padding: 2rem 15%;
  margin: auto;
}
.reviews h3 {
  margin-bottom: 1rem;
}
.reviews li {
  list-style: circle;
}
.reviews li a {
  cursor: pointer;
  padding-bottom: 1rem;
  line-height: 1rem;
}
.reviews li a:hover {
  font-weight: bold;
  transition: all 0.3s;
}
@media screen and (width < var(--size-movil)) {
  .reviews {
    padding: 2rem 5%;
    font-size: 0.8rem;
  }
}

.freebies {
  background: var(--color-transp01);
  padding: 2rem 15%;
  margin: auto;
  margin-bottom: 2rem;
}
@media screen and (width < var(--size-movil)) {
  .freebies {
    padding: 2rem 0.5rem;
  }
  .freebies h3,
  .freebies p {
    font-size: 0.8rem;
  }
}

.freebie_download {
  display: grid;
  margin: auto;
  width: 80%;
}
@media screen and (width < var(--size-movil)) {
  .freebie_download {
    width: 100%;
  }
}

.freebie_btn {
  position: relative;
  width: 20rem;
  height: 10rem;
  overflow: hidden;
  margin: 1rem auto;
  border: none;
}
.freebie_btn img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.freebie_btn:hover .freebie_cartela {
  height: 30%;
  transition: all 0.2s;
}

.freebie_cartela {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-transp01);
  text-align: center;
  font-weight: bold;
}
@media screen and (width < var(--size-width-desktop)) {
  .freebie_cartela {
    height: 30%;
  }
}

.freebie_item {
  color: var(--color-transp50);
  font-size: 0.8rem;
  text-align: center;
}
@media screen and (width < var(--size-movil)) {
  .freebie_item {
    font-size: 0.6rem;
    padding: 0 1rem;
  }
}

.vanish {
  animation-name: vanished;
  animation-duration: 3s;
  opacity: 0;
}

@keyframes vanished {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.whatsap_btn {
  position: absolute;
  right: 20rem;
  top: 3rem;
}
.whatsap_btn img {
  height: 2.5rem;
  width: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  color: var(--color-transp50);
}
@media only screen and (width < var(--size-width-desktop)) {
  .whatsap_btn {
    top: 4rem;
    right: 5rem;
  }
}
@media only screen and (width < var(--size-ipad)) {
  .whatsap_btn {
    right: 3rem;
    top: 90%;
  }
  .whatsap_btn img {
    height: 1, 5rem;
    width: 1.5rem;
  }
}

#copiloto_content {
  display: grid;
  grid-template-columns: 20% 10% 1fr;
  @media only screen and (width > 500px) {
    grid-template-columns: 1fr;
    max-height: 160rem;
  }
}

#readMore_btn01,
#readMore_btn02 {
  grid-column: 1/4;
}
@media screen and (width < var(--size-width-desktop)) {
  #readMore_btn01,
  #readMore_btn02 {
    grid-column: 1;
  }
}

@media screen and (width < var(--size-width-desktop)) {
  #gabinete {
    max-height: 160rem;
  }
}

@media screen and (width < var(--size-width-desktop)) {
  #descripcion_gabinete {
    grid-column: 1;
    grid-row: 5;
  }
}

@media screen and (width < var(--size-width-desktop)) {
  #descripcion_ceiba_lam {
    grid-column: 1;
    grid-row: 4;
  }
}

.noticias_contenedor_img {
  margin-bottom: 1rem;
  grid-column: 1/3;
  width: 100%;
  @media only screen and (width > 500px) {
    grid-column: 1;
  }
}

.link_talk {
  height: 6rem;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 10% 80% 10%;
}
.link_talk img {
  height: 6rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
  opacity: 0.7;
  filter: saturate(0);
}
.link_talk img:hover {
  opacity: 1;
  filter: saturate(1);
}
.link_talk p {
  grid-column: 1/4;
  text-align: center;
  padding: 0.2rem 1rem 0.2rem;
  font-size: 0.7rem;
}
@media screen and (width < var(--size-width-desktop)) {
  .link_talk p {
    opacity: 0;
  }
}
@media screen and (width < var(--size-width-desktop)) {
  .link_talk {
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
}

.link_talk_img {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  opacity: 1;
  width: 100%;
}

/* #gabinete_content {
  grid-row: 1/3;
  grid-column: 3;
  @media only screen and (width > 500px) {
    grid-row: 2;
    grid-column: 1;
  }
} */
#descripcion_gabinete {
  grid-column: 1 !important;
}
.whatsap_contact {
  position: absolute;
  bottom: 1.5rem;
  left: 10rem;
}
.whatsap_contact a img {
  height: 2.5rem;
  width: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  color: var(--color-enfasis);
  fill: #000;
}
@media screen and (width < var(--size-width-desktop)) {
  .whatsap_contact {
    left: 1rem;
  }
}

.prensa {
  display: grid;
  grid-template-columns: 80% 1fr;
  gap: 0.5rem;
  /* grid-column: 1/3; */
  filter: saturate(0);
  transition: all 1s ease-in-out;
  @media only screen and (width > 900px) {
    grid-template-columns: 70% 1fr;
    padding-top: 1rem;
    width: 80%;
    margin: auto;
    /* grid-column: 1; */
  }
}
.prensa:hover {
  filter: saturate(1);
}
@media screen and (width < var(--size-width-desktop)) {
  .prensa {
    grid-template-columns: 70% 1fr;
    padding-top: 1rem;
    width: 80%;
    margin: auto;
  }
}

.dossier_btn {
  width: 100%;
}
.dossier_btn img {
  width: 100%;
  height: 6rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.info_genero {
  opacity: 0;
}

.colecciones p,
.lectures p {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.video_modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  transform: translate(0%, 0%);
}

.text_importante {
  position: absolute;
  left: 30%;
  transform: rotate(-15deg);
  font-size: 3rem;
  background-color: var(--color-transp50);
  z-index: 10;
}
@media screen and (width < var(--size-movil)) {
  .text_importante {
    font-size: 2rem;
    left: 10%;
  }
}

.error_txt {
  font-size: 0.8rem;
  color: var(--color-color);
  text-align: left;
  padding: 0.5rem;
  display: none;
  margin-top: -0.5rem;
}

.degrad_footer {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 8rem;
  background: linear-gradient(transparent, var(--color-fondo));
}

.btn_resume {
  margin-left: 6rem;
  margin-top: 3rem !important;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
}

.diapo_one {
  height: 45rem !important;
  @media screen and (width < 500px) {
    height: 70dvh !important;
  }
}

.diapo_front {
  height: 55rem !important;
  @media screen and (width < 500px) {
    height: 70dvh !important;
  }
}
#unit_online_content a {
  margin: auto;
  display: block;
  width: 100%;
}
#unit_online_content a img {
  height: 60dvh;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#unit_online_content a img:hover {
  box-shadow: var(--color-shadow);
}

.link {
  width: 80%;
  margin: auto;
  margin-bottom: 2rem;
  background: var(--color-transp50);
  padding: 0.5rem 1.5rem;
  text-align: center;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: var(--color-shadow);
  transition: all 0.5s ease-in-out;
  &:hover {
    box-shadow: var(--color-shadow_strong);
  }
  @media screen and (min-width: var(--size-width-desktop)) {
    display: none;
  }
}

#huelva2024_content img {
  height: 60dvh;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.link_pdf {
  display: flex;
  flex-flow: column;
  align-items: center;
  cursor: pointer;
  width: 100%;
  margin-top: 2rem;
  img {
    height: 6rem !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.5s;
    &:hover {
      box-shadow: var(--color-shadow);
    }
  }
  p {
    text-align: center;
  }
  @media screen and (min-width: var(--size-width-desktop)) {
    width: 0;
  }
}

#book_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;

  img {
    height: 70dvh;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    grid-column: 1;
  }
  p {
    grid-column: 1;
    display: flex;
    align-items: center;
    padding: 1rem;
  }
  @media screen and (min-width: var(--size-width-desktop)) {
    grid-template-columns: 40% 1fr;
    p {
      grid-column: 2;
    }
  }
}

.visible {
  display: block;
}
.content_index {
  z-index: 2;
}
.fadeIn {
  animation: fadeIn ease-in-out;
  animation-timeline: view();
  animation-range: entry 20% cover 50%;
}
.btn_pdf {
  position: fixed;
  left: 2rem;
  top: 10rem;
  z-index: 99;
  cursor: pointer;
  svg {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    fill: var(--color-suave);
    transition: all 0.5s ease-in-out;
    &:hover {
      fill: var(--color-texto);
    }
  }

  @media screen and (width < 768px) {
    top: 11rem;
  }
}

.btn_back_menu {
  position: fixed;
  top: 6rem;
  z-index: 99;

  @media screen and (width < 768px) {
    top: 7rem;
  }
}
.background_slideshow {
  height: 100dvh;
  width: 100%;
  background-image: url(../imagenes/assets/jungla_santera_wallpaper.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 1s;

  animation: fondo 30s ease-in-out infinite alternate-reverse forwards;
}
.fondo_portada {
  background: url(../imagenes/assets/jungla_santera_wallpaper.webp);
  background-size: cover;
}
@keyframes fondo {
  0% {
    background-image: url(../imagenes/assets/jungla_santera_wallpaper.webp);
  }
  25% {
    background-image: url(../imagenes/assets/jungla_pobre_wallpaper.webp);
  }
  50% {
    background-image: url(../imagenes/assets/jungla_desnuda_wallpaper01.webp);
  }
  75% {
    background-image: url(../imagenes/assets/jungla_tropical_wallpaper.webp);
  }
  100% {
    background-image: url(../imagenes/assets/jungla_negra_wallpaper.webp);
  }
}
.banner_spirit {
  width: 100%;
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 5% 1fr 1fr;
  h3 {
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
  }
  @media screen and (min-width: 229px) {
    h3 {
      margin-top: 1.5rem;
      font-size: 1.5rem;
    }
    min-height: 100%;
  }
}
.banner_spirit_video {
  width: 100%;
  object-fit: contain;
}
.banner_pricelist {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  cursor: pointer;
  img {
    width: 100%;
    object-fit: contain;
  }
}
.cartela_slide {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--color-transp25);
  color: #000;
}

.bottom5rem {
  margin-bottom: 5rem;
  height: 100% !important;
}
.pie_foto {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-transp_sec08);
  color: var(--color-texto);
  text-align: center;
  padding: 0.5rem;
  font-size: 1rem;
}
.old_news {
  padding: 2rem;
}
.old_news_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--color-suave);
  padding: 2rem 1rem;
  color: var(--color-enfasis);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 90%;
  margin: auto;
  font-size: 2rem;
  text-transform: uppercase;
  &:hover,
  &:focus,
  &:focus-within,
  &:focus-visible,
  &:active {
    background: var(--color-suave1);
    box-shadow: var(--color-shadow_strong);
    padding: 2.5rem 1rem;
  }
}
.participantes_titulo {
  text-align: center;
  font-size: 1rem;
  color: var(--color-suave);
  padding: 0 !important;
}
.participantes_nombres {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-subtitulo);
  margin-bottom: 1rem;
}
#dogma {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
#dogma_contenedor {
  min-height: 100dvh;
}
#submit-btn {
  grid-column: 1/3;
  padding: 0.2rem 2rem !important;
  width: 90% !important;
}
.contact_p {
  padding: 1rem 0.5rem;
}
#sculptures {
  background-color: var(--color-transp_sec08) !important;
  padding: 2rem 0;
}
#fondo_trasp {
  background-color: transparent !important;
}
#paintings,
#drawings {
  background-color: var(--color-transp01) !important;
  padding: 2rem 0;
}
.titulo_seccion {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-enfasis);
  margin-top: 3rem;
  text-transform: uppercase;
}
.news_link01 {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  a {
    background-color: var(--color-transp01);
    text-decoration: none;
    padding: 0.5rem;
    color: var(--color-enfasis);
    &:hover {
      text-decoration: underline;
    }
  }
  @media screen and (width < 500px) {
    grid-template-columns: 1fr;

    a {
      border-bottom: 1px solid var(--color-enfasis);
      background-color: transparent;
    }
  }
}
.margin_top {
  margin-top: 2rem;
}
.expand3 {
  grid-column: 1/3;
  @media screen and (width < 500px) {
    grid-column: 2;
  }
}
.news_btn {
  width: 100%;
  position: relative;
  cursor: pointer;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70% 30% auto;
  height: 100%;
  @media screen and (width < 500px) {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh 20vh 20vh;
  }
}
.grid_item80 {
  height: 80%;
}

.link_news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.5rem;
  a,
  img {
    object-fit: cover !important;
    -o-object-fit: cover;
    width: 100%;
    height: 10rem !important;
  }
  @media screen and (width < 500px) {
    grid-template-columns: 1fr;
  }
}
.link_news1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.5rem;
  a,
  img {
    object-fit: cover !important;
    -o-object-fit: cover;
    width: 100%;
    height: 10rem !important;
    @media screen and (width < 500px) {
      margin-top: 0 !important;
    }
  }
}
.link_news_item {
  height: 20vh !important;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  video {
    height: 20vh !important;
    object-fit: cover;
  }

  @media screen and (width < 500px) {
    padding: 0.5rem;
    height: 18vh !important;
    video {
      height: 18vh !important;
      padding: 0.5rem;
    }
  }
}
.link_news a {
  /* height: 20vh !important; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  @media screen and (width < 500px) {
    padding: 0.5rem;
    height: 18vh !important;
  }
}
.link_news2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.5rem;
  a,
  img {
    object-fit: cover !important;
    -o-object-fit: cover;
    width: 100%;
    height: 10rem !important;
  }
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70% 30% auto;
  height: 100%;
  @media screen and (width < 500px) {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh 20vh 20vh;
  }
}
.caja2 {
  display: grid;
  grid-template-rows: 80% 20%;
}
.caja2 > div {
  height: 100% !important;
  max-height: 100% !important;
}
.caja1 {
  display: grid;
  grid-template-rows: 1fr 60%;
}
.caja3 {
  display: grid;
  grid-template-rows: 80% 20%;
}
.caja4 {
  display: grid;
  grid-template-rows: 70% 30%;
}
@media screen and (width < 500px) {
  #descripcion_intramuros,
  #intramuros_slideshow {
    grid-column: 1;
  }
}
#slide_news03 {
  height: 100%;
}
.boton_youtube_junglas,
.catalg_junglas {
  height: 10rem;
  img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
#descripcion_ceiba_lam {
  grid-column: 2;
  @media screen and (width < 500px) {
    grid-column: 1;
  }
}
#gabinete_content {
  height: 100%;
}
.caja2_item {
  grid-column: 2 !important;
  a,
  img {
    object-fit: cover !important;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
  }
  @media screen and (width < 500px) {
    grid-column: 1 !important;
  }
}
.caja2_item2 {
  grid-column: 1 !important;
  a,
  img {
    object-fit: cover !important;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
  }
  @media screen and (width < 500px) {
    grid-column: 1 !important;
  }
}
.link_news1_item {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
.caja01 {
  grid-column: 1 /3 !important;
}
.caja02 {
  grid-column: 1 /4 !important;
}
.cat_junglas {
  height: 18rem !important;
  grid-column: 2/4 !important;
  margin-left: 0.5rem;
  @media screen and (width < 500px) {
    grid-column: 1 !important;
  }
}
.dos_columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.catlg_item {
  margin-top: 0 !important;
  height: 10rem !important;
}
.caja {
  max-height: 12rem !important;
}
