.events-container-outer {
  margin: 0 -16px 0 0;
  position: relative;
}
.events-container-outer h5 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.events-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: hidden;
  overflow-x: scroll;
  margin-bottom: 24px;
  padding-right: 16px;
  scroll-behavior: smooth;
}
.events-container::-webkit-scrollbar {
  display: none;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 24px;
  background: #FFFFFF;
  width: 270px;
  height: 275px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.event:has(.hideCategory) {
  display: none;
}
.event .event-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.event .event-inner.categories {
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: top center;
}
.event .event-inner.categories:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 24px 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #5B5B5B 100%);
  mix-blend-mode: multiply;
}
.event .event-inner.categories .event-title {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.event .event-inner.categories .event-body {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
}
.event .event-inner.categories .event-body p {
  color: #FFFFFF;
}
.event .event-inner.categories .event-btn-container {
  position: relative;
  z-index: 1;
  margin: 0;
}
.event .event-inner.featured-events {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.event .event-inner.featured-events .event-title {
  margin: 0 0 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
}
.event .event-inner.featured-events .event-body {
  max-height: unset;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.event .event-inner.featured-events .event-description-container {
  height: 100%;
  overflow: hidden !important;
}
.event .event-inner svg path {
  fill: #7DBFE6;
}
.event .event-date-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 16px;
}
.event .event-date-container p {
  margin: 0;
  color: #242424;
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.28px;
}
.event .event-date-container svg {
  margin-right: 8px;
}
.event .event-description {
  margin-top: auto;
}
.event .event-image {
  height: 148px;
  min-height: 148px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
}
.event .event-image img {
  width: 100%;
}
.event .event-title {
  color: #000;
  width: 100%;
  padding: 16px 24px 0;
  margin: 0 0 8px;
}
.event .event-body {
  padding: 0 24px;
  overflow: hidden !important;
  max-height: 100px;
  margin: 0;
  width: 100%;
}
.event .event-body p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.16px;
  text-align: left;
  margin: 0;
}
.event .event-btn-container {
  padding: 0 16px;
  width: 100%;
  margin: auto 0 0;
}
.event .event-link {
  width: 100%;
  text-decoration: none;
  margin: 0 0 16px;
}
.event .event-arrow-link {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 4px;
  background: #FFFFFF;
  padding: 4px;
  border-radius: 50%;
}

@media (min-width: 744px) {
  .event-modal {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.event-modal .modal {
  width: 100%;
  height: 100%;
  max-height: 720px;
  max-width: 720px;
  padding: 40px 16px;
}
@media (min-width: 744px) {
  .event-modal .modal {
    padding: 40px 48px;
  }
}
.event-modal .event-modal-title {
  color: #000;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 1px #E8F2FA;
}
@media (min-width: 744px) {
  .event-modal .event-modal-title {
    padding-bottom: 32px;
  }
}
.event-modal .modal-body {
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.event-modal .event-body-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 32px;
}
.event-modal .modal-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 48px;
  border-bottom: solid 1px #E8F2FA;
}
.event-modal .modal-arrow {
  display: none;
  position: absolute;
  right: 0;
  bottom: 16px;
  padding: 2px;
  border-radius: 50%;
  border: solid 2px #1980CC;
  text-decoration: none;
}
@media (min-width: 744px) {
  .event-modal .modal-arrow {
    display: block;
  }
}
.event-modal .event-name {
  margin: 0 0 8px;
}
.event-modal .event-time-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.event-modal .event-time-info p {
  margin: 0;
  color: #5B5B5B;
}
.event-modal .event-time-info .month-day-year {
  border-right: solid 1px #5B5B5B;
  padding-right: 8px;
  margin-right: 8px;
}
.event-modal .time-container {
  display: flex;
}
.event-modal .event-extra-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}
.event-modal .event-extra-info p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  color: #5B5B5B;
  font-size: 14px;
}
.event-modal .event-extra-info img {
  margin-right: 8px;
}
.event-modal .event-image {
  width: 100%;
  max-width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-right: 16px;
  background-position: center;
  background-size: cover;
}
.event-modal .event-btn-container {
  padding: 0 24px 32px;
}
.event-modal .event-btn-container .btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 32px;
}
.event-modal .event-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  height: 254px;
  margin-bottom: 32px;
}
.event-modal .event-popup-header img {
  width: 100%;
}