.nav-link {
  font-size: 26px;
  font-weight: bold;
}
.bg-violet {
  background-color: #6df1fea6;
}

.table > :not(caption) > * > * {
  padding: 1.5rem 5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.media {
  top: 39px;
  left: 0;
  border-radius: 50%;
  background-color: #d9d9d9;
  width: 300px;
  height: 300px;
}

.groupimages {
  width: 100px;
  height: 100px;
  background-color: black;
  border-radius: 50%;
  margin-top: -25px;
}

.bg-violet {
  background-color: #6df1fea6;
}

.bg-lightblue {
  background-color: #efefef;
}
.card-body {
  background-color: #efefef;
}
.card-text {
  font-size: 20px;
  text-align: left;
}

p {
  font-size: 20px;
  margin-bottom: 5px;
}

.image-box {
  cursor: pointer;
}

.image-box .bg {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.image-box .logo {
  filter: none;
  transform-origin: center;
  transform: translate(-50%, -50%);
  max-height: 70px;
  max-width: 75%;
}

.image-box:hover .bg {
  opacity: 1;
}
.image-box:hover .logo {
  animation: logoBlurAnim 0.5s ease-in-out forwards;
}
@keyframes logoBlurAnim {
  0% {
    transform: scale(1.5) translate(-50%, -50%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
      hue-rotate(261deg) brightness(101%) contrast(103%) blur(20px);
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
      hue-rotate(261deg) brightness(101%) contrast(103%) blur(0px);
  }
}

.chart-item {
  display: grid;
  justify-items: center;
}
.chart-item img {
  max-width: 100px;
  max-height: 100px;
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
}
.chart-item img.show {
  transform: scale(1);
}
.chart-item div {
  color: #838383;
  font-weight: bold;
  font-size: 20px;
}
.chart-item div h3 {
  color: #838383;
  font-size: 20px;
}

.flow-items {
  position: relative;
  width: max-content;
  background-image: url(/public/D2S_StaticImage.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
}
.flow-items > img {
  pointer-events: none;
  max-width: 100%;
}
