html {
  font-family: "Quicksand", sans-serif !important;
  scroll-behavior: smooth;
}

.hero {
  background-image: url("../images/hero-banner.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.header {
  z-index: 10000;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  position: fixed;
}

.scrolled .header {
  position: sticky;
  top: 0;
}
.header > div {
  background: rgba(255, 255, 255, 0.7);
}
.scrolled .header > div {
  border-radius: 0px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 20s linear infinite;
}

.desktop-clearfix {
  clear: both;
  display: block;
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .header {
    position: sticky;
  }
  .hero {
    background-size: cover;
    background-position: top right;
  }
  .desktop-clearfix {
    clear: none;
    display: inline;
  }
}
