body {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1035;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);

  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.loader .center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, cyan, #fff);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

.wave:nth-child(5) {
  animation-delay: 0.4s;
}

.wave:nth-child(6) {
  animation-delay: 0.5s;
}

.wave:nth-child(7) {
  animation-delay: 0.6s;
}

.wave:nth-child(8) {
  animation-delay: 0.7s;
}

.wave:nth-child(9) {
  animation-delay: 0.8s;
}

.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  width: 100%;
}

.cube {
  display: none;
}

.cube-perspective {
  margin: 0 auto;
}

.cube-rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transition: 500ms;
  transform: translateX(-50%) translateY(-50%);
}

.cube-face {
  position: absolute;
}

.cube-face img {
  width: 100%;
}

.img-parallax {
  position: relative;
  height: 100vh;
  width: 100%;

  display: flex;
  align-items: end;
  justify-content: center;
}

.img-parallax::before {
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cube-face:nth-child(1) img {
  content: url("../img/anto.jpg");
}

.img-parallax:nth-child(1)::before {
  background-image: url("../img/anto.jpg");
}

.cube-face:nth-child(2) img {
  content: url("../img/mariska.jpg");
}

.img-parallax:nth-child(2)::before {
  background-image: url("../img/mariska.jpg");
}

.cube-face:nth-child(3) img {
  content: url("../img/brian.jpg");
}

.img-parallax:nth-child(3)::before {
  background-image: url("../img/brian.jpg");
}

.cube-face:nth-child(4) img {
  content: url("../img/kodiklat.jpg");
}

.img-parallax:nth-child(4)::before {
  background-image: url("../img/kodiklat.jpg");
}

.cube-face:nth-child(5) img {
  content: url("../img/footer.jpg");
}

.img-parallax:nth-child(5)::before {
  background-image: url("../img/footer.jpg");
}

.img-parallax blockquote {
  color: #fff;
  background-color: rgb(17, 17, 17, 0.6);
}

.img-parallax:nth-child(2) blockquote {
  color: #130c01;
  background-color: rgb(220, 199, 193, 0.6);
}

.img-parallax:nth-child(4) blockquote {
  color: #100400;
  background-color: rgb(242, 168, 29, 0.6);
}

blockquote {
  position: relative;
  margin: 0 auto;
  font-size: 18px;
  padding: 30px 60px;
  width: 100%;
  text-align: center;
}

blockquote::before,
blockquote::after {
  content: "“";
  font-family: Georgia;
  font-size: 6rem;
  margin: -3rem 0 0 -3rem;
  position: absolute;
  opacity: 0.4;
}

blockquote::after {
  content: "”";
  margin: -1rem 0 0 0.5rem;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  margin: 0;

  color: #fff;
  z-index: 2;
}

footer p {
  display: none;
}

.social-icons {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.social-icons a {
  height: 40px;
  width: 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  background-color: #daa520;
}

.social-icons a img {
  width: 50%;
  height: 50%;
}

.social-icons a i,
.social-icons a img {
  transform: rotateY(0);
  -webkit-transform: rotateY(0);
}

.social-icons a:hover i,
.social-icons a:hover img {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
}

.cube-ver .cube,
.cube-hor .cube {
  display: block;
  position: fixed;
}

.cube-ver .img-parallax blockquote,
.cube-hor .img-parallax blockquote {
  background-color: transparent;
}

.cube-ver .img-parallax,
.cube-hor .img-parallax {
  background-color: rgb(17, 17, 17, 0.9);
}

.cube-ver .img-parallax:nth-child(2),
.cube-hor .img-parallax:nth-child(2) {
  background-color: rgb(220, 199, 193, 0.9);
}

.cube-ver .img-parallax:nth-child(4),
.cube-hor .img-parallax:nth-child(4) {
  background-color: rgb(242, 168, 29, 0.9);
}

.cube-hor .img-parallax blockquote {
  width: 100%;
  text-align: center;
}

.cube-ver .img-parallax blockquote {
  width: auto;
  text-align: left;
  margin-left: 50%;
  margin-right: 30px;
  font-size: 1.5rem;
}

.cube-hor .cube {
  top: -50px;
  width: 100%;
}

.cube-ver .img-parallax {
  align-items: end;
  justify-content: start;
}

.cube-ver .img-parallax {
  align-items: center;
  justify-content: start;
}

.cube-ver .cube {
  top: 0;
  right: 0;
  margin-right: 50%;
}

.cube-ver footer {
  height: 100vh;
  width: auto;
  left: 50%;
  align-items: start;
  right: auto;
}

.cube-ver footer p {
  display: block;
}

.cube-hor .social-icons {
  font-size: 18px;
  padding: 30px 60px;
  width: 100%;
  justify-content: center;
}

.cube-ver .social-icons a {
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  line-height: 59px;
  border-radius: 50%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  text-decoration: none;
}
