body {
  color: #ff5100;
  background-color: #faecdd;
  font-family: 'Times New Roman', Times, serif
}


a {
  color: #ff5100;
  text-decoration: none;
}

ul {
  color: black;
  list-style-type: none;
  padding-left: 0;
}

ul>li:not(:last-child) {
  border-bottom: solid 2px #ff5100;
}

li {
  padding: .3em 0 .3em 0;
}

.hero-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: -5px 5px 9px #9d9d9d;
  object-fit: cover;
}

.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee-content {
  animation: scroll 20s linear infinite;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

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

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.row {
  padding-left: 30em;
  padding-right: 30em;
}

@media (max-width: 1800px) {
  .row {
    padding-left: 25em;
    padding-right: 25em;
  }
}

@media (max-width: 1600px) {
  .row {
    padding-left: 20em;
    padding-right: 20em;
  }
}

@media (max-width: 1400px) {
  .row {
    padding-left: 10em;
    padding-right: 10em;
  }
}

@media (max-width: 1100px) {
  .row {
    padding-left: 3em;
    padding-right: 3em;
  }
}

@media (max-width: 768px) {
  .row {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.fs-0 {
  font-size: 60pt;
}

.text-shadow {
  text-shadow: -5px 5px 9px #9d9d9d;
}

.box-shadow {
  box-shadow: -5px 5px 9px #9d9d9d;
}

.drop-shadow {
  filter: drop-shadow(-5px 5px 9px #9d9d9d);
}

.mw-50 {
  max-width: 50%;
}

.mh-50 {
  max-height: 50%;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.object-fit {
  object-fit: contain;
}

.hover-raise {
  transition: ease-in-out .25s;
  filter: drop-shadow(-5px 5px 9px #9d9d9d);
}

.hover-raise:hover {
  transform: scale(1.05);
  filter: drop-shadow(-5px 5px 9px #696969);
}

.text-primary {
  color: #ff5100 !important;
}

.hidden {
  display: none;
}