.gallery .images .image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  display: none;
}

.gallery .images .image.active {
  display: block;
}

.gallery .images .image .content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: contain;
}

.gallery .thumbs {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.gallery .thumbs .thumb {
  box-sizing: border-box;

  background: center no-repeat;
  background-size: 100%;
  display: inline-block;
  position: relative;

  margin: 4px;
  opacity: 0.5;
  border: 0;
  width: 110px;
  height: 75px;
  cursor: pointer;
    transition: all 0.5s ease;
}


@media (max-width: 768px) {
  .gallery .thumbs .thumb {
    width: 80px;
    height: 65px;
  }

  .gallery .thumbs .thumb:before {
    left: 25px;
  }
}

.gallery .thumbs .thumb.active {
  border-color: #ed1e26;
    opacity: 1;
}
.gallery .images {
    padding:0rem;
}

