.ItaaCarousel {
  position: relative;
  width: 100%;
}
.ItaaCarousel img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}
.ItaaCarousel__Slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.ItaaCarousel__Track {
  display: flex;
  will-change: transform;
  transition: transform 0.3s ease;
  touch-action: none;
}
.ItaaCarousel__Iitem {
  flex-shrink: 0;
  width: 100%;
  user-select: none;
  touch-action: pan-y;
}
.ItaaCarousel__ArrowButton {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  border: none;
  outline: none;
  background: #24a2b2;
  cursor: pointer;
  height: 36px;
  width: 36px;
  margin: -18px 0 0 0;
  padding: 0;
  opacity: 0.75;
}
.ItaaCarousel__ArrowButton:hover {
  opacity: 1;
}
.ItaaCarousel__ArrowButton:disabled {
  opacity: 5;
  filter: grayscale(1);
}
.ItaaCarousel__ArrowButton:before {
  display: block;
  content: "";
  height: 30%;
  aspect-ratio: 1/1;
  border-color: #fff;
  border-style: solid;
  border-width: 2px 2px 0 0;
}
.ItaaCarousel__ArrowButton.--prev {
  left: -18px;
}
.ItaaCarousel__ArrowButton.--prev:before {
  transform: rotateZ(-135deg);
  margin-left: 5px;
}
.ItaaCarousel__ArrowButton.--next {
  right: -18px;
}
.ItaaCarousel__ArrowButton.--next:before {
  transform: rotateZ(45deg);
  margin-left: -5px;
}

.IEC__LoadingScreen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
}
.IEC__LoadingScreen__Spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #24a2b2;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: IECLoadingSpinnerRotation 1s linear infinite;
}
.IEC__SingleEvent {
  display: flex;
  background: #F1F1F1;
  padding: 0;
  margin: 0 0 20px 0;
}
.IEC__SingleEvent__Image {
  display: flex;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
}
.IEC__SingleEvent__Image img {
  display: flex;
  width: 100%;
  object-fit: cover;
}
.IEC__SingleEvent__Content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.IEC__SingleEvent__Content__Categories, .IEC__SingleEvent__Content__Tags {
  display: block;
  margin: 0 0 8px 0;
  padding: 0 0 0 0;
}
.IEC__SingleEvent__Content__Categories a, .IEC__SingleEvent__Content__Tags a {
  display: inline-block;
}
.IEC__SingleEvent__Content__Categories a {
  position: relative;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1em;
  color: #fff;
  transition-duration: 0.15s;
}
.IEC__SingleEvent__Content__Categories a span {
  position: relative;
  z-index: 1;
}
.IEC__SingleEvent__Content__Categories a:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  background: #24a2b2;
  transform: skew(-12deg);
  transition-duration: 0.2s;
}
.IEC__SingleEvent__Content__Categories a:hover {
  color: #fff;
}
.IEC__SingleEvent__Content__Categories a:hover:before {
  background: #188593;
}
.IEC__SingleEvent__Content__Tags a {
  font-size: 14px;
  line-height: 1.3em;
  color: #656565;
  transition-duration: 0.2s;
}
.IEC__SingleEvent__Content__Tags a:hover {
  color: #188593;
}
.IEC__SingleEvent__Content__Title {
  display: block;
  margin: 10px 0 20px 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.3em;
  color: #000;
  font-weight: 600;
}
.IEC__SingleEvent__Content__Meta {
  display: block;
  margin: 6px 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.3em;
}
.IEC__SingleEvent__Content__Meta svg {
  height: 20px;
  width: 20px;
}
@media (max-width: 768px) {
  .IEC__SingleEvent__Content {
    padding: 12px;
  }
  .IEC__SingleEvent__Content__Categories, .IEC__SingleEvent__Content__Tags {
    margin: 0 0 4px 0;
  }
  .IEC__SingleEvent__Content__Categories a {
    position: relative;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1em;
  }
  .IEC__SingleEvent__Content__Tags a {
    font-size: 12px;
    line-height: 1.3em;
  }
  .IEC__SingleEvent__Content__Title {
    margin: 8px 0 16px 0;
    font-size: 20px;
    line-height: 1.3em;
  }
  .IEC__SingleEvent__Content__Meta {
    margin: 4px 0;
    font-size: 15px;
    line-height: 1.3em;
  }
  .IEC__SingleEvent__Content__Meta svg {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 640px) {
  .IEC__SingleEvent {
    flex-wrap: wrap;
  }
  .IEC__SingleEvent__Image {
    width: 100%;
    min-width: initial;
    max-width: initial;
  }
}
.IEC__EventsGrid__ItemsWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  gap: 16px;
}
.IEC__EventsGrid__Item {
  display: flex;
  background: #F1F1F1;
  margin: 0;
  padding: 0 0 12px 0;
  max-width: 280px;
  flex-direction: column;
}
.IEC__EventsGrid__Item a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.IEC__EventsGrid__Item__Image {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.IEC__EventsGrid__Item__Image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
}
.IEC__EventsGrid__Item__Content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.IEC__EventsGrid__Item__Title {
  display: block;
  margin: 12px 0;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 1.2em;
  flex: 1;
}
.IEC__EventsGrid__Item__Date {
  display: block;
  margin: 0;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.2em;
}
.IEC__EventsGrid__Item__Date span {
  display: block;
}
.IEC__EventsGrid__Item:hover .IEC__EventsGrid__Item__Image img {
  transform: scale(1.08);
}
.IEC__EventsGrid__LoadMoreButtonWrapper {
  display: none;
}
@media (max-width: 800px) {
  .IEC__EventsGrid__ItemsWrapper {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .IEC__EventsGrid__Item {
    max-width: unset;
  }
}
.IEC__EventsCalendar {
  position: relative;
}
.IEC__EventsCalendar__Button, .IEC__EventsCalendar__Select {
  display: block;
  margin: 0;
  padding: 6px 8px;
  min-width: 36px;
  height: 36px;
  width: auto;
  font-size: 15px;
  line-height: 1em;
  white-space: nowrap;
  background: #24a2b2;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}
.IEC__EventsCalendar__Button {
  transition-duration: 0.2s;
}
.IEC__EventsCalendar__Button.--selected {
  background: #1a6d77;
}
.IEC__EventsCalendar__Button.prevDayButton, .IEC__EventsCalendar__Button.nextDayButton {
  display: flex;
  justify-content: center;
  align-items: center;
}
.IEC__EventsCalendar__Button.prevDayButton:before, .IEC__EventsCalendar__Button.nextDayButton:before {
  display: block;
  content: "";
  height: 50%;
  aspect-ratio: 1/1;
  border-color: #fff;
  border-style: solid;
  border-width: 2px 2px 0 0;
}
.IEC__EventsCalendar__Button.prevDayButton:before {
  transform: rotateZ(-135deg);
  margin-left: 5px;
}
.IEC__EventsCalendar__Button.nextDayButton:before {
  transform: rotateZ(45deg);
  margin-left: -5px;
}
.IEC__EventsCalendar__Top {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.IEC__EventsCalendar__Navigation {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 0;
}
.IEC__EventsCalendar__Navigation__MonthRow {
  display: flex;
  gap: 4px;
}
.IEC__EventsCalendar__Navigation__DaysButtonsWrapper {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.IEC__EventsCalendar__Navigation__DaysButtons {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.IEC__EventsCalendar__Filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  max-width: 50%;
}
.IEC__EventsCalendar__Filters__Label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px 0 0;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .IEC__EventsCalendar__Top {
    flex-direction: column;
    justify-content: initial;
  }
  .IEC__EventsCalendar__Navigation {
    margin: 30px 0 0 0;
  }
  .IEC__EventsCalendar__Filters {
    max-width: unset;
    margin: 30px 0;
  }
}
@media (max-width: 800px) {
  .IEC__EventsCalendar__Navigation {
    flex-wrap: wrap;
  }
  .IEC__EventsCalendar__Navigation .monthSelector {
    flex-grow: 1;
  }
  .IEC__EventsCalendar__Navigation__MonthRow {
    width: 100%;
  }
  .IEC__EventsCalendar__Filters__Label {
    margin: 0 0 6px 0;
    height: auto;
    width: 100%;
  }
  .IEC__EventsCalendar__Filters .categorySelector {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .IEC__EventsCalendar__Navigation__DaysButtons .singleDayButton:first-child,
  .IEC__EventsCalendar__Navigation__DaysButtons .singleDayButton:last-child {
    display: none;
  }
}
.IEC__EventsCarousel {
  margin-top: 30px;
  margin-bottom: 30px;
}

@keyframes IECLoadingSpinnerRotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
