.homeBody {
  background: var(--bg_color);
}

.homeDisplay {
  position: absolute;
  width: 100%;
  height: 35em;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: var(--main_color_darker);
  background-position: top;
  background-size: cover;
  margin-bottom: 3em;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 4);

  -webkit-animation: DisplayFade 1500ms;
  -moz-animation: DisplayFade 1500ms;
  -o-animation: DisplayFade 1500ms;
  animation: DisplayFade 1500ms;
}

.homeDisplay .bgDisplay {
  position: inherit;
  width: 100%;
  height: max-content;
  min-height: 70%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
}

.homeDisplay .bgDisplay .contDisplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 75%;
  width: 70%;
}

.homeDisplay .bgDisplay .contDisplay .titleDisplay {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  text-align: center;
}

.homeDisplay .bgDisplay .contDisplay .textDisplay {
  font-size: 1.8rem;
  text-align: center;
}

.homeDisplay .bgDisplay .arrowDisplay {
  font-size: 2rem;
  padding: 0.5em 0.8125em;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s, visibility 0.2s, opacity 0.4s;
  cursor: pointer;
}

.homeDisplay .bgDisplay .arrowDisplay:hover,
.homeDisplay .bgDisplay .arrowDisplay:focus {
  color: var(--main_color);
  background: var(--sec_color);
}

.homeDisplay .dots {
  width: min-content;
  height: 1.3em;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4em;
}

.homeDisplay .dots .dot {
  border: 2px var(--main_color) solid;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px 2px;
}

.homeDisplay .dots .active-dot {
  background-color: var(--sec_color);
}

/*
  Animation
*/

@keyframes DisplayFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes DisplayFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes DisplayFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes DisplayFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

/*
  Media Queries
*/

@media (max-width: 72rem) {
  .homeDisplay .bgDisplay .contDisplay .titleDisplay {
    font-size: 3em;
    margin-bottom: 0.4em;
  }

  .homeDisplay .bgDisplay .contDisplay .textDisplay {
    font-size: 1.2em;
  }
}
