.media_gallery {
  margin-top: 30px;
  margin-bottom: 30px;
}
.media_gallery img {
  display: block;
  width: 100%;
}
.media_large a {
  display: block;
  margin: 0 0 2.5%;
  text-decoration: none;
}
.media_large.fs-carousel-enabled {
  margin-bottom: 10px;
}
.media_large.fs-carousel-enabled .fs-carousel-item {
  position: relative;
  margin: 0 10px 0 0;
}
.media_large.fs-carousel-enabled .fs-carousel-item:after {
	display: none;
	visibility: hidden;
  width: 100%;
  background: #263238;
  color: #fff;
  content: attr(title);
  /*display: block;*/
  padding: 20px;
}
@media screen and (min-width: 740px) {
  .media_large.fs-carousel-enabled .fs-carousel-item:after {
	display: none;
	visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(38, 50, 56, 0.9);
    color: transparent;
    transition: color 0.25s linear 0s, transform 0.25s ease 0s;
    transform: translateY(100%);
  }
}
.media_large.fs-carousel-enabled .fs-carousel-item.fs-carousel-visible:after {
  color: #fff;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.media_small.fs-carousel-enabled .fs-carousel-item {
  position: relative;
  cursor: pointer;
  margin: 0 10px 0 0;
}
.media_small.fs-carousel-enabled .fs-carousel-item:after {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 188, 212, 0.5);
  border: 0 solid #00bcd4;
  content: '';
  opacity: 0;
  transition: border 0.25s linear, opacity 0.25s linear;
}
.media_small.fs-carousel-enabled .fs-carousel-item.fs-carousel-active:after {
  border-width: 5px;
  opacity: 1;
}