@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=VT323&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font: 16px/1 "Oswald";
}

figure {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(25deg, dodgerblue, rgb(71, 255, 255));
}
figure h1 {
  position: absolute;
  top: 7vh;
  left: 4vw;
  font-size: 0px;
}
figure h1 strong {
  font-size: 40px;
  line-height: 1.4px;
  color: #fff;
  letter-spacing: 2px;
}
figure h1 span {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 5px;
}
figure .menu {
  position: absolute;
  top: 6vh;
  right: 10vh;
  font-size: 30px;
  color: #ffffff;
}
figure section {
  position: absolute;
  width: 20vw;
  height: 65vh;
  left: 50%;
  margin-left: -10vw;
  margin-top: -32.5vh;
  top: 150%;
  transition: 1s;
}
figure section article {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
figure section article.on .inner {
  opacity: 1;
  transform: scale(1);
}
figure section article .inner {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 5vh 2.5vw 8vh;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(48, 48, 48, 0.1);
  opacity: 0.6;
  transform: scale(0.8);
  transition: 1s;
}
figure section article .inner .pic {
  width: 15vw;
  height: 15vw;
  position: relative;
  background-size: 0;
}
figure section article .inner .pic::before, figure section article .inner .pic::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: inherit;
}
figure section article .inner .pic::before {
  transform: translateY(10%);
  filter: blur(20px) brightness(130%);
}
figure section article .inner .pic.on::before {
  animation: rotation2 4s linear infinite;
}
figure section article .inner .pic.on::after {
  animation: rotation 4s linear infinite;
}
figure section article .inner .pic .dot {
  position: absolute;
  width: 2.5vw;
  height: 2.5vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.3);
}
figure section article .inner .text {
  position: absolute;
  width: 15vw;
  text-align: center;
  margin-top: 60px;
  letter-spacing: 1px;
}
figure section article .inner .text h2 {
  margin-bottom: 20px;
}
figure section article .inner .text p {
  color: #777;
}
figure section article .inner .text .control {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}
figure section article .inner .text .control li {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.5s;
}
figure section article .inner .text .control li.play {
  transform: scale(1.5);
  opacity: 0.8;
}
figure section article .inner .text .control li:hover {
  transform: scale(1.5);
  opacity: 1;
}
figure section article .inner .text .control li:hover.play {
  transform: scale(2);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: translate(10%) rotate(0deg);
  }
  100% {
    transform: translate(10%) rotate(360deg);
  }
}
figure .btnPrev {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-20vw, -50%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0px;
  padding-left: 20px;
  cursor: pointer;
}
figure .btnPrev::before, figure .btnPrev::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform-origin: left center;
  transform: rotate(-180deg);
  transition: 0.5s;
  background-color: #fff;
}
figure .btnPrev::after {
  transform: rotate(180deg);
}
figure .btnPrev span {
  font-size: 18px;
  color: #fff;
  transition: 0.5s;
  opacity: 1;
}
figure .btnPrev:hover span {
  transform: translateX(100%);
  opacity: 0;
}
figure .btnPrev:hover::before {
  transform: rotate(-30deg);
}
figure .btnPrev:hover::after {
  transform: rotate(30deg);
}
figure .btnNext {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(calc(20vw - 60px), -50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0px;
  padding-left: 0px;
  padding-right: 20px;
  cursor: pointer;
}
figure .btnNext::before, figure .btnNext::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform-origin: right center;
  transform: rotate(-180deg);
  transition: 0.5s;
  background-color: #fff;
}
figure .btnNext::after {
  transform: rotate(180deg);
}
figure .btnNext span {
  font-size: 18px;
  color: #fff;
  opacity: 1;
  transition: 0.5s;
}
figure .btnNext:hover span {
  transform: translateX(-100%);
  opacity: 0;
}
figure .btnNext:hover::before {
  transform: rotate(-30deg);
}
figure .btnNext:hover::after {
  transform: rotate(30deg);
}
figure > p {
  position: absolute;
  bottom: 7vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 1px;
  letter-spacing: 5px;
  color: #fff;
}/*# sourceMappingURL=style.css.map */