.herosection {
  background-color: antiquewhite;
  background-image: url("images/HomeNew.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 50vh;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.marquee {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}

.marquee-animation {
  display: flex;
  animation: scroll 25s linear infinite;
}
.marquee-animation:hover {
  animation-play-state: paused;
}
#typewriter::after {
  content: "|";
  animation: blink 1s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.hero-bg {
  background-image: url("images/ContactHome.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.track {
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
