.section-features {
  background-color: #12191F;
  color: white;
}

.section-features .tag-cloud {
  margin: 15px 0;
}

.section-features .tag-cloud span {
  font-family: 'Sequel Sans Black Disp', sans-serif;
  letter-spacing: 2px;
  /* margin-right: 65px; */
  position: relative;
  cursor: pointer;
  align-self: baseline;
}

.section-features .tag-cloud .tag-level-1 {
  color: white;
  font-size: 64px;
}

.section-features .tag-cloud .tag-level-2 {
  color: #818181;
  font-size: 48px;
}

.section-features .tag-cloud .tag-level-3 {
  color: #404040;
  font-size: 40px;
}

/* Marquee styles */
.marquee {
  --gap: 4rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  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)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

.marquee__content {
  animation: scroll 90s linear infinite;
}

.marquee--reverse .marquee__content {
  animation-direction: reverse;
}

.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4);
}

.custom-modal-content {
  background-color: #12191F;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  text-align: left;
  /* box-shadow: 0px 0px 15px white; */
  /* border: 1px solid #888; */
  border-radius: 5px;
  max-width: 1000px;
}

.custom-modal-content h3 {
  font-family: 'Sequel Sans Black Disp';
  font-size: 64px;
  letter-spacing: 3px;
  color: red;
  margin-bottom: 33px;
}

.custom-modal-content p {
  font-family: 'Sequel Sans Book Body';
  color: #B5B5B5;
  font-size: 24px;
  line-height: 42px;
}

.custom-modal-close {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 576px) {
  .section-features .tag-cloud {
    margin: 25px 0;
  }
}

@media (min-width: 768px) {
  .section-features .tag-cloud {
    margin: 50px 0;
  }
}