/**
 * Font mixins
 */
/**
 * Global mixins
 */
/**
 * Buttons mixins
 */
/**
 * Link mixins
 */
/**
 * Single posts mixins
 */
/**
 * Block elements mixins
 */
/**
 * Contact form mixins
 */
/**
 * Gallery slider
 * Used in photo gallery block
 * Used on single post
 * Used on single event
 */
/**
 * Slider elements
 */
.c-page-header {
  position: relative;
  padding: 1.75rem 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
@media screen and (min-width: 1141px) {
  .c-page-header {
    cursor: default;
  }
}
.c-page-header__container, .c-page-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-page-header__link {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
  margin-right: 3rem;
}
.c-page-header__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
}
.c-page-header__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 576px) {
  .c-page-header__title {
    font-size: 1rem;
    line-height: 1;
  }
}
.c-page-header__arrow {
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1141px) {
  .c-page-header__arrow {
    display: none;
  }
}
.c-page-header__nav {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-height: 0;
  padding: 0 1.25rem;
  background-color: #000;
  transition: max-height 0.2s ease-in-out;
}
@media screen and (min-width: 769px) {
  .c-page-header__nav {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav {
    position: static;
    overflow: visible;
    width: auto;
    height: auto;
    max-height: unset;
    padding: 0;
    background-color: transparent;
    transition: unset;
  }
}
.c-page-header__nav ul {
  flex-direction: column;
  align-items: unset;
  padding: 0.75rem 0;
  margin: 0;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}
.c-page-header__nav ul li {
  display: block;
  list-style: none;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul li {
    padding: 0 0.75rem;
  }
}
.c-page-header__nav ul li:last-child {
  padding-right: 0;
}
.c-page-header__nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul li a {
    width: auto;
    padding: 0;
    color: #000;
    font-size: 1rem;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    transition: -webkit-text-decoration-color 0.2s ease-in-out;
    transition: text-decoration-color 0.2s ease-in-out;
    transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
    text-underline-offset: 0.5rem;
  }
  .c-page-header__nav ul li a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #000;
            text-decoration-color: #000;
  }
}
.c-page-header__nav ul li a.current-item {
  text-decoration: underline;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
  text-underline-offset: 0.5rem;
}
@media (max-width: 1140px) {
  .c-page-header__nav ul li a.current-item {
    position: relative;
  }
  .c-page-header__nav ul li a.current-item::before {
    position: absolute;
    top: 50%;
    left: -2.5rem;
    width: 0.75rem;
    height: 1px;
    background-color: #000;
    content: "";
  }
}
@media (max-width: 768px) {
  .c-page-header__nav ul li a.current-item::before {
    left: -1.25rem;
  }
}
@media (max-width: 1140px) {
  .c-page-header__nav ul li a.current-item {
    text-decoration: none;
  }
  .c-page-header__nav ul li a.current-item::before {
    background-color: #fff;
  }
}
.c-page-header--opened .c-page-header__arrow {
  transform: rotate(270deg);
}

body.theme-midnight-blue .c-page-header {
  border-bottom: 1px solid #0e3959;
}
body.theme-midnight-blue .c-page-header__link {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
body.theme-midnight-blue .c-page-header__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #84c2f1;
          text-decoration-color: #84c2f1;
}
body.theme-midnight-blue .c-page-header__title {
  color: #84c2f1;
}
body.theme-midnight-blue .c-page-header__arrow {
  filter: brightness(0) saturate(100%) invert(71%) sepia(36%) saturate(568%) hue-rotate(175deg) brightness(96%) contrast(96%);
}
body.theme-midnight-blue .c-page-header__nav {
  background-color: #00243f;
}
@media screen and (min-width: 1141px) {
  body.theme-midnight-blue .c-page-header__nav {
    background-color: transparent;
  }
}
body.theme-midnight-blue .c-page-header__nav ul li a {
  color: #84c2f1;
  text-decoration: none;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
body.theme-midnight-blue .c-page-header__nav ul li a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #84c2f1;
          text-decoration-color: #84c2f1;
}
@media (max-width: 1140px) {
  body.theme-midnight-blue .c-page-header__nav ul li a.current-item::before {
    background-color: #84c2f1;
  }
}

.single-news-article,
.single-event-article,
.single-person {
  max-width: 83.75rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media screen and (min-width: 577px) {
  .single-news-article,
  .single-event-article,
  .single-person {
    padding-bottom: 5rem;
  }
}
.single-news-article ul,
.single-event-article ul,
.single-person ul {
  padding-left: 1.25rem;
}
.single-news-article > .c-link,
.single-event-article > .c-link,
.single-person > .c-link {
  display: flex;
  justify-content: align-items;
  margin: 2rem 0 2.75rem;
}
@media screen and (min-width: 577px) {
  .single-news-article > .c-link,
  .single-event-article > .c-link,
  .single-person > .c-link {
    margin: 4.5rem 0 2.75rem;
  }
}
.single-news-article .post-title,
.single-event-article .post-title,
.single-person .post-title {
  margin: 0 0 2.5rem;
  font-size: 4.375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.91;
}
@media (max-width: 576px) {
  .single-news-article .post-title,
  .single-event-article .post-title,
  .single-person .post-title {
    font-size: 2rem;
    line-height: 1;
  }
}
.single-news-article .post-thumbnail,
.single-event-article .post-thumbnail,
.single-person .post-thumbnail {
  margin: 0 0 2.5rem;
}
.single-news-article .post-thumbnail img,
.single-event-article .post-thumbnail img,
.single-person .post-thumbnail img {
  width: auto;
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 577px) {
  .single-news-article .post-thumbnail img,
  .single-event-article .post-thumbnail img,
  .single-person .post-thumbnail img {
    border-radius: 1rem;
  }
}
.single-news-article .event-main-topic,
.single-event-article .event-main-topic,
.single-person .event-main-topic {
  margin: 0 0 2.5rem;
}
.single-news-article .event-main-topic .event-topic,
.single-event-article .event-main-topic .event-topic,
.single-person .event-main-topic .event-topic {
  color: #3970de;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.57;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
@media (max-width: 576px) {
  .single-news-article .event-main-topic .event-topic,
  .single-event-article .event-main-topic .event-topic,
  .single-person .event-main-topic .event-topic {
    font-size: 1.25rem;
  }
}
.single-news-article .event-main-topic .event-topic:hover,
.single-event-article .event-main-topic .event-topic:hover,
.single-person .event-main-topic .event-topic:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #3970de;
          text-decoration-color: #3970de;
}
.single-news-article .post-content__main,
.single-event-article .post-content__main,
.single-person .post-content__main {
  width: 100%;
}
.single-news-article .post-content__main .post-title,
.single-event-article .post-content__main .post-title,
.single-person .post-content__main .post-title {
  margin: 0 0 2.5rem;
  font-size: 4.375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.91;
}
@media (max-width: 576px) {
  .single-news-article .post-content__main .post-title,
  .single-event-article .post-content__main .post-title,
  .single-person .post-content__main .post-title {
    font-size: 2rem;
    line-height: 1;
  }
}
.single-news-article .post-content__main .post-summary,
.single-event-article .post-content__main .post-summary,
.single-person .post-content__main .post-summary {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 3rem;
  color: #667782;
}
@media (max-width: 576px) {
  .single-news-article .post-content__main .post-summary,
  .single-event-article .post-content__main .post-summary,
  .single-person .post-content__main .post-summary {
    font-size: 1.25rem;
  }
}
.single-news-article .post-content__main h1,
.single-news-article .post-content__main h2,
.single-news-article .post-content__main h3,
.single-news-article .post-content__main h4,
.single-news-article .post-content__main h5,
.single-news-article .post-content__main h6,
.single-event-article .post-content__main h1,
.single-event-article .post-content__main h2,
.single-event-article .post-content__main h3,
.single-event-article .post-content__main h4,
.single-event-article .post-content__main h5,
.single-event-article .post-content__main h6,
.single-person .post-content__main h1,
.single-person .post-content__main h2,
.single-person .post-content__main h3,
.single-person .post-content__main h4,
.single-person .post-content__main h5,
.single-person .post-content__main h6 {
  margin: 1rem 0 2rem;
  line-height: 1.5;
}
.single-news-article .post-content__main h1,
.single-news-article .post-content__main h2,
.single-event-article .post-content__main h1,
.single-event-article .post-content__main h2,
.single-person .post-content__main h1,
.single-person .post-content__main h2 {
  font-size: 1.75rem;
}
@media (max-width: 576px) {
  .single-news-article .post-content__main h1,
  .single-news-article .post-content__main h2,
  .single-event-article .post-content__main h1,
  .single-event-article .post-content__main h2,
  .single-person .post-content__main h1,
  .single-person .post-content__main h2 {
    font-size: 1.5rem;
  }
}
.single-news-article .post-content__main h3,
.single-event-article .post-content__main h3,
.single-person .post-content__main h3 {
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  .single-news-article .post-content__main h3,
  .single-event-article .post-content__main h3,
  .single-person .post-content__main h3 {
    font-size: 1.25rem;
  }
}
.single-news-article .post-content__main h4,
.single-event-article .post-content__main h4,
.single-person .post-content__main h4 {
  font-size: 1.25rem;
}
@media (max-width: 576px) {
  .single-news-article .post-content__main h4,
  .single-event-article .post-content__main h4,
  .single-person .post-content__main h4 {
    font-size: 1.125rem;
  }
}
.single-news-article .post-content__main h5,
.single-event-article .post-content__main h5,
.single-person .post-content__main h5 {
  font-size: 1.125rem;
}
.single-news-article .post-content__main h6,
.single-event-article .post-content__main h6,
.single-person .post-content__main h6 {
  font-size: 1rem;
}
.single-news-article .post-content__aside,
.single-event-article .post-content__aside,
.single-person .post-content__aside {
  width: 100%;
  margin: 3rem 0 0;
}
@media screen and (min-width: 993px) {
  .single-news-article .post-content__aside,
  .single-event-article .post-content__aside,
  .single-person .post-content__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.single-news-article .post-content .aside-contact,
.single-event-article .post-content .aside-contact,
.single-person .post-content .aside-contact {
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 0 0 2rem;
  background-color: #cce9ff;
}
@media screen and (min-width: 577px) {
  .single-news-article .post-content .aside-contact,
  .single-event-article .post-content .aside-contact,
  .single-person .post-content .aside-contact {
    padding: 2.5rem 2rem;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 993px) {
  .single-news-article .post-content .aside-contact,
  .single-event-article .post-content .aside-contact,
  .single-person .post-content .aside-contact {
    margin: 0;
  }
}
.single-news-article .post-content .aside-contact__title,
.single-event-article .post-content .aside-contact__title,
.single-person .post-content .aside-contact__title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.16;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-contact__title,
  .single-event-article .post-content .aside-contact__title,
  .single-person .post-content .aside-contact__title {
    font-size: 1rem;
  }
}
.single-news-article .post-content .aside-contact__text,
.single-event-article .post-content .aside-contact__text,
.single-person .post-content .aside-contact__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-contact__text,
  .single-event-article .post-content .aside-contact__text,
  .single-person .post-content .aside-contact__text {
    font-size: 0.875rem;
  }
}
.single-news-article .post-content .aside-contact__email,
.single-event-article .post-content .aside-contact__email,
.single-person .post-content .aside-contact__email {
  line-height: 1;
  overflow-wrap: break-word;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-contact__email,
  .single-event-article .post-content .aside-contact__email,
  .single-person .post-content .aside-contact__email {
    font-size: 0.875rem;
  }
}
.single-news-article .post-content .aside-contact__email:hover,
.single-event-article .post-content .aside-contact__email:hover,
.single-person .post-content .aside-contact__email:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
}
@media screen and (min-width: 993px) {
  .single-news-article .post-content .aside-data-wrapper,
  .single-event-article .post-content .aside-data-wrapper,
  .single-person .post-content .aside-data-wrapper {
    padding: 2.5rem 2rem;
  }
}
.single-news-article .post-content .aside-event-data,
.single-event-article .post-content .aside-event-data,
.single-person .post-content .aside-event-data {
  border-radius: 0.5rem;
  margin: 0 0 2rem;
  background-color: #cce9ff;
}
@media screen and (min-width: 577px) {
  .single-news-article .post-content .aside-event-data,
  .single-event-article .post-content .aside-event-data,
  .single-person .post-content .aside-event-data {
    border-radius: 1rem;
  }
}
.single-news-article .post-content .aside-event-data .post-thumbnail,
.single-event-article .post-content .aside-event-data .post-thumbnail,
.single-person .post-content .aside-event-data .post-thumbnail {
  margin: 0;
}
.single-news-article .post-content .aside-event-data .post-thumbnail img,
.single-event-article .post-content .aside-event-data .post-thumbnail img,
.single-person .post-content .aside-event-data .post-thumbnail img {
  display: block;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.single-news-article .post-content .aside-event-data .event-data-list,
.single-event-article .post-content .aside-event-data .event-data-list,
.single-person .post-content .aside-event-data .event-data-list {
  padding: 1.5rem;
}
@media screen and (min-width: 577px) {
  .single-news-article .post-content .aside-event-data .event-data-list,
  .single-event-article .post-content .aside-event-data .event-data-list,
  .single-person .post-content .aside-event-data .event-data-list {
    padding: 2.5rem 2rem;
  }
}
.single-news-article .post-content .aside-event-data .event-data-list__element,
.single-event-article .post-content .aside-event-data .event-data-list__element,
.single-person .post-content .aside-event-data .event-data-list__element {
  display: flex;
  align-items: flex-start;
  margin: 0 0 2rem 0;
}
.single-news-article .post-content .aside-event-data .event-data-list__element img,
.single-event-article .post-content .aside-event-data .event-data-list__element img,
.single-person .post-content .aside-event-data .event-data-list__element img {
  width: 1.5rem;
  height: auto;
}
.single-news-article .post-content .aside-event-data .event-data-list .event-data-text,
.single-event-article .post-content .aside-event-data .event-data-list .event-data-text,
.single-person .post-content .aside-event-data .event-data-list .event-data-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-event-data .event-data-list .event-data-text,
  .single-event-article .post-content .aside-event-data .event-data-list .event-data-text,
  .single-person .post-content .aside-event-data .event-data-list .event-data-text {
    font-size: 1rem;
    line-height: 1;
  }
}
.single-news-article .post-content .aside-event-data .event-data-list .event-icon,
.single-event-article .post-content .aside-event-data .event-data-list .event-icon,
.single-person .post-content .aside-event-data .event-data-list .event-icon {
  margin: 0 1.5rem 0 0;
}
.single-news-article .post-content .aside-event-data .event-data-list .event-date__time,
.single-event-article .post-content .aside-event-data .event-data-list .event-date__time,
.single-person .post-content .aside-event-data .event-data-list .event-date__time {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-event-data .event-data-list .event-date__time,
  .single-event-article .post-content .aside-event-data .event-data-list .event-date__time,
  .single-person .post-content .aside-event-data .event-data-list .event-date__time {
    font-size: 0.875rem;
  }
}
.single-news-article .post-content .aside-event-data .event-data-list .event_type .event-data-text span:last-child,
.single-event-article .post-content .aside-event-data .event-data-list .event_type .event-data-text span:last-child,
.single-person .post-content .aside-event-data .event-data-list .event_type .event-data-text span:last-child {
  display: none;
}
.single-news-article .post-content .aside-event-data .event-data-list .event_buttons,
.single-event-article .post-content .aside-event-data .event-data-list .event_buttons,
.single-person .post-content .aside-event-data .event-data-list .event_buttons {
  flex-wrap: wrap;
  margin: 2.5rem 0 0 0;
}
@media screen and (min-width: 577px) {
  .single-news-article .post-content .aside-event-data .event-data-list .event_buttons,
  .single-event-article .post-content .aside-event-data .event-data-list .event_buttons,
  .single-person .post-content .aside-event-data .event-data-list .event_buttons {
    margin: 4rem 0 0 0;
  }
}
.single-news-article .post-content .aside-event-data .event-data-list .event_buttons .c-button,
.single-event-article .post-content .aside-event-data .event-data-list .event_buttons .c-button,
.single-person .post-content .aside-event-data .event-data-list .event_buttons .c-button {
  margin: 0 1.5rem 1rem 0;
}
.single-news-article .post-content .aside-event-data .event-data-list .event_buttons .c-button:last-child,
.single-event-article .post-content .aside-event-data .event-data-list .event_buttons .c-button:last-child,
.single-person .post-content .aside-event-data .event-data-list .event_buttons .c-button:last-child {
  margin: 0 0 1rem 0;
}
.single-news-article .post-content .aside-tags,
.single-event-article .post-content .aside-tags,
.single-person .post-content .aside-tags {
  margin: 0 0 2.5rem;
}
.single-news-article .post-content .aside-tags__title,
.single-event-article .post-content .aside-tags__title,
.single-person .post-content .aside-tags__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 600;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-tags__title,
  .single-event-article .post-content .aside-tags__title,
  .single-person .post-content .aside-tags__title {
    font-size: 1rem;
    line-height: 1;
  }
}
.single-news-article .post-content .aside-tags__list,
.single-event-article .post-content .aside-tags__list,
.single-person .post-content .aside-tags__list {
  margin: 0 0 1rem 0;
}
.single-news-article .post-content .aside-tags__list a,
.single-event-article .post-content .aside-tags__list a,
.single-person .post-content .aside-tags__list a {
  color: #3970de;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
.single-news-article .post-content .aside-tags__list a:hover,
.single-event-article .post-content .aside-tags__list a:hover,
.single-person .post-content .aside-tags__list a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #3970de;
          text-decoration-color: #3970de;
}
.single-news-article .post-content .aside-post-date__title,
.single-event-article .post-content .aside-post-date__title,
.single-person .post-content .aside-post-date__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 600;
}
@media (max-width: 576px) {
  .single-news-article .post-content .aside-post-date__title,
  .single-event-article .post-content .aside-post-date__title,
  .single-person .post-content .aside-post-date__title {
    font-size: 1rem;
    line-height: 1;
  }
}
.single-news-article .post-content .aside-post-date__time,
.single-event-article .post-content .aside-post-date__time,
.single-person .post-content .aside-post-date__time {
  font-size: 1.125rem;
}

.single-event-article .post-content__aside {
  width: 100%;
}

.single-post .single-news-gallery,
.single-post .single-events-gallery,
.single-events .single-news-gallery,
.single-events .single-events-gallery {
  padding-bottom: 7rem;
}
.single-post .single-news-gallery .wombat-slider-container,
.single-post .single-events-gallery .wombat-slider-container,
.single-events .single-news-gallery .wombat-slider-container,
.single-events .single-events-gallery .wombat-slider-container {
  position: relative;
}
.single-post .single-news-gallery .swiper-container,
.single-post .single-events-gallery .swiper-container,
.single-events .single-news-gallery .swiper-container,
.single-events .single-events-gallery .swiper-container {
  overflow: hidden;
}
.single-post .single-news-gallery .swiper-wrapper,
.single-post .single-events-gallery .swiper-wrapper,
.single-events .single-news-gallery .swiper-wrapper,
.single-events .single-events-gallery .swiper-wrapper {
  height: 52.8vw;
  max-height: 53.5rem;
}
.single-post .single-news-gallery .c-slide-gallery,
.single-post .single-events-gallery .c-slide-gallery,
.single-events .single-news-gallery .c-slide-gallery,
.single-events .single-events-gallery .c-slide-gallery {
  width: 100%;
  height: 100%;
}
.single-post .single-news-gallery .c-slide-gallery__image,
.single-post .single-events-gallery .c-slide-gallery__image,
.single-events .single-news-gallery .c-slide-gallery__image,
.single-events .single-events-gallery .c-slide-gallery__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  margin: 0;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .c-slide-gallery__image,
  .single-post .single-events-gallery .c-slide-gallery__image,
  .single-events .single-news-gallery .c-slide-gallery__image,
  .single-events .single-events-gallery .c-slide-gallery__image {
    border-radius: 1rem;
  }
}
.single-post .single-news-gallery .c-slide-gallery__image img,
.single-post .single-events-gallery .c-slide-gallery__image img,
.single-events .single-news-gallery .c-slide-gallery__image img,
.single-events .single-events-gallery .c-slide-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-post .single-news-gallery .swiper-button,
.single-post .single-events-gallery .swiper-button,
.single-events .single-news-gallery .swiper-button,
.single-events .single-events-gallery .swiper-button {
  top: 0;
  width: 4.375rem;
  height: 100%;
  margin: 0;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-button,
  .single-post .single-events-gallery .swiper-button,
  .single-events .single-news-gallery .swiper-button,
  .single-events .single-events-gallery .swiper-button {
    width: 9.5rem;
  }
}
.single-post .single-news-gallery .swiper-button.swiper-button-prev,
.single-post .single-events-gallery .swiper-button.swiper-button-prev,
.single-events .single-news-gallery .swiper-button.swiper-button-prev,
.single-events .single-events-gallery .swiper-button.swiper-button-prev {
  left: 0;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-button.swiper-button-prev,
  .single-post .single-events-gallery .swiper-button.swiper-button-prev,
  .single-events .single-news-gallery .swiper-button.swiper-button-prev,
  .single-events .single-events-gallery .swiper-button.swiper-button-prev {
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
  }
}
.single-post .single-news-gallery .swiper-button.swiper-button-prev::after,
.single-post .single-events-gallery .swiper-button.swiper-button-prev::after,
.single-events .single-news-gallery .swiper-button.swiper-button-prev::after,
.single-events .single-events-gallery .swiper-button.swiper-button-prev::after {
  width: 3.25rem;
  height: 2.75rem;
  background-image: url("../img/icon-arrow-right-big.svg");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(351deg) brightness(101%) contrast(101%);
  transform: rotate(180deg);
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-button.swiper-button-prev::after,
  .single-post .single-events-gallery .swiper-button.swiper-button-prev::after,
  .single-events .single-news-gallery .swiper-button.swiper-button-prev::after,
  .single-events .single-events-gallery .swiper-button.swiper-button-prev::after {
    width: 4.5rem;
    height: 3.75rem;
  }
}
.single-post .single-news-gallery .swiper-button.swiper-button-next,
.single-post .single-events-gallery .swiper-button.swiper-button-next,
.single-events .single-news-gallery .swiper-button.swiper-button-next,
.single-events .single-events-gallery .swiper-button.swiper-button-next {
  right: 0;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-button.swiper-button-next,
  .single-post .single-events-gallery .swiper-button.swiper-button-next,
  .single-events .single-news-gallery .swiper-button.swiper-button-next,
  .single-events .single-events-gallery .swiper-button.swiper-button-next {
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
  }
}
.single-post .single-news-gallery .swiper-button.swiper-button-next::after,
.single-post .single-events-gallery .swiper-button.swiper-button-next::after,
.single-events .single-news-gallery .swiper-button.swiper-button-next::after,
.single-events .single-events-gallery .swiper-button.swiper-button-next::after {
  width: 3.25rem;
  height: 2.75rem;
  background-image: url("../img/icon-arrow-right-big.svg");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(351deg) brightness(101%) contrast(101%);
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-button.swiper-button-next::after,
  .single-post .single-events-gallery .swiper-button.swiper-button-next::after,
  .single-events .single-news-gallery .swiper-button.swiper-button-next::after,
  .single-events .single-events-gallery .swiper-button.swiper-button-next::after {
    width: 4.5rem;
    height: 3.75rem;
  }
}
.single-post .single-news-gallery .swiper-pagination,
.single-post .single-events-gallery .swiper-pagination,
.single-events .single-news-gallery .swiper-pagination,
.single-events .single-events-gallery .swiper-pagination {
  top: unset;
  bottom: -2.5rem;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-pagination,
  .single-post .single-events-gallery .swiper-pagination,
  .single-events .single-news-gallery .swiper-pagination,
  .single-events .single-events-gallery .swiper-pagination {
    text-align: left;
  }
}
.single-post .single-news-gallery .swiper-pagination .swiper-pagination-bullet,
.single-post .single-events-gallery .swiper-pagination .swiper-pagination-bullet,
.single-events .single-news-gallery .swiper-pagination .swiper-pagination-bullet,
.single-events .single-events-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border: 1px solid #000;
  background-color: transparent;
  opacity: 1;
}
@media screen and (min-width: 577px) {
  .single-post .single-news-gallery .swiper-pagination .swiper-pagination-bullet,
  .single-post .single-events-gallery .swiper-pagination .swiper-pagination-bullet,
  .single-events .single-news-gallery .swiper-pagination .swiper-pagination-bullet,
  .single-events .single-events-gallery .swiper-pagination .swiper-pagination-bullet {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.single-post .single-news-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.single-post .single-events-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.single-events .single-news-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.single-events .single-events-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.single-person .c-link {
  margin: 1.5rem 0 2.75rem;
}
@media screen and (min-width: 577px) {
  .single-person .c-link {
    margin: 5rem 0 2.75rem;
  }
}

/*# sourceMappingURL=single-post.css.map*/