.moodwall {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: calc(82vh + 143px);
  background: rgb(76, 122, 114);
}

.mood-figures {
  position: relative;
  width: 100%;
  height: 82vh;
}

.mood-wall::after,
.mood-figures::after {
  content: "";
  display: table;
  clear: both;
}


.mood-figure {
  position: relative;
  float: left;
  width: 11.11%;
  height: 50%;
}

.mood-figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 20px;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
  line-height: 1.5;
}

.mood-figure:hover figcaption {
  opacity: 1;
}

.mood-figure figcaption h4 {
  font-weight: 700;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.mood-figure figcaption p {
  font-style: italic;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

.mood-figure figcaption h4,
.mood-figure figcaption p {
  opacity: 0;
  -webkit-transition: .5s ease 0s;
  -o-transition: .5s ease 0s;
  transition: .5s ease 0s;
}

.mood-figure:hover figcaption h4 {
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}

.mood-figure:hover figcaption p {
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s;
}

.mood-figure:hover figcaption h4,
.mood-figure:hover figcaption p {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.mood-figure.compat-object-fit {
   background-size: cover;
   background-position: center center;
}

.mood-figure.compat-object-fit .mood-image {
  display:none;
}

.mood-figure .mood-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pos1 {
  width: 33.33%;
  height: 100%;
}

.pos2, .pos5 {
  width: 44.44%;
}

.pos3, .pos4 {
  width: 22.22%;
}

.stats {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  min-height: 143px;
  height: 18%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 50px;
}

.mood-stat {
  text-align: center;
}

.mood-stat h4 {
  font-size: 7.5rem;
  line-height: 1;
  margin-bottom: .05em;
}

.mood-stat h5 {
  color: #a6bdb9;
}


@media all and (max-width: 767px) {
  .stats {
    padding: 20px 10px;
  }

  .moodwall, .mood-figures, .stats {
    min-height: 0;
    height: auto;
  }

  .unslick.mood-figures {
    white-space: nowrap;
    overflow-x: auto;
  }

  .unslick .mood-figure {
    display: inline-block;
    float: none;
    vertical-align: bottom;
  }

  .mood-figure, .pos1, .pos2, .pos3, .pos4, .pos5 {
    width: 100vw;
    height: 75%;
    min-height: 90vw;
  }

  .mood-figure figcaption {
    bottom: 0;
    top: auto;
    height: auto;
    opacity: 1;
    padding-bottom: 52px;
  }
  
  .mood-figure figcaption p,
  .mood-figure figcaption h4 {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  
  .mood-stat {
    width: 33.33%;
  }

  .mood-stat h4 {
    font-size: 4rem;
  }

  .moodwall .slick-dots {
    bottom: 20px;
  }

  .moodwall .slick-dots li button:before {
    border: 1px solid white;
  }

  .moodwall .slick-dots li.slick-active button:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}