.Scroll-Content1 {
  position: absolute;
  bottom: -100%;
  left: 0%;

  width: 100%;
  height: 100%;

  justify-content: center;
  background-image: linear-gradient(to top, rgb(43, 43, 43), rgba(0, 0, 0, 0.0));
}

.Scroll-Content-Text-Title {
  position: relative;

  width: 35vw;
  height: 12vh;

  margin-left: auto;
  margin-right: auto;

  justify-content: center;
  display: flex;
}

.Title-Img {
  position: absolute;
  width: 85%;

  bottom: -15vh;
}

.scroll-section-anchor {
  position: relative;

  width: 100%;
  height: 70%;

  margin-top: 4.5%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-section {
  position: relative;
  width: 25%;
  height: 86%;

  margin-top: 2%;
  margin: 2.5%;

  border-radius: 20px;
  z-index: 100;

  outline: #ffffff solid 2px;
  transition: .25s;
}

.scroll-section:hover {
  border-radius: 40px;
  outline: #ffffff solid 3px;
  box-shadow: #ffffff 0px 0px 40px;
  animation: float 2s ease-in-out infinite;
}

.Overlay-Text {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  font-size: 0px;
  transition: .2s;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

}

.scroll-section:hover .Overlay-Text {
  display: block;
  font-size: 1.7vw;
  border-radius: 40px;
  position: absolute;
  height: 100%;
  width: 100%;
  transition: .2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.7);

}

.Overlay-Text p {
  font-family: "Teko", sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.8);
  padding: 10%;
}

.scrollnavbutton {
  height: 100%;
  width: 100%;

  margin-left: auto;
  margin-right: auto;

  color: #f2f2f2;

  position: relative;
  bottom: -6.5vh;

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

  border-radius: 9px;

  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7vw;

  cursor: pointer;
}

.scrollnavbutton P {
  font-family: "Bebas Neue", sans-serif;
  border-radius: 5px;

  width: 80%;

  transition: 0.25s;
}

.scrollnavbutton p:hover {
  box-shadow: 0 0 20px 5px #ffffff;
  background: white;
  color: black;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
