/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('/css/fonts/roboto-v48-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('/css/fonts/roboto-v48-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/css/fonts/roboto-v48-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('/css/fonts/roboto-v48-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/css/fonts/roboto-v48-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: url('/css/fonts/roboto-v48-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  /* Fonts */
  --font-family: 'Roboto', sans-serif;
  --font-family-secondary: 'Roboto', sans-serif;
  --font-weight-thin: 100;
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-black: 900;
}
h1 {
  font-family: "Roboto";
  font-size: 3.4375rem;
  line-height: normal;
  font-weight: 300;
  font-style: normal;
}
/** umb_name:Undiryvirskrift */
h2 {
  font-size: 1.25rem;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
/** umb_name:Tekstur */
p{
  font-family: "Roboto";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
}
/** umb_name:Leinkja */
a.link-button{
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
a.link-button{
  background-color: #510212;
  color: #fff;
  padding: 11px 42px;
  border-radius: 1000px;
  margin-top: 41px;

  display: block;
  width: -moz-fit-content;
  width: fit-content;

  cursor: pointer;

  transition: background-color 0.1s ease;
}
a.link-button:hover{
  background-color: #000;
  color: #fff;
}
ol li{
  font-size: 1.125rem;
}
ul li{
  font-size: 1.125rem;
}
p {
  margin: 0;
}
p + p{
  margin-top: 24px;
}
.embeditem iframe[src^="https://www.youtube.com"]{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
.embeditem iframe[src^="https://vimeo.com"]{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
.embeditem iframe[src^="https://player.vimeo.com"]{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
[data-ani] {
  --delay: 0ms;
  --time: 400ms;
  --timing: ease;
  --distance: 100;

  opacity: 0;
  transition: opacity 400ms ease, transform 400ms ease;
  transition: opacity var(--time) var(--timing), transform var(--time) var(--timing);
  animation-fill-mode: both;
}
[data-ani-init='true'][data-ani][data-ani-run='true'], [data-ani-init='true'][data-ani*='fade'][data-ani-run='true'] {
      transform: translateY(0);
      opacity: 1;
      transition-delay: var(--delay);
    }
[data-ani-init='true'][data-ani='fade-left'] {
    transform: matrix(1, 0, 0, 1, var(--distance), 0);
  }
[data-ani-init='true'][data-ani='fade-right'] {
    transform: matrix(1, 0, 0, 1, calc(-1 * var(--distance)), 0);
  }
[data-ani-init='true'][data-ani='fade-up'] {
    transform: matrix(1, 0, 0, 1, 0, var(--distance));
  }
[data-ani-init='true'][data-ani='fade-up-right'] {
    transform: matrix(1, 0, 0, 1, calc(-1 * var(--distance)), var(--distance));
  }
[data-ani-init='true'][data-ani='fade-up-left'] {
    transform: matrix(1, 0, 0, 1, var(--distance), var(--distance));
  }
:root {
  /* Colors */
  --color-white: white;
  --color-black: black;

  /* Color intentions */
  --color-background: var(--color-white);
  --color-font: var(--color-black);

  /* Sizes */
  --side-padding: 15px;

  /* Widths */
  --page-width-large: min(1300px, calc(100vw - var(--side-padding) * 2));

  /* Z-Indexes */
  --z-index-header: 1000;
}
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-width: 100vw;

  /* Sticky footer */
  min-height: 100vh;
  min-height: 100svh;
  color: black;
  color: var(--color-font);
  font-family: 'Roboto', sans-serif;
  font-family: var(--font-family);
  background: white;
  background: var(--color-background);
}
body > main, body > .main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
.skip-link {
  position: absolute;
  top: -100%;
  color: black;
  background: #fff;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px dashed currentcolor;
}
/* Helper rules */
.max-lines {
  --max-lines: 3;

  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-line-clamp: var(--max-lines);
}
.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
/* Icons */
.c-icon {
  --icon-url: url('');
  --icon-color: currentcolor;
  --icon-size: 16px;

  display: block;
  width: 16px;
  width: var(--icon-size);
  min-width: 16px;
  min-width: var(--icon-size);
  height: 16px;
  height: var(--icon-size);
  min-height: 16px;
  min-height: var(--icon-size);
  background-color: currentcolor;
  background-color: var(--icon-color);
  -webkit-mask-image: url('');
          mask-image: url('');
  -webkit-mask-image: var(--icon-url);
          mask-image: var(--icon-url);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-icon.example {
    --icon-url: url('/images/c/icons/example.svg');
  }
.main-content{
  min-height: calc(100vh - 267px);
}
input[type="submit"]{
  background-color: #510212;
  color: #fff;
  padding: 10px 50px;
  border: 0;
  border-radius: 1000px;
  font-size: 1.0625rem;
}
input[type="file"]::-webkit-file-upload-button{
  background-color: #510212;
  color: #fff;
  padding: 10px 29px;
  border: 0;
  border-radius: 1000px;
  font-size: 1.0625rem;
}
input[type="file"]::file-selector-button{
  background-color: #510212;
  color: #fff;
  padding: 10px 29px;
  border: 0;
  border-radius: 1000px;
  font-size: 1.0625rem;
}
.umbraco-forms-fieldset{
  padding-right: 0 !important;
}
.umbraco-forms-form textarea{
  min-width: 100% !important;
}
.umbraco-forms-form input[type="text"]{
  min-width: 100% !important;
  font-size: 1.125rem !important;
}
.umbraco-forms-field .checkboxlist{
  padding-left: 0 !important;
  padding-top: 0 !important;
}
.umbraco-forms-field .checkboxlist > div{
  display: flex;
  flex-direction: row;


}
.umbraco-forms-field .checkboxlist > div input{
    margin-left: 0;
    margin-right: 12px;
  }
.umbraco-forms-field .checkboxlist > div label{
    margin-top: 0;
  }
label + .umbraco-forms-field-wrapper:has(input[type="file"]){
  margin-top: 16px;
}
.umbraco-forms-page label{
    margin-top: 12px;
  }
.umbraco-forms-page legend{
    margin-top: 12px;
  }
@media print {

  a::after {
    font-size: 90%;
    content: ' (' attr(href) ') ';
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
}
.c-popup {
  --outside-padding: 5vw;
  --max-card-width: 1098px;
  --max-card-height: calc(100vh - 100px);
  --card-padding-vertical: var(--gap-64, 64px);
  --card-padding-horizontal: var(--gap-64, 64px);

  position: fixed;
  z-index: 99999;
  display: grid;
  width: 100vw;
  height: 100vh;
  padding: 5vw;
  padding: var(--outside-padding);
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.c-popup .wrapper {
    width: calc(100vw - (var(--outside-padding) * 2));
    width: calc(100vw - calc(var(--outside-padding) * 2));
    max-width: var(--max-card-width);
    max-height: var(--max-card-height);
    padding: var(--card-padding-vertical) var(--card-padding-horizontal);
    overflow: auto;
    background-color: white;
    border-radius: 13px;
    transform: scale(1);
    align-self: center;
    justify-self: center;
    place-self: center;
  }
.c-popup.closed {
    animation: fade-out 500ms cubic-bezier(0.5, 0, 0.14, 1.32) 1 forwards;
    pointer-events: none;
  }
.c-popup.closed > .wrapper {
      animation: scale-down 500ms cubic-bezier(0.5, 0, 0.14, 1.32) 1 forwards;
    }
.c-popup:not(.c-popup.closed) {
    animation: fade-in 500ms cubic-bezier(0.5, 0, 0.14, 1.32) 1 forwards;
  }
.c-popup:not(.c-popup.closed) > .wrapper {
      animation: scale-up 500ms cubic-bezier(0.5, 0, 0.14, 1.32) 1 forwards;
    }
@keyframes fade-out {

  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fade-in {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes scale-up {

  0% {
    transform: scale(25%);
  }

  100% {
    transform: scale(100%);
  }
}
@keyframes scale-down {

  0% {
    transform: scale(100%);
  }

  100% {
    transform: scale(50%);
  }
}
*, *::before, *::after {
  box-sizing: inherit;
}
:root {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  line-height: 1.5;
}
body {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body, figure, blockquote, dl, dd, ol, ul, pre {
  margin: 0;
}
h1, h2, h3, h4, p {
  word-wrap: break-word;
}
h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}
h1, h2, h3, h4 {
  /*text-wrap: balance;*/
}
p, li, .intro-text, dd {
  text-wrap: pretty;
}
ul[role='list'], ol[role='list'] {
  list-style: none;
}
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}
img, svg, video, canvas {
  height: auto;
}
source {
  display: none;
}
img {
  -o-object-fit: cover;
     object-fit: cover;
  border-style: none;
}
input, button, textarea, select { font: inherit; }
pre { white-space: pre-wrap; }
hr {
  height: 0;
  overflow: visible;
  color: inherit;
  border-style: solid;
  border-width: 1px 0 0;
}
[hidden] {
  display: none !important;
}
:target {
  scroll-margin-block: 5ex;
  scroll-margin-block: 5rlh;
}
/* Browser fixes */
summary::-webkit-details-marker {
  display: none;
  width: 0;
  height: 0;
  margin-right: 0;
}
[data-slider-init] {
  --button-width: 40px;
  --button-height: 40px;
  --previous-arrow-color: white;
  --next-arrow-color: white;

  position: relative;
  width: inherit;
}
[data-slider-init] .slides {
    display: flex;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none; /* Firefox */
  }
[data-slider-init] .slides::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
[data-slider-init] .slides, [data-slider-init] .slides > .slide {
      width: inherit;
      margin: 0;
      padding: 0;
      list-style-type: none;
    }
[data-slider-init] .slides .slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      scroll-snap-align: center;
      scroll-snap-stop: always;
    }
.breadcrumbs_wrapper{
    padding: 42px 20px;
    color: #595959;

    text-transform: uppercase;

}
.breadcrumbs_wrapper ol{
        list-style: none;
        padding-left: 0;

        display: flex;
        flex-wrap: wrap;

        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

        box-sizing: border-box;
    }
.breadcrumbs_wrapper li{
        margin-right: 8px;

        min-width: -moz-fit-content;

        min-width: fit-content;
    }
.breadcrumbs_wrapper li span{
            margin-left: 4px;
            font-size: 0.75rem;
        }
.breadcrumbs_wrapper a{
        -webkit-text-decoration: none;
        text-decoration: none;
        line-break: strict;
        color: #595959;
        font-size: 0.625rem;
    }
.breadcrumbs_wrapper a:hover{
        -webkit-text-decoration: underline;
        text-decoration: underline;
    }
@media screen and (max-width: 750px){
.breadcrumbs_wrapper{

        padding: 15px 20px;
        padding-top: 24px;

}

        .breadcrumbs_wrapper li{
            margin-right: 6px;
        }
            .breadcrumbs_wrapper li a{
                font-size: 0.625rem;
            }

            .breadcrumbs_wrapper li span{
                font-size: 0.625rem;
                margin-left: 4px;
            }
    }
@media print{
.breadcrumbs_wrapper{
        display: none !important;

}
    }
.c-decision-list-page{
    padding: 32px 20px;
    padding-top: 0;
    padding-bottom: 74px;

    width: 100%;
    max-width: 763px;
    margin: 0 auto;
    margin-top: -36px;
}
.c-decision-list-page .description{
        padding-top: 4px;
        padding-right: 46px;
    }
.c-decision-list-page .item{
        display: block;
        width: 100%;
        max-width: 280px;
        -webkit-text-decoration: none;
        text-decoration: none;

        color: #000;

        border-top: 1px solid #E8E8E3;
        /*border-bottom: 2px solid #E8E8E3;*/

        height: -moz-fit-content;

        height: fit-content;

        padding-top: 29px;
        padding-bottom: 23px;
    }
.c-decision-list-page .item h2{
            font-size: 1.25rem;
            font-weight: 300;
            line-height: normal;
            font-style: normal;
            margin-top: 8px;
            margin-bottom: 14px;
        }
.c-decision-list-page .item .link{
            -webkit-text-decoration: underline;
            text-decoration: underline;
            color: #808080;
            font-size: 0.875rem;
        }
.c-decision-list-page .category{
        text-transform: uppercase;
        font-weight: 500;
        color: #510212;
    }
.c-decision-list-page .date{
        text-transform: uppercase;
    }
.c-decision-list-page .item:hover h2{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-decision-list-page .info{
        display: flex;
        gap: 10px;
    }
.c-decision-list-page .info p{
            font-size: 0.8125rem;
        }
.c-decision-list-page .info p + p{
            margin-top: 0;
        }
.c-decision-list-page .content{
        display: flex;
        flex-wrap: wrap;
        gap: 0px 117px;

        margin-top: 50px;
    }
@media screen and (max-width: 720px){
    
        .c-decision-list-page h1{
            font-size: 2.125rem;
            padding-top: 46px;
            padding-bottom: 13px;
        }

        .c-decision-list-page .description{
            padding-right: 0;
        }

        .c-decision-list-page .item{
            max-width: 100%;
        }

            .c-decision-list-page .item h2{
                max-width: 280px;
            }

    }
.c-decision-page-content .title-area{
        background-color: #E8E8E3;

        padding: 10px 20px;
        padding-top: 128px;
        padding-bottom: 73px;
    }
.c-decision-page-content .centered-title{
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

        display: flex;
        flex-direction: row;

        justify-content: space-between;
        gap: 128px;
    }
.c-decision-page-content h1{
        font-size: 2.5rem;
        max-width: 630px;
        margin-bottom: 24px;

        color: #510212;
    }
.c-decision-page-content .description{
        max-width: 703px;
    }
.c-decision-page-content .right-item{
        width: 100%;
        max-width: 251px;
        padding-top: 44px;
    }
.c-decision-page-content .right-item p + p{
            margin-top: 0;
        }
.c-decision-page-content .right-item a{
            display: block;
            color: #000;
            font-size: 0.9375rem;
        }
.c-decision-page-content .right-item a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-decision-page-content .side-title{
        text-transform: uppercase;
        color: #510212;
    }
.c-decision-page-content .side-title + a{
        margin-top: -3px;
    }
.c-decision-page-content p + .side-title{
        padding-top: 24px;
    }
.c-decision-page-content .date{
        font-size: 0.9375rem;
    }
.c-decision-page-content .centered{
        width: 100%;
        max-width: 750px;
        margin: 0 auto;

        padding: 32px 20px;
        padding-top: 92px;
        padding-bottom: 64px;
    }
.c-decision-page-content .link{
        background-color: #510212;
        color: #fff;

        padding: 10px 47px;
        border-radius: 1000px;

        display: block;
        width: -moz-fit-content;
        width: fit-content;
        -webkit-text-decoration: none;
        text-decoration: none;

        margin-top: 61px;
    }
.c-decision-page-content .link:hover{
        background-color: #000;
    }
.c-decision-page-content .inner-item + .inner-item{
        margin-top: 24px;
    }
.c-decision-page-content .law-link{
        -webkit-text-decoration: none;
        text-decoration: none;
        font-weight: 400;
    }
.c-decision-page-content .law-link:hover{
        -webkit-text-decoration: underline;
        text-decoration: underline;
    }
.c-decision-page-content .law-list-mobile{
        display: none;

        gap: 2px 10px;
    }
@media screen and (max-width: 620px){

        .c-decision-page-content .centered-title{
            flex-direction: column-reverse;
            gap: 21px;
        }

        .c-decision-page-content .law-list{
            display: none;
        }
        
        .c-decision-page-content .law-list-mobile{
            display: flex;
            flex-wrap: wrap;
        }

        .c-decision-page-content h1{
            font-size: 1.875rem;
            margin-top: 18px;
            margin-bottom: 45px;
        }

        .c-decision-page-content .right-item{
            display: flex;

            width: 100%;
            max-width: 100%;
            gap: 0 49px;

            padding-top: 23px;
        }

        .c-decision-page-content .title-area{
            padding-top: 0;
            padding-bottom: 54px;
        }

        .c-decision-page-content .side-title{
            font-size: 0.9375rem;
        }

        .c-decision-page-content .inner-item + .inner-item{
            margin-top: 0;
        }

        .c-decision-page-content .centered{
            padding-top: 58px;
        }

        .c-decision-page-content .link{
            margin-top: 71px;
        }

        .c-decision-page-content .date{
            font-size: 0.875rem;
        }

        .c-decision-page-content .law-link{
            font-size: 0.875rem;
        }

        .c-decision-page-content .description{
            padding-right: 10px;
        }

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

        .c-decision-page-content .law-list-mobile{
            flex-direction: column;
        }

        .c-decision-page-content .dash{
            display: none;
        }
    }
@media screen and (max-width: 360px){

        .c-decision-page-content .right-item{
            gap: 0 15px;
        }

    }
.c-featured-page{

    padding: 99px 20px;

}
.c-featured-page .centered{
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

        display: flex;
        gap: 30px;
    }
.c-featured-page .item{
        flex: 1;
    }
.c-featured-page .right-side{
        display: flex;
        justify-content: flex-end;
    }
.c-featured-page .image-holder{
        max-width: 743px;
        height: auto;
        aspect-ratio: 3 / 2.69;
        overflow: hidden;
    }
.c-featured-page .image-holder img{
            width: 100%;
        }
.c-featured-page .date-category{
        font-size: 0.8125rem;
        text-transform: uppercase;
        margin-top: 62px;
    }
.c-featured-page .news-title{
        max-width: 1237px;
        margin: 0 auto;
        padding: 0 20px;
        font-size: 1.4375rem;
        margin-top: -3px;
        margin-bottom: 34px;
        opacity: 0.5;
    }
.c-featured-page .title{
        font-size: 3.75rem;
        font-weight: 300;
        line-height: normal;
        font-style: normal;
        margin-top: 6px;
        margin-bottom: 35px;
    }
.c-featured-page .read-more{
        color: #000;
        font-size: 0.875rem;
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        margin-top: 10px;
        font-weight: 200;
    }
.c-featured-page .centered-mobile{
        display: none;

        flex-direction: column;
    }
.c-featured-page .centered-mobile .flex-item{
            display: flex;
            gap: 0 10px;
        }
.c-featured-page .read-more-mobile{
        display: none;

        color: #545454;
        font-size: 0.875rem;
        font-weight: 300;
        line-height: normal;
        font-style: normal;
    }
@media screen and (max-width: 800px){
.c-featured-page{

        padding: 30px 20px;
        padding-bottom: 32px;

}

        .c-featured-page .centered{
            /*flex-direction: column-reverse;*/
            gap: 10px;
        }

        .c-featured-page .right-side{
            justify-content: flex-end;
        }

        .c-featured-page .date-category{
            margin-top: 24px;
        }

        .c-featured-page .news-title{
            padding-left: 0;
            margin-bottom: 3px;
        }

        
        .c-featured-page .title{
            margin-top: 3px;
            margin-bottom: 4px;
            font-size: 2rem;
        }
            .c-featured-page .centered-mobile .flex-item{
                display: none;
            }

        .c-featured-page .flex-item{
            display: none;
        }
        
        .c-featured-page .image-holder{
            max-width: 100%;
            width: 100%;
        }

        .c-featured-page .centered-mobile{
            display: flex;
        }

        .c-featured-page .centered{
            display: none;
        }

        .c-featured-page .read-more-mobile{
            display: inline;
        }

    }
.c-footer {
  
  background-color: #fff;

  display: flex;
  align-items: center;

  padding: 0 20px;

  min-height: 267px;

}
.c-footer .logo{
    width: 233px;
    height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
  }
.c-footer .dark-logo{
    display: none;
  }
.c-footer .content{
    display: flex;
    align-items: center;

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

    gap: 17px;
    font-size: 0.9rem;
    line-height: 1rem;
  }
.c-footer a{
    display: block;
    color: #000;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-style: normal;
  }
.c-footer a:hover{
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
.c-footer .item{
    flex: 1;
  }
.c-footer .item span{
      font-style: normal !important;
    }
.c-footer .min-pad{
    margin-top: -46px;
    display: flex;
    justify-content: flex-end;
  }
.c-footer .min-pad a{
      -webkit-text-decoration: none;
      text-decoration: none;
    }
.c-footer .min-pad a span{
        -webkit-text-decoration: underline;
        text-decoration: underline;
      }
.c-footer .min-pad .maker-link{
      display: inline;
    }
@media screen and (max-width: 820px){
.c-footer {

    padding: 32px 20px;
    padding-top: 17px;

}

    .c-footer .content{
      flex-direction: column;
      align-items: flex-start;

      gap: 30px 0;
    }

    .c-footer .logo{
      max-width: 150px;
    }

    .c-footer .logo-item{
      display: flex;
      justify-content: flex-start;
    }

    .c-footer .min-pad{
      margin-top: 0;
    }
  }
@media print{
.c-footer {
    display: none !important;

}
  }
.dark-footer{
  background-color: #510212;
  color: #fff;
}
.dark-footer .dark-logo{
    display: inline;
  }
.dark-footer a{
    color: #fff;
  }
.dark-footer .light-logo{
    display: none;
  }
.c-404-not-found {
  padding: 32px;
  margin: 0 auto;

  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 500px){
    .c-404-not-found h1{
      font-size: 2rem;
    }
  }
.c-front-page-banner{

    min-height: 624px;
    overflow: hidden;

    position: relative;
    z-index: -1;

    padding: 0 20px;

}
.c-front-page-banner img{
        width: 100%;
        min-height: 100%;

        -o-object-fit: cover;

           object-fit: cover;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
.c-front-page-banner p, .c-front-page-banner h1{
        color: #510212;
    }
.c-front-page-banner .title{
        font-size: 3.75rem;
        font-style: normal;
        font-weight: 300;
        line-height: normal;

        margin-top: 44px;

        text-wrap: auto;
        line-break: normal;
        padding-bottom: 224px;
    }
.c-front-page-banner .subtitle{
        font-size: 1.257rem;
        font-weight: 400;
        line-height: normal;
        font-style: normal;
    }
.c-front-page-banner .title-box{
        max-width: 635px;
        width: 100%;
        margin: 0 auto;

        margin-top: 122px;
        line-break: loose;
    }
.c-front-page-banner .contents{
        margin-left: 122px;
    }
@media screen and (max-width: 800px){
.c-front-page-banner{

        min-height: 211px;
        height: auto;

}

        .c-front-page-banner .title-box{
            margin-top: 21px;
            margin-bottom: 25px;

            max-width: 350px;
            padding-left: 49px;
        }
            
            .c-front-page-banner .title-box .contents{
                margin-left: 61px;
                padding-top: 21px;
            }
                
                .c-front-page-banner .title-box .contents .title{
                    font-size: 1.25rem;
                    font-weight: 300;
                    margin-top: 12px;
                    line-height: normal;
                    max-width: 190px;
                }

                .c-front-page-banner .title-box .contents .subtitle{
                    font-size: 0.625rem;
                }

        .c-front-page-banner .subtitle{
            font-size: 0.75rem;
        }

        .c-front-page-banner .title{
            font-size: 2rem;
            padding-bottom: 52px;
            max-width: 248px;
        }

    }
@media screen and (max-width: 370px){
            .c-front-page-banner .title-box .contents{
                padding-top: 10px;
            }
    }
@media screen and (max-width: 350px){
        .c-front-page-banner .title-box{
            padding-left: 25px;
        }
    }
.c-front-page-news{

    min-height: 662px;
    background-color: #F4F4F2;

    padding: 0 20px;
    padding-bottom: 70px;
    padding-top: 100px;

}
.c-front-page-news .centered{
        
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

        padding-bottom: 64px;

        display: flex;
        flex-wrap: wrap;

        gap: 20px;

        color: #fff;
    }
.c-front-page-news .date{
        font-size: 0.8125rem;
        color: #000;
        margin-top: 23px;
        text-transform: uppercase;
    }
.c-front-page-news .title{
        font-size: 1.375rem;
        color: #510212;
        font-weight: 300;
        line-height: normal;
        font-style: normal;

        margin-top: 3px;
    }
.c-front-page-news .text{
        color: #000;
        font-size: 1rem;
        font-weight: 400;
        line-height: normal;
        font-style: normal;
        margin-top: 24px;
    }
.c-front-page-news .read-more{
        -webkit-text-decoration: underline;
        text-decoration: underline;
        font-size: 0.875rem;
        color: #000;
        margin-top: 4px;
        font-weight: 200;
    }
.c-front-page-news .read-more-news{
        display: block;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin: 0 auto;
        margin-top: 20px;
        background-color: #510212;
        color: #fff;
        -webkit-text-decoration: none;
        text-decoration: none;
        border-radius: 1000px;
        padding: 10px 54px;
        font-size: 1rem;
    }
.c-front-page-news .read-more-news:hover{
        background-color: #000;
    }
.c-front-page-news .image-holder{
        width: 100%;
        aspect-ratio: 3 / 2.74;
        overflow: hidden;
    }
.c-front-page-news .image-holder img{
            width: 100%;
            -o-object-fit: cover;
               object-fit: cover;
        }
.c-front-page-news .image{
        width: 285px;
        height: 261px;
    }
.c-front-page-news .block{
        flex: 1;
        -webkit-text-decoration: none;
        text-decoration: none;
    }
.c-front-page-news .block:hover .title{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-front-page-news .mobile{
        display: none;
    }
@media screen and (max-width: 800px){
.c-front-page-news{
        padding-top: 60px;
        padding-bottom: 28px;
        min-height: 0;

        /*.read-more-news{
            padding: 6px 35px;
            font-size: 12px;
        }*/

}

        .c-front-page-news .desktop{
            display: none;
        }

        .c-front-page-news .mobile{
            display: flex;
        }

        .c-front-page-news .centered{
            flex-direction: column;
            padding-bottom: 0;
        }

        .c-front-page-news .block{
            display: flex;
            flex-direction: row;

            gap: 20px;
        }
        
        .c-front-page-news .image-holder{
            max-width: 182px;
            height: -moz-fit-content;
            height: fit-content;
        }

        .c-front-page-news .image{
            width: 100%;
            height: auto;
            max-width: 182px;
        }

        .c-front-page-news .mobile-text{
            display: flex;
            flex-direction: column;
        }

            .c-front-page-news .mobile-text .date{
                margin-top: 0;
            }

            .c-front-page-news .mobile-text .text{
                display: none;
            }
    }
@media screen and (max-width: 450px){

        .c-front-page-news .centered{
            gap: 30px;
        }

        .c-front-page-news .image-holder{
            display: none;
        }
    }
@media screen and (max-width: 435px){

        .c-front-page-news .image-holder{
            max-width: 150px;
        }

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

        .c-front-page-news .image-holder{
            max-width: 100px;
        }

    }
.c-front-page-newsletter{
    background-color: #510212;
    min-height: 419px;

    padding: 0 20px;
}
.c-front-page-newsletter .centered{
        padding-top: 88px;
        max-width: 390px;
        width: 100%;
        margin: 0 auto;
    }
.c-front-page-newsletter form{
        display: flex;
        flex-direction: column;
    }
.c-front-page-newsletter .check-box{
        margin-top: 13px;
        margin-bottom: 64px;

        display: flex;
        align-items: flex-start;

        gap: 10px;

    }
.c-front-page-newsletter .check-box a{
            color: #fff;
        }
.c-front-page-newsletter .check-box label{
            color: #fff;
        }
.c-front-page-newsletter .title{
        font-size: 3.75rem;
        font-weight: 300;
        line-height: normal;
        font-style: normal;
        max-width: 400px;

        margin-top: 0px;
        margin-bottom: 37px;

        color: #fff;
    }
.c-front-page-newsletter .input-div{
        display: flex;
    }
.c-front-page-newsletter .email-input{
        padding: 13px 15px;
        padding-left: 26px;
        border: 0;
        outline: 0;

        border-top-left-radius: 1000px;
        border-bottom-left-radius: 1000px;

        max-width: 244px;
        width: 100%;

        font-size: 0.8125rem;
        color: #809080;
    }
.c-front-page-newsletter .submit-button{
        background-color: #E8E8E3;
        color: #000;

        border-top-right-radius: 1000px;
        border-bottom-right-radius: 1000px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;

        cursor: pointer;
        border: 0;

        padding: 10px 15px;

        display: block;

        max-width: 149px;
        width: 100%;
    }
.c-front-page-newsletter .submit-button:hover{
        background-color: #000;
        color: #fff;
    }
.c-front-page-newsletter .read-more-link{
        color: #fff;
    }
@media screen and (max-width: 460px){
.c-front-page-newsletter{

        padding: 50px 20px;
        padding-bottom: 18px;
        min-height: auto;
}

        .c-front-page-newsletter .title{
            font-size: 1.875rem;
            margin: 0 auto;
            max-width: 254px;
            margin-bottom: 24px;
        }

        .c-front-page-newsletter .centered{
            padding: 0;
            max-width: 340px;
        }

        .c-front-page-newsletter .submit-button{
            max-width: 130px;
        }

        .c-front-page-newsletter .check-box{
            margin: 0 auto;
            margin-top: 24px;
            margin-bottom: 35px;

            max-width: 312px;
        }

    }
.c-header{

  height: 77px;
  display: flex;
  align-items: center;

  padding: 0 20px;
}
.c-header .wrapper{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.c-header nav{
    display: flex;
    margin-top: 11px;
    margin-right: -7px;
    
    gap: 31px;
  }
.c-header nav a{
      text-transform: uppercase;
      font-size: 0.875rem;
      font-weight: 300;
      line-height: normal;

      color: #000;
      -webkit-text-decoration: none;
      text-decoration: none;
    }
.c-header nav a:hover{
      -webkit-text-decoration: underline;
      text-decoration: underline;
    }
.c-header nav .burger-button{
      background-color: transparent;
      border: 0;

      cursor: pointer;
      margin-left: 23px;
    }
.c-header .logo{
    width: 175px;
    height: 49px;
    -o-object-fit: contain;
       object-fit: contain;
  }
.c-header #top-menu{
    display: flex;
    list-style: none;

    /*margin-top: 12px;*/

    gap: 32px;
  }
.c-header #top-menu a{
      color: #000;
      -webkit-text-decoration: none;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0.875rem;
      font-weight: 300;
    }
/*.active{
      border-bottom: 7px solid #d0d0c8;
    }
    
    .pactive{
      border-bottom: 7px solid #d0d0c8;
    }*/
.c-header #top-menu .active > div > a{
        border-bottom: 7px solid #d0d0c8;
      }
.c-header #top-menu > li > div > a:hover{
      border-bottom: 7px solid #d0d0c8;
    }
.c-header #top-menu > li > div > a:hover::after{
      border-bottom: 1px solid #d0d0c8;
    }
.c-header #top-menu > li{
      font-size: 1rem;
      /*padding: 17px 0;*/

      position: relative;
    }
.c-header #top-menu > li .triangle-icon{
        display: none;
      }
.c-header #top-menu > li > div > a{
      height: 77px;
      display: flex;
      align-items: center;
      border-bottom: 7px solid #fff;
      padding-top: 10px;
    }
.c-header #top-menu li{
      position: relative;
    }
/*border-bottom: 7px solid #fff;*/
.c-header #top-menu > li:hover .lvl2{
        display: block;
        transition: max-height 0.5s ease-out;
        max-height: 2000px;
  
        border-top: 7px solid #D0D0C8;
      }
.c-header .lvl2{
    box-shadow: 1px 13px 14px rgba(0, 0, 0, 0.1);

    list-style: none;
    padding-left: 0;
    
    max-height: 0;
    overflow: hidden;

    width: 320px;
    min-width: 287px;

    position: absolute;
    top: 69px;
    left: 0;

    z-index: 10;
    background-color: #fff;
  }
.c-header .lvl2 a{
      padding: 17px 28px;
      padding-right: 72px;
      font-size: 1.25rem;
      font-weight: 300;
      display: block;
      width: 100%;
      position: relative;

      border-bottom: 1px solid #DCCCD0;
    }
.c-header .lvl2 .active{

      border-bottom: 0 !important;
    }
.c-header .lvl2 .active > div a{
          border-bottom: 1px solid #DCCCD0 !important;
        }
.c-header .lvl2 .active > div a{
          background-color: rgba(184, 184, 171, 0.15);
        }
.c-header .lvl2 .active > div > .triangle-icon::before{
        background-color: #AEA4A7;
      }
.c-header .lvl2 > li > div > a:hover{
      background-color: rgba(184, 184, 171, 0.15);
    }
.c-header .lvl2 > li > div:has(> a:hover) > .triangle-icon::before{
        background-color: #AEA4A7;
      }
.c-header .lvl2 > li > div:has(> .triangle-icon:hover) > a{
        background-color: rgba(184, 184, 171, 0.15);
      }
.c-header .lvl2 > li > div:has(> .triangle-icon:hover) > .triangle-icon::before{
        background-color: #AEA4A7;
      }
.c-header .lvl2 .pactive{
      border-bottom: 0 !important;
    }
.c-header .lvl2 .pactive > div > a{
        /*background-color: rgba(184, 184, 171, 0.15);*/
        background-color: #fff;
      }
.c-header .lvl2 .pactive > div > .triangle-icon{
          /*background-image: url("/images/c/icons/sub-thin.svg");*/
        }
.c-header .lvl2 .triangle-icon{
      display: block !important;
    }
.c-header .lvl2 .triangle-icon{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0px;

      width: 24px;
      height: 24px;

      background-image: url("/images/c/icons/add-thin.svg");
      background-position: center;
      background-size: 15px;
      background-repeat: no-repeat;

      background-color: transparent;
      border: 0;

      padding: 15px;

      transition: transform 0.2s ease;

      box-sizing: content-box;
    }
.c-header .lvl2 .triangle-icon::before{
      content: '';
      width: 1px;
      height: 30px;
      position: absolute;
      top: 11px;
      left: -0px;

      background-color: #DCCCD0;
    }
.c-header .lvl2 li > div{
        position: relative;
        width: 100%;
      }
.c-header .lvl2 .active-menu .lvl3{
        max-height: 1000px;
        transition: max-height 1.0s ease;
      }
.c-header .lvl2 .active-menu > div > .triangle-icon{
        background-image: url("/images/c/icons/sub-thin.svg");
      }
.c-header .lvl3{
    list-style: none;
    /*padding-left: 20px;*/
    padding-left: 0;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.2s ease;
  }
.c-header .lvl3 a{
      text-transform: capitalize !important;
    }
.c-header .lvl3 a{
      font-weight: 400;

      padding: 17px 20px;
      padding-left: 61px;
    }
.c-header .lvl3 > li > div > a:hover{
      background-color: rgba(184, 184, 171, 0.15);
    }
.c-header .lvl3 .active > div a{
          /*font-weight: 500 !important;*/
        }
.c-header .lvl3 .pactive > div > a{
        background-color: rgba(184, 184, 171, 0.15);
      }
.c-header .triangle-icon{
    cursor: pointer;
  }
.c-header .burger-button{
    display: none;

    background-color: transparent;
    border: 0;
    cursor: pointer;
  }
@media screen and (max-width: 1400px){
      .c-header #top-menu .lvl2{
        left: auto;
        right: 0;
      }

  }
@media screen and (max-width: 940px){
.c-header{
    
    height: 67px;
}

    .c-header .logo{
      width: 136px;
    }

    .c-header .burger-button{
      margin-right: 5px;
    }

      .c-header #top-menu li > div > a{
        height: 67px;
      }

      .c-header #top-menu > li{
        padding: 12px 0;
      }

      .c-header #top-menu .lvl2{
        top: 72px;
      }

  }
@media screen and (max-width: 620px){
    
    .c-header .header-menu{
      display: none;
    }

    .c-header .burger-button{
      display: block;
    }

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

    .c-header nav{
      margin-top: 0;
    }

      .c-header nav a{
        display: none;
      }

  }
@media print{
.c-header{
    display: none !important;
}
  }
.c-landing-page .title-area{
        background-color: #E8E8E3;

        position: relative;

        min-height: 417px;
    }
.c-landing-page h1{
        color: #510212;
        margin-bottom: 39px;
    }
.c-landing-page .title-box{
        max-width: 1239px;
        width: 100%;
        margin: 0 auto;

        padding-left: 20px;
        padding-right: 20px;
        padding-top: 0px;
        padding-bottom: 32px;

        position: relative;
    }
.c-landing-page .description{
        line-height: 1.4375rem;
    }
.c-landing-page .size{
        max-width: 609px;
        width: 100%;

        display: flex;
        flex-direction: column;
        min-height: 333px;

        justify-content: flex-end;
        align-items: flex-start;
    }
.c-landing-page .link-boxes{
        position: absolute;

        top: 97px;
        right: 20px;
    }
.c-landing-page .box{
        background-color: #510212;
        padding: 25px 29px;
        width: 285px;
        min-height: 189px;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
.c-landing-page .box p, .c-landing-page .box h2{
            color: #fff;
        }
.c-landing-page .box h2{
            margin-top: 0;
            max-width: 159px;
            margin-bottom: 13px;
        }
.c-landing-page .box p{
            font-size: 0.875rem;
            margin-bottom: 22px;
            line-height: 1.25rem;
        }
.c-landing-page .box a{
            display: block;
            width: -moz-fit-content;
            width: fit-content;
            background-color: #fff;
            -moz-columns: #000;
                 columns: #000;
            border-radius: 1000px;

            -webkit-text-decoration: none;

            text-decoration: none;

            padding: 0px 13px;
            font-size: 0.875rem;
        }
.c-landing-page .box a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-landing-page .box + .box{
        margin-top: 19px;
    }
.c-landing-page .content{
        
        max-width: 1202px;
        width: 100%;
        margin: 0 auto;
        margin-top: 154px;

        display: flex;
        flex-wrap: wrap;

        padding: 0px 41px;
        padding-bottom: 80px;

        gap: 54px 140px;
    }
.c-landing-page .content h2{
            font-size: 1.25rem;
            margin-top: 0;
            margin-bottom: 23px;
        }
.c-landing-page .item{
        flex: 0 0 42%;
        -webkit-text-decoration: none;
        text-decoration: none;
        color: #000;

        position: relative;
    }
.c-landing-page .item:hover h2{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-landing-page .item::before{
        content: '';
        width: 26px;
        height: 26px;

        background-color: #510212;

        -webkit-mask-image: url("/images/c/icons/bulletPoint.svg");

                mask-image: url("/images/c/icons/bulletPoint.svg");
        -webkit-mask-position: center;
                mask-position: center;
        -webkit-mask-size: contain;
                mask-size: contain;
        -webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;

        position: absolute;
        top: 0px;
        left: -45px;
    }
.c-landing-page .box-holder{
        margin-top: -29px;
    }
.c-landing-page .mobile-link-boxes{
        display: none;

        flex-direction: row;
        justify-content: flex-end;
        gap: 7px;
        padding-right: 20px;
    }
.c-landing-page .mobile-link-boxes a{
            background-color: #510212;
            color: #fff;
            -webkit-text-decoration: none;
            text-decoration: none;
            font-weight: 300;

            width: 144px;
            padding: 6px 13px;
            position: relative;
            
            display: flex;
            align-items: center;
        }
.c-landing-page .mobile-link-boxes a::after{
            content: '';
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);

            background-color: #fff;


            width: 16px;
            height: auto;
            aspect-ratio: 1 / 1;

            -webkit-mask-image: url("/images/c/icons/bulletPoint.svg");

                    mask-image: url("/images/c/icons/bulletPoint.svg");
            -webkit-mask-size: contain;
                    mask-size: contain;
            -webkit-mask-position: center;
                    mask-position: center;
            -webkit-mask-repeat: no-repeat;
                    mask-repeat: no-repeat;
        }
.c-landing-page .box-holder + .mobile-padding .content{
            margin-top: 180px;
        }
@media screen and (max-width: 1200px){
        
        .c-landing-page .mobile-padding{
            padding: 0 20px;
        }

        .c-landing-page .content{
            flex-direction: column;
            gap: 43px;

            max-width: 720px;
        }

            .c-landing-page .content h2{
                margin-bottom: 18px;
            }

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

        .c-landing-page h1{
            font-size: 1.875rem;
            margin-top: 0;
        }
            .c-landing-page .box-holder + .mobile-padding .content{
                margin-top: 68px;
            }

        .c-landing-page .title-area{
            min-height: 298px;
        }

        .c-landing-page .title-box{
            padding-top: 44px;
        }

        .c-landing-page .mobile-link-boxes{
            display: flex;
        }

        .c-landing-page .description{
            padding: 0 3px;
            padding-bottom: 20px;
        }

        .c-landing-page .desktop{
            display: none;
        }

        .c-landing-page .content{
            margin-top: 63px;
        }

        .c-landing-page .size{
            justify-content: flex-start;
            min-height: -moz-fit-content;
            min-height: fit-content;
        }
    }
@media screen and (max-width: 350px){
            .c-landing-page .mobile-link-boxes a{
                font-size: 0.875rem;
                width: 115px;
            }

    }
.c-news-page-content{

    padding: 0 22px;

}
.c-news-page-content .centered{
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
.c-news-page-content .title{
        margin-bottom: 21px;
    }
.c-news-page-content .date{
        margin: 0;
        font-size: 0.8rem;
        margin-bottom: 17px;
        text-transform: uppercase;
    }
.c-news-page-content .image-holder{
        width: 100%;
        height: auto;
        aspect-ratio: 1.34 / 1;
    }
.c-news-page-content .image-holder img{
            width: 100%;
        }
.c-news-page-content .text{
        margin-top: 61px;
        padding-bottom: 128px;
    }
@media screen and (max-width: 600px){
.c-news-page-content{

        padding-left: 0;
        padding-right: 0;

}

        .c-news-page-content .title{
            font-size: 2rem;
            padding: 0 20px;
        }

        .c-news-page-content .date{
            padding: 0 20px;
        }

        .c-news-page-content .text{
            margin-top: 32px;
            padding-left: 20px;
            padding-right: 20px;
        }

    }
@media print{

        .c-news-page-content h1{
            margin-bottom: 0px !important;
        }

        .c-news-page-content h1{
            font-size: 2rem;
        }

    }
.c-news-list{

    padding: 0 22px;
    padding-bottom: 64px;
}
.c-news-list .centered{
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

    }
.c-news-list h1{
        margin-top: -11px;
        padding-left: 5px;
        margin-bottom: 87px;
        letter-spacing: 0.125rem;
    }
.c-news-list .news-content{
        width: 100%;
    }
.c-news-list .news-archive{
        display: flex;
        flex-wrap: wrap;
        gap: 71px 20px;
    }
.c-news-list .NewsPreviewLink{
        width: -moz-fit-content;
        width: fit-content;
    }
.c-news-list .item{
        max-width: 285px;
        display: block;
        -webkit-text-decoration: none;
        text-decoration: none;
        color: #000;
    }
.c-news-list .item:hover h2{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-news-list .date{
        text-transform: uppercase;
        font-size: 0.8125rem;
        font-weight: 500;
        margin-top: 22px;
    }
.c-news-list .title{
        margin-top: 4px;
        margin-bottom: 24px;
        line-height: 1.375rem;
        font-size: 1.375rem;
    }
.c-news-list .text{
        font-size: 1.125rem;
    }
.c-news-list .link{
        -webkit-text-decoration: underline;
        text-decoration: underline;
        font-size: 0.875rem;
        margin-top: 11px;
    }
.c-news-list .pagination{
        width: 100%;
    }
.c-news-list .image-holder{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
.c-news-list .image-holder img{
            -o-object-fit: cover;
               object-fit: cover;
            height: 100%;
        }
@media screen and (max-width: 1243px){
        .c-news-list .centered{
            max-width: 895px;
        }
    }
@media screen and (max-width: 938px){
        .c-news-list .centered{
            max-width: 590px;
        }
    }
@media screen and (max-width: 750px){
        .c-news-list h1{
            padding-top: 32px;
            font-size: 2rem;
            margin-bottom: 54px;
        }
    }
@media screen and (max-width: 634px){
        .c-news-list .centered{
            max-width: 285px;
        }

        .c-news-list .centered{
            max-width: 100%;
        }
    }
@media screen and (max-width: 500px){

        .c-news-list .breadcrumbs_wrapper{
            padding-left: 0;
        }

        .c-news-list .pagination{
            padding-bottom: 32px;
        }

        .c-news-list .centered{
            max-width: 100%;
        }

        .c-news-list .news-archive{
            gap: 20px;
        }
        
        .c-news-list .item{
            max-width: 100%;
            display: flex;
            flex-direction: row;
            gap: 20px;
        }
            
            .c-news-list .item .date{
                margin-top: 0;
            }

        .c-news-list .image-holder{
            display: none;
        }

        .c-news-list .image-holder{
            aspect-ratio: 1 / 1;
            width: 150px;
            height: 150px;
        }
    }
@media screen and (max-width: 634px){
        
        .c-news-list h1{
            padding-left: 0;
            font-size: 2.125rem;
            letter-spacing: 0;
            padding-top: 10px;
        }
        
        .c-news-list .image-holder{
            display: none;
        }

        .c-news-list .title{
            margin-bottom: 23px;
        }

        .c-news-list .item{
            max-width: 100%;
        }

        .c-news-list .text{
            line-height: 1rem;
        }

        .c-news-list .news-archive{
            gap: 30px;
        }
    }
@media screen and (max-width: 360px){
        
        .c-news-list .item{
            gap: 20px;
        }
        
        .c-news-list .image-holder{
            width: 100px;
            height: 100px;
        }
    }
.c-page-blocks{

    padding: 0 20px;
    margin-top: -179px;

}
.c-page-blocks .centered{
        
        display: flex;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;

        flex-wrap: wrap;
        gap: 18px;

        transition: height 0.2s ease;

    }
.c-page-blocks .block{
        max-width: 388px;
        width: 100%;
        min-height: 319px;

        padding: 29px;
        background-color: #E8E8E3;

        display: flex;
        align-items: flex-end;
    }
.c-page-blocks .block .show-more-link{
            background-color: #fff;
            padding: 5px 15px;
            font-size: 0.875rem;
            text-align: center;
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;
            border-radius: 15px;
            display: block;
            max-width: -moz-fit-content;
            max-width: fit-content;
        }
.c-page-blocks .block .show-more-link:hover{
            background-color: #510212;
            color: #fff;
        }
.c-page-blocks .block .header-link{
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;
        }
.c-page-blocks .block .header-link:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-page-blocks .block h2{
            margin-bottom: 21px;
            font-size: 1.6875rem;
        }
.c-page-blocks .mobile-block{
        width: 100%;
        max-width: 49.3%;

        padding: 29px;
        background-color: #E8E8E3;

        display: flex;
        align-items: flex-end;
    }
.c-page-blocks .mobile-block .show-more-link{
            background-color: #000;
            padding: 3px 12px;
            font-size: 0.625rem;
            text-align: center;
            color: #fff;
            -webkit-text-decoration: none;
            text-decoration: none;
            border-radius: 15px;
        }
.c-page-blocks .mobile-block .show-more-link:hover{
            background-color: #A2BE3A;
            color: #000;
        }
.c-page-blocks .mobile-block h2{
            font-size: 1.0625rem !important;
        }
.c-page-blocks .mobile-block h2{
            margin-bottom: 21px;
        }
.c-page-blocks ul{
        list-style: none;
        padding-left: 14px;

        margin-bottom: 32px;

        min-height: 72px;
    }
.c-page-blocks ul li{
            position: relative;
        }
.c-page-blocks ul a{
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;
        }
.c-page-blocks ul a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-page-blocks ul li::before{
            content: '';
            width: 5px;
            height: 15px;
            position: absolute;

            left: -12px;
            top: 5px;
            
            background-image: url("/images/c/icons/bulletPoint.svg");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }
.c-page-blocks .show-more-button{
        background-color: #510212;
        color: #fff;

        padding: 11px 48px;
        display: block;
        max-width: 256px;
        margin: 0 auto;
        margin-top: 32px;
        border-radius: 1000px;

        border: 0;

        cursor: pointer;

        transition: background-color 0.1s ease;
    }
.c-page-blocks .show-more-button:hover{
        background-color: #000;
        color: #fff;
    }
.c-page-blocks .hidden-block{
        display: none !important;
    }
.c-page-blocks .centered-mobile{
        display: none;

        flex-wrap: wrap;
        gap: 6px;
    }
.c-page-blocks .centered-mobile .block{
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;

            flex: 1 1 48%;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;

            padding: 25px;
        }
.c-page-blocks .centered-mobile .mobile-block{
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;

            flex: 1 1 48%;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;

            padding: 19px 27px;
            padding-right: 18px;
            min-height: 109px;

            background-image: url("/images/c/icons/bulletPoint.svg");
            background-position: 12px 21px;
            background-size: 7px;
            background-repeat: no-repeat;

        }
.c-page-blocks .centered-mobile h2{
            font-size: 1.25rem;
            word-break: break-word;
            margin-top: 0;
        }
.c-page-blocks .mobile-show-more-button{
        display: none;

        background-color: #510212;
        color: #fff;

        padding: 11px 48px;
        max-width: 256px;
        margin: 0 auto;
        margin-top: 29px;
        border-radius: 1000px;

        border: 0;

        cursor: pointer;

        font-size: 1rem;

        transition: background-color 0.1s ease;
    }
.c-page-blocks .mobile-show-more-button:hover{
        background-color: #000;
        color: #fff;
    }
@media screen and (max-width: 1239px){
        .c-page-blocks .centered{
            max-width: 794px;
        }
    }
@media screen and (max-width: 833px){
        .c-page-blocks .centered{
            display: none;
            max-width: 388px;
        }

        .c-page-blocks .centered-mobile{
            display: flex;
        }
    }
@media screen and (max-width: 800px){
.c-page-blocks{
        
        margin-top: -61px;

}

        .c-page-blocks .block{
            min-height: 0;
        }

            .c-page-blocks .block h2{
                margin-top: 0;
                margin-bottom: 0;
                font-size: 1.1875rem;
            }
            .c-page-blocks .centered-mobile h2{
                margin-top: 0;
                margin-bottom: 0;
            }

        .c-page-blocks .show-more-button{
            padding: 4px 27px;
            font-size: 0.8125rem;
            margin-top: 29px;

            display: none;
        }

        .c-page-blocks .mobile-show-more-button{
            display: block;
        }

    }
.c-search{
  background-color: #510212;

  padding: 0 20px;

  min-height: 62px;
  display: flex;
}
.c-search .search-dialog{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;

    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
.c-search .search-dialog:has(.search-link) .input-field{
      border-top-right-radius: 0px;
      border-top-left-radius: 0px;
      border-bottom-right-radius: 0px;
      border-bottom-left-radius: 0px;
    }
.c-search .search-dialog:has(.search-link) .search-button{
      border-radius: 0;
      background-color: transparent;
    }
.c-search .search-dialog:has(p) .input-field{
      border-top-right-radius: 0px;
      border-top-left-radius: 0px;
      border-bottom-right-radius: 0px;
      border-bottom-left-radius: 0px;
    }
.c-search .search-dialog:has(p) .search-button{
      border-radius: 0;
      background-color: transparent;
    }
.c-search .search-result:empty{
    display: none;
  }
.c-search .search-button{
    position: absolute;
    top: 12px;
    right: 0;

    width: 38px;
    height: 38px;
    border-radius: 1000px;
    background-color: #D0D0C8;

    border: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
  }
.c-search .search-button img{
      width: 21px;
    }
.c-search input{
    background-color: #E0D1D4;
    border-radius: 1000px;
    padding: 7px 15px;
    border: 0;

    outline: 0;

    min-width: 249px;
    font-size: 1rem;
  }
.c-search .search-result{
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 2;

    padding: 12px;

    background-color: #E0D1D4;
    min-width: 249px;
    max-width: 249px;
  }
.c-search .search-result a{
      display: block;
      color: #000;
      -webkit-text-decoration: none;
      text-decoration: none;

      padding: 4px 0;
    }
.c-search .search-result a:hover{
      -webkit-text-decoration: underline;
      text-decoration: underline;
    }
.c-search .search-result mark{
      background-color: transparent;
    }
@media screen and (max-width: 450px){
.c-search{

    height: 51px;
    min-height: 62px;
}

    .c-search input{
      min-width: 213px;
    }

    .c-search .search-result{
      width: 100%;

      min-width: 222px;
      max-width: 222px;

      top: 42px;
    }
  }
@media print{
.c-search{
    display: none !important;
}
  }
.c-pagination {

  width: -moz-fit-content;

  width: fit-content;
  margin: 14px auto;
}
.c-pagination a{
    color: #000;
  }
.c-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin: 0;
    padding: 0;
    list-style: none;

    color: #000;
  }
.c-pagination ul > li {
      display: flex;
    }
.c-pagination ul > li > * {
        display: block;
        padding: 9px 14px;
        -webkit-text-decoration: none;
        text-decoration: none;
      }
.c-pagination ul > li > *[aria-current='page'] {
          background-color: #510112;
          color: #fff;
          -webkit-text-decoration: none;
          text-decoration: none;
          border-radius: 8px;
        }
.c-pagination .previous, .c-pagination .next {
    display: flex;
    align-items: center;
  }
.c-pagination .previous::before, .c-pagination .next::before, .c-pagination .previous::after, .c-pagination .next::after {
      display: none;
      width: 1em;
      height: 1em;
      background-color: currentcolor;
      content: '';
      -webkit-mask-repeat: no-repeat;
              mask-repeat: no-repeat;
      -webkit-mask-size: contain;
              mask-size: contain;
      -webkit-mask-position: center;
              mask-position: center;
    }
.c-pagination .previous::before {
    display: inline-block;
    margin-right: 1ch;
    -webkit-mask-image: url('/images/c/icons/chevron-left.svg');
            mask-image: url('/images/c/icons/chevron-left.svg');
  }
.c-pagination .next::after {
    display: inline-block;
    margin-left: 1ch;
    -webkit-mask-image: url('/images/c/icons/chevron-right.svg');
            mask-image: url('/images/c/icons/chevron-right.svg');
  }
.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
*:focus-visible > .visually-hidden {
  animation: none 0s ease 0s 1 normal none running !important;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll !important;
  border: medium none currentColor !important;
  border-collapse: separate !important;
  -o-border-image: none !important;
     border-image: none !important;
  border-radius: 0 !important;
  border-spacing: 0 !important;
  bottom: auto !important;
  box-shadow: none !important;
  box-sizing: content-box !important;
  caption-side: top !important;
  clear: none !important;
  clip: auto !important;
  color: #000 !important;
  -moz-columns: auto !important;
       columns: auto !important;
  -moz-column-count: auto !important;
       column-count: auto !important;
  -moz-column-fill: balance !important;
       column-fill: balance !important;
  -moz-column-gap: normal !important;
       column-gap: normal !important;
  -moz-column-rule: medium none currentColor !important;
       column-rule: medium none currentColor !important;
  -moz-column-span: 1 !important;
       column-span: 1 !important;
  -moz-column-width: auto !important;
       column-width: auto !important;
  content: normal !important;
  counter-increment: none !important;
  counter-reset: none !important;
  cursor: auto !important;
  direction: ltr !important;
  display: inline !important;
  empty-cells: show !important;
  float: none !important;
  font-family: serif !important;
  font-size: medium !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: normal !important;
  font-stretch: normal !important;
  line-height: normal !important;
  height: auto !important;
  -webkit-hyphens: none !important;
          hyphens: none !important;
  left: auto !important;
  letter-spacing: normal !important;
  list-style: disc outside none !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 1 !important;
  orphans: 2 !important;
  outline: medium none invert !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  padding: 0 !important;
  page-break-after: auto !important;
  page-break-before: auto !important;
  page-break-inside: auto !important;
  perspective: none !important;
  perspective-origin: 50% 50% !important;
  position: static !important;
  right: auto !important;
  -moz-tab-size: 8 !important;
    -o-tab-size: 8 !important;
       tab-size: 8 !important;
  table-layout: auto !important;
  text-align: left !important;
  text-align-last: auto !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  text-indent: 0 !important;
  text-shadow: none !important;
  text-transform: none !important;
  top: auto !important;
  transform: none !important;
  transform-origin: 50% 50% 0 !important;
  transform-style: flat !important;
  transition: none 0s ease 0s !important;
  unicode-bidi: normal !important;
  vertical-align: baseline !important;
  visibility: visible !important;
  white-space: normal !important;
  widows: 2 !important;
  width: auto !important;
  word-spacing: normal !important;
  z-index: auto !important;
  all: initial !important;
}
.c-search-result
{
    font-size: 1rem;
    line-height: 1.5rem;

    max-width: 800px;
    margin: 0 auto;
    padding: 64px 32px;
}
.c-search-result .head
    {
        font-size: 2.5rem;
        line-height: 3.125rem;
        font-weight: normal;
        padding: 30px 0;
        padding-top: 0;
    }
.c-search-result .head-description mark, .c-search-result .head-description span
        {
            font-weight: normal;
        }
.c-search-result mark{
        background-color: transparent;
    }
.c-search-result .items > a
        {
            display: block;
            color: inherit;
            padding: 24px 0;
            border-bottom: solid 1px #D9D9D9;
            -webkit-text-decoration: none;
            text-decoration: none;
        }
.c-search-result .items > a:hover .title
            {
                -webkit-text-decoration: underline;
                text-decoration: underline;
            }
.c-search-result .items > a:not(:first-child)
            {
                border-top: solid 1px #D9D9D9;
            }
.c-search-result .items > a::after
            {
                display: none;
            }
.c-search-result .items > a[href$=".pdf"] .title::after
            {
                display: inline-block;
                content: ">";
                color: transparent;
                font-size: inherit;
                line-height: inherit;
                width: 18px;
                margin-left: 7px;
                background: svg-uri('<svg width="16" height="18" xmlns="http://www.w3.org/2000/svg"><g fill="#0064d2" fill-rule="nonzero"><path d="M13.675 10.362c-.24-.236-.771-.36-1.581-.372a13.223 13.223 0 00-1.901.14c-.311-.18-.632-.375-.883-.61-.676-.631-1.24-1.508-1.591-2.472.022-.09.042-.169.06-.25 0 0 .382-2.163.28-2.894a.822.822 0 00-.049-.207l-.033-.086c-.103-.238-.307-.491-.625-.478l-.192-.006c-.356 0-.645.182-.72.454-.231.852.007 2.125.438 3.774l-.11.27c-.31.753-.696 1.512-1.038 2.182l-.045.086c-.36.704-.687 1.302-.982 1.808l-.305.162c-.023.011-.546.29-.669.364-1.041.622-1.731 1.327-1.846 1.887-.036.18-.009.407.176.513l.296.149a.891.891 0 00.401.097c.742 0 1.603-.924 2.79-2.995 1.37-.446 2.93-.817 4.297-1.022 1.041.586 2.323.994 3.13.994.144 0 .268-.014.368-.04a.627.627 0 00.366-.25c.156-.237.189-.562.146-.895a.598.598 0 00-.176-.305l-.002.002zM2.595 14.31c.135-.37.67-1.101 1.463-1.75.05-.041.172-.156.285-.263-.829 1.321-1.383 1.848-1.748 2.012v.001zm4.69-10.8c.239 0 .375.6.386 1.164.012.564-.12.96-.283 1.252-.135-.433-.202-1.115-.202-1.562 0 0-.01-.854.1-.854zm-1.399 7.696c.167-.297.339-.61.515-.944.431-.814.702-1.451.905-1.974A6.54 6.54 0 008.8 10.143c.073.062.152.125.233.187-1.2.237-2.236.525-3.148.876h.001zm7.56-.067c-.073.046-.282.072-.416.072-.434 0-.972-.198-1.725-.522.29-.022.555-.033.793-.033.436 0 .565-.002.99.107.426.109.431.33.358.374v.002z"/><path d="M15.009 4.026a15.966 15.966 0 00-1.533-1.752A15.966 15.966 0 0011.724.74C10.817.077 10.377 0 10.125 0H1.406C.631 0 0 .631 0 1.406v15.188C0 17.369.631 18 1.406 18h12.938c.775 0 1.406-.631 1.406-1.406V5.625c0-.252-.076-.692-.741-1.599zm-2.33-.956c.54.54.964 1.026 1.277 1.43h-2.707V1.794c.404.313.89.736 1.43 1.276zm1.946 13.524a.284.284 0 01-.281.281H1.406a.285.285 0 01-.281-.281V1.406c0-.152.13-.281.281-.281h8.719v3.938c0 .31.252.562.563.562h3.937v10.969z"/></g></svg>') no-repeat center center;
            }
.c-search-result .title
    {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 10px;
        display: block;
    }
.c-search-result .description
    {
        line-height: 1.625rem;
        display: block;
    }
.c-search-result mark
    {
        color: #000;
        color: initial;
    }
.c-search-result .filter-name
    {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 17px;
        font-weight: 500;
    }
.c-search-result .filter
    {
        font-size: 0.9375rem;
        line-height: 1.3125rem;
        border-bottom: solid 1px #1B0759;
        overflow: hidden;
        margin-bottom: 30px;

        @include screen(1000px)
        {
            font-size: 1rem;
        }
    }
.c-search-result .filter a
        {
            display: inline-block;
            -webkit-text-decoration: none;
            text-decoration: none;
            color: inherit;
            padding: 13px 0;
            border-bottom: solid 4px transparent;
            margin-right: 15px;
        }
.c-search-result .filter a.active
            {
                font-weight: bold;
                border-color: #1B0759;
            }
.c-search a[href*=".pdf?"]::after,
.c-search-result a[href*=".pdf?"] .title::after
{
    display: inline-block;
    content: ">";
    color: transparent;
    font-size: inherit;
    line-height: inherit;
    width: 18px;
    margin-left: 7px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb601d' fill-rule='nonzero'%3E%3Cpath d='M13.675 10.362c-.24-.236-.771-.36-1.581-.372a13.223 13.223 0 00-1.901.14c-.311-.18-.632-.375-.883-.61-.676-.631-1.24-1.508-1.591-2.472.022-.09.042-.169.06-.25 0 0 .382-2.163.28-2.894a.822.822 0 00-.049-.207l-.033-.086c-.103-.238-.307-.491-.625-.478l-.192-.006c-.356 0-.645.182-.72.454-.231.852.007 2.125.438 3.774l-.11.27c-.31.753-.696 1.512-1.038 2.182l-.045.086c-.36.704-.687 1.302-.982 1.808l-.305.162c-.023.011-.546.29-.669.364-1.041.622-1.731 1.327-1.846 1.887-.036.18-.009.407.176.513l.296.149a.891.891 0 00.401.097c.742 0 1.603-.924 2.79-2.995 1.37-.446 2.93-.817 4.297-1.022 1.041.586 2.323.994 3.13.994.144 0 .268-.014.368-.04a.627.627 0 00.366-.25c.156-.237.189-.562.146-.895a.598.598 0 00-.176-.305l-.002.002zM2.595 14.31c.135-.37.67-1.101 1.463-1.75.05-.041.172-.156.285-.263-.829 1.321-1.383 1.848-1.748 2.012v.001zm4.69-10.8c.239 0 .375.6.386 1.164.012.564-.12.96-.283 1.252-.135-.433-.202-1.115-.202-1.562 0 0-.01-.854.1-.854zm-1.399 7.696c.167-.297.339-.61.515-.944.431-.814.702-1.451.905-1.974A6.54 6.54 0 008.8 10.143c.073.062.152.125.233.187-1.2.237-2.236.525-3.148.876h.001zm7.56-.067c-.073.046-.282.072-.416.072-.434 0-.972-.198-1.725-.522.29-.022.555-.033.793-.033.436 0 .565-.002.99.107.426.109.431.33.358.374v.002z'/%3E%3Cpath d='M15.009 4.026a15.966 15.966 0 00-1.533-1.752A15.966 15.966 0 0011.724.74C10.817.077 10.377 0 10.125 0H1.406C.631 0 0 .631 0 1.406v15.188C0 17.369.631 18 1.406 18h12.938c.775 0 1.406-.631 1.406-1.406V5.625c0-.252-.076-.692-.741-1.599zm-2.33-.956c.54.54.964 1.026 1.277 1.43h-2.707V1.794c.404.313.89.736 1.43 1.276zm1.946 13.524a.284.284 0 01-.281.281H1.406a.285.285 0 01-.281-.281V1.406c0-.152.13-.281.281-.281h8.719v3.938c0 .31.252.562.563.562h3.937v10.969z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
}
.c-side-menu .menu-bg{
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;

        z-index: 99;

        display: none;
    }
.c-side-menu .main-menu{
        padding: 30px;
        padding-left: 0;
        padding-right: 0;

        background-color: #fff;
        position: fixed;
        top: -100%;
        right: 0;

        max-width: 100%;
        width: 100%;

        max-height: 100%;
        overflow: scroll;

        z-index: 100;
        overflow-y: scroll;

        display: block;

        list-style: none;

        transition: top 0.3s ease;
    }
.c-side-menu .main-menu a{
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;
        }
.c-side-menu .main-menu ol{
            list-style: none;
            padding-left: 0px;
            padding-right: 0px;
        }
.c-side-menu #top-menu{
        padding-bottom: 22px;
    }
.c-side-menu #top-menu > li > div a{
                    text-transform: uppercase;
                }
.c-side-menu .active{

    }
.c-side-menu .menu-control{
        display: flex;
        width: 100%;

        padding: 11px;
        padding-top: 0px;
        padding-bottom: 29px;

        display: flex;
        align-items: center;
    }
.c-side-menu .menu-control .logo-holder{
            flex: 1;
        }
.c-side-menu .menu-control .logo-holder img{
                width: 159px;
                padding-left: 9px;
            }
.c-side-menu .menu-control .buttons{
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
.c-side-menu #top-menu > li div{
                position: relative;
            }
.c-side-menu #top-menu > li a{
                display: block;
                width: 100%;
                padding-right: 72px;
                font-weight: 300;
                font-size: 1.25rem;
            }
.c-side-menu li{
        position: relative;
        border-top: 1px solid #DCCCD0;
    }
.c-side-menu li a{
            padding: 14px 29px;
        }
.c-side-menu .triangle-icon{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 12px;

        background-color: transparent;
        border: 0;

        width: 12px;
        height: 12;
        aspect-ratio: 1 / 1;

        padding: 20px;
        box-sizing: content-box;
        
        background-image: url("/images/c/icons/add-thin.svg");
        background-size: 15px;
        background-position: center;
        background-repeat: no-repeat;

        cursor: pointer;

        display: flex;
        justify-content: center;
        align-items: center;

        transition: transform 0.2s ease;
    }
.c-side-menu .triangle-icon::before{
        content: '';
        left: 0;
        top: 9px;
        width: 1px;
        height: 30px;
        position: absolute;

        background-color: #DCCCD0;
    }
.c-side-menu .search-button{
        display: block;
        width: 29px;
        height: auto;
        aspect-ratio: 1 / 1;

        background-image: url("/images/c/icons/search.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

        border: 0;
        background-color: transparent;

        cursor: pointer;
    }
.c-side-menu .menu-close-button{
        display: block;
        width: 16px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-right: 26px;
        
        background-image: url("/images/c/icons/close.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        
        margin-left: 0px;
        
        border: 0;
        background-color: transparent;
        
        cursor: pointer;
    }
.c-side-menu .active-bg{
        /*display: block;*/
    }
.c-side-menu .active-menu{
        right: 0;
        top: 0;
    }
.c-side-menu .active-menu:has(#top-menu){
        box-shadow: 1px 23px 32px rgba(0, 0, 0, 0.25);
    }
.c-side-menu .active > div > a{
            background-color: rgba(184, 184, 171, 0.15);
        }
.c-side-menu .active > div > .triangle-icon::before{
            background-color: #AEA4A7;
        }
.c-side-menu .pactive > div > a{
            background-color: #fff;
        }
.c-side-menu .pactive > div > .triangle-icon::before{
            background-color: #DCCCD0;
        }
.c-side-menu .lvl2{
        max-height: 0;
        overflow: hidden;

        transition: max-height 0.2s ease;
    }
.c-side-menu .lvl2 .triangle-icon{
            top: 50%;
            transform: translateY(-50%);
            right: 12px;
        }
.c-side-menu .lvl2 li > div > a{
            padding-left: 64px;
        }
.c-side-menu .lvl2 li{
            /*padding: 12px 0;*/
            /*padding-left: 32px;*/
        }
.c-side-menu .lvl2 li:first-child{
            /*padding-top: 25px;*/
        }
.c-side-menu .lvl2 .lvl3{
            max-height: 0;
            overflow: hidden;
        }
.c-side-menu .lvl2 .active-menu{
            box-shadow: 0px 0px 0px rgba(0,0,0,0);
        }
.c-side-menu .lvl3{
        transition: max-height 0.2s ease;
    }
.c-side-menu .lvl3 li > div > a {
            padding-left: 100px;
        }
.c-side-menu .lvl3 .pactive > div > a{
                background-color: rgba(184, 184, 171, 0.15);
            }
.c-side-menu .active-menu > div .triangle-icon{
                background-image: url("/images/c/icons/sub-thin.svg");
            }
.c-side-menu .active-menu > .lvl2{
            max-height: 2000px;
        }
.c-side-menu .active-menu > .lvl3{
            max-height: 2000px;
        }
.c-side-menu .active > div a{
            font-weight: 700;
        }
.c-side-menu .pactive > div a{
            
        }
.c-side-menu .language-link{
        padding: 21px 22px;
        display: block;
    }
@media screen and (min-width: 620px){
.c-side-menu{
        display: none;

}
    }
@media screen and (max-width: 512px){
        .c-side-menu .main-menu{
            padding: 0;
            padding-top: 21px;
        }

        .c-side-menu #top-menu{
            padding-bottom: 0px;
        }

        .c-side-menu .menu-control{
            padding-bottom: 20px;
        }
    }
@media print{
.c-side-menu{
        display: none !important;

}
    }
.c-staff-list{

    padding: 0 20px;
    padding-bottom: 64px;

}
.c-staff-list .title-area{
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
.c-staff-list .title-area h1{
            margin-top: 0;
        }
.c-staff-list .centered{
        max-width: 1239px;
        width: 100%;
        margin: 0 auto;

        display: flex;
        flex-wrap: wrap;
        gap: 64px 13px;

    }
.c-staff-list .staff-member{
        max-width: 404px;
        width: 100%;
    }
.c-staff-list .staff-member h2{
            margin-top: 14px;
            margin-bottom: 8px;
            font-size: 2.1875rem;
        }
.c-staff-list .staff-member a{
            display: block;
            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;

        }
.c-staff-list .staff-member a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-staff-list .position, .c-staff-list .email, .c-staff-list .phone{
        font-size: 1.25rem;
    }
@media screen and (max-width: 1277px){

        .c-staff-list .centered{
            max-width: 822px;
        }

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

        .c-staff-list .centered{
            max-width: 404px;
        }

    }
@media screen and (max-width: 650px){
.c-staff-list{

        padding-bottom: 64px;

}

        .c-staff-list h1{
            font-size: 2rem;
        }

        .c-staff-list .centered{
            flex-direction: column;
            gap: 32px 13px;
        }
            .c-staff-list .staff-member h2{
                font-size: 1.5rem;
            }

        .c-staff-list .position, .c-staff-list .email, .c-staff-list .phone{
            font-size: 1.0625rem;
        }

    }
.c-text-page-content{

    padding: 0 22px;

}
.c-text-page-content .centered{
        max-width: 720px;
        width: 100%;
        margin: 0 auto;

        padding-bottom: 64px;
    }
.c-text-page-content .centered:has(.accordion) .text{
            padding-bottom: 64px;
        }
.c-text-page-content .parent-title{
        font-size: 2.1875rem;
        margin-top: 3px;
        margin-bottom: 0;
    }
.c-text-page-content .title{
        margin-bottom: 25px;
        text-wrap: auto;
        margin-top: 6px;
        line-height: 3.97rem;
    }
.c-text-page-content .text-content{
        margin-top: 84px;
        padding-bottom: 128px;
    }
.c-text-page-content .title + .accordion{
        margin-top: 102px;
    }
.c-text-page-content fieldset{
        border: 0 !important;
        outline: 0 !important;
    }
.c-text-page-content .umbraco-forms-hidden{
        display: none !important;
    }
.c-text-page-content .umbraco-forms-field + .umbraco-forms-field{
        margin-top: 24px;
    }
.c-text-page-content .umbraco-forms-field label{
            font-weight: 700;
        }
.c-text-page-content .umbraco-forms-field .umbraco-forms-legend{
            font-weight: 700;
        }
.c-text-page-content .checkboxlist-vertical label{
            font-weight: 400;
        }
.c-text-page-content .radiobuttonlist-vertical label{
            font-weight: 400;
        }
.c-text-page-content .checkbox label{
            font-weight: 400;
        }
.c-text-page-content .umbraco-forms-label{
        font-weight: 700 !important;
    }
.c-text-page-content input[type="text"]{
        padding: 5px;
    }
.c-text-page-content input[type="submit"]{
        margin-top: 32px;
    }
.c-text-page-content input[type="file"]{
        width: 100%;
    }
.c-text-page-content .umbraco-forms-fieldset{
        padding: 0;
    }
.c-text-page-content .radiobuttonlist-vertical{
        padding: 10px 0px !important;
    }
.c-text-page-content .radiobuttonlist-vertical input[type="radio"]{
            margin-left: 0;
        }
.c-text-page-content fieldset{
        padding: 0;
    }
.c-text-page-content textarea{
        min-height: 256px;
    }
.c-text-page-content .accordion .accordion-item + .accordion-item{
            margin-top: 8px;
        }
.c-text-page-content .accordion button{
            position: relative;

            width: 100%;
            display: block;
            background-color: #E8E8E3;
            color: #000;
            border: 0;
            text-align: left;

            padding: 19px 10px;
            padding-left: 32px;
            padding-right: 64px;

            cursor: pointer;

            transition: background-color 0.1s ease;
            line-height: 1.34rem;
        }
.c-text-page-content .accordion button:hover{
            background-color: #F4F4F2;
        }
.c-text-page-content .accordion .contents{
            overflow: hidden;
            max-height: 0;

            transition: max-height 0.2s ease;
        }
.c-text-page-content .accordion .padded{
            padding: 50px 27px;
        }
.c-text-page-content .accordion .add-button{
            background-color: #000;

            width: 18px;
            height: 16px;

            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 21px;

            -webkit-mask-image: url("/images/c/icons/add.svg");

                    mask-image: url("/images/c/icons/add.svg");
            -webkit-mask-position: center;
                    mask-position: center;
            -webkit-mask-size: contain;
                    mask-size: contain;
            -webkit-mask-repeat: no-repeat;
                    mask-repeat: no-repeat;

            transition: transform 0.1s ease;
        }
.c-text-page-content .active-accordion button{
            background-color: #F4F4F2;
        }
.c-text-page-content .active-accordion .add-button{
            -webkit-mask-image: url("/images/c/icons/sub.svg");
                    mask-image: url("/images/c/icons/sub.svg");
        }
@media screen and (max-width: 600px){
.c-text-page-content{

        padding-left: 0;
        padding-right: 0;

}

        .c-text-page-content .accordion{
            padding: 0 20px;
        }

        .c-text-page-content .title + .accordion{
            margin-top: 64px;
        }

        .c-text-page-content .parent-title{
            font-size: 1.5rem;
            margin-left: 20px;
        }

        .c-text-page-content .title{
            font-size: 2rem;
            padding: 0 20px;
            line-height: 2.5rem;
        }

        .c-text-page-content .text-content{
            margin-top: 32px;
            padding-left: 20px;
            padding-right: 20px;
            width: 100vw;
        }

    }
@media print{

        .c-text-page-content h1{
            font-size: 2rem;
        }

        .c-text-page-content .link-button{
            display: none;
        }

        .c-text-page-content .text{
            margin-top: 12px !important;
            padding-bottom: 12px !important;
        }
            
            .c-text-page-content .accordion-item button{
                background-color: #fff;
                font-size: 1.5rem;
                border-bottom: 1px solid #e3e3e3;
                font-weight: 300;
            }

            .c-text-page-content .accordion-item .add-button{
                display: none;
            }

        .c-text-page-content .contents{
            min-height: -moz-fit-content;
            min-height: fit-content;
            height: -moz-fit-content;
            height: fit-content;
        }
    }