.marquee {
  position: relative;
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding-bottom: 36px;
}

.marquee .image-overlay {
    display: none!important;
}

.marquee img {
    height: 400px;
    width: auto;
    object-fit: contain;
} 

.marquee__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  overflow-x: hidden;
  width: 100%;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 100%;
}

.marquee__group .item {
  transition: all 350ms ease;
}

.marquee__group .item strong {
  color: beige;
  text-decoration: none;
  transition: all 350ms ease;
}

.marquee__group .item:hover {
  color: beige;
  opacity: 1 !important;
}

.marquee__group .item:hover strong {
  color: red
}

.marquee:hover .item {
  opacity: 0.5;
}

.marquee .blurb {
  font-weight: 100;
}