/*
* **********************************
* ################################## ESTILOS DE EXIBITION
* **********************************
*/

/*
========================
======================== 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;
}

/*
========================
======================== EXIBITION
========================
*/

.exhibition {
  color: #2e2e37;
  padding: 5rem 0;
}

.exhibition .titles {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 10% 30px 10%;
}

@media (max-width: 1170px) {
  .exhibition .titles {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.exhibition .titles span {
  background-color: #2474c6;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.exhibition .titles h2 {
  font-size: 4rem;
  line-height: 4.4rem;
  font-weight: 600;
  margin-top: 20px;
}

.exhibition .titles > p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 300;
  margin-top: 20px;
}

.exhibition .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.exhibition .date p {
  font-size: 15px;
  font-weight: 300;
  color: #2e2e37;
}

.exhibition .image {
  height: 500px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .exhibition .image {
    height: 300px;
  }
}

.exhibition .image img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition .video {
  margin-bottom: 30px;
}

.exhibition .htmlchars {
  margin-bottom: 30px;
}

.exhibition .htmlchars p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 300;
}

.exhibition .gallery .titles {
  text-align: center;
  width: 100%;
  margin: 0 0 20px 0;
}

.exhibition .gallery .titles h2 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #2e2e37;
  text-transform: uppercase;
}

.exhibition .gallery .all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exhibition .gallery .item {
  border: 4px solid transparent;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
}

@media (max-width: 680px) {
  .exhibition .gallery .item {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .exhibition .gallery .item {
    height: 120px;
  }
}

.exhibition .gallery .item:hover {
  border-color: #4b3d73;
  transition: 0.4s;
}

.exhibition .gallery .item img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
