.divano:nth-of-type(odd) .divano__intro {
  background-color: #f8f8f2;
}

.divano__intro {
  width: 100%;
  height: 100%;
  padding: 16px;
  color: #267280;
  background-color: #a8c7cc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  p {
    color: #267280;
  }
}

@media (min-width: 992px) {
  .divano__intro {
    aspect-ratio: 1;
    /* height: 270px;
    width: auto;
    max-width: 270px; */
  }
}

.divano-gallery__section {
  height: 100%;
}

.divano-gallery__list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.divano-gallery__item {
  aspect-ratio: 1;
}

@media (min-width: 992px) {
  .divano-gallery__item {
    height: 100%;
    width: auto;
    /* max-width: 270px; */
    max-width: calc(33.333% - 13.333px);
    flex: auto;
  }
}

.divano-gallery__btn {
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.divano-gallery__btn:hover {
  opacity: 0.5;
}

.divano-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divano-gallery__pagination {
  .swiper-pagination-bullet-active {
    background-color: #267280;
  }
}

.divano__modal .modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;

}