.cpg-gallery {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 50px;
}

.cpg-gallery .cpg-slides-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cpg-gallery .cpg-slides-container > ul {
  width: 100%;
  height: 100%;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;

  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  transform: translate(0,0);

  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.cpg-gallery .cpg-slides-container > ul > li {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;

  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  background-position: center center;
  background-repeat: no-repeat;
}

.cpg-gallery .cpg-slides-container > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
}

.cpg-gallery .cpg-slides-container > ul > li .cpg-caption {
  position: relative;
  left: 0; display: block; text-align: center; width:92%; left:4%;
  /*
  background: #000;
  background: rgba(0,0,0,0.5);
  height: 25px;
  width: 100%;
  padding: 10px 15px;
  overflow: hidden;*/
}

.caption-bottom-bar{ position: relative; display: block; margin:0 30%; height: 3px; background-color: #363636; }

.cpg-gallery .cpg-dots {
  position: absolute;
  bottom: -40px;
  z-index: 99;
  text-align: center;
  width: 100%;
}

.cpg-gallery .cpg-dots li {
  background: #d7d7d7;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;

  -webkit-transition: all .5s;
  -ms-transition: all .5s;
  transition all .5s;
}

.cpg-gallery .cpg-dots li:hover,
.cpg-gallery .cpg-dots li.active {
  background: #a5a4a4;
}

.cpg-gallery .cpg-nav > div {
    position: absolute;
    top: 50%;
    margin-top: -46px;
    background-image: url('arrows.png');
    background-repeat: no-repeat;
    width: 48px;
    height: 94px;
    cursor: pointer;
}

.cpg-gallery .cpg-nav > .prev {
    left: 20px;
    display: none;
    opacity: 0;
    background-position: 0 0;
}

.cpg-gallery .cpg-nav > .next {
    right: 20px;
    background-position: -50px 0;
}