/* Carousel specific styles */
.mvp-carousel {
  overflow: hidden;
  padding: 3rem;
  position: relative;
  margin: 5rem auto 0 auto;
  width: 20rem;
  box-shadow: 0 0 6rem -1rem #00000048;
}
.container { margin: 20px auto; max-width: 960px; text-align: center; }
.lead { font-size: 1.5rem; font-weight: 300;background: linear-gradient(to right, #000000 0%, #000000 50%,#999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color:transparent; }
.mvp-carousel-wrapper {
  display: flex;
  transition: transform .5s ease;
  position: relative;
}

.mvp-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 12rem;
  min-height: 17rem;
  position: relative;
  left: -100%;
  background: rgb(85, 122, 192);
  box-sizing: border-box;
  padding: 1rem;
  font-size: 1.4rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transition: opacity .6s, background 1.2s, transform .8s, left .5s;
  transform: scale(.75) rotate(5deg);
  box-shadow: 0 0 2rem 0 #00000048;
}

.mvp-card--bottom {
  left: 1.8rem;
  transform: scale(0.9)  rotate(0);
  z-index: 1;
}

.mvp-card--middle {
  left: -8.5rem;
  transform: scale(0.98)  rotate(0);
  z-index: 2;
}

.mvp-card--active {
  transform: scale(1.1) rotate(0);
  opacity: 1;
  background: rgb(22, 32, 51);
  color: white;
  z-index: 3;
  left: -18.5rem;
}

.isHidden{
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.z-index-high{
  z-index: 6;
}

.mvp-carousel__prevBtn,
.mvp-carousel__nextBtn {
  position: absolute;
  background: none;
  top: 50%;
  padding: 10px;
  border: solid rgb(22, 32, 51);
  border-width: 0 3px 3px 0;
  display: inline-block;
  cursor: pointer;
}

.mvp-carousel__nextBtn {
  left: 1.5rem;
  transform: rotate(135deg);
}

.mvp-carousel__prevBtn {
  right: 1.5rem;
  transform: rotate(-45deg);
}
