* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.sticky {
  width: 100px;
  text-align: center;
  color: #be2221;
  font-size: 16px;
  background: #f0f0f0;
  line-height: 250px;
}
.wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin: auto;
}
.button {
  width: 30px;
  border: none;
  background: transparent;
  color: white;
  font-size: 40px;
  text-align: center;
  outline: none;
  opacity: 0.5;
  -webkit-transition: opacity 300ms ease-out;
          transition: opacity 300ms ease-out;
}
button:hover {
  opacity: 1;
}
.scroller {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  z-index:-2;
  margin-top:-35px;
  width:100%;
}
.items {
  list-style-type: none;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  -webkit-transition: -webkit-transform 1s ease-in-out;
          transition: transform 1s ease-in-out;
}
.item {
  padding: 30px 20px;
  display: inline-block;
  width: 100%;
  height: 450px;
  font-size: 35px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: bold;
  background-size: cover;
  text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  color:white;
}
.item span {
	position:relative;
	top:20%;
	left:15%;
}
.item:nth-child(2) {
  color: #fff;
}
