* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
ul,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
  outline: 0;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: linear-gradient(25deg, violet, pink);
}
h1 {
  position: absolute;
  top: 7vh;
  left: 4vw;
  font-size: 0;
}
h1 strong {
  font-size: 36px;
  font-family: "arial";
  color: #fff;
  line-height: 1.4;
  letter-spacing: 1px;
}
h1 span {
  font-size: 12px;
  font-family: "arial";
  color: #fff;
  opacity: 0.8;
  line-height: 1;
  letter-spacing: 1px;
}
.menu {
  position: absolute;
  top: 8vh;
  right: 4vw;
  font-size: 24px;
  color: #fff;
}
.footer {
  position: absolute;
  bottom: 7vh;
  left: 50%;
  transform: translateX(-50%);
  font: 12px/1 "arial";
  color: #fff;
  letter-spacing: 2px;
  opacity: 0.8;
}

section {
  width: 20vw;
  height: 65vh;
  position: absolute;
  left: 50%;
  top: 140%;
  margin-top: -25vh;
  margin-left: -10vw;
  transition: 1s;
}
section article {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
section article .inner {
  width: 100%;
  height: 100%;
  background: #f0f7ff;
  padding: 5vh 2.5vw 8vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
  transform: scale(0.8);
  transition: opacity 1s, transform 1s;
}
section article.on .inner {
  opacity: 0.9;
  transform: scale(1.1);
}

section article .inner .pic {
  width: 15vw;
  height: 15vw;
  margin: 0px auto;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 200%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section article .inner .pic::before,
section article .inner .pic::after {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: inherit;
  background-position: center;
  background-repeat: inherit;
  background-size: cover;
  transform-origin: center center;
}
section article .inner .pic::before {
  transform: translateY(10%);
  filter: blur(20px) brightness(1.6);
}
section article .inner .pic .dot {
  width: 3vw;
  height: 3vh;
  border-radius: 50%;
  background: #e4f1ff;
  position: relative;
  z-index: 3;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

section article .inner .txt {
  text-align: center;
  position: relative;
  z-index: 3;
}
section article .inner .txt h2 {
  font-size: 20px;
  font-family: "arial";
  color: #222;
  margin-bottom: 2vh;
}
section article .inner .txt p {
  font-size: 12px;
  margin-bottom: 3vh;
  color: #777;
}
section article .inner .txt ul {
  display: flex;
  justify-content: space-around;
}
section article .inner .txt ul li {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.5s;
}
section article .inner .txt ul li.play {
  transform: scale(1.5);
  opacity: 0.9;
}
section article .inner .txt ul li:hover {
  transform: scale(1.5);
  opacity: 0.8;
}
section article .inner .txt ul li.play:hover {
  transform: scale(2);
  opacity: 1;
}

@keyframes ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ani2 {
  0% {
    transform: translateY(10%) rotate(0deg);
  }
  100% {
    transform: translateY(10%) rotate(360deg);
  }
}
section article .inner .pic.on::after {
  animation: ani 4s linear infinite;
}
section article .inner .pic.on::before {
  animation: ani2 4s linear infinite;
}

.btnPrev {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20vw, -50%);
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.btnPrev span {
  font: 11px/1 "arial";
  color: #fff;
  opacity: 1;
  transform: translateX(30%);
  transition: 0.5s;
}
.btnPrev::before {
  /*화살표 라인 가상 요소*/
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0px;
  transform-origin: left center;
  transform: rotate(-180deg);
  transition: 0.5s;
}
.btnPrev::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 50%;
  left: 0px;
  transform-origin: left center;
  transform: rotate(180deg);
  transition: 0.5s;
}
.btnPrev:hover span {
  opacity: 0;
  transform: translateX(100%);
}
/*라인 두개 각도를 움직여서 화살표 모양으로 변경*/
.btnPrev:hover::before {
  transform: rotate(-30deg);
}
.btnPrev:hover::after {
  transform: rotate(30deg);
}

.btnNext {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(20vw, -50%);
  display: flex;
  align-items: center;
  text-align: right;
  cursor: pointer;
}
.btnNext span {
  font: 11px/1 "arial";
  color: #fff;
  opacity: 1;
  transform: translateX(-30%);
  transition: 0.5s;
}
.btnNext::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0px;
  transform-origin: right center;
  transform: rotate(180deg);
  transition: 0.5s;
}
.btnNext::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 50%;
  left: 0px;
  transform-origin: right center;
  transform: rotate(-180deg);
  transition: 0.5s;
}
.btnNext:hover span {
  opacity: 0;
  transform: translateX(-100%);
}
.btnNext:hover::before {
  transform: rotate(30deg);
}
.btnNext:hover::after {
  transform: rotate(-30deg);
}
