html {
  font-family: "Quicksand", sans-serif !important;
  scroll-behavior: smooth;
}

.hero {
  background: url("../images/slide-1.png") top center no-repeat;
  background-size: cover;
}

.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(-500%);
  }
}

.desktop-clearfix {
  clear: both;
  display: block;
}

.animate-scroll {
  animation: scroll 100s linear infinite;
}

.shape-mark::before,
.shape-mark::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 28px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 42px 42px 42px;
}

.shape-mark::before {
  left: 42px;
  top: 34px;
}

.shape-mark::after {
  right: -28px;
  bottom: 34px;
  transform: rotate(180deg);
}

@media only screen and (min-width: 360px) and (max-width: 767px) {
  .header {
    position: sticky;
  }
  .hero {
    background-image: url("../images/slide-1-mobile.png");
  }
  .desktop-clearfix {
    clear: none;
    display: inline;
  }
}
