.img-galeria {
  border-radius: 10px;
  box-shadow: var(--defaultShadow);
  max-width: 100%;
  cursor: pointer;
}

.img-galeria:hover {
  transform: scale(1.05);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.row {
  margin-bottom: 30px;
}

/* MOBILE */
@media only screen and (max-width: 800px) {
  .col-6 {
    margin-bottom: 30px;
  }
}

/* WEB */
@media only screen and (min-width: 801px) {}