/* https://bootsnipp.com/snippets/QoZeX */

/*
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
}

*/ 

.gallery {
  position: relative;
  padding: 10px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: flex-start;
  align-items: center;
}

.gallery div.fighead {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  cursor: pointer;
  min-height: 265px;
  margin: 1px;
  border-radius: 10px;
  border: solid 1px #050505;
}

.gallery div.fighead a.figimg {
  display: block;
  padding: 5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 235px;
}


.gallery div.fighead a.figimg img {
  max-width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  padding: 2px;  
}

.gallery div.fighead div.figcaption {
  margin: 0;
  padding: 0;
  font-size: 13px;
  border: none;
  width: 100%;
  height: 100%;
}

.gallery div.fighead div.figcaption a {
  display: block;
  padding: 5px;
  border-radius: 10px;
}

.gallery div.fighead div.figcaption span.figwithoutlink {
  display: block;
  padding: 5px;
  height: 30px;
  width: 100%;
  border-radius: 10px;
}

.gallery div.fighead div.figcaption span.figtitle {
  padding: 5px;
  height: 30px;
  width: 100%;
  border-radius: 10px;
  font-style: italic;
  font-size: 12px;
  color: #888;
}
