.carousel-full-1 {
  position: relative;
  height: 310px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
.carousel-full-1 div {
  position: absolute;
  transition: transform 1s, left 1s, opacity 1s, z-index 0s;
  opacity: 1;
}
.carousel-full-1 div img {
  width: 400px;
  transition: width 1s;
  user-select: none;
}
.carousel-full-1 div.hideLeft {
  left: 0%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
.carousel-full-1 div.hideLeft img {
  width: 200px;
}
.carousel-full-1 div.hideRight {
  left: 100%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
.carousel-full-1 div.hideRight img {
  width: 200px;
}
.carousel-full-1 div.prev {
  z-index: 5;
  left: 30%;
  transform: translateY(50px) translateX(-50%);
}
.carousel-full-1 div.prev img {
  width: 300px;
}
.carousel-full-1 div.prevLeftSecond {
  z-index: 4;
  left: 15%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
.carousel-full-1 div.prevLeftSecond img {
  width: 200px;
}
.carousel-full-1 div.selected {
  z-index: 10;
  left: 50%;
  transform: translateY(0px) translateX(-50%);
}
.carousel-full-1 div.next {
  z-index: 5;
  left: 70%;
  transform: translateY(50px) translateX(-50%);
}
.carousel-full-1 div.next img {
  width: 300px;
}
.carousel-full-1 div.nextRightSecond {
  z-index: 4;
  left: 85%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
.carousel-full-1 div.nextRightSecond img {
  width: 200px;
}
.carousel-indicators.full-1 {
  bottom: 25px;
}
.carousel-indicators.full-1 li {
  background-color: #8e8e8e;
  height: 4px;
}
.carousel-indicators_full-1{
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

ol.carousel-indicators_full-1 li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #867f7f;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

.title-banner {
  width: 100%;
  bottom: 30px;
  text-align: center;
  margin: 0px auto;
}
.title-banner h2 {
  display: block;
  width: 95%;
  background-color: rgba(90,90,90,0.7);
  margin: 0px auto;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 200;
}