.gallerySite {
  margin-bottom: 1.875rem;
}

.gallerySite__item {
  position: relative;
}
.gallerySite__item::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 60%;
}
.gallerySite__item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .gallerySite__item {
    width: calc((100% - 1 * 1.25rem) / 2 - 0.5px);
    margin-bottom: 1.25rem;
  }
  .gallerySite__item:not(:nth-child(2n)) {
    margin-right: 1.25rem;
  }
}
@media (min-width: 768px) {
  .gallerySite__item {
    width: calc((100% - 3 * 1.25rem) / 4 - 0.25px);
    margin-bottom: 1.25rem;
  }
  .gallerySite__item:not(:nth-child(4n)) {
    margin-right: 1.25rem;
  }
}
/*# sourceMappingURL=gallery__site.css.map */