@media only screen and (max-width: 728px) {
}

@media only screen and (min-width: 729px) {
}

.heroDrop {
  position: relative;
  padding: 55px;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 15px;
  color: white;
  overflow: hidden;
}

.heroDropBackground {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(/images/hero-gradient.png);
  background-size: 100% 100%;
  z-index: -1;
  animation: backgroundAnim 10s ease infinite alternate;
}

@keyframes backgroundAnim {
  0% {
    transform: rotate(-6deg) translate(-50%, -50%) scale(1);
    filter: hue-rotate(15deg);
  }
  50% {
    transform: rotate(30deg) translate(-50%, -70%) scale(3);
    filter: hue-rotate(0deg);
  }

  100% {
    transform: rotate(20deg) translate(-50%, -80%) scale(3);
    filter: hue-rotate(-15deg);
  }
}

.sectionTitle {
  margin-top: 35px;
  margin-bottom: 35px;
}
