/*******************************/
/* ------  INTRO BLOCK ------ */
/*******************************/
#intro {
  /* width: 100%; */
  min-height: 100vh;
  background-color: #222222;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background-image: url(http://keenitsolutions.com/products/wordpress/rubrash/wp-content/uploads/2019/04/bann.jpg);
  background-position: right;
  background-size: cover;
}
/* #intro:before {
  content: "<section>";
  font-family: "Shadows Into Light", cursive;
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: grey;
  opacity: 0.5;
}
#intro:after {
  content: "</section>";
  font-family: "Shadows Into Light", cursive;
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: grey;
  opacity: 0.5;
} */

#intro .intro-container {
  /* text-align: center; */
}
#intro .intro-container i {
  /* color: rgb(171, 245, 201); */
}

#intro .container span strong {
  /* font-weight: 900; */
  transform: rotate(-5deg);
  font-size: 35px;
  display: inline-block;
  letter-spacing: 3px;
}

#intro .textBoxTitle {
  color: aqua;
  font-size: 45px;
  font-weight: 900;
  margin: 6px 0;
  position: relative;
  letter-spacing: 4px;
}
/* #intro .textBoxTitle:before {
  content: "<h1>";
  position: absolute;
  display: inline-block;
  font-size: 15px;
  top: 0;
  left: -51px;
  color: grey;
  animation-name: brightness;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform: rotate(-15deg);
  opacity: 0.4;
}
#intro .textBoxTitle:after {
  content: "</h1>";
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  bottom: -15px;
  color: grey;
  animation-name: brightness;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.2s;
} */

@media (max-width: 604px) {
  #intro {
    text-align: center;
    background-position: left;
  }
  #intro .textBoxTitle {
    font-size: 35px;
  }
}

@keyframes brightness {
  0% {
    color: grey;
  }
  10% {
    color: #b9b9b9;
  }
  30% {
    color: grey;
  }
  100% {
    color: grey;
  }
}

/* ARROW */
.moreArrow {
  position: absolute;
  top: 80%;
  left: calc(50% - 25px);
  width: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-items: center;
}

.arrow {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(-45deg);
  height: 40px;
  width: 40px;
  display: inline-block;
  /* margin-left: 5px; */
  animation-name: arrowAnim;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes arrowAnim {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-30px, 30px);
    opacity: 0;
  }
}
