body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal
}

.very-small {
  font-size: 12px;
}

.media .media-body .media-title {
  font-size: 1rem;
}

.media .media-body .media-title {
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-bottom: 0px;
}

.news-title-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 21px;
  max-height: 45px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.custom-shape-divider-top-1731775082 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1731775082 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 83px;
}

.custom-shape-divider-top-1731775082 .shape-fill {
  fill: #FFFFFF;
}

.zoom-out:hover {
  background-color: aliceblue;
  color: #333;
  cursor: pointer;
  transform: scale(1.02);
}

.link-header:hover {
  background-color: aliceblue;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
}

.link:hover {
  background-color: aliceblue;
  color: #333;
  cursor: pointer;
}

.fc-unthemed td.fc-today {
  background: aliceblue !important;
}

:root {
  --marquee-width: 100%;
  --marquee-height: 150px;
  /* --marquee-elements: 12; */
  /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  color: #eee;
  overflow: hidden;
  position: relative;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

/* .marquee:before {
  left: 0;
  background: linear-gradient(to right, aliceblue 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: linear-gradient(to left, aliceblue 0%, transparent 100%);
} */

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content {
  list-style: none;
  height: var(--marquee-height);
  display: flex;
  animation: scrolling 12.5s linear infinite;
  transition: animation-play-state 2.5s ease;
}

/* .marquee-content:hover {
animation-play-state: paused;
} */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height:  var(--marquee-height);
  font-size: calc(var(--marquee-height)*3/4);
  /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  /* height: 100%; */
  border: 2px solid #eee;
}


.item-child {
  position: relative;
  min-width: 200px;
  /* adjust based on your needs */
  margin-right: 1rem;
}

.card-img-overlay {
  padding: 0;
}

.overlay-caption {
  backdrop-filter: blur(2px);
}