.carousel {
  width: 80%;
  margin-left: 10%;
  height: auto;
}
.carousel.slick-dotted.slick-slider {
  margin-bottom: 50px;
}
.carousel .slick-next {
  right: -40px;
  width: 32px;
  height: 32px;
}
.carousel .slick-prev {
  left: -40px;
  width: 32px;
  height: 32px;
}
.carousel .slick-prev:before, .slick-next:before {
  font-size: 32px;
  color: grey;
}
.carousel .slick-dots li button:before {
  font-size: 8px;
}
.carousel .slick-dots li:first-child:nth-last-child(1) {
  display: none;
}
.carousel-item {
  height: 100%;
  cursor: pointer;
  margin: 10px;
  padding: 10px;
  position: relative;
}
.carousel-item-title {
  font-weight: 700;
}
a.carousel-item:hover {
  text-decoration: none;
}
a.carousel-item:hover .carousel-item-title {
  text-decoration: underline;
}
.carousel-item-image {
  width: 100%;
  height: auto;
  position: relative;
}
.carousel-item-image img {
  width: 100%;
  height: auto;
}
.carousel-item .play-icon-wrapper {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
.carousel-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 53px;
  height: 53px;
}