.scroll-section.secondary {
  background-color: white;
  overflow: hidden;
}

.scroll-section.main {
  overflow: hidden;
}

.scroll-down-arrow {
  margin-bottom: 2rem;
  animation-name: jump;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  display: flex;
  align-items: center;
}

.welcome-text div img:hover {
  scale: 1.04;
  transition: 0.4s;
}

@media only screen and (max-width: 1800px) {
  .carousel-icons img{
    width: 8rem;
    opacity: 50%;
  }
}

.carousel-item {
  height: 100%;
}

.carousel-icons img:nth-child(1) {
  top: 7vh;
  left: 3vw;
  rotate: 10deg;
  animation-delay: 0s;
}
.carousel-icons img:nth-child(2) {
  top: 35vh;
  left: 3vw;
  rotate: 30deg;
  animation-delay: 0.5s;
}
.carousel-icons img:nth-child(3) {
  top: 60vh;
  left: 3vw;
  rotate: 30deg;
  animation-delay: 1s;
}
.carousel-icons img:nth-child(4) {
  top: 7vh;
  right: 3vw;
  rotate: 30deg;
  animation-delay: 0.5s;
}
.carousel-icons img:nth-child(5) {
  top: 35vh;
  right: 3vw;
  rotate: 30deg;
  animation-delay: 1s;
}
.carousel-icons img:nth-child(6) {
  top: 60vh;
  right: 3vw;
  rotate: 30deg;
  animation-delay: 3s;
}

.side-images {
  position: relative;
  z-index: 1;
}

.side-images img{
  position: absolute;
  top: 50vh;
  z-index: 2;
  animation: jump 3s ease-in-out 0s infinite;
}

.side-images img:nth-child(1) {
  left: 0;
  margin-left: 3rem;
}

.side-images img:nth-child(2) {
  right: 0;
  margin-right: 3rem;
  animation-delay: 1s;
}

@keyframes jump {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

#scrollToResources {
  font-size: 5rem;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}
