/* Gallery / image helpers */
/*
- Pages: 
        - i-omada-mas
        - o-xoros-mas
        - contact
*/

/**************************/
/* Pages START */
/**************************/
.gallery-grid {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.6rem;
  align-items: center;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 3.2rem;
  row-gap: 1.6rem;
  padding: 4.8rem;
  /* padding: 1.6rem; */
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.7s;
  border-radius: 25% 0 25% 0;
}

.gallery-item img:hover {
  transform: scale(1.3);
}
/**************************/
/* Pages START */
/**************************/

.gallery-open {
  cursor: zoom-in;
  display: block;
}
