/*
* **********************************
* ################################## ESTILOS DE LISTING
* **********************************
*/

/*
========================
======================== ALTERA NAV
========================
*/

.header .nav li,
.header-nav-mobile-item {
  display: none;
}

.header .nav li.home-go,
.header-nav-mobile-item-home-go {
  display: block !important;
}

/*
========================
======================== ALTERA FOOTER
========================
*/

.footer {
  padding-top: 3rem;
}

/*
========================
======================== LISTING
========================
*/

.listing {
  padding: 5rem 0;
}

.listing .titles {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.listing .titles h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #f26544;
  text-transform: uppercase;
}

.listing .pagination-objects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 680px) {
  .listing .pagination-objects {
    grid-template-columns: 1fr;
  }
}

.listing .item {
  transition: 0.4s;
}

.listing .item:hover {
  background-color: #271e41;
  border-radius: 10px;
  transition: 0.4s;
}

.listing .item .thumb {
  width: 100%;
  height: 23rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.listing .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.listing .item .thumb .hover {
  opacity: 0;
  background-color: rgba(39, 30, 65, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.listing .item:hover .thumb img {
  transform: scale(1.1);
  transition: 0.4s;
}

.listing .item:hover .thumb .hover {
  opacity: 1;
  transition: 0.4s;
}

.listing .item .desc {
  padding: 10px 20px 20px 20px;
}

.listing .item .desc h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
}

.listing .item:hover .desc h3 {
  text-decoration: underline;
}

.listing .item .desc .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.listing .item .desc .date p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
}
