.gallery_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.gallery {
  width: 1000px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

@media only screen and (max-width: 1200px) {
  .gallery {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .gallery {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .gallery {
    padding-left: 10px;
    padding-right: 10px;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.gallery img {
  width: 248px;
  height: 248px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1200px) {
  .gallery img {
    width: 31vw;
  }
}

@media only screen and (max-width: 768px) {
  .gallery img {
    width: 45vw;
    height: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .gallery img {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  figure {
    width: 100%;
  }
}
/*# sourceMappingURL=Gallery.css.map */