@import url("https://fonts.googleapis.com/css2?family=Anton&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  font-size: var(--font-size-default);
  --default-font-family: 'Lato', sans-serif;
  --heading-font-family: 'Anton', sans-serif;
  --heading-thin-font-family: 'Anton', sans-serif;
  --font-awesome: 'Font Awesome 5 Free';
  --font-icomoon: 'icomoon';
  --font-size-default: 1rem;
  --xs-font-size: 0.79rem;
  --sm-font-size: 0.88875rem;
  --md-font-size: var(--font-size-default);
  --lg-font-size: 2.0275rem;
  --xl-font-size: 2.280625rem;
  --xxl-font-size: 2.565625rem;
  --heading-h1-font-size: 3rem;
  --heading-h2-font-size: 2rem;
  --heading-h3-font-size: 1.625rem;
  --heading-h4-font-size: 1.375rem;
  --heading-h5-font-size: 1.25rem;
  --heading-h6-font-size: 1.125rem;
  --heading-letter-spacing: 0;
  --paragraph-font-size: var(--font-size-default);
  --paragraph-font-weight: 400;
  --paragraph-line-height: 1.8;
  --paragraph-margin-bottom: 1.25rem;
  --paragraph-lead-font-size: 1.5rem;
  --paragraph-lead-line-height: 1.8;
  --primary-color: #003F1C;
  --primary-color-rgb: 0, 63, 28;
  --secondary-color: #6E267B;
  --tertiary-color: #666666;
  --background-color: #ffffff;
  --text-color: #000000;
  --links-color: var(--secondary-color);
  --links-hover-color: var(--secondary-color);
  --white-color: #ffffff;
  --black-color: #000000;
  --warning-color: rgba(255, 193, 7, 1);
  --error-color: rgba(220, 53, 69, 1);
  --links-text-decoration: underline;
  --links-text-decoration-hover: none;
  --list-style-type-1st-level: disc;
  --list-style-type-2nd-level: circle;
  --list-margin-left: 1.25rem;
  --list-margin-bottom: 1rem;
  --button-btn1-bg-color: var(--secondary-color);
  --button-btn1-bg-color-hover: var(--primary-color);
  --button-btn1-color: var(--white-color);
  --button-btn1-color-hover: var(--white-color);
  --button-btn2-bg-color: var(--primary-color);
  --button-btn2-bg-color-hover: var(--secondary-color);
  --button-btn2-color: var(--white-color);
  --button-btn2-color-hover: var(--white-color);
  --button-btn3-bg-color: var(--secondary-color);
  --button-btn3-bg-color-hover: var(--secondary-color);
  --button-btn3-color: var(--white-color);
  --button-btn3-color-hover: var(--white-color);
  --table-border-collapse: collapse;
  --alert-margin-bottom: 1.25rem;
  --alert-padding: 1.875rem;
  --alert-bg-color-frame-layout-1: #458600;
  --alert-color-frame-layout-1: var(--white-color);
  --alert-bg-color-frame-layout-2: var(--warning-color);
  --alert-color-frame-layout-2: var(--primary-color);
  --alert-bg-color-frame-layout-3: var(--error-color);
  --alert-color-frame-layout-3: var(--white-color);
  --timeline-item-marker-bg-color: var(--secondary-color);
  --timeline-item-line-border-color: var(--secondary-color);
  --timeline-item-content-heading-color: var(--primary-color);
}

html {
  font-family: var(--default-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  letter-spacing: var(--heading-letter-spacing);
  word-break: break-word;
}

h1 {
  font-size: var(--heading-h1-font-size);
}

h2 {
  font-size: var(--heading-h2-font-size);
}

h3 {
  font-size: var(--heading-h3-font-size);
}

h4 {
  font-size: var(--heading-h4-font-size);
}

h5 {
  font-size: var(--heading-h5-font-size);
}

h6 {
  font-size: var(--heading-h6-font-size);
}

p {
  color: var(--text-color);
  font-family: var(--default-font-family);
  font-size: var(--paragraph-font-size);
  font-weight: var(--paragraph-font-weight);
  line-height: var(--paragraph-line-height);
}
p.lead {
  font-size: var(--paragraph-lead-font-size);
  line-height: var(--paragraph-lead-line-height);
}

a {
  color: var(--links-color);
  text-decoration: var(--links-text-decoration);
}
a:hover {
  color: var(--links-hover-color);
  text-decoration: var(--links-text-decoration-hover);
}

ul,
ol {
  list-style-type: var(--list-style-type-1st-level);
  margin-left: var(--list-margin-left);
  margin-bottom: var(--list-margin-bottom);
}
ul li,
ol li {
  font-size: var(--paragraph-font-size);
}
ul ul,
ol ul {
  list-style-type: var(--list-style-type-2nd-level);
  margin-left: var(--list-margin-left);
  margin-bottom: var(--list-margin-bottom);
}

table {
  border-collapse: var(--table-border-collapse);
  width: 100%;
}
table th,
table td {
  border: 1px solid var(--border-color);
  padding: var(--spacer-sm);
  text-align: left;
}
table th:first-child,
table td:first-child {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
table th:last-child,
table td:last-child {
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

img {
  max-width: 100%;
  height: auto;
}

#main-content {
  margin-bottom: 40px;
}

.template-continue .section-content {
  display: flex;
  gap: 30px;
  min-height: max-content;
  max-width: var(--content-width);
  margin: 0 auto;
}
@media (max-width: 48rem) {
  .template-continue .section-content {
    margin: 20px !important;
  }
}
@media (max-width: 36rem) {
  .template-continue .section-content {
    margin: 20px !important;
  }
}
.template-continue .section-content:has(.section-sidebar) .section-content-elements {
  padding-inline: 3rem 2rem;
  width: 75%;
}
@media (max-width: ) {
  .template-continue .section-content:has(.section-sidebar) {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .template-continue .section-content:has(.section-sidebar) {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .template-continue .section-content:has(.section-sidebar) {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .template-continue .section-content:has(.section-sidebar) {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 48rem) {
  .template-continue .section-content:has(.section-sidebar) {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 62rem) {
  .template-continue .section-content:has(.section-sidebar) {
    flex-direction: column-reverse !important;
  }
}
.template-continue .section-content .section-content-elements {
  padding-inline: 3rem;
}
@media (max-width: 48rem) {
  .template-continue .section-content .section-content-elements {
    padding-inline: 0 !important;
  }
}
@media (max-width: 36rem) {
  .template-continue .section-content .section-content-elements {
    padding-inline: 0 !important;
  }
}
.template-continue .section-content .section-sidebar {
  position: sticky;
  width: 25%;
}
@media (max-width: 36rem) {
  .template-continue .section-content .section-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .template-continue .section-content .section-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .template-continue .section-content .section-sidebar {
    width: 100% !important;
  }
}
.template-continue .section-content .section-sidebar .ctype-menu_pages,
.template-continue .section-content .section-sidebar .ctype-menu_subpages,
.template-continue .section-content .section-sidebar .fce-anchorlinks {
  position: sticky;
  top: 40px;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages h2,
.template-continue .section-content .section-sidebar .ctype-menu_subpages h2,
.template-continue .section-content .section-sidebar .fce-anchorlinks h2 {
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.25);
  font-size: 1.5rem;
  padding-bottom: 14px;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages ul,
.template-continue .section-content .section-sidebar .ctype-menu_subpages ul,
.template-continue .section-content .section-sidebar .fce-anchorlinks ul {
  display: flex;
  flex-direction: column;
  gap: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages ul li,
.template-continue .section-content .section-sidebar .ctype-menu_subpages ul li,
.template-continue .section-content .section-sidebar .fce-anchorlinks ul li {
  margin: 0 0 10px 20px;
  position: relative;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages ul li::before,
.template-continue .section-content .section-sidebar .ctype-menu_subpages ul li::before,
.template-continue .section-content .section-sidebar .fce-anchorlinks ul li::before {
  border-left: 3px solid var(--secondary-color);
  border-top: 3px solid var(--secondary-color);
  content: "";
  height: 10px;
  left: -20px;
  position: absolute;
  top: 9px;
  transform: rotate(135deg);
  width: 10px;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages ul li a,
.template-continue .section-content .section-sidebar .ctype-menu_subpages ul li a,
.template-continue .section-content .section-sidebar .fce-anchorlinks ul li a {
  color: var(--secondary-color);
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 6px;
  text-decoration: none;
  width: 100%;
}
.template-continue .section-content .section-sidebar .ctype-menu_pages ul li a:hover,
.template-continue .section-content .section-sidebar .ctype-menu_subpages ul li a:hover,
.template-continue .section-content .section-sidebar .fce-anchorlinks ul li a:hover {
  text-decoration: underline;
}
.template-continue .section-content .section-sidebar .fce-anchorlinks {
  margin-top: 3rem;
}

.template-home {
  content: "";
}

.frame .tx_solr {
  margin: 0 !important;
  max-width: 100vw !important;
}
.frame .tx_solr .section-title .solr__search-term {
  color: var(--secondary-color);
}
.frame .tx_solr ul {
  list-style: none;
  margin: 0;
}

.fce-alert {
  margin-bottom: var(--alert-margin-bottom);
  padding: var(--alert-padding);
}
.fce-alert.layout-1 {
  background-color: var(--alert-bg-color-frame-layout-1);
  color: var(--alert-color-frame-layout-1);
}
.fce-alert.layout-1 p {
  color: var(--alert-color-frame-layout-1);
  margin: 0;
}
.fce-alert.layout-2 {
  background-color: var(--alert-bg-color-frame-layout-2);
  color: var(--alert-color-frame-layout-2);
}
.fce-alert.layout-2 p {
  color: var(--alert-color-frame-layout-2);
  margin: 0;
}
.fce-alert.layout-3 {
  background-color: var(--alert-bg-color-frame-layout-3);
  color: var(--alert-color-frame-layout-3);
}
.fce-alert.layout-3 p {
  color: var(--alert-color-frame-layout-3);
  margin: 0;
}

.section-sidebar .fce-anchorlinks {
  position: sticky;
  top: 40px;
}
.section-sidebar .fce-anchorlinks h2 {
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.25);
  font-size: 1.5rem;
  padding-bottom: 14px;
}
.section-sidebar .fce-anchorlinks ul {
  display: flex;
  flex-direction: column;
  gap: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-sidebar .fce-anchorlinks ul li {
  margin: 0 0 10px 20px;
  position: relative;
}
.section-sidebar .fce-anchorlinks ul li::before {
  border-left: 3px solid var(--secondary-color);
  border-top: 3px solid var(--secondary-color);
  content: "";
  height: 10px;
  left: -20px;
  position: absolute;
  top: 9px;
  transform: rotate(135deg);
  width: 10px;
}
.section-sidebar .fce-anchorlinks ul li a {
  color: var(--secondary-color);
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 6px;
  text-decoration: none;
  width: 100%;
}
.section-sidebar .fce-anchorlinks ul li a:hover {
  text-decoration: underline;
}

.frame-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-color: none;
  --bs-accordion-color: var(--primary-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M8 1a.5.5 0 0 1 .5.5v6h6a.5.5 0 0 1 0 1h-6v6a.5.5 0 0 1-1 0v-6h-6a.5.5 0 0 1 0-1h6v-6A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-transform: rotate(0deg);
  --bs-accordion-btn-icon-transition: transform 0.3s ease;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--primary-color);
  --bs-accordion-active-bg: transparent;
  border-block: 1px solid #adb5bd;
  margin-top: -1px;
  margin-inline-start: 3rem;
}
@media (max-width: 36rem) {
  .frame-accordion {
    margin-inline: 0 !important;
  }
}
@media (max-width: 48rem) {
  .frame-accordion {
    margin-inline: 0 !important;
  }
}
@media (max-width: 62rem) {
  .frame-accordion {
    margin-inline: 0 !important;
  }
}
.frame-accordion:last-of-type {
  margin-block-end: 40px;
}
.frame-accordion .accordion-item {
  margin-inline: 0 !important;
  max-width: 100% !important;
  padding: 1.125rem 0;
}
.frame-accordion .accordion-item h2 .accordion-button {
  font-family: var(--default-font-family);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}
.frame-accordion .accordion-item h2 .accordion-button:focus {
  outline: none;
  border: 1px solid var(--primary-color);
  border-radius: 0 !important;
}
.frame-accordion .accordion-item h2 .accordion-button::before, .frame-accordion .accordion-item h2 .accordion-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background: no-repeat center/contain;
  transition: opacity 0.3s ease;
}
.frame-accordion .accordion-item h2 .accordion-button::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M8 1a.5.5 0 0 1 .5.5v6h6a.5.5 0 0 1 0 1h-6v6a.5.5 0 0 1-1 0v-6h-6a.5.5 0 0 1 0-1h6v-6A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e");
  opacity: 1;
  z-index: 1;
}
.frame-accordion .accordion-item h2 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3e%3c/svg%3e");
  opacity: 0;
  z-index: 2;
}
.frame-accordion .accordion-item h2 .accordion-button:not(.collapsed)::before {
  opacity: 0;
}
.frame-accordion .accordion-item h2 .accordion-button:not(.collapsed)::after {
  opacity: 1;
}

.breadcrumb {
  justify-content: center;
  margin: 20px auto 0;
  max-width: 900px;
  order: 4;
}
.breadcrumb ul {
  display: flex;
  list-style: none;
}
.breadcrumb ul li a {
  color: var(--primary-color);
  text-decoration: none;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}
.breadcrumb ul li:last-of-type {
  color: #687179;
}

.btn {
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.40);
  --bs-btn-hover-border-color: var(--primary-color);
  align-items: center;
  border: none;
  border-radius: 8px;
  display: flex;
  font-family: var(--default-font-family);
  font-weight: 800;
  margin-bottom: 20px;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  width: fit-content;
}
.btn:focus-visible {
  border-width: 1px;
  border-style: solid;
  border-color: var(--bs-btn-hover-border-color);
  outline: revert;
}
.btn::after {
  content: "";
  height: 10px;
  margin-left: 10px;
  transform: rotate(135deg);
  width: 10px;
}
.btn.btn-1 {
  background-color: var(--button-btn1-bg-color);
  color: var(--button-btn1-color);
}
.btn.btn-1:hover {
  background-color: var(--button-btn1-bg-color-hover);
  color: var(--button-btn1-color-hover);
}
.btn.btn-1::after {
  border-left: 3px solid var(--button-btn1-color);
  border-top: 3px solid var(--button-btn1-color);
}
.btn.btn-2 {
  background-color: var(--button-btn2-bg-color);
  color: var(--button-btn2-color);
}
.btn.btn-2:hover {
  background-color: var(--button-btn2-bg-color-hover);
  color: var(--button-btn2-color-hover);
}
.btn.btn-2::after {
  border-left: 3px solid var(--button-btn2-color);
  border-top: 3px solid var(--button-btn2-color);
}

.template-home .section-container .fce-call-to-action .frame-inner {
  position: relative;
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner {
    margin: 0 30px !important;
  }
}
.template-home .section-container .fce-call-to-action .frame-inner .btn {
  position: absolute !important;
  top: -522px;
  right: 0;
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    position: relative !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    position: relative !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    position: relative !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    position: relative !important;
  }
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    top: 0 !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    top: 0 !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    top: 0 !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn {
    top: 0 !important;
  }
}
.template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
  background-color: var(--white-color);
  color: var(--primary-color);
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    background-color: var(--secondary-color) !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    background-color: var(--secondary-color) !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    background-color: var(--secondary-color) !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    background-color: var(--secondary-color) !important;
  }
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    color: var(--white-color) !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    color: var(--white-color) !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    color: var(--white-color) !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1 {
    color: var(--white-color) !important;
  }
}
.template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
  border-left: 3px solid var(--primary-color);
  border-top: 3px solid var(--primary-color);
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-left: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-left: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-left: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-left: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 75rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-top: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 62rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-top: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 48rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-top: 3px solid var(--white-color) !important;
  }
}
@media (max-width: 36rem) {
  .template-home .section-container .fce-call-to-action .frame-inner .btn.btn-1::after {
    border-top: 3px solid var(--white-color) !important;
  }
}
.template-home .section-container .fce-call-to-action:last-child .frame-inner .btn {
  top: -373px;
}

@media (max-width: 75rem) {
  .frame.frame-cards > * {
    max-width: unset !important;
  }
}
@media (max-width: 62rem) {
  .frame.frame-cards > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-cards > * {
    max-width: unset !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-cards > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-cards > * {
    padding-inline: 0 !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-cards > * {
    padding-inline: 0 !important;
  }
}

.frame-cards .frame_inner ul {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  list-style-type: none;
  margin-left: 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
}
@media (max-width: 36rem) {
  .frame-cards .frame_inner ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 48rem) {
  .frame-cards .frame_inner ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 62rem) {
  .frame-cards .frame_inner ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 75rem) {
  .frame-cards .frame_inner ul {
    grid-template-columns: 1fr !important;
  }
}
.frame-cards .frame_inner ul:has(> li:nth-child(2):last-child) > li:nth-child(2) {
  grid-column: 2;
}
.frame-cards .frame_inner ul li {
  overflow: hidden;
}
@media (max-width: 36rem) {
  .frame-cards .frame_inner ul li {
    grid-column: auto !important;
  }
}
@media (max-width: 48rem) {
  .frame-cards .frame_inner ul li {
    grid-column: auto !important;
  }
}
@media (max-width: 62rem) {
  .frame-cards .frame_inner ul li {
    grid-column: auto !important;
  }
}
@media (max-width: 75rem) {
  .frame-cards .frame_inner ul li {
    grid-column: auto !important;
  }
}
.frame-cards .frame_inner ul li .card {
  background-color: transparent;
  border: none;
  --bs-card-border-radius: inherit;
  --bs-card-inner-border-radius: inherit;
  height: 400px;
  position: relative;
  width: 400px;
}
.frame-cards .frame_inner ul li .card .card-body {
  align-content: end;
}
.frame-cards .frame_inner ul li .card .card-body h2 {
  font-size: var(--heading-h3-font-size);
}
.frame-cards .frame_inner ul li .card .card-body h2 a {
  color: var(--white-color);
  text-decoration: none;
}
.frame-cards .frame_inner ul li .card .card-body h2 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--white-color);
}
.frame-cards .frame_inner ul li .card .card-body p {
  color: var(--white-color);
}
.frame-cards .frame_inner ul li .card .card-image {
  margin: 0 0 20px 0;
  position: absolute;
  z-index: -2;
}
.frame-cards .frame_inner ul li .card .card-image figure {
  height: 400px;
  position: relative;
  width: 400px;
}
@media (max-width: 36rem) {
  .frame-cards .frame_inner ul li .card .card-image figure {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .frame-cards .frame_inner ul li .card .card-image figure {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .frame-cards .frame_inner ul li .card .card-image figure {
    width: 100% !important;
  }
}
@media (max-width: 75rem) {
  .frame-cards .frame_inner ul li .card .card-image figure {
    width: 100% !important;
  }
}
.frame-cards .frame_inner ul li .card .card-image figure img {
  height: 400px;
  margin: 0;
  object-fit: cover;
  width: 400px;
}
.frame-cards .frame_inner ul li .card .card-image figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(180deg, rgba(0, 0, 0, 0) 42.37%, rgba(0, 0, 0, 0.6375) 75%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
@media (max-width: 75rem) {
  .frame-cards .frame_inner ul li .card .card-image figure::after {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .frame-cards .frame_inner ul li .card .card-image figure::after {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .frame-cards .frame_inner ul li .card .card-image figure::after {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .frame-cards .frame_inner ul li .card .card-image figure::after {
    width: 100% !important;
  }
}

.template-home .frame-cards {
  margin-bottom: 1rem;
}
@media (max-width: 75rem) {
  .template-home .frame-cards .frame_inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 62rem) {
  .template-home .frame-cards .frame_inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 48rem) {
  .template-home .frame-cards .frame_inner {
    margin: 0 30px !important;
  }
}
@media (max-width: 36rem) {
  .template-home .frame-cards .frame_inner {
    margin: 0 30px !important;
  }
}
.template-home .frame-cards .frame_inner ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 75rem) {
  .template-home .frame-cards header {
    margin: 0 30px !important;
  }
}
@media (max-width: 62rem) {
  .template-home .frame-cards header {
    margin: 0 30px !important;
  }
}
@media (max-width: 48rem) {
  .template-home .frame-cards header {
    margin: 0 30px !important;
  }
}
@media (max-width: 36rem) {
  .template-home .frame-cards header {
    margin: 0 30px !important;
  }
}
.template-home .frame-cards header h2:not(.card-title) {
  align-items: center;
  color: var(--primary-color);
  display: flex;
  gap: 2.5rem;
  margin-top: 75px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
.template-home .frame-cards header h2:not(.card-title)::before {
  background-image: url("../Images/ster.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 40px;
  left: -25px;
  position: absolute;
  top: -20px;
  width: 40px;
}
.template-home .frame-cards header h2:not(.card-title)::after {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 1px;
  flex: 1;
}

.emergency-banner {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
}
.emergency-banner .ctype-shortcut::before {
  background: var(--background-color);
  border-radius: 50%;
  line-height: 1.5;
}
.emergency-banner .ctype-shortcut [class*=ctype-] {
  color: #ffffff;
}
.emergency-banner .ctype-shortcut [class*=ctype-] h2 {
  margin-bottom: 0.5rem;
}
.emergency-banner .ctype-shortcut [class*=ctype-] .ce-textpic {
  font-family: var(--font-family);
  line-height: 1.5;
}
.emergency-banner .ctype-shortcut [class*=ctype-] .ce-textpic p {
  color: #ffffff;
  font-size: 1.125rem;
  width: 100%;
}
.emergency-banner .ctype-shortcut [class*=ctype-] .ce-textpic p a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.emergency-banner .ctype-shortcut [class*=ctype-] .ce-textpic p a:hover {
  text-decoration: none;
}

@media (max-width: 75rem) {
  .frame.frame-eventnews > * {
    max-width: unset !important;
  }
}
@media (max-width: 62rem) {
  .frame.frame-eventnews > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-eventnews > * {
    max-width: unset !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-eventnews > * {
    max-width: unset !important;
  }
}
@media (max-width: 75rem) {
  .frame.frame-eventnews > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 62rem) {
  .frame.frame-eventnews > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-eventnews > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-eventnews > * {
    padding-inline: 30px !important;
  }
}

.frame-eventnews h2 {
  align-items: center;
  color: var(--primary-color);
  display: flex;
  gap: 2.5rem;
  position: relative;
}
.frame-eventnews h2:not(.ce-headline-assistive) {
  margin-block: 75px 30px;
  padding-bottom: 30px;
}
.frame-eventnews h2::before {
  background-image: url("../Images/ster.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 40px;
  left: -25px;
  position: absolute;
  top: -20px;
  width: 40px;
}
.frame-eventnews h2::after {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 1px;
  flex: 1;
}
.frame-eventnews ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}
@media (max-width: 36rem) {
  .frame-eventnews ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 48rem) {
  .frame-eventnews ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 62rem) {
  .frame-eventnews ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 75rem) {
  .frame-eventnews ul {
    grid-template-columns: 1fr !important;
  }
}
.frame-eventnews ul:has(> li:nth-child(2):last-child) > li:nth-child(2) {
  grid-column: 2;
}
.frame-eventnews ul .article-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  /* vaste 80px voor date, rest voor title */
  grid-template-rows: auto auto;
  grid-template-areas: "date title" "description description";
  height: 250px;
  overflow: hidden;
  margin-bottom: 5px;
  padding: 20px;
  position: relative;
  width: auto;
  box-shadow: 0px 16px 52px -2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 36rem) {
  .frame-eventnews ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 48rem) {
  .frame-eventnews ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 62rem) {
  .frame-eventnews ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 75rem) {
  .frame-eventnews ul .article-item {
    grid-column: auto !important;
  }
}
.frame-eventnews ul .article-item__media {
  display: none;
}
.frame-eventnews ul .article-item__title {
  align-content: center;
  grid-area: title;
  min-height: 100px;
  margin: 0;
  padding: 0 19px;
}
.frame-eventnews ul .article-item__title a {
  text-decoration: none;
}
.frame-eventnews ul .article-item__title a h3 {
  color: var(--secondary-color);
}
.frame-eventnews ul .article-item__title a:hover {
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
}
.frame-eventnews ul .article-item__date {
  background: var(--secondary-color);
  border-radius: 4px;
  color: var(--background-color);
  display: grid;
  grid-template-areas: "day" "month";
  grid-area: date;
  height: 100px;
  margin: 0;
  padding: 10px 19px;
  text-align: center;
  width: 80px;
}
.frame-eventnews ul .article-item__date .date__day {
  font-family: var(--heading-font-family);
  font-size: 2rem;
  grid-area: day;
  margin: 0;
}
.frame-eventnews ul .article-item__date .date__month {
  font-family: var(--heading-font-family);
  font-size: 1.125rem;
  grid-area: month;
  margin: 0;
  text-transform: uppercase;
}
.frame-eventnews ul .article-item__date .date__year {
  display: none;
}
.frame-eventnews ul .article-item__teaser {
  display: none;
}
.frame-eventnews ul .article-item__readmore {
  display: none;
}
.frame-eventnews ul .article-item__categories {
  display: none;
}
.frame-eventnews ul .article-item__tags {
  display: none;
}
.frame-eventnews ul .article-item__author {
  display: none;
}
.frame-eventnews ul .article-item__event-details {
  grid-area: description;
  padding-top: 16px;
}
.frame-eventnews ul .article-item__event-details > div {
  margin: 0 0 5px;
  position: relative;
}
.frame-eventnews ul .article-item__event-details > div span {
  padding-left: 24px;
}
.frame-eventnews ul .article-item__event-details .event-details__organizer::before {
  background: url("../Icons/marker.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.frame-eventnews ul .article-item__event-details .event-details__location::before {
  background: url("../Icons/marker.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.frame-eventnews ul .article-item__event-details .event-details__date::before {
  background: url("../Icons/calendar.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.frame-eventnews ul .article-item__event-details .event-details__time::before {
  background: url("../Icons/clock.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}

/* Details page */
.ctype-news_newsdetail .section-container:has(.section-event-content) {
  display: flex;
  gap: 30px;
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) {
    flex-direction: column-reverse !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
  padding-left: 6rem;
  width: 70%;
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
    padding-left: 1rem !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
    padding-left: 1rem !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content {
    width: 100% !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__date, .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__categories, .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__teaser, .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__image {
  display: none;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__body h2::before, .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-content .article-item__body h2::after {
  display: none;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
  position: sticky;
  top: 100px;
  width: 30%;
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    position: relative !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    position: relative !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    position: relative !important;
  }
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    position: relative !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    top: 0 !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    top: 0 !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    top: 0 !important;
  }
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    top: 0 !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar {
    width: 100% !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  /* vaste 80px voor date, rest voor title */
  grid-template-rows: auto auto;
  grid-template-areas: "date description";
  column-gap: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 20px;
  position: relative;
  width: 100%;
  box-shadow: 0px 16px 52px -2px rgba(0, 0, 0, 0.1);
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__date {
  background: var(--secondary-color);
  border-radius: 4px;
  color: var(--background-color);
  display: grid;
  grid-template-areas: "day" "month";
  grid-area: date;
  height: 100px;
  margin: 0;
  padding: 10px 19px;
  text-align: center;
  width: 80px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__date .date__day {
  font-family: var(--heading-font-family);
  font-size: 2rem;
  grid-area: day;
  margin: 0;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__date .date__month {
  font-family: var(--heading-font-family);
  font-size: 1.125rem;
  grid-area: month;
  margin: 0;
  text-transform: uppercase;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__date .date__year {
  display: none;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details {
  grid-area: description;
  padding-top: 16px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details > div {
  margin: 0 0 5px;
  position: relative;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details > div span {
  padding-left: 24px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details .event-details__organizer::before {
  background: url("../Icons/marker.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details .event-details__location::before {
  background: url("../Icons/marker.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details .event-details__date::before {
  background: url("../Icons/calendar.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .article-item__event-details .event-details__time::before {
  background: url("../Icons/clock.svg") no-repeat left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 4px;
  width: 18px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles h2 {
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.25);
  font-size: 1.5rem;
  padding-bottom: 14px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles ul {
  display: flex;
  flex-direction: column;
  gap: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles ul li {
  margin: 0 0 10px 20px;
  position: relative;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles ul li::before {
  border-left: 3px solid var(--secondary-color);
  border-top: 3px solid var(--secondary-color);
  content: "";
  height: 10px;
  left: -20px;
  position: absolute;
  top: 9px;
  transform: rotate(135deg);
  width: 10px;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles ul li a {
  color: var(--secondary-color);
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 6px;
  text-decoration: none;
  width: 100%;
}
.ctype-news_newsdetail .section-container:has(.section-event-content) .section-event-sidebar .event-related-articles ul li a:hover {
  text-decoration: underline;
}

#hero .jumbotron {
  padding: 0;
}
#hero .jumbotron .row {
  margin-right: 0;
  /* hides scrollbar */
}
#hero .jumbotron .row figure {
  display: block;
  height: 500px;
  padding-right: 0;
}
@media (max-width: 36rem) {
  #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
#hero .jumbotron .row figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
#hero .jumbotron .row > div:first-child {
  height: 500px;
  overflow: hidden;
  padding: 0;
  width: 100vw;
}
#hero .jumbotron .row > div:first-child > * {
  max-width: 100vw !important;
}
#hero .jumbotron .row > div:first-child .ce-gallery {
  width: 100%;
}
#hero .jumbotron .row > div:first-child .ce-gallery .ce-outer {
  float: left;
  right: unset;
}
#hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner {
  float: left;
  right: unset;
  width: 100vw;
}
#hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column {
  width: 100%;
}
#hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column figure {
  display: block;
}
#hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column figure img {
  height: revert-layer;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.template-home #hero .jumbotron .row {
  display: grid;
  grid-template-columns: 50vw 50vw;
  --bs-gutter-x: 2rem;
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron .row {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron .row {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron .row {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron .row {
    grid-template-columns: 1fr !important;
  }
}
.template-home #hero .jumbotron .row figure {
  height: 650px;
  margin: 0;
  padding: 0;
  width: 100vw;
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
.template-home #hero .jumbotron .row figure img {
  object-position: top center;
}
.template-home #hero .jumbotron .row > div {
  display: flex;
  align-items: center;
  margin-block-start: -6rem;
  min-height: 450px;
  padding-inline: 2rem;
  width: 100vw;
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron .row > div {
    margin-block: 0 !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron .row > div {
    margin-block: 0 !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron .row > div {
    margin-block: 0 !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron .row > div {
    margin-block: 0 !important;
  }
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron .row > div {
    padding-block: 1rem !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron .row > div {
    padding-block: 1rem !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron .row > div {
    padding-block: 1rem !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron .row > div {
    padding-block: 1rem !important;
  }
}
.template-home #hero .jumbotron > div:last-child {
  background-color: #f4faef;
  height: 650px;
  width: 50vw;
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron > div:last-child {
    height: auto !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child {
    height: auto !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child {
    height: auto !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child {
    height: auto !important;
  }
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron > div:last-child {
    padding: 0 !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child {
    padding: 0 !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child {
    padding: 0 !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child {
    padding: 0 !important;
  }
}
@media (max-width: 75rem) {
  .template-home #hero .jumbotron > div:last-child {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    margin: 0 !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    margin: 0 !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    margin: 0 !important;
  }
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    max-width: unset !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child > * {
    max-width: unset !important;
  }
}
.template-home #hero .jumbotron > div:last-child p {
  color: var(--text-color);
  font-family: var(--font-family-base);
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 62rem) {
  .template-home #hero .jumbotron > div:last-child p {
    width: auto !important;
  }
}
@media (max-width: 48rem) {
  .template-home #hero .jumbotron > div:last-child p {
    width: auto !important;
  }
}
@media (max-width: 36rem) {
  .template-home #hero .jumbotron > div:last-child p {
    width: auto !important;
  }
}

.go-to-top {
  background-color: var(--secondary-color);
  border-radius: 50%;
  color: var(--background-color);
  right: 0;
  top: 0;
}
.go-to-top:hover {
  background-color: #000000;
  color: var(--background-color);
}
.go-to-top::before {
  border-left: 2px solid var(--background-color);
  border-top: 2px solid var(--background-color);
  content: "";
  height: 12px;
  left: 20px;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  width: 12px;
}
.go-to-top::after {
  background-color: var(--background-color);
  content: "";
  height: 13px;
  left: 25px;
  position: absolute;
  top: 21px;
  width: 2px;
}

.navbar {
  box-shadow: 0px 16px 52px -2px rgba(0, 0, 0, 0.1);
  padding: 25px 50px;
  z-index: 1;
}
@media (max-width: 75rem) {
  .navbar {
    padding-inline: 0 !important;
  }
}
@media (max-width: 62rem) {
  .navbar {
    padding-inline: 0 !important;
  }
}
@media (max-width: 48rem) {
  .navbar {
    padding-inline: 25px !important;
  }
}
@media (max-width: 36rem) {
  .navbar {
    padding-inline: 25px !important;
  }
}
@media (max-width: 36rem) {
  .navbar .navbar-container {
    justify-content: center !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container {
    justify-content: center !important;
  }
}
.navbar .navbar-container .navbar-brand {
  padding: 0;
}
@media (max-width: 75rem) {
  .navbar .navbar-container .navbar-brand {
    padding-block-end: 0 !important;
  }
}
@media (max-width: 62rem) {
  .navbar .navbar-container .navbar-brand {
    padding-block-end: 0 !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container .navbar-brand {
    padding-block-end: 2rem !important;
  }
}
@media (max-width: 36rem) {
  .navbar .navbar-container .navbar-brand {
    padding-block-end: 2rem !important;
  }
}
@media (max-width: 36rem) {
  .navbar .navbar-container .navbar-brand img {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container .navbar-brand img {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .navbar .navbar-container .navbar-brand img {
    height: auto !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container .navbar-brand img {
    height: auto !important;
  }
}
.navbar .navbar-container .navbar-menu {
  margin: 0 30px 0 auto;
}
.navbar .navbar-container .navbar-menu button {
  height: 48px;
  text-transform: uppercase;
}
.navbar .navbar-container .navbar-menu button::after {
  content: none;
}
.navbar .navbar-container .navbar-menu button::before {
  border: none;
  color: #ffffff;
  content: url(../Icons/menu.svg);
  margin-right: 10px;
  padding-top: 5px;
}
.navbar .navbar-container .navbar-search form {
  display: flex;
  flex-direction: row;
  position: relative;
}
.navbar .navbar-container .navbar-search form label {
  display: none;
}
.navbar .navbar-container .navbar-search form input {
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: #000000;
  font-family: var(--font-family-base);
  font-size: 1rem;
  height: 50px;
  line-height: 1.25;
  padding-left: 20px;
  width: 340px;
}
@media (max-width: 36rem) {
  .navbar .navbar-container .navbar-search form input {
    width: 340px !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container .navbar-search form input {
    width: 340px !important;
  }
}
.navbar .navbar-container .navbar-search form input::placeholder {
  color: #687179;
}
@media (max-width: 36rem) {
  .navbar .navbar-container .navbar-search form input::placeholder {
    font-size: 0.875rem !important;
  }
}
@media (max-width: 48rem) {
  .navbar .navbar-container .navbar-search form input::placeholder {
    font-size: 0.875rem !important;
  }
}
.navbar .navbar-container .navbar-search form button {
  background: var(--secondary-color);
  border: 1px solid transparent;
  border-radius: 100%;
  height: 40px;
  position: absolute;
  right: 6px;
  text-indent: -10000px;
  top: 5px;
  width: 40px;
  z-index: 9;
}
.navbar .navbar-container .navbar-search form button::after {
  background-color: #ffffff;
  left: 21px;
  top: 25px;
}
.navbar .navbar-container .navbar-search form button::before {
  border-color: #ffffff;
  left: 11px;
  top: 11px;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions {
  background-color: #ffffff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__close {
  border: 2px solid var(--secondary-color);
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__close::after, .navbar .navbar-container .navbar-search .autocomplete-suggestions__close::before {
  background-color: var(--secondary-color);
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__resulttext {
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.2rem;
  padding: 20px;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__results {
  padding: 20px;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result {
  margin-bottom: 15px;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result:last-child {
  margin-bottom: 0;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result-link {
  padding: 15px;
  text-decoration: none;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result-link h2 {
  color: var(--secondary-color);
  font-size: 1.375rem;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result-link p {
  color: var(--text-color);
  margin: 0;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result-link:hover {
  background-color: #ebe1ed;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__result-link:hover h2 {
  text-decoration: underline;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__more {
  padding: 0 20px;
}
.navbar .navbar-container .navbar-search .autocomplete-suggestions__more a {
  padding: 10px;
  text-transform: uppercase;
}

@media (max-width: 75rem) {
  .frame.frame-news > * {
    max-width: unset !important;
  }
}
@media (max-width: 62rem) {
  .frame.frame-news > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-news > * {
    max-width: unset !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-news > * {
    max-width: unset !important;
  }
}
@media (max-width: 75rem) {
  .frame.frame-news > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 62rem) {
  .frame.frame-news > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 48rem) {
  .frame.frame-news > * {
    padding-inline: 30px !important;
  }
}
@media (max-width: 36rem) {
  .frame.frame-news > * {
    padding-inline: 30px !important;
  }
}

.frame-news h2 {
  align-items: center;
  color: var(--primary-color);
  display: flex;
  gap: 2.5rem;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
.frame-news h2::before {
  background-image: url("../Images/ster.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 40px;
  left: -25px;
  position: absolute;
  top: -20px;
  width: 40px;
}
.frame-news h2::after {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 1px;
  flex: 1;
}
.frame-news ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}
@media (max-width: 36rem) {
  .frame-news ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 48rem) {
  .frame-news ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 62rem) {
  .frame-news ul {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 75rem) {
  .frame-news ul {
    grid-template-columns: 1fr !important;
  }
}
.frame-news ul:has(> li:nth-child(2):last-child) > li:nth-child(2) {
  grid-column: 2;
}
.frame-news ul .article-item {
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: end;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
  width: 400px;
}
@media (max-width: 36rem) {
  .frame-news ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 48rem) {
  .frame-news ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 62rem) {
  .frame-news ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 75rem) {
  .frame-news ul .article-item {
    grid-column: auto !important;
  }
}
@media (max-width: 75rem) {
  .frame-news ul .article-item {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .frame-news ul .article-item {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .frame-news ul .article-item {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .frame-news ul .article-item {
    width: 100% !important;
  }
}
.frame-news ul .article-item__media {
  margin: 0;
  position: absolute;
  z-index: -1;
}
.frame-news ul .article-item__media figure {
  height: 400px;
  margin: 0;
  position: relative;
  width: 400px;
}
@media (max-width: 75rem) {
  .frame-news ul .article-item__media figure {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .frame-news ul .article-item__media figure {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .frame-news ul .article-item__media figure {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .frame-news ul .article-item__media figure {
    width: 100% !important;
  }
}
.frame-news ul .article-item__media figure img {
  height: 400px;
  margin: 0;
  object-fit: cover;
  width: 400px;
}
.frame-news ul .article-item__media figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(180deg, rgba(0, 0, 0, 0) 42.37%, rgba(0, 0, 0, 0.6375) 75%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.frame-news ul .article-item__title {
  order: 2;
  margin: 0;
  padding: 0 19px;
}
.frame-news ul .article-item__title a {
  text-decoration: none;
}
.frame-news ul .article-item__title a h3 {
  color: var(--background-color);
}
.frame-news ul .article-item__title a:hover {
  text-decoration: underline;
  text-decoration-color: var(--background-color);
}
.frame-news ul .article-item__date {
  color: var(--background-color);
  display: flex;
  font-size: 0.875rem;
  line-height: 1.375;
  order: 3;
  margin: 0;
  padding: 0 19px 20px;
}
.frame-news ul .article-item__date > div {
  margin: 0 0 16px;
}
.frame-news ul .article-item__date .date__day {
  margin-right: 6px;
  width: auto;
}
.frame-news ul .article-item__date .date__month {
  margin-right: 6px;
  width: auto;
}
.frame-news ul .article-item__date .date__year {
  width: auto;
}
.frame-news ul .article-item__teaser {
  display: none;
}
.frame-news ul .article-item__readmore {
  display: none;
}
.frame-news ul .article-item__categories {
  order: 1;
  margin: 0;
  padding: 19px;
}
.frame-news ul .article-item__categories span {
  background: #EF93FF;
  color: #222830;
  font-size: 0.688rem;
  padding: 6px 8px;
  text-transform: lowercase;
}
.frame-news ul .article-item__tags {
  display: none;
}
.frame-news ul .article-item__author {
  display: none;
}

/* Details page */
.ctype-news_newsdetail #hero {
  margin: auto !important;
  max-width: 100% !important;
}
.ctype-news_newsdetail #hero .jumbotron {
  padding: 0;
}
.ctype-news_newsdetail #hero .jumbotron .row {
  margin-right: 0;
  /* hides scrollbar */
}
.ctype-news_newsdetail #hero .jumbotron .row figure {
  display: block;
  height: 500px;
  padding-right: 0;
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail #hero .jumbotron .row figure {
    height: 250px !important;
  }
}
.ctype-news_newsdetail #hero .jumbotron .row figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child {
  height: 500px;
  overflow: hidden;
  padding: 0;
  width: 100vw;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child > * {
  max-width: 100vw !important;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery {
  width: 100%;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery .ce-outer {
  float: left;
  right: unset;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner {
  float: left;
  right: unset;
  width: 100vw;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column {
  width: 100%;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column figure {
  display: block;
}
.ctype-news_newsdetail #hero .jumbotron .row > div:first-child .ce-gallery .ce-outer .ce-inner .ce-column figure img {
  height: revert-layer;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.ctype-news_newsdetail section#hero:has(img) + .section-title {
  max-width: var(--content-width) !important;
  margin: -200px auto 40px !important;
  padding: 60px 300px;
  position: relative;
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail section#hero:has(img) + .section-title {
    padding-inline: 40px !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail section#hero:has(img) + .section-title {
    padding-inline: 40px !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail section#hero:has(img) + .section-title {
    padding-inline: 40px !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail section#hero:has(img) + .section-title {
    padding-inline: 40px !important;
  }
}
.ctype-news_newsdetail .section-title .article-item__categories {
  order: 2;
  margin: 0;
  padding: 5px 19px;
}
.ctype-news_newsdetail .section-title .article-item__categories span {
  background: #EF93FF;
  color: #222830;
  font-size: 0.688rem;
  padding: 6px 8px;
  text-transform: lowercase;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) {
  display: flex;
  gap: 30px;
  padding-inline: 1rem;
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) {
    flex-direction: column !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) {
    flex-direction: column !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) {
    flex-direction: column !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) {
    flex-direction: column !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content {
  padding-left: 6rem;
  width: 75%;
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content {
    padding-left: 0 !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content {
    padding-left: 0 !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__date, .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__categories, .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__teaser, .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__image {
  display: none;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__body h2::before, .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-content .article-item__body h2::after {
  display: none;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar {
  position: sticky;
  top: 100px;
  width: 25%;
}
@media (max-width: 75rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  .ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar {
    width: 100% !important;
  }
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .article-item {
  content: "";
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles h2 {
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.25);
  font-size: 1.5rem;
  padding-bottom: 14px;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles ul {
  display: flex;
  flex-direction: column;
  gap: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles ul li {
  margin: 0 0 10px 20px;
  position: relative;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles ul li::before {
  border-left: 3px solid var(--secondary-color);
  border-top: 3px solid var(--secondary-color);
  content: "";
  height: 10px;
  left: -20px;
  position: absolute;
  top: 9px;
  transform: rotate(135deg);
  width: 10px;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles ul li a {
  color: var(--secondary-color);
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 6px;
  text-decoration: none;
  width: 100%;
}
.ctype-news_newsdetail .section-container:has(.section-news-content) .section-news-sidebar .news-related-articles ul li a:hover {
  text-decoration: underline;
}

ul.f3-widget-paginator,
ul.pagination {
  border: 1px solid #DEE2E6;
  border-radius: 4px;
  display: flex;
  gap: 0;
  width: fit-content;
}
ul.f3-widget-paginator li,
ul.pagination li {
  border-right: 1px solid #DEE2E6;
}
ul.f3-widget-paginator li:last-child,
ul.pagination li:last-child {
  border-right: none;
}
ul.f3-widget-paginator li a,
ul.pagination li a {
  color: var(--primary-color);
  display: block;
  padding: 8px 16px;
  text-decoration: none;
}
ul.f3-widget-paginator li a:hover,
ul.pagination li a:hover {
  background-color: #DEE2E6;
  text-decoration: none;
}
ul.f3-widget-paginator li:not(:has(a)),
ul.pagination li:not(:has(a)) {
  padding: 8px 16px;
}
ul.f3-widget-paginator li.current,
ul.pagination li.current {
  background-color: #DEE2E6;
  color: var(--primary-color);
  pointer-events: none;
}

nav.skip ul a {
  background: var(--background-color);
  border-bottom: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.themeblocks {
  content: "";
}

.fce-timeline .timeline-items .timeline-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item {
    flex-direction: column !important;
  }
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item {
    padding-left: 1.75rem !important;
  }
}
.fce-timeline .timeline-items .timeline-item:last-of-type .item-line {
  border-color: transparent !important;
}
.fce-timeline .timeline-items .timeline-item .item-date {
  flex: 0 0 17%;
  position: relative;
  text-align: right;
  z-index: 1;
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item .item-date {
    text-align: left !important;
  }
}
.fce-timeline .timeline-items .timeline-item .item-date::after {
  background-color: var(--timeline-item-marker-bg-color);
  border-radius: 50%;
  content: "";
  height: 1rem;
  position: absolute;
  right: -1.575rem;
  top: 0.1875rem;
  width: 1rem;
  z-index: 1;
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item .item-date::after {
    left: -2rem !important;
  }
}
.fce-timeline .timeline-items .timeline-item .item-line {
  border: 0.09375rem solid var(--timeline-item-line-border-color);
  position: relative;
  top: 0.4375rem;
  width: 0.09375rem;
  z-index: 0;
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item .item-line {
    left: 0.2rem !important;
  }
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item .item-line {
    position: absolute !important;
  }
}
@media (max-width: 36rem) {
  .fce-timeline .timeline-items .timeline-item .item-line {
    height: 100% !important;
  }
}
.fce-timeline .timeline-items .timeline-item .item-content {
  padding-bottom: 1.25rem;
}
.fce-timeline .timeline-items .timeline-item .item-content h3 {
  color: var(--timeline-item-content-heading-color);
  font-size: 1.125rem;
}

.frame .section-title {
  background-color: #f4faef;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.frame .section-title:not(:has(h1.assistive)) {
  max-height: fit-content;
  min-height: 250px;
  margin-bottom: 60px !important;
  padding: 60px 300px 40px;
}
@media (max-width: 36rem) {
  .frame .section-title:not(:has(h1.assistive)) {
    padding: 40px 30px 20px !important;
  }
}
@media (max-width: 48rem) {
  .frame .section-title:not(:has(h1.assistive)) {
    padding: 40px 30px 20px !important;
  }
}
@media (max-width: 62rem) {
  .frame .section-title:not(:has(h1.assistive)) {
    padding: 40px 30px 20px !important;
  }
}
.frame .section-title h1 {
  color: var(--text-color);
  letter-spacing: normal;
  margin-bottom: 20px !important;
  order: 1;
}
.frame .section-title p {
  font-size: 1.5rem;
  margin: 0 auto 20px;
  max-width: 900px;
  order: 3;
}
.frame .section-title p.lead {
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px !important;
}

body:not(.template-home) section#hero:has(img) + .frame .section-title {
  max-width: var(--content-width) !important;
  margin: -200px auto 40px !important;
  padding: 60px 300px;
  position: relative;
}
@media (max-width: 36rem) {
  body:not(.template-home) section#hero:has(img) + .frame .section-title {
    padding-inline: 1rem !important;
  }
}
@media (max-width: 48rem) {
  body:not(.template-home) section#hero:has(img) + .frame .section-title {
    padding-inline: 1rem !important;
  }
}
@media (max-width: 36rem) {
  body:not(.template-home) section#hero:has(img) + .frame .section-title {
    margin-inline: 0 !important;
  }
}
@media (max-width: 48rem) {
  body:not(.template-home) section#hero:has(img) + .frame .section-title {
    margin-inline: 0 !important;
  }
}
body:not(.template-home) .section-title {
  margin: 0 0 60px !important;
  max-width: 100% !important;
}
body:not(.template-home) section#hero:not(:has(img)) + .frame .section-title {
  margin: 0 0 60px !important;
  max-width: 100% !important;
}

body.template-home .frame-toptasks {
  margin-top: -210px;
  padding: 65px 60px;
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks {
    margin-top: -65px !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks {
    margin-top: 0 !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks {
    margin-top: 0 !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks {
    margin-top: 0 !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks {
    padding: 0 !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks {
    padding: 0 !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks {
    padding: 0 !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks {
    padding: 0 !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks > * {
    max-width: unset !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks > * {
    max-width: unset !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks > * {
    max-width: unset !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks > * {
    max-width: unset !important;
  }
}
body.template-home .frame-toptasks h2 {
  background-color: #d1eabd;
  color: var(--primary-color);
  line-height: 1.5;
  margin-bottom: 30px;
  padding: 65px 100px 40px;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks h2 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks h2 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks h2 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks h2 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks h2 {
    padding-inline: 30px !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks h2 {
    padding-inline: 30px !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks h2 {
    padding-inline: 30px !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks h2 {
    padding-inline: 30px !important;
  }
}
body.template-home .frame-toptasks h2::before {
  background-image: url("../Images/ster.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 40px;
  left: 75px;
  position: absolute;
  top: 50px;
  width: 40px;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks h2::before {
    left: 8px !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks h2::before {
    left: 8px !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks h2::before {
    left: 8px !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks h2::before {
    left: 8px !important;
  }
}
body.template-home .frame-toptasks h2::after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  content: "";
  height: 1px;
  left: 0;
  margin: 0 70px;
  right: 0;
  top: 145px;
  position: absolute;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks h2::after {
    margin-inline: 30px !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks h2::after {
    margin-inline: 30px !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks h2::after {
    margin-inline: 30px !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks h2::after {
    margin-inline: 30px !important;
  }
}
body.template-home .frame-toptasks ul {
  background-color: #d1eabd;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style-type: none;
  margin-left: 0;
  margin-top: -30px !important;
  padding: 16px 70px 0;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul {
    padding-inline: 30px !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul {
    padding-inline: 30px !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul {
    padding-inline: 30px !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul {
    padding-inline: 30px !important;
  }
}
body.template-home .frame-toptasks ul li {
  height: 170px;
  position: relative;
  margin: 0 0 26px;
  padding: 0;
  width: auto;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li {
    width: 100% !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li {
    width: 100% !important;
  }
}
body.template-home .frame-toptasks ul li a {
  color: var(--secondary-color);
  display: flex;
  font-family: var(--heading-font-family);
  line-height: 1.41;
  min-height: 170px;
  padding: 12px 15px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li a {
    flex-direction: column !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li a {
    flex-direction: column !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li a {
    flex-direction: column !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li a {
    flex-direction: column !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li a {
    align-items: center !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li a {
    align-items: center !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li a {
    align-items: center !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li a {
    align-items: center !important;
  }
}
body.template-home .frame-toptasks ul li a .image {
  height: 70px;
  width: 70px;
}
body.template-home .frame-toptasks ul li a .image img {
  height: 70px;
  width: 70px;
}
body.template-home .frame-toptasks ul li a .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 1.4rem;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li a .text {
    align-items: center !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li a .text {
    align-items: center !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li a .text {
    align-items: center !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li a .text {
    align-items: center !important;
  }
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li a .text {
    margin-left: 0 !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li a .text {
    margin-left: 0 !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li a .text {
    margin-left: 0 !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li a .text {
    margin-left: 0 !important;
  }
}
body.template-home .frame-toptasks ul li a .text p.title {
  color: var(--secondary-color);
  font-family: var(--heading-font-family);
  font-size: 1.4rem;
  margin-bottom: 5px;
}
body.template-home .frame-toptasks ul li a .text p.description {
  font-family: var(--default-font-family);
  font-size: 1.0625rem;
  font-style: italic;
  margin: 0;
}
@media (max-width: 36rem) {
  body.template-home .frame-toptasks ul li a .text p.description {
    text-align: center !important;
  }
}
@media (max-width: 48rem) {
  body.template-home .frame-toptasks ul li a .text p.description {
    text-align: center !important;
  }
}
@media (max-width: 62rem) {
  body.template-home .frame-toptasks ul li a .text p.description {
    text-align: center !important;
  }
}
@media (max-width: 75rem) {
  body.template-home .frame-toptasks ul li a .text p.description {
    text-align: center !important;
  }
}
body.template-home .frame-toptasks ul li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 36rem) {
  body .wrapper .frame.frame-default > * {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper .frame.frame-default > * {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper .frame.frame-default > * {
    margin: 0 !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper .frame.frame-default > * {
    margin: 0 !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper .iframe-wrap iframe {
    width: 100% !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper .iframe-wrap iframe {
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper .iframe-wrap iframe {
    height: auto !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper .iframe-wrap iframe {
    height: auto !important;
  }
}
body .wrapper .frame-default.ctype-textmedia:not(:first-of-type):has(> header) {
  margin-block-start: 2rem;
}
body .wrapper > footer {
  background-color: #f4faef;
  padding: 80px 182px 30px;
}
@media (max-width: 75rem) {
  body .wrapper > footer {
    padding: 80px 60px 40px !important;
  }
}
@media (max-width: 62rem) {
  body .wrapper > footer {
    padding: 60px 45px 30px !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper > footer {
    padding: 40px 30px 20px !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer {
    padding: 20px 15px 10px !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper > footer .footer-content .container {
    margin: 0 !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer .footer-content .container {
    margin: 0 !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper > footer .footer-content .container {
    padding: 0 !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer .footer-content .container {
    padding: 0 !important;
  }
}
body .wrapper > footer .footer-content .container .row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (max-width: 48rem) {
  body .wrapper > footer .footer-content .container .row {
    flex-direction: column !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer .footer-content .container .row {
    flex-direction: column !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper > footer .footer-content .container .row .col .frame > * {
    margin: 1rem 0 2rem !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer .footer-content .container .row .col .frame > * {
    margin: 1rem 0 2rem !important;
  }
}
@media (max-width: 48rem) {
  body .wrapper > footer .footer-content .container .row .col header {
    margin: 0 !important;
  }
}
@media (max-width: 36rem) {
  body .wrapper > footer .footer-content .container .row .col header {
    margin: 0 !important;
  }
}
body .wrapper > footer .footer-content .container .row .col header h2 {
  color: #458600;
  font-family: var(--heading-font-family);
  font-size: 1.625rem;
  margin-bottom: 20px;
}
body .wrapper > footer .footer-content .container .row .col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .wrapper > footer .footer-content .container .row .col ul li a {
  color: var(--primary-color);
  display: block;
  padding-bottom: 6px;
  width: 100%;
}
body .wrapper > footer .footer-content .container .row .col ul li a:hover {
  text-decoration: none;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a {
  display: flex;
  padding-bottom: 8px;
  text-decoration: none;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a .image {
  display: flex;
  align-items: center;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a .image img {
  height: 20px;
  width: 20px;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a .text {
  display: flex;
  margin-left: 0.5rem;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a .text p.title {
  margin: 0;
}
body .wrapper > footer .footer-content .container .row .col .fce-imagelinklist ul li a:hover {
  text-decoration: underline;
}
body .wrapper > footer .footer-copyright .row {
  position: relative;
}
body .wrapper > footer .footer-copyright .row .col2 {
  margin-right: 60px;
}
body .wrapper > footer .footer-copyright .row ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: end;
  list-style-type: none;
  margin: 0 75px 0 0;
  min-height: 50px;
  padding: 0;
}
body .wrapper > footer .footer-copyright .row ul li a {
  color: var(--primary-color);
  display: inline-block;
  padding-left: 15px;
}
body .wrapper > footer .footer-copyright .row ul li a:hover {
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */