@charset "UTF-8";
/* Estilos globales */
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Asegúrate de que el menú esté por encima del contenido */
  background-color: white;
}

/* Estilos para el menú en pantalla grande */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 30px 30px;
  color: black;
}

.navbar-logo a {
  font-size: 28px;
  font-weight: bold;
  color: #BA2B32;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .navbar-logo a {
    font-size: 28px;
  }
}

.navbar-links {
  display: none;
  align-items: center;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100vw;
  background-color: var(--rojo);
  top: 60px;
  left: 0;
}
@media (min-width: 1025px) {
  .navbar-links {
    display: flex;
    flex-direction: row;
    position: relative;
    top: unset;
    left: unset;
    background-color: unset;
    width: unset;
    padding: unset;
  }
}
.navbar-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 200;
  top: 117px;
  padding: 50px 0;
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 800px) {
  .navbar-links.active {
    gap: 31px;
  }
}
.navbar-links.active li {
  margin-left: 0;
}
.navbar-links.active li a {
  color: white;
  font-size: 24px;
}
@media (min-width: 800px) {
  .navbar-links.active li a {
    font-size: 30px;
  }
}
.navbar-links.active li a:hover {
  color: inherit;
}
.navbar-links.active li a.link-destacado {
  color: white;
}
.navbar-links.active li.buscador a svg {
  height: 24px;
}
.navbar-links.active li.buscador a svg path {
  fill: white;
}
.navbar-links li {
  margin-left: 22px;
}
@media (max-width: 768px) {
  .navbar-links li {
    margin: 15px 0;
  }
}
.navbar-links li.buscador a {
  display: flex;
}
.navbar-links li.buscador a svg {
  height: 17px;
}
.navbar-links li.buscador a svg path {
  fill: black;
}
.navbar-links li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
}
@media (min-width: 1025px) {
  .navbar-links li a {
    font-size: 16px;
  }
}
.navbar-links li a:hover {
  color: var(--rojo);
}
.navbar-links li a.link-destacado {
  color: var(--rojo);
  font-weight: bold;
  text-decoration: underline;
}
.navbar-links li a.link-destacado:hover {
  text-decoration: none;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle .bar {
  width: 40px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--rojo);
}

.hero-slider {
  width: 100%;
  height: 565px;
  position: relative;
  overflow: hidden;
}
.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Asegura que las imágenes llenen el espacio */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-content {
  color: white;
  z-index: 2;
  padding: 0 30px 65px 30px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (min-width: 480px) {
  .slide-content {
    padding: 0 30px 65px 75px;
  }
}
@media (min-width: 1100px) {
  .slide-content {
    padding: 0 0 114px 140px;
  }
}

.slide-content h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  width: 100%;
  position: relative;
  color: white;
}
@media (min-width: 480px) {
  .slide-content h1 {
    font-size: 2.5rem;
    width: 80%;
  }
}
@media (min-width: 900px) {
  .slide-content h1 {
    font-size: 3.3125rem;
    line-height: 3.1875rem;
    width: 50%;
  }
}
.slide-content h1:before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: var(--rojo);
  display: block;
  position: absolute;
  top: 5px;
  left: -10px;
}
@media (min-width: 900px) {
  .slide-content h1:before {
    width: 4px;
    height: 39px;
    top: 8px;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  background: var(--oscuro);
  opacity: 1;
  width: 10px;
  height: 10px;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #EDEDED;
}

:root {
  --rojo: #BA2B32;
  --oscuro: #2F3237;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.tag {
  font-size: 14px;
  font-weight: bold;
  color: var(--rojo);
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .tag {
    font-size: 19px;
  }
}

ul {
  list-style-type: disc;
  padding-inline-start: 40px;
}

ol {
  list-style-type: decimal;
  padding-inline-start: 40px;
}

h1 {
  font-family: "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  font-weight: 900;
  color: var(--oscuro);
  text-transform: capitalize;
  position: relative;
}
@media (min-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 900px) {
  h1 {
    font-size: 3.3125rem;
    line-height: 3.1875rem;
  }
}
h1:before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: var(--rojo);
  display: block;
  position: absolute;
  top: 5px;
  left: -10px;
}
@media (min-width: 900px) {
  h1:before {
    width: 4px;
    height: 39px;
    top: 8px;
  }
}

h2 {
  font-family: "Arial Black", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--oscuro);
}
@media (min-width: 480px) {
  h2 {
    font-size: 38px;
  }
}

.btn {
  border-style: solid;
  border-width: 2px;
  border-color: var(--rojo);
  border-radius: 3.5px;
  color: var(--rojo);
  padding: 18px 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  display: table;
  text-align: center;
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 480px) {
  .btn {
    margin-top: 0;
    width: unset;
  }
}
.btn:hover {
  background-color: var(--rojo);
  color: white;
}

.container {
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 480px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1100px) {
  .container {
    padding: 0;
  }
}

.content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .content {
    max-width: 1024px;
    padding: 73px 0 43px;
  }
}
@media (min-width: 1100px) {
  .content {
    max-width: 1230px;
    padding: 73px 0 43px;
  }
}

.content-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
@media (min-width: 480px) {
  .content-header {
    padding-bottom: 90px;
  }
}
.content-items {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 480px) {
  .content-items {
    flex-direction: row;
  }
}

.item:hover {
  background-color: var(--oscuro);
}
.item:hover .caption h3, .item:hover .caption p {
  color: white;
}
.item .img {
  width: 100%;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
}
.item .caption {
  padding: 44px 18px 20px;
  display: block;
}
@media (min-width: 480px) {
  .item .caption {
    padding: 44px 18px 80px;
  }
}
.item .caption h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  padding-bottom: 15px;
}
.item .caption p {
  font-size: 17px;
  line-height: 24px;
}

.mobile {
  display: inherit;
}
@media (min-width: 480px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 480px) {
  .desktop {
    display: inherit;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 19px;
  color: #2F3237;
  background-color: #DDDDDE;
  border: solid 0.25px #2F3237;
  padding: 10px 20px;
  border-radius: 1px;
  height: 42px;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23BA2B32"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 35px;
}
@media (min-width: 480px) {
  select {
    min-width: 230px;
    width: unset;
  }
}

input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 19px;
  color: #2F3237;
  background-color: #DDDDDE;
  border: solid 0.25px #2F3237;
  padding: 10px 20px;
  border-radius: 1px;
  height: 42px;
  width: 100%;
  background-image: url("/img/form/select-search.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
}
@media (min-width: 480px) {
  input[type=search] {
    min-width: 230px;
    width: unset;
  }
}

.novedades {
  padding: 50px 30px;
}
@media (min-width: 480px) {
  .novedades {
    padding: 0 30px;
  }
}
.novedades .content {
  padding-bottom: 0px;
}
@media (min-width: 480px) {
  .novedades .content {
    padding-bottom: 130px;
  }
}
.novedades .content-items .item {
  width: 100%;
  background-color: #DDDDDE;
}
.novedades .content-items .item:hover {
  background-color: var(--oscuro);
}

.formacion {
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  padding-top: 15px;
}
@media (min-width: 900px) {
  .formacion {
    padding-top: 80px;
  }
}
.formacion .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px 80px;
}
@media (min-width: 480px) {
  .formacion .content {
    padding: 30px 0px 43px;
  }
}
@media (min-width: 1025px) {
  .formacion .content {
    padding: 73px 30px 43px;
  }
}
.formacion .acceso-campus {
  position: absolute;
  width: 94%;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--rojo);
  color: white;
  padding: 40px 70px;
  top: -80px;
}
@media (min-width: 900px) {
  .formacion .acceso-campus {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .formacion .acceso-campus {
    width: 1000px;
  }
}
.formacion .acceso-campus h3 {
  font-family: "Arial Black", sans-serif;
  font-size: 28px;
  line-height: 50px;
  color: white;
}
@media (min-width: 480px) {
  .formacion .acceso-campus h3 {
    font-size: 38px;
  }
}
.formacion .acceso-campus .campus-register-btn {
  position: unset;
  bottom: unset;
}
.formacion .acceso-campus .btn {
  border-color: white;
  border-width: 2px;
  border-radius: 3.5px;
  color: white;
  padding: 16px 70px;
  width: unset;
  margin-bottom: unset;
  font-size: 18px;
}
@media (min-width: 480px) {
  .formacion .acceso-campus .btn {
    font-size: 21px;
  }
}
.formacion .acceso-campus .btn:hover {
  background-color: white;
  color: var(--rojo);
}
.formacion .content-header {
  width: 100%;
  align-items: flex-end;
  padding-bottom: 60px;
}
@media (min-width: 1025px) {
  .formacion .content-header {
    padding-bottom: 90px;
  }
}
.formacion .content-header .header {
  max-width: 100%;
}
@media (min-width: 480px) {
  .formacion .content-header .header {
    max-width: 50%;
  }
}
@media (min-width: 1025px) {
  .formacion .content-header .header {
    max-width: 30%;
  }
}
.formacion .content-header p {
  font-size: 24px;
  line-height: 30px;
}
.formacion .content-header .btn {
  background-color: var(--rojo);
  color: white;
  width: 100%;
}
@media (min-width: 480px) {
  .formacion .content-header .btn {
    width: unset;
  }
}
.formacion .content-header .btn:hover {
  background-color: transparent;
  color: var(--rojo);
}
.formacion .content-items .item {
  background-color: var(--rojo);
}
.formacion .content-items .item:hover {
  background-color: var(--oscuro);
}
.formacion .content-items .item .caption h3,
.formacion .content-items .item .caption p {
  color: white;
}

.acceso-campus {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background-color: var(--rojo);
  color: white;
  padding: 40px 30px;
}
@media (min-width: 480px) {
  .acceso-campus {
    align-items: flex-start;
  }
}
@media (min-width: 900px) {
  .acceso-campus {
    display: none;
  }
}
.acceso-campus h3 {
  font-family: "Arial Black", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: white;
}
@media (min-width: 480px) {
  .acceso-campus h3 {
    font-size: 38px;
    line-height: 50px;
  }
}
.acceso-campus .campus-register-btn {
  position: absolute;
  bottom: 50px;
  font-size: 16px;
  text-decoration: underline;
  margin-left: 55px;
}
@media (min-width: 480px) {
  .acceso-campus .campus-register-btn {
    font-size: 21px;
    margin-left: unset;
  }
}
.acceso-campus .btn {
  border-color: white;
  border-width: 4px;
  border-radius: 5px;
  color: white;
  padding: 16px 70px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  font-size: 23px;
}
.acceso-campus .btn:hover {
  background-color: white;
  color: var(--rojo);
}

.investigaciones .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 0 auto;
  max-width: 1340px;
}
@media (min-width: 480px) {
  .investigaciones .content {
    flex-direction: row;
    gap: 90px;
  }
}
.investigaciones .content > div {
  width: 100%;
}
@media (min-width: 480px) {
  .investigaciones .content > div {
    width: 50%;
  }
}
.investigaciones .content-header {
  display: flex;
  flex-wrap: wrap;
}
.investigaciones .content-header p {
  font-size: 18px;
  line-height: 24px;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 480px) {
  .investigaciones .content-header p {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 65px;
  }
}

.legislacion-y-politica.container {
  padding: 0;
  margin: 40px 0;
}
@media (min-width: 480px) {
  .legislacion-y-politica.container {
    margin: 0;
  }
}
@media (min-width: 900px) {
  .legislacion-y-politica.container {
    padding: 0 30px;
  }
}
.legislacion-y-politica .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 0 0;
  max-width: 1340px;
}
.legislacion-y-politica .content > div {
  width: 100%;
}
@media (min-width: 480px) {
  .legislacion-y-politica .content > div {
    width: 70%;
  }
}
@media (min-width: 1025px) {
  .legislacion-y-politica .content > div {
    width: 50%;
  }
}
@media (min-width: 480px) {
  .legislacion-y-politica .content > div:first-child {
    min-width: 867px;
  }
}
.legislacion-y-politica .content-header {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--rojo);
  padding: 70px 40px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}
@media (min-width: 480px) {
  .legislacion-y-politica .content-header {
    margin-left: -77%;
  }
}
@media (min-width: 900px) {
  .legislacion-y-politica .content-header {
    padding: 50px 80px;
    margin-left: -55%;
  }
}
@media (min-width: 1025px) {
  .legislacion-y-politica .content-header {
    min-width: 840px;
    margin-left: -390px;
  }
}
.legislacion-y-politica .content-header h2,
.legislacion-y-politica .content-header .tag {
  color: white;
}
.legislacion-y-politica .content-header p {
  font-size: 16px;
  line-height: 20px;
  padding-top: 25px;
  padding-bottom: 20px;
  color: white;
}
@media (min-width: 480px) {
  .legislacion-y-politica .content-header p {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 40px;
  }
}
.legislacion-y-politica .content-header .btns {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  .legislacion-y-politica .content-header .btns {
    gap: 36px;
  }
}
.legislacion-y-politica .content-header .btns .btn {
  border-color: white;
  color: white;
}
@media (min-width: 480px) {
  .legislacion-y-politica .content-header .btns .btn {
    font-size: 21px;
  }
}
.legislacion-y-politica .content-header .btns .btn:hover {
  background-color: white;
  color: var(--rojo);
}

.recursos-audiovisuales {
  overflow: hidden;
}
.recursos-audiovisuales .content-items {
  flex-direction: row;
}
.recursos-audiovisuales .item {
  width: 100%;
}
@media (min-width: 480px) {
  .recursos-audiovisuales .item {
    width: 33.33%;
  }
}
.recursos-audiovisuales .item:hover {
  background-color: unset;
}
.recursos-audiovisuales .item .img {
  height: 170px;
}
@media (min-width: 480px) {
  .recursos-audiovisuales .item .img {
    height: 204px;
  }
}
.recursos-audiovisuales .item h3 {
  font-size: 14px;
  line-height: 18px;
  padding-top: 0px;
}
@media (min-width: 480px) {
  .recursos-audiovisuales .item h3 {
    font-size: 18px;
    line-height: 23px;
    padding-top: 20px;
  }
}
.recursos-audiovisuales .btn {
  margin-top: 40px;
}
@media (min-width: 480px) {
  .recursos-audiovisuales .btn {
    margin-top: inherit;
  }
}

.sostenibilidad {
  padding-bottom: 70px;
}
@media (min-width: 480px) {
  .sostenibilidad {
    padding-bottom: 170px;
  }
}
.sostenibilidad .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 48px;
  margin: 60px 0 0;
  max-width: 1340px;
}
@media (min-width: 480px) {
  .sostenibilidad .content {
    flex-direction: row;
    margin: 0 0 0 auto;
  }
}
.sostenibilidad .content > div {
  width: 100%;
}
@media (min-width: 480px) {
  .sostenibilidad .content > div {
    width: 50%;
  }
}
.sostenibilidad .content-header {
  display: flex;
  flex-wrap: wrap;
}
.sostenibilidad .content-header p {
  font-size: 18px;
  line-height: 24px;
  padding-top: 25px;
  padding-bottom: 15px;
}
@media (min-width: 480px) {
  .sostenibilidad .content-header p {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 65px;
  }
}
.sostenibilidad .content-items {
  margin: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px 10px;
}
@media (min-width: 480px) {
  .sostenibilidad .content-items {
    margin: -163px auto 0;
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .sostenibilidad .content-items {
    max-width: 1024px;
    margin: -163px auto 0;
  }
}
@media (min-width: 1100px) {
  .sostenibilidad .content-items {
    flex-wrap: nowrap;
    max-width: 1230px;
    margin: -236px auto 0;
  }
}
.sostenibilidad .content-items .item {
  background-color: #EDEDED;
  padding: 15px;
  width: calc(50% - 10px);
}
@media (min-width: 480px) {
  .sostenibilidad .content-items .item {
    padding: 25px;
    width: calc(50% - 30px);
  }
}
@media (min-width: 900px) {
  .sostenibilidad .content-items .item {
    width: 48%;
  }
}
.sostenibilidad .content-items .item .tag-item {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  color: var(--rojo);
  text-transform: uppercase;
  border-left: solid 4px var(--rojo);
  padding-left: 5px;
}
@media (min-width: 480px) {
  .sostenibilidad .content-items .item .tag-item {
    font-size: 19px;
    line-height: 26px;
  }
}
.sostenibilidad .content-items .item h3 {
  font-family: "Arial Black", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 20px 0 40px;
}
@media (min-width: 480px) {
  .sostenibilidad .content-items .item h3 {
    font-size: 34px;
    line-height: 41px;
    padding: 54px 0 60px;
    min-height: 200px;
  }
}
.sostenibilidad .content-items .item p {
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
}
@media (min-width: 480px) {
  .sostenibilidad .content-items .item p {
    font-size: 17px;
    line-height: 19px;
    text-align: left;
  }
}

footer.container {
  padding: 0;
}
footer .footer-top {
  background-color: var(--rojo);
  color: white;
  padding: 0 30px;
}
footer .footer-top .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 15px;
  padding: 40px 0;
}
@media (min-width: 480px) {
  footer .footer-top .content {
    flex-direction: row;
    gap: unset;
  }
}
footer .footer-top .logo {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 480px) {
  footer .footer-top .logo {
    font-size: 28px;
  }
}
footer .footer-top .redes {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-top .redes .icon {
  border: solid thin white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (min-width: 480px) {
  footer .footer-top .redes .icon {
    width: 54px;
    height: 54px;
  }
}
footer .footer-top .redes .icon:hover {
  background-color: white;
}
footer .footer-top .redes .icon:hover svg path {
  fill: var(--rojo);
}
footer .footer-top .redes .icon.icon-facebook svg {
  width: 9px;
}
@media (min-width: 480px) {
  footer .footer-top .redes .icon.icon-facebook svg {
    width: 12px;
  }
}
footer .footer-top .redes .icon.icon-x svg {
  width: calc(25px - 25%);
}
@media (min-width: 480px) {
  footer .footer-top .redes .icon.icon-x svg {
    width: 25px;
  }
}
footer .footer-top .redes .icon.icon-instagram svg {
  width: calc(22px - 25%);
}
@media (min-width: 480px) {
  footer .footer-top .redes .icon.icon-instagram svg {
    width: 22px;
  }
}
footer .footer-top .redes .icon.icon-youtube svg {
  width: calc(24px - 25%);
}
@media (min-width: 480px) {
  footer .footer-top .redes .icon.icon-youtube svg {
    width: 24px;
  }
}
footer .footer-bottom {
  padding: 0 30px;
}
footer .footer-bottom .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 10px;
  padding: 70px 0;
}
@media (min-width: 480px) {
  footer .footer-bottom .content {
    flex-wrap: nowrap;
    gap: unset;
  }
}
footer .footer-bottom .content .col {
  width: calc(50% - 10px);
}
@media (min-width: 480px) {
  footer .footer-bottom .content .col {
    width: unset;
  }
}
footer .footer-bottom b {
  font-size: 16px;
  padding-bottom: 10px;
  display: block;
}
@media (min-width: 480px) {
  footer .footer-bottom b {
    font-size: 21px;
    padding-bottom: 30px;
  }
}
footer .footer-bottom ul {
  list-style-type: disc;
  list-style-position: inside;
}
footer .footer-bottom ul li, footer .footer-bottom ul a {
  font-size: 12px;
}
@media (min-width: 480px) {
  footer .footer-bottom ul li, footer .footer-bottom ul a {
    font-size: 15px;
  }
}

.single-container {
  padding-bottom: 35px;
}
@media (min-width: 480px) {
  .single-container {
    padding-bottom: 70px;
  }
}
.single-container .content {
  padding-top: 25px;
}
@media (min-width: 480px) {
  .single-container .content {
    padding-top: 50px;
  }
}
.single-container .hero {
  width: 100%;
  height: 440px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-container .tag {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: white;
  background-color: #BA2B32;
  padding: 12px 30px;
  display: table;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .single-container .tag {
    margin-bottom: 45px;
  }
}
.single-container h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 20px 0 30px;
}
@media (min-width: 480px) {
  .single-container h3 {
    font-size: 24px;
    margin: 45px 0 60px;
  }
}
.single-container p, .single-container li {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 480px) {
  .single-container p, .single-container li {
    font-size: 20px;
    line-height: 36px;
  }
}
.single-container p > a, .single-container li > a {
  color: #BA2B32;
}
.single-container figure {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}
@media (min-width: 480px) {
  .single-container figure {
    gap: 40px;
    flex-wrap: nowrap;
    margin-bottom: 50px;
  }
}

.category h1 {
  padding-left: 10px;
}
@media (min-width: 1025px) {
  .category h1 {
    padding-bottom: 57px;
  }
}
.category h1:before {
  left: 0;
}
.category .filter {
  background-color: #BA2B32;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}
@media (min-width: 1025px) {
  .category .filter {
    padding: 30px 50px;
    margin: 0 30px 21px;
  }
}
.category .filter .content {
  padding: unset;
}
.category .filter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 830px) {
  .category .filter form {
    justify-content: space-between;
    gap: unset;
  }
}
.category .filter form > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1025px) {
  .category .filter form > div {
    gap: 60px;
  }
}
.category .filter form > div input[type=search] {
  width: 100%;
}
@media (min-width: 480px) {
  .category .filter form > div input[type=search] {
    min-width: 220px;
    max-width: 220px;
    width: unset;
  }
}
@media (min-width: 830px) {
  .category .filter form > div input[type=search] {
    min-width: 230px;
    max-width: unset;
  }
}
.category .filter form .btn {
  border-color: white;
  color: white;
  cursor: pointer;
}
.category .filter form .btn:hover {
  background-color: white;
  color: #BA2B32;
}
.category .content-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .category .content-items {
    grid-gap: 60px 30px;
    margin-bottom: unset;
  }
}
.category .content-items .item {
  background-color: #DDDDDE;
}
.category .content-items .item:hover {
  background-color: var(--oscuro);
}
.category .content-items .item:hover .caption h2, .category .content-items .item:hover .caption h3,
.category .content-items .item:hover .caption p, .category .content-items .item:hover .caption .date {
  color: white;
}
.category .content-items .item .tag {
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  color: white;
  background-color: #BA2B32;
  padding: 8px 20px;
  display: table;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .category .content-items .item .tag {
    margin-bottom: 12px;
  }
}
.category .content-items .item .caption {
  padding: 44px 18px 20px;
  display: block;
}
@media (min-width: 480px) {
  .category .content-items .item .caption {
    padding: 10px 18px 40px;
  }
}
.category .content-items .item .caption h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  padding-bottom: 23px;
}
.category .content-items .item .caption h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 20px 0 30px;
}
.category .content-items .item .caption p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 32px;
}
.category .content-items .item .caption .date {
  font-size: 12px;
}
