#events {
  display: flex;
  flex-flow: row nowrap;
  padding: 0 10rem;
  margin-top: 1.5rem;
}

.event-calendar {
  display: flex;
  flex-flow: column nowrap;
  border-right: dotted 0.25rem var(--primary);
}

.toggle-view {
  display: flex;
  flex-flow: column nowrap;
  grid-gap: 1.5rem;
}

.toggle-view a {
  padding: 1rem 1.25rem;
}

.toggle-view a.active {
  font-weight: 700;
  border-bottom: dotted 0.25rem var(--primary);
}

.toggle-view a span {
  color: var(--text-color-primary);
}

.event-details {
  flex: 1;
}

.event-details > div {
  display: flex;
  margin: 1.5rem;
  padding: 1.5rem;
}

.incoming-events,
.recents-events {
  flex-flow: row nowrap;
}

.event-item {
  flex-flow: column nowrap;
  grid-gap: 1.5rem;
}

.event-item-detail {
  display: flex;
  flex-flow: row nowrap;
  grid-gap: 1.5rem;
}

.event-detail-title {
  flex: 1;
}

.event-detail-title > h2 {
  font-family: var(--LibreBaskerville);
  font-weight: 500;
  margin-bottom: 1rem;
}

.event-detail-title > span {
  font-family: var(--LibreBaskerville);
  font-weight: 500;
  font-size: 1.25rem;
}

.event-detail-description {
  flex: 5;
}

.event-detail-description > p {
  margin-bottom: 1.5rem;
}

.event-details > div:not(:last-child) {
  border-bottom: solid var(--primary) 0.25rem;
}

.event-details > div > h2 {
  font-family: var(--LibreBaskerville);
  font-weight: 500;
  flex: 1;
}

.event-details > div > .list {
  display: flex;
  flex-flow: column nowrap;
  flex: 10;
  font-family: var(--LibreBaskerville);
}

.swiper {
  width: 70vw;
  height: 15rem;
}

.swiper-slide {
  overflow: hidden;
}
hr.rounded {
  border-top: 8px solid #1A92E9;
  border-radius: 5px;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 5rem;
  color: var(--primary) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}



.event-details > div > .list a span {
  color: var(--text-color-3);
}

@media only screen and (min-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 992px) {
  #events {
    display: flex;
    flex-flow: row wrap;
    padding: 0 2rem;
    margin-top: 1.5rem;
  }
  .event-calendar {
    border-right: none;
    border-bottom: dotted 0.25rem var(--primary);
    width: 100%;
  }
  .event-calendar .calendar #element {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  
  .event-item-detail {
    flex-flow: column nowrap;
  }
  .event-details > div {
    margin: 1.5rem 0;
    padding: 0;
  }
  .incoming-events,
  .recents-events {
    padding: 1.5rem 0 !important;
  }
}
@media only screen and (max-width: 576px) {
  .event-details > div {
    display: flex;
    flex-flow: column wrap;
  }

}
@media only screen and (max-width: 576px) {
}
