  .msmu-carousel {
  background-color: #537;
}

/* Make Container + Image Taller */
.home_feature_figure img {
  height: 90vh;
}

@media (min-width: 980px) {
  .home_feature {
    max-height: 90vh;
  }

  .home_feature_figure .home_feature_image {
    max-height: 90vh;
  }
}

@media (max-width: 979px) {
  .home_feature_figure .home_feature_image {
    max-height: 60vh;
  }

  .home_feature_figure img {
    height: 60vh;
  }
}

/* Widen Width of Title + Description */
.home_feature_title {
  max-width: 90%;
}

.home_feature_description {
  max-width: 65%;
}

/* Arrows */
.mc-arrows {
  position: relative;
}

button.slick-arrow {
  z-index: 1;
  background: #fff;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 10px;
  border-radius: 40px;
}

button.slick-next.slick-arrow {
  right: 10px;
}

button.slick-prev.slick-arrow {
  right: 55px;
}

button.slick-arrow::before {
  content: "";
  border: solid #537;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

button.slick-next.slick-arrow::before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

button.slick-prev.slick-arrow::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

button.slick-arrow:focus {
  background: #537 !important;
}

button.slick-arrow:focus-within::before {
  content: "";
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

/* Play/Pause Button */
.mc-pcontainer {
  position: relative;
}

#mc-playpause {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: absolute;
  bottom: 10px;
  right: 100px;
  cursor: pointer;
}

#mc-playpause:focus {
  background: #fff !important;
}

svg.mc-toggle {
  fill: #537;
  width: 11px;
  margin: 0 auto;
  display: block;
}

/* Misc. Mobile Styles */
@media screen and (max-width:979px) {

  .home_feature_description,
  .home_feature_title {
    max-width: 100%;
  }

  .mc-controls {
    display: flex;
    justify-content: center;
    padding: 10px 0 0 0;
    background-color: #537;
  }

  button.slick-arrow {
    position: initial;
    margin-right: 5px;
  }

  #mc-playpause {
    position: initial;
  }

  button.slick-arrow:focus {
    background: #fff !important;
    border: 2px solid #ea1;
  }

  button.slick-arrow:focus-within::before {
    content: "";
    border: solid #537;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
  }
}