
            .carousel-inner {
    width: 100%;
    display: inline-block;
    position: relative;
}
.carousel-inner {
    padding-top: 43.25%;
    display: block;
    content: "";
}
.carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: skyblue;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60%;
    z-index: 9;
    margin-top: 20px;
    text-align: center;
}
.caption h1 {
  color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 23px;
}
.caption h2 {
  color: rgba(255,255,255,.75);
    font-size: 26px;
    font-weight: 300;
}
a.big-button {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    background: #eb7a00;
    background: rgba(255, 0, 0, 0.75);
    padding: 28px 35px;
    border-radius: 3px;
    margin-top: 80px;
    margin-bottom: 0;
    display: inline-block;
}
a.big-button:hover {
    text-decoration: none;
    background: rgba(255, 0, 0, 0.9);
}
a.view-demo {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    display: inline-block;
    margin-top: 35px;
}
a.view-demo:hover {
    text-decoration: none;
    color: #333;
}

.carousel-indicators .active {
  background: #fff;
}
.carousel-indicators li {
  background: rgba(255, 255, 255, 0.4);
  border-top: 20px solid;
  z-index: 15;
}
.repetitionBox {
  margin:auto;
  position:relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width:100%;
  height: 10rem;
  > * {
    font-size:1em;
    line-height: 3.5rem;
    margin: 0;
    animation-iteration-count: infinite;
    animation-timing-function:linear;
  }
  
  &::after{
    content:"";
    position:absolute;
    left:0;right:0;
    top:0;bottom:0;
    background:linear-gradient(transparent,#ff5e57);
    z-index:99;
  }
}

.up > * {
  animation-name: up;
  animation-duration: 1750ms;
}
.down > * {
  animation-name: up;
  animation-duration: 2750ms;
  animation-direction: reverse;
}

@keyframes up {
 100% {
    transform: translateY(-100%);
  }
}
