@charset "utf-8";
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
  background: #000;
}

.ws-pages {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.ws-bgs {
  position: relative;
  height: 100%;
}
.ws-bg {
  display: flex;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.ws-pages.s--ready .ws-bg {
  background: none;
}
.ws-bg__part {
  overflow: hidden;
  position: relative;
  height: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ws-bg__part-inner {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.ws-bg:nth-child(1) {
  background-image: url(../img/1.jpg);
}
.ws-bg:nth-child(1) .ws-bg__part-inner {
  background-image: url(../img/2.jpg);
}
.ws-bg:nth-child(2) {
  background-image: url(../img/3.jpg);
}
.ws-bg:nth-child(2) .ws-bg__part-inner {
  background-image: url(../img/4.jpg);
}
.ws-bg:nth-child(3) {
  background-image: url(../img/5.jpg);
}
.ws-bg:nth-child(3) .ws-bg__part-inner {
  background-image: url(../img/6.jpg);
}
.ws-bg:nth-child(4) {
  background-image: url(../img/7.jpg);
}
.ws-bg:nth-child(4) .ws-bg__part-inner {
  background-image: url(../img/1.jpg);
}
.ws-bg:nth-child(5) {
  background-image: url(../img/2.jpg);
}
.ws-bg:nth-child(5) .ws-bg__part-inner {
  background-image: url(../img/3.jpg);
}
.ws-text {
  overflow: hidden;
  position: absolute;
  left: 15%;
  top: 50%;
  width: 70%;
  height: 50px;
  margin-top: -25px;
  pointer-events: none;
}
.ws-text__heading {
  display: flex;
  justify-content: space-between;
  height: 100%;
  font-size: 30px;
  line-height: 50px;
  color: #fff;
}