  ï»¿* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.row {
  display: flex;
  flex-direction: row;
  width: 60%;
}
@media (max-width: 767.98px) {
  .row {
    flex-direction: column;
    width: 80%;
  }
}

.row--wrap {
  flex-wrap: wrap;
}

.row--wrap > div {
  width: 100%
}

.panel-slider--dmu-red {
  background-color: #9d0932;
  color: #ffffff;
}
.panel-slider--dmu-gold {
  background-color: #84734d;
  color: #ffffff;
}
.panel-slider--orange {
  background-color: #b85c23;
  color: #ffffff;
}
.panel-slider--yellow {
  background-color: #efa83e;
  color: #000000;
}
.panel-slider--yellow .panel-slider__header {
  color: #076a76;
}
.panel-slider--teal {
  background-color: #076a76;
  color: #ffffff;
}
.panel-slider--teal-pastel {
  background-color: #4e7979;
  color: #ffffff;
}
.panel-slider--teal-pastel .panel-slider__header {
  color: #f1f2ea;
}
.panel-slider--light-teal {
  background-color: #97baba;
  color: #000000;
}
.panel-slider--light-teal .panel-slider__header {
  color: #076a76;
}
.panel-slider--light-green-pastel {
  background-color: #f1f2ea;
  color: #000000;
}
.panel-slider--light-green-pastel .panel-slider__header {
  color: #076a76;
}
.panel-slider--light-blue {
  background-color: #57d2ff;
  color: #000000;
}
.panel-slider--light-blue-pastel {
  background-color: #eaedf6;
  color: #000000;
}
.panel-slider--light-blue-pastel .panel-slider__header {
  color: #5d76bb;
}
.panel-slider--light-tan-pastel {
  background-color: #fcf1e8;
  color: #000000;
}
.panel-slider--light-tan-pastel .panel-slider__header {
  color: #b85c23;
}
.panel-slider--green {
  background-color: #00823e;
  color: #ffffff;
}
.panel-slider--green .panel-slider__header {
  color: #f1f2ea;
}
.panel-slider--purple {
  background-color: #6b3b80;
  color: #ffffff;
}
.panel-slider--dark-purple {
  background-color: #2e175c;
  color: #ffffff;
}
.panel-slider--maroon {
  background-color: #6e354d;
  color: #ffffff;
}
.panel-slider--light-grey {
  background-color: #eeeeee;
  color: #000000;
}
.panel-slider--dark-grey {
  background-color: #4d4d4d;
  color: #ffffff;
}
.panel-slider--white {
  background-color: #ffffff;
  color: #000000;
}
.panel-slider--black {
  background-color: #000000;
  color: #ffffff;
}
.panel-slider__page-header {
  margin: 1em 0;
  font-weight: 700;
  font-size: 1.3em;
}
.panel-slider__header {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
.panel-slider__subtitle {
  font-size: 1.4rem;
}
.panel-slider__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.panel-slider__arrow {
  width: 10%;
  text-align: center;
  color: var(--black);
  margin: 1em;
  border: 0;
  background: none;
  padding: 1em;
  cursor: pointer;
}
.panel-slider__arrow::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 1em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 1em;
}
.panel-slider__arrow--prev::before {
  left: 0.25em;
  transform: rotate(-135deg);
}
.panel-slider__arrow--next::before {
  left: 0;
  transform: rotate(45deg);
}
.panel-slider__content {
  display: flex;
  flex-direction: row;
  width: 60%;
}
@media (max-width: 767.98px) {
  .panel-slider__content {
    flex-direction: column;
    width: 80%;
  }
}
.panel-slider__column {
  width: 50%;
  min-height: 100%;
  margin: 1em;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.panel-slider__column--right {
  order: 1;
}
@media (max-width: 767.98px) {
  .panel-slider__column {
    width: 100%;
    max-width: 100%;
    margin: 0;
    order: 0;
    padding-top: 1em;
  }
}
.panel-slider__slide {
  display: none;
}
.panel-slider__slide--active {
  display: flex;
}
.panel-slider__image {
  width: 570px;
  max-width: 100%;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .panel-slider__image {
    height: 200px;
  }
}
.panel-slider__info {
  margin-top: auto;
}

.event-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 1em;
  max-width: 100%;
  justify-content: space-evenly;
  margin-bottom: 1em;
}

@media (max-width: 767.98px) {
  .event-cards {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.event-cards__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: 33%;
  max-width: 375px;
  background-color: #EEEEEE;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  width: 100%;
}
.event-cards__card:hover, .event-cards__card :focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.event-cards__card:hover .event-cards__button, .event-cards__card :focus .event-cards__button {
  background: #85082a;
  text-decoration: underline;
}
.event-cards__link {
  text-decoration: none;
  color: #000000;
}
.event-cards__link:hover .event-cards__header, .event-cards__link :focus .event-cards__header {
  text-decoration: underline;
}
.event-cards__image {
  width: 100%;
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.event-cards__icon {
  float: right;
}
@media (max-width: 575.98px) {
  .event-cards__icon {
    float: none;
  }
}
.event-cards__icon-icon {
  height: 40px;
}
.event-cards__content {
  margin: 1em;
}
.event-cards__header {
  font-weight: 700;
  font-size: 1.2em;
}
.event-cards__button {
  padding: 1em;
  background: #9d0932;
  color: white;
  width: 50%;
  text-align: center;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .event-cards__button {
    width: 100%;
  }
}

.long-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.long-card__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: 50%;
  max-width: 200px;
  margin: 1em;
  background-color: #EEEEEE;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.long-card__card:hover, .long-card__card :focus {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.long-card__card:hover .long-card__link, .long-card__card :focus .long-card__link {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .long-card__card {
    max-width: 100%;
  }
}
.long-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}
.long-card__image {
  max-width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.blog__link {
  color: #000000;
  text-decoration: none;
  margin: 1em 0;
}
.blog__link:hover .blog__title, .blog__link :focus .blog__title {
  text-decoration: underline;
}
.blog__card {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767.98px) {
  .blog__card {
    flex-direction: column;
  }
}
.blog__image {
  width: 460px;
  min-width: 460px;
  max-height: 260px;
  -o-object-fit: cover;
  flex: 50%;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .blog__image {
    min-width: 100%;
  }
}

.blog__video {
  width: 460px;
  min-width: 460px;
  max-height: 260px;
  -o-object-fit: cover;
  flex: 50%;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .blog__video {
    min-width: 100%;
    width: 100%;
  }
}
.blog__content {
  width: 100%;
  margin: 0 1em;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .blog__content {
    margin: 1em 0;
  }
}

.blog__content h2 {
 font-size: 2em;
}

.blog__content h3 {
 font-size: 1.7em;
}

.blog__content h4 {
 font-size: 1.5em;
}

.blog__content h5 {
 font-size: 1.2em;
}

.blog__content h6 {
 font-size: 1em;
}

.blog__content--image-container {
  display: flex;
  gap: 1em;
}

@media (max-width: 767.98px) {
  .blog__content--image-container {
    flex-direction: column;
  }
}

.blog__content--image-div {
  flex: 1;
  height: auto;
}

.blog__content--image {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  margin: 0 auto;
  object-fit: contain;
}

.blog__title {
  margin: 0;
  font-size: 1.3em;
}
.blog__header {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  position: relative;
}
.blog__header-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}
.blog__header-content--video {
  position: relative;
}
.blog__header-title, .blog__header-date {
  color: #ffffff;
  text-align: center;
}
.blog__header-video-container {
  width: 100%;
  height: 100vh;
}
.blog__header-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog__summary {
  font-weight: 700;
  font-size: 1.2em;
}

    .blog-pagination {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .blog-pagination__list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .blog-pagination__list-item {
        font-size: 1.2em;
        margin-bottom: 1em;
    }
    
    .blog-pagination__link {
        color: #000000;
        margin: 1em;
        padding: 1em;
    }

    .blog-pagination__current {
        color: #9d0932;
        font-weight: 700;
        margin: 1em;
        padding: 1em;
    }
    
    .blog-pagination__link:hover, .blog-pagination__link:focus {
        font-weight: 700;
    }

    .blog-pagination__arrow {
        color: #9d0932;
        font-weight: 700;
        text-decoration: none;
    }

    .blog-pagination__arrow:hover, .blog-pagination__arrow:focus {
        text-decoration: underline;
    }

    .blog-pagination__arrow::before {
        border-style: solid;
        border-width: 0.25em 0.25em 0 0;
        content: "";
        display: inline-block;
        height: 1em;
        top: 0.2em;
        left: 0.15em;
        position: relative;
        transform: rotate(-45deg);
        vertical-align: top;
        width: 1em;
    }

    .blog-pagination__arrow--prev::before {
        left: 0.25em;
        transform: rotate(-135deg);
        float: left;
        margin-right: 1em;
    }

    .blog-pagination__arrow--next::before {
        left: 0;
        transform: rotate(45deg);
        float: right;
        margin-left: 1em;
    }



/*css to fix clashes with other ±¬ÁÏ¹Ï css*/
.header__links {
  display: none;
}

.panel-col.panel-col--text {
  align-items: normal;
  text-align: left;
}

.panel-col > img {
  max-height: 400px;
  object-fit: cover;
}

.footer .row {
  display: block;
}

header .row {
    display: inherit;
}

@supports(display: grid) {
    @media only screen and (min-width: 40em) {
      .dmu-cards--5col {
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        }
    }
}

.dmu-card__header {
  font-weight: bold;
}