.CatSubCats {
  text-align: center;
  width: 100%; }

.CatSubCat {
  display: inline-block;
  width: 23%;
  margin: 0.5%;
  text-decoration: none;
  color: #000; }

.CatSubCat__imageWrap {
  width: 100%;
  display: block; }

.CatSubCat__imageWrap img {
  width: 100%;
  max-width: 500px; }

.CatSubCat__caption {
  display: block;
  font-size: 1.8vw;
  font-weight: bold;
  margin-top: 1%;
  width: 100%; }

.GalleryItems {
  text-align: center; }

.GalleryItem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 23%;
  margin: 0.5%;
  text-decoration: none;
  color: #000;
  background: #ebebeb;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .GalleryItem::before {
    content: "+";
    display: inline-block;
    position: absolute;
    text-align: center;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 25px;
    border: 2.5px solid #fff;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0.1s;
    -o-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s; }
  .GalleryItem::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .GalleryItem:hover::before, .GalleryItem:hover::after {
    opacity: 1; }
  .GalleryItem:hover::after {
    top: 0; }

.GalleryItem--loading {
  opacity: 0.5;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.GalleryItem__imageWrap {
  width: 100%;
  height: 100%;
  display: block; }

.GalleryItem__imageWrap img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.GalleryItem__caption {
  display: block;
  font-size: 1.2vw;
  font-weight: bold;
  margin-top: 1%;
  width: 100%; }

@media only screen and (max-width: 1000px) {
  .CatSubCat {
    width: 49%;
    margin: 0.5%; }
  .CatSubCat__caption {
    font-size: 4vw; }
  .GalleryItem {
    width: 49%;
    margin: 0.5%; }
  .GalleryItem__caption {
    font-size: 2.8vw; } }

/*# sourceMappingURL=gallery.css.map */