.cont-h1 {
	margin-top: 80px;
    width: 100%;
    text-align: center;
    font-size: 33px;
	margin-bottom: 0;
}

#coverflow-slideshow {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
}

#coverflow-slideshow .clear {
	clear: both; 
}

#coverflow-slideshow .controls {
	position: relative;
    text-align: center;
    display: inline-block;
    max-width: 800px;
    margin-top: 80px;
    margin-left:  auto;
    margin-right:  auto;
}

#coverflow-slideshow .cbcontrol {
  font-size: 50px;
  float: left;
  color: white;
  width: 48%;
  text-align: center;
  background-color: silver;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cbcontrol .dashicons {
	text-align: center;
    width: 40px;
	vertical-align: middle;
    height: 40px;
	font-weight: bold;
	font-size: 30px;
}

#coverflow-slideshow #cbControlRight {
	right: 30px;
}

#coverflow-slideshow #cbControlLeft {
	left: 30px;
}

#coverflow-slideshow #cbControlRight,
#coverflow-slideshow #cbControlLeft {
    position: relative;
	background: #333;
	width: 60px;
    border-radius: 50%;
	-webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4 ease-out;
}

#coverflow-slideshow #cbControlRight:hover,
#coverflow-slideshow #cbControlLeft:hover {
	background: #ED553B;
	-webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4 ease-out;
}

#coverflow-slideshow .cbcontrol:hover {
	cursor: pointer; 
}

#coverflow-slideshow .stage {
    height: 330px;
    margin: 0 auto;

    width: 100%;
    max-width: 800px;
    z-index: 10;
    position: relative;
    -webkit-backface-visibility: hidden;
}

#coverflow-slideshow .cbImage {
  width: 200px;
  height: 268px;
  float: left;
  margin: 25px 0px 25px 0px;
  color: white;
  box-shadow: 0px 5px 10px 0px #D6D6D6;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

#coverflow-slideshow .cbImage img {
    width: 200px;
    height: 268px;
    object-fit: cover;
}

#coverflow-slideshow .inactiveLeft {
  -webkit-transform: perspective(500px) rotateY(60deg);
  -O-transform: perspective(500px) rotateY(60deg);
  transform: perspective(500px) rotateY(60deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
  box-shadow: 12px 0px 20px 0px #d6d6d6;
}

#coverflow-slideshow .inactiveRight {
  -webkit-transform: perspective(500px) rotateY(-60deg);
  -O-transform: perspective(500px) rotateY(-60deg);
  transform: perspective(500px) rotateY(-60deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
  box-shadow: -12px 0px 20px 0px #d6d6d6;
}

#coverflow-slideshow .active {
  z-index: 100;
  -webkit-transform: perspective(500px) rotateY(0deg);
  -O-transform: perspective(500px) rotateY(0deg);
  transform: perspective(500px) rotateY(0deg);
  -webkit-transition: all .5s ease-out;
  -O-transition: all .5s ease-out;
  transition: all .5s ease-out;
}