/* [data-animation-in] {
    opacity: 0;
} */
body {
  font-family: Inter, sans-serif;
}
.slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .slide-red {
  background: red;
}
.slide-blue {
  background: blue;
} */

.slide-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.slide-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.slide-title .h1 {
  font-size: 17vw;
  line-height: 1;
  /* margin: auto; */
  -webkit-text-stroke: 4px white;
  font-family: sans-serif;
  /* color: transparent; */
  color: #fff;
  text-transform: uppercase;
  margin-top: -10vw;
  position: relative;
  z-index: 8;
}
.slide-subtitle .h1 {
  font-size: 17vw;
  line-height: 1;
  /* margin: auto; */
  -webkit-text-stroke: 4px white;
  font-family: sans-serif;
  color: transparent;

  text-transform: uppercase;
  z-index: 9;
  margin-top: -10vw;
}
.slide-img {
  position: absolute;
  width: 78vw;
  z-index: 9;
  right: 0;
  bottom: 5vw;
  /* transform: translateX(100%); */
  /* transition: transform 0.7s ease; */
  /* opacity: 0; */
}
@media screen and (max-width: 500px) {
  .slide-img {
    position: absolute;
    width: 78vw;
    z-index: 9;
    right: 0;
    bottom: 25vh;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;

  padding: 20px;
}
@media screen and (max-width: 500px) {
  .header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.nav {
  /* height: 100%; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-item {
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  text-decoration: none;
}

.bg {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
  height: 100%;
}
.slide-red .wheel {
  position: absolute;
  width: 9.7vw;
  bottom: 15%;
  left: 15%;
}
.slide-red .wheel-back {
  bottom: 15%;
  left: 69%;
}
.slide-blue .wheel {
  position: absolute;
  width: 9.7vw;
  bottom: 9%;
  left: 16%;
}
.slide-blue .wheel-back {
  left: 69%;
}
.slide-black .wheel {
  position: absolute;
  width: 9.7vw;
  bottom: 14.3%;
  left: 15.2%;
}
.slide-black .wheel-back {
  bottom: 14.3%;
  left: 69.2%;
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  animation-play-state: running;
}
.rotating.pause {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  animation-play-state: paused;
}
