.gallery {
  width: 100%; }

.gallery-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px; }
  .gallery-stage:hover .gallery-caption {
    opacity: 1;
    visibility: visible; }

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f8f8f8; }
  .gallery-slide img {
    display: block;
    margin: 0px auto; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 10px;
  margin: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease; }

.gallery-data {
  width: 100%;
  margin: 0;
  padding: 0; }
  .gallery-data li {
    list-style: none;
    float: left;
    padding: 0px;
    width: 45%;
    margin-right: 1%;
    margin-bottom: 5px; }
    @media screen and (max-width: 800px) {
      .gallery-data li {
        width: 30%; } }
    .gallery-data li .gallery-thumbnail {
      display: block;
      opacity: 0.7;
      width: 100%;
      height: auto; }
      .gallery-data li .gallery-thumbnail:hover {
        cursor: pointer;
        opacity: 1; }
    .gallery-data li .gallery-slide {
      display: none; }

.gallery-pages ul {
  display: block;
  padding: 0px;
  width: auto;
  float: left; }
.gallery-pages li {
  float: left;
  list-style: none;
  margin-right: 10px; }
