.gallery_container {
  position: relative;
}
.gallery_container ul.gallery {
  min-height: 300px;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  margin: 30px auto;
  border-radius: 10px;
  border: 4px solid #FFFFFF;
  overflow: hidden;
}
.gallery_container ul.gallery > li {
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.gallery_container ul.gallery > li.active {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.gallery_container ul.bulb_wrapper {
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 25px;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 10px 0px 0px 0px;
}
.gallery_container .description {
  max-width: 1200px;
  margin: auto;
  left: 0;
  right: 0;
}
.gallery_container ul.bulb_wrapper ul {
  float: left;
}
.gallery_container ul.bulb_wrapper li {
  height: 15px;
  width: 15px;
  background-color: rgba(128,128,128, 0.55);
  border-radius: 100%;
  margin: auto;
  cursor: pointer;
}
.gallery_container ul.bulb.active li, .gallery_container ul.bulb:hover li {
  background-color: red;
  border-color: red;
}
.gallery_container .description {
  position: relative;
  top: 0;
  color: #FFF;
  z-index: 9999;
  left: 0;
  background-color: rgba(0,0,0, 0.70);
  width: 100%;
  height: 100px;
}
.gallery_container .description h1 {
  font-size: 30px;
  text-transform: uppercase;
  padding-left: 10px;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gallery_container .description .info.active {
  display: block;
}

@media (min-width: 800px){

  .gallery_container .description {
    position: absolute;
    top: 4px;
    border-radius: 10px 10px 0px 0px;
  }

}
@media (min-width: 1200px){

  .gallery_container ul.bulb_wrapper {
    bottom: 40px;
  }

}
