body {
  background-color: #fff;
}

.wrapper.text-rotator{
	/* position: absolute; */
  position: relative;
	width: 600px;
	/* bottom: 450px; */
	z-index: 999;
}

.ie.rotation_container {
  /* font-family: 'Oswald';
  font-weight: 100; */
  /* font-family: 'Playfair Display', serif; */
  font-family: 'Merriweather Sans', sans-serif;
	font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 40px;
  min-height: 80px;
}
.ie.rotation_container .rotation_words {
  height: 2rem;
  display: inline;
  text-indent: 8px;
  
}
.ie.rotation_container .rotation_words figure {
  /* left: 102px;
  top: -80px; */
  left: 0px;
  top: 0px;
  animation: topToBottom 31.5s linear infinite 0s;
  color: #fff;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  color: #fff;
  /* width: 900px; */
  width: 100%;
}
.ie.rotation_container .rotation_words figure:nth-of-type(-n+5) {
  visibility: visible;
}
.ie.rotation_container .rotation_words figure:nth-of-type(n+6) {
  visibility: hidden;
}
.ie.rotation_container .rotation_words figure:nth-of-type(5n+1) {
  animation-delay: 0s;
}
.ie.rotation_container .rotation_words figure:nth-of-type(5n+2) {
  animation-delay: 8.5s;
}
.ie.rotation_container .rotation_words figure:nth-of-type(5n+3) {
  animation-delay: 16s;
}
.ie.rotation_container .rotation_words figure:nth-of-type(5n+4) {
  animation-delay: 22.5s;
}
.ie.rotation_container .rotation_words figure:nth-of-type(5n+5) {
  animation-delay: 29.5s;
}
@keyframes topToBottom {
  5% {
    opacity: 0;
    transform: translateX(0px);
  }
  15% {
    opacity: 1;
    transform: translateX(0px);
  }
  25% {
    opacity: 1;
    transform: translateX(0px);
  }
  30% {
    opacity: 0;
    transform: translateX(20px);
  }
  80% {
    opacity: 0;
  }
}