@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*STYLES GLOBALES*/
:root {
  --color-principal: #000000;
  --color-segundario: red;
  --color-botones: #e40914;
  --color-botones-hover: #f40612;
  --color-titulos: white;
  --color-textos: white;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
a:focus {
  outline: none;
  box-shadow: none;
}
body {
  font-family: "Barlow", sans-serif;
  color: white;
  background-color: var(--color-principal);
}

a {
  text-decoration: none;
  color: var(--color-textos);
}
li {
  list-style: none;
}
/*FIN STYLES GLOBALES*/


/*ARCHO DEL CONTENEDOR DE TAMAÑO FULL*/
.contenedor-size-full {
  width: 100%;
}
/*FIN CONTENEDOR DE TAMAÑO FULL*/

/*ARCHO DEL CONTENEDOR MEDIANO*/
.contenedor-size-mediano {
  /*max-width: 1200px;*/
  width: 100%;
  margin: auto;
  padding: 20px;
}
/*FIN CONTENEDOR MEDIANO*/

/*HEADER PRONCIPAL*/
.header-principal {
  position: absolute;
  position: fixed;
  /*  background: var(--color-principal);*/
  height: 70px;
  top: 0px;
  z-index: 99;
  transition: 0.3s;
}
.header-principal .navegacion-header {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  height: 100%;
}

/*HEADER - LOGO*/
.header-principal .navegacion-header .logo-header {
  color: white;
  font-size: 1.4rem;
  display: flex;
  font-weight: 600;
  text-align: left;
  margin-left: 20px;
  cursor: pointer;
  align-items: center;
}
/*HEADER - FIN LOGO*/

/*HEADER - NEVEGACION LOGO*/
.header-principal .navegacion-header ul {
  display: flex;
  align-items: center;
  padding: 0px;
}
.header-principal .navegacion-header ul .lists {
  display: flex;
}
.header-principal .navegacion-header ul li {
  margin-right: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.header-principal .navegacion-header ul li a {
  padding-bottom: 10px;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}
.header-principal .navegacion-header ul li a:hover {
  padding-bottom: 7.5px;
  border-bottom: 2px solid white;
}
.header-principal .navegacion-header ul li a img {
  position: relative;
  width: 17.5px;
  margin-right: 5px;
  top: 3px;
}
.header-principal .navegacion-header ul li a i {
  position: relative;
  font-size: 15px;
  padding: 5px;
  margin-right: 5px;
}

#ocultar {
  display: none !important;
}

.header-principal .navegacion-header .perfil-header {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  cursor: pointer;
}
.header-principal .navegacion-header .perfil-header .opciones_perfil_header {
  position: absolute;
  width: 50px;
  right: 20px;
  background-color: black;
  margin-top: 164px;
  width: 230px;
  display: none;
}
.opciones_perfil_header ul {
  display: block !important;
  text-align: left;
}
.opciones_perfil_header ul li {
  margin: 20px !important;
  color: white;
}

.abrir_opciones_perfil {
  background-color: transparent;
  border: none;
}

.header-principal .navegacion-header .perfil-header .foto-usuario {
  background-color: var(--color-segundario);
  color: var(--color-textos);
  height: 45px;
  width: 45px;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  /* border-radius: 50%;*/
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.header-principal .navegacion-header .perfil-header .nombre-usuario {
  color: var(--color-textos);
  font-size: 1.1rem;
  text-align: right;
  text-transform: capitalize;
  margin-right: 15px;
}
/*HEADER - FIN NEVEGACION LOGO*/

/*FIN HEADER PRONCIPAL*/

/*ocultar todos los elementos que solon estaran disposinible para resolucion movil*/
.solo-movil {
  display: none;
}

@media (max-width: 1040px) {
  .header-principal .navegacion-header {
    grid-template-columns: 200px 1fr auto;
  }
  .header-principal .navegacion-header ul li {
    margin-right: 15px;
    font-size: 15px;
  }

  .header-principal .navegacion-header .logo-header {
    font-size: 1.3rem;
    margin-left: 15px;
  }
  .header-principal .navegacion-header .perfil-header .foto-usuario {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 960px) {
  .solo-movil {
    display: block;
  }
  .texto_navegacion {
    display: none;
  }
  .header-principal .navegacion-header ul li a:hover {
    border-bottom: transparent;
  }
  .header-principal .navegacion-header ul .lists {
    position: absolute;
    display: none;
    top: 75px;
    background-color: #000000;
    padding: 10px;
  }
  .header-principal .navegacion-header ul li a i {
    font-size: 17px;
    margin-left: -2px;
    margin-right: 0px;
  }

  .header-principal .navegacion-header ul li a img {
    position: relative;
    width: 20px;
  }

  .header-principal .navegacion-header ul .lists li {
    margin-bottom: 15px;
    margin-top: 15px;
    margin-right: 0px;
  }
  .header-principal .navegacion-header ul .lists a:hover {
    border: transparent;
  }

  .header-principal .navegacion-header .perfil-header .foto-usuario {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }
  .btn_abrir_lists_nevegacion {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .abrir_lists_nevegacion {
    display: block !important;
  }

  .btn_abrir_lists_nevegacion img {
    height: 20px;
  }
}

@media (max-width: 600px) {
  .solo-movil {
    display: block;
  }
  .texto_navegacion {
    display: none;
  }

  .header-principal .navegacion-header ul .lists li {
    margin-bottom: 15px;
    margin-top: 15px;
    margin-right: 0px;
  }
  .header-principal .navegacion-header ul .lists a:hover {
    border: transparent;
  }

  .nombre-usuario {
    display: none;
  }

  .header-principal .navegacion-header {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    height: 100%;
  }

  .header-principal .navegacion-header .logo-header {
    font-size: 1rem;
  }

  .header-principal .navegacion-header .perfil-header .foto-usuario {
    height: 35px;
    width: 35px;
    font-size: 17px;
  }
}

.titulo-wrapper {
  color: white;
  margin-left: 10px;

  font-size: 1.5rem;
  margin-bottom: 10px;
}

.slick-prev {
  z-index: 1 !important;
  left: 0 !important;
}

.slick-prev:before {
  position: relative;
  content: "‹" !important;
  font-size: 60px !important;
  margin-left: 25px;
  top: -35px;
}

.slick-next {
  right: 0 !important;
}

.slick-next:before {
  position: relative;
  content: "›" !important;
  font-size: 60px !important;
  margin-left: -50px;
  top: -35px;
}

.item {
  transition: 0.5s;
  padding: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.item img {
  width: 100%;
}

.item:hover {
  transition: 0.5s;
  transform: scale(1.2);
  cursor: pointer;
}
.item:active {
  cursor: grab;
}

/*paginacion*/
.paginacion {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 0px;
  grid-gap: 10px;
  margin: auto;
  margin-bottom: 25px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.paginacion .numero_pagina {
  border-radius: 50%;
  background-color: var(--color-botones);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  font-size: 18.5px;
  font-weight: bold;
  width: 50px;
}
.paginacion a {
  height: 50px;
  width: 50px;
}

.paginacion button {
  border-radius: 50%;
  background-color: var(--color-botones);
  border: none;
  height: 50px;
  width: 50px;
  color: white;
}
.paginacion button:hover {
  cursor: pointer;
  background-color: var(--color-botones-hover);
}
.paginacion button img {
  height: 24px;
}

/*END paginacion*/
