/* roboto-100 - 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: 100;
  src: url('/css/fonts/roboto-v30-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-100italic - 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: 100;
  src: url('/css/fonts/roboto-v30-latin-100italic.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-v30-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-v30-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-v30-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-v30-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - 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: 700;
  src: url('/css/fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700italic - 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: 700;
  src: url('/css/fonts/roboto-v30-latin-700italic.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;
}
/** umb_name:Yvirskrift */
h1 {
  font-family: "Roboto";
  font-size: 3.75rem;
  line-height: 1.75rem;
  color: #108140;
  font-weight: 700;
  letter-spacing: 0.32125rem;
}
/** umb_name:Undiryvirskrift */
h2 {
  font-family: "Roboto";
  font-size: 1.875rem;
  color: #108140;
  line-height: 1.75rem;
  font-weight: 700;
}
/** umb_name:Sitat */
blockquote {
  padding-left: 1.5em;
  font-style: italic;
  border-left: 2px solid black;
  border-left: 2px solid var(--color-font, currentcolor);
}
/** umb_name:Tekstur */
p {
  font-family: "Roboto";
  font-size: 1.3125rem;
  line-height: 1.875rem;
  font-weight: 400;
}
p + p{
  padding-top: 32px;
}
:root ul{
  font-size:1.3125rem;
  line-height: 1.875rem;
  font-family: "Roboto";
  font-weight: 400;
}
[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));
  }
.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;
    }
: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: block;
  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: 4px 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/icons/example.svg');
  }
.main-content-area{
  min-height: calc(100vh - 316px);
}
@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;
    }
.c-banner-image{

    height: 643px;
    min-height: 643px;
    overflow: hidden;

}
.c-banner-image .image-holder{
        display: flex;
        justify-content: center;
        align-items: center;

        height: 643px;
    }
.c-banner-image .image-holder img{
            width: 100%;
            -o-object-fit: cover;
               object-fit: cover;

            min-height: 643px;
        }
@media screen and (max-width: 950px){
.c-banner-image{
        height: 413px;
        min-height: 413px;

}

        .c-banner-image .image-holder{
            height: 413px;
            align-items: flex-end;
        }
    }
nav.breadcrumbs {
  padding: 0.8em 1em;
  font-size: max(0.625rem, min(2vw, 0.875rem));
  line-height: 0.625rem;
  background: none;
  border: 0;
}
nav.breadcrumbs ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }
nav.breadcrumbs li {
    display: inline;
  }
nav.breadcrumbs li a {
      color: black;
      color: var(--color-font);
      font-family: 'Roboto', sans-serif;
      font-family: var(--font-family);
      -webkit-text-decoration: none;
      text-decoration: none;
    }
nav.breadcrumbs li a:hover {
        -webkit-text-decoration: underline;
        text-decoration: underline;
      }
nav.breadcrumbs li + li::before {
      display: inline-block;
      height: 0.8em;
      margin: 0 0.25em;
      border-right: 0.1em solid currentcolor;
      transform: rotate(15deg);
      content: '';
    }
nav.breadcrumbs a[aria-current='page'] {
    font-weight: 700;
    font-weight: var(--font-weight-bold);
  }
.c-construction-content .image-holder{
        height: 643px;
        overflow: hidden;

        position: relative;

        z-index: -1;
    }
.c-construction-content .image-holder img{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 100%;
            min-height: 643px;

            z-index: -1;
        }
.c-construction-content .image-holder .center-title{

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            text-shadow: 0px 0px 15px rgba(0,0,0,0.6);

            z-index: 1;
        }
.c-construction-content .image-holder .center-title h1{
                color: #fff;
                text-align: center;
                text-transform: uppercase;
                font-size: 3rem;
                letter-spacing: 0.33313rem;

                margin-bottom: 0;
            }
.c-construction-content .image-holder .center-title p{
                color: #fff;
                text-align: center;
                font-size: 2rem;
                letter-spacing: 0.24313rem;
                font-weight: 400;

                margin-top: 0;
                padding-top: 0;
            }
.c-construction-content .center-content{
        max-width: 1230px;
        margin: 0 auto;
    }
.c-construction-content .credits{
        max-width: 1000px;
        margin: 0 auto;

        margin-top: 96px;

        display: flex;
        justify-content: center;

        position: relative;
    }
.c-construction-content .credits p{
            padding: 0;
            margin: 0;

            font-size: 1rem;
            font-weight: 100;
            letter-spacing: 0.11125rem;

            padding-top: 21px;
        }
.c-construction-content .credits .item{
            flex: 1;

            display: flex;
            flex-direction: column;
            
            text-align: center;

            cursor: default;
        }
.c-construction-content .credits .item:hover p{
                color: #108140;
            }
.c-construction-content .credits .item:hover .dot .grey{
                    border-color: #108140;
                    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.21);
                }
.c-construction-content .credits .title{
            font-size: 1.5625rem;
            font-weight: 700;
            letter-spacing: 0.13375rem;
            text-transform: uppercase;

            padding-top: 0;
        }
.c-construction-content .credits .dash{
            width: 670px;
            height: 1px;
            background-color: #000;

            position: absolute;
            top: 15px;
            left: 50%;
            transform: translate(-50%, -50%);
            
            z-index: -1;
        }
.c-construction-content .dot{
        display: flex;

        align-items: center;
        justify-content: center;
        padding-bottom: 32px;
    }
.c-construction-content .dot .grey{
            width: 28px;
            height: 28px;
            border-radius: 100px;
            background-color: #fff;
            border: 8px solid #65716E;
        }
.c-construction-content .gallery{
        margin-top: 64px;
        padding: 0 32px;
    }
.c-construction-content .grey-text{
        padding-left: 4px;
        color: #65716E;
        font-size: 1rem;
        letter-spacing: 0.02875rem;
        font-weight: 100;
    }
.c-construction-content .gallery-area{
        display: flex;
        flex-wrap: wrap;

        justify-content: center;
    }
.c-construction-content .gallery-area .holder{
            flex: 1;
            margin: 6px;
            min-width: 390px;
            max-width: 583px;
            width: 100%;

            width: 100%;

            padding-bottom: 31%;

            position: relative;

            overflow: hidden;

            aspect-ratio: 1 / 0.8;
            
            cursor: pointer;
        }
.c-construction-content .gallery-area .holder img{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);

                width: 100%;

                aspect-ratio: 1 / 1;

                transition: transform 0.05s ease-in-out;

                -o-object-fit: cover;

                   object-fit: cover;
            }
.c-construction-content .gallery-area .holder:hover img{
                transform: translate(-50%, -50%) scale(1.05);
            }
.c-construction-content .gallery-display{
        opacity: 0;
        pointer-events: none;

        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        transition: opacity 0.1s ease-in-out;

        z-index: 2000;
    }
.c-construction-content .gallery-display .holder{
            position: absolute;
            width: 100%;
            height: 100%;

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

            transition: left 0.2s ease-in-out;
        }
.c-construction-content .gallery-display .holder img{
                max-height: 80vh;
                max-width: 100%;
            }
.c-construction-content .gallery-display .no-anim{
            transition: none;
        }
.c-construction-content .gallery-display .gallery-index{
            position: absolute;
            top: 32px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;

            letter-spacing: 0.11125rem;
        }
.c-construction-content .gallery-display .gallery-left-arrow{
            position: absolute;
            left: 64px;
            top: 50%;
            transform: translateY(-50%);

            width: 64px;

            cursor: pointer;
        }
.c-construction-content .gallery-display .gallery-right-arrow{
            position: absolute;
            right: 64px;
            top: 50%;
            transform: translateY(-50%);

            width: 64px;

            cursor: pointer;
        }
.c-construction-content .gallery-display .gallery-button{
            background-color: #108140;
            border-radius: 100px;

            padding: 12px;
        }
.c-construction-content .gallery-display .gallery-bg{
            background-color: rgba(0, 0, 0, 0.5);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
.c-construction-content .active-gallery{
        opacity: 1;
        pointer-events: none;
    }
.c-construction-content .active-gallery .holder img {
                pointer-events: all;
            }
.c-construction-content .active-gallery .gallery-button{
            pointer-events: all;
        }
.c-construction-content .active-gallery .gallery-bg{
            pointer-events: all;
        }
@media screen and (max-width: 1000px){

        .c-construction-content .image-holder{
            min-height: 413px;
            height: 413px;
        }

            .c-construction-content .image-holder img{
                min-height: 413px;
            }

            .c-construction-content .image-holder .center-title{
                top: 69%;

                width: 100%;

                
            }

                .c-construction-content .image-holder .center-title p{
                    font-size: 1.5625rem;
                }

                .c-construction-content .image-holder .center-title h1{
                    font-size: 2.1875rem;
                    letter-spacing: 0.26375rem;
                    font-weight: 400;

                    margin-left: 10px;
                    margin-right: 10px;
                }

        .c-construction-content .credits{
            padding-top: 0;
            margin-top: 46px;
            flex-direction: column;

            max-width: 280px;
        }

            .c-construction-content .credits .dash{
                width: 1px;
                height: 65%;
                left: 95%;
                top: 37%;
            }

            .c-construction-content .credits .item{
                flex-direction: row-reverse;
                margin-bottom: 32px;
            }

                .c-construction-content .credits .item p{
                    font-size: 0.875rem;
                    padding-top: 0;
                    line-height: 1rem;
                }

                .c-construction-content .credits .item .title{
                    font-size: 1.25rem;
                    letter-spacing: 0.10688rem;
                    padding-bottom: 12px;
                }

                .c-construction-content .credits .item .dot{
                    flex: 1;
                }

                .c-construction-content .credits .item .text-area{
                    width: 188px;
                }

                .c-construction-content .credits .item :first-child{
                    justify-content: right;
                }

                .c-construction-content .credits .item :last-child{
                    justify-content: left;
                }
    }
@media screen and (max-width: 870px){

        .c-construction-content .gallery{
            padding: 0 9px;
            margin-top: 20px;
        }
            .c-construction-content .gallery-area .holder{
                min-width: 286px;
            }
            .c-construction-content .gallery-display .gallery-left-arrow{
                width: 40px;
                left: 8px;
            }

            .c-construction-content .gallery-display .gallery-right-arrow{
                width: 40px;
                right: 8px;
            }
    }
@media screen and (max-width: 615px){
            .c-construction-content .gallery-area .holder{
                min-width: 240px;
            }
    }
@media screen and (max-width: 560px){
            .c-construction-content .gallery-area .holder{
                min-width: 175px;
            }
    }
@media screen and (max-width: 390px){
            .c-construction-content .gallery-area .holder{
                min-width: 150px;
            }
    }
.c-construction-list .image-holder{
        min-height: 643px;

        position: relative;

        z-index: -1;
        overflow: hidden;
    }
.c-construction-list .image-holder img{
            min-height: 643px;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            -o-object-fit: cover;

               object-fit: cover;
            width: 100%;
        }
.c-construction-list .center-content{

        max-width: 1279px;
        padding: 32px;
        padding-top: 100px;

        width: 100%;

        margin: 0 auto;
    }
.c-construction-list .center-content h1{
            text-transform: uppercase;
        }
.c-construction-list .center-content .page-title{
            max-width: 800px;
            width: 100%;

            margin: 0 auto;
        }
.c-construction-list .construction-list{
        display: flex;
        justify-content: center;

        flex-wrap: wrap;

        padding-top: 64px;
    }
.c-construction-list .item{
        width: 381px;
        height: 381px;
        margin: 12px;

        position: relative;

        overflow: hidden;

        aspect-ratio: 1 / 0.8;
    }
.c-construction-list .item .image-holder{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

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

            
        }
.c-construction-list .item img{
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            height: auto;
            min-height: 381px;

            transition: transform 0.1s ease-in-out
        }
.c-construction-list .item .dark-bg{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 100%;
            height: 100%;

            background-color: rgba(0, 0, 0, 0.5);
        }
.c-construction-list .item .info{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            text-align: center;

            width: 100%;
        }
.c-construction-list .item .info p{
                margin: 0;
                padding: 0;

                color: #fff;
            }
.c-construction-list .item .info .title{
                text-transform: uppercase;
                font-size: 1.125rem;
                letter-spacing: 0.125rem;
            }
.c-construction-list .item .info .button{
                background-color: rgba(16, 129, 64, 0.85);
                width: 145px;
                padding: 4px 24px;
                margin: 0 auto;
                font-size: 0.75rem;
                font-weight: 100;
                letter-spacing: 0.08313rem;
                border-radius: 100px;
                margin-top: 32px;
            }
.c-construction-list .item:hover img{
            transform: scale(1.1);
        }
@media screen and (max-width: 800px) {

        .c-construction-list .image-holder{
            height: 413px;
            min-height: 413px;
        }

            .c-construction-list .image-holder img{
                min-height: 413px;
            }

        .c-construction-list .center-content{
            padding-top: 32px;
            padding-left: 10px;
            padding-right: 10px;
        }

            .c-construction-list .center-content .page-title{
                padding-left: 12px;
                padding-right: 12px;
            }

                .c-construction-list .center-content .page-title h1{
                    font-size: 2rem;
                }
            .c-construction-list .construction-list .item{
                margin-left: 10px;
                margin-right: 10px;
                max-width: 500px;
                width: 100%;
            }
        
    }
.c-contact-content .image-holder{
        height: 643px;
        overflow: hidden;

        display: flex;
        justify-content: center;
        align-items: center;
    }
.c-contact-content .image-holder img{
            width: 100%;
            min-height: 643px;
            -o-object-fit: cover;
               object-fit: cover;
        }
.c-contact-content .center-title{
        
        max-width: 820px;
        padding: 0 32px;

        margin: 0 auto;
        margin-top: 162px;
    }
.c-contact-content .center-title h1{
            text-transform: uppercase;

        }
.c-contact-content .center-content{
        max-width: 1384px;
        margin: 0 auto;
        padding: 0 32px;

        display: flex;
        justify-content: center;

        flex-wrap: wrap;

        padding-top: 106px;
    }
.c-contact-content .center-content .staff-member{
            min-width: 223px;
            margin: 51px;

            text-align: center;
        }
.c-contact-content .center-content .staff-member img{
                border-radius: 200px;
                width: 223px;
                height: 223px;
                margin: 0 auto;
            }
.c-contact-content .center-content .staff-member a{
                display: block;
                text-align: center;
                color: #000;
                -webkit-text-decoration: none;
                text-decoration: none;

                font-weight: 100;
                font-size: 0.875rem;
                letter-spacing: 0.025rem;
            }
.c-contact-content .center-content .staff-member a:hover{
                -webkit-text-decoration: underline;
                text-decoration: underline;
            }
.c-contact-content .center-content .staff-member p{
                padding: 0;
                margin: 0;
            }
.c-contact-content .center-content .staff-member .name{
                font-size: 1.3125rem;
                letter-spacing: 0.0375rem;
                font-weight: 700;

                padding-top: 18px;
            }
.c-contact-content .center-content .staff-member .position{
                font-size: 1rem;
                letter-spacing: 0.02875rem;
                font-weight: 100;
                margin-top: -10px;
                padding-bottom: 12px;
            }
@media screen and (max-width: 800px){
        .c-contact-content .image-holder{
            height: 412px;
        }

            .c-contact-content .image-holder img{
                min-height: 412px;
            }

        .c-contact-content .center-title{
            margin-top: 50px;
        }

            .c-contact-content .center-title h1{
                font-size: 2rem;
            }

        .c-contact-content .center-content{
            padding-top: 8px;
        }

            .c-contact-content .center-content .staff-member{

            }
    }
.c-featured-pages{

    position: relative;
    width: 100%;

}
.c-featured-pages .center-content{
        max-width: 880px;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        display: flex;
        align-items: center;

        min-height: 160px;
        
    }
.c-featured-pages .center-content .center-dash{
            width: 2px;
            height: 100%;

            background-color: rgba(216, 216, 216, 0.50);

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }
.c-featured-pages .center-content:hover .center-dash{
            background-color: transparent;
        }
.c-featured-pages .item{
        flex: 1;

        -webkit-text-decoration: none;

        text-decoration: none;
        text-align: center;

        background-color: #fff;
        text-transform: uppercase;

        color: #000;

        padding: 39px 24px;

        

        transition: padding 0.2s ease-in-out;

        z-index: 2;
    }
.c-featured-pages .item .title{
            font-size: 1.875rem;
            font-weight: 700;
            letter-spacing: 0.1875rem;

            color: #424242;

            transition: font-size 0.2s ease-in-out;
        }
.c-featured-pages .item .text{
            font-size: 1rem;
            padding-top: 12px;
            color: #424242;

            text-transform: lowercase;

            letter-spacing: 0.11125rem;
        }
.c-featured-pages .item p{
            padding: 0;
            margin: 0;
        }
.c-featured-pages .item .dash{
            width: 102px;
            height: 3px;
            background-color: #108140;

            margin: 0 auto;

            margin-top: 8px;
        }
.c-featured-pages .shadow-caster{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        max-width: 880px;
        width: 100%;
        min-height: 160px;
        box-shadow: 0px 0px 47px 0px rgba(0,0,0,0.2);
    }
.c-featured-pages .item:hover{
        background-color: #108140;

        padding: 58px 24px;
    }
.c-featured-pages .item:hover a{
            color: #fff;
        }
.c-featured-pages .item:hover p{
            color: #fff;
            
        }
.c-featured-pages .item:hover .title{
            font-size: 2.1875rem;
        }
.c-featured-pages .item:hover .dash{
            background-color: #fff;
        }
@media screen and (max-width: 900px){
        .c-featured-pages .center-content{
            padding: 0 36px;

            flex-direction: column;
            width: 100%;

            transform: translate(-50%, -77%);
        }

            .c-featured-pages .center-content a{
                width: 100%;
            }

            .c-featured-pages .center-content .center-dash{
                width: 64%;
                height: 2px;
            }

            .c-featured-pages .center-content .center-dash:hover{
                background-color: rgba(216, 216, 216, 0.30) !important;
            }

        .c-featured-pages .shadow-caster{
            position: relative;
            width: 100%;
            height: 100%;

            transform: translate(-50%, -50%);
        }

        .c-featured-pages .mobile-helper{
            padding: 0 55px;
            height: 238px;
            width: 100%;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -77%);
        }

        .c-featured-pages .item{
            padding: 18px 24px;

            color: #108140;
        }

            .c-featured-pages .item .title{
                font-size: 1.5625rem;
            }

            .c-featured-pages .item p{
                color: #108140;
            }

            .c-featured-pages .item .dash{
                background-color: #108140;
            }

        .c-featured-pages .item:hover{
            background-color: #fff;
            color: #000;
            padding: 18px 24px;

            color: #108140;
        }

            .c-featured-pages .item:hover .title{
                font-size: 1.5625rem;
            }

            .c-featured-pages .item:hover p{
                color: #108140;
            }

            .c-featured-pages .item:hover .dash{
                background-color: #108140;
            }
    }
.c-footer{

    height: 316px;

}
.c-footer .center-content{
        display: flex;
        align-items: center;

        max-width: 1550px;
        margin: 0 auto;

        height: inherit;
    }
.c-footer .item{
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.c-footer .left-side{
        justify-content: left;
    }
.c-footer .left-side img{
            width: 364px;
            margin-left: 32px;
        }
.c-footer .right-side{
        flex: none !important;
    }
.c-footer .right-side{

        padding-top: 17px;
        
        display: flex;
        justify-content: flex-end;
        gap: 13px;
    }
.c-footer .right-side p{
            padding: 0 6px;
            margin: 0;

            font-size: 1.0625rem;
        }
.c-footer .right-side a{
            padding: 0 6px;
            margin: 0;

            font-size: 1.0625rem;

            color: #000;
            -webkit-text-decoration: none;
            text-decoration: none;
            display: block;
        }
.c-footer .right-side a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
.c-footer .right-side p + p{
            padding: 0 6px;
        }
.c-footer .right-side .line{
            padding: 0;
        }
/* 1440 */
@media screen and (max-width: 1440px){
        .c-footer .left-side{
            flex: 1.0;
        }

            .c-footer .left-side img{
                width: 270px;
            }

            .c-footer .right-side a{
                font-size: 1.0625rem;
            }

            .c-footer .right-side p{
                font-size: 1.0625rem;
            }
    }
@media screen and (max-width: 1100px){
.c-footer{
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 64px;

}

        .c-footer .center-content{
            flex-direction: column;

            padding: 22px;
            padding-top: 75px;

            max-width: 377px;
        }
            .c-footer .left-side img{
                margin: 0;
                width: 100%;

                max-width: 333px;
                
            }

        .c-footer .right-side{
            flex-direction: column;

            padding-top: 32px;

            width: 100%;
        }

            .c-footer .right-side p{
                text-align: left;
                width: 100%;
            }

            .c-footer .right-side a{
                text-align: left;
                width: 100%;
            }

        .c-footer .line{
            display: none;
        }

        .c-footer .item{
            width: 100%;
        }
    }
.c-404-not-found {
  margin: 64px auto;

  max-width: 900px;
  padding: 0 32px;
}
@media screen and (max-width: 1100px){
    .c-404-not-found h1{
      font-size: 2rem;
    }
  }
.c-front-page-banner{

    position: relative;

    height: 643px;
    overflow: hidden;
    width: 100%;

}
.c-front-page-banner .slide{
        position: absolute;
        top: 0;

        height: 665px;
        width: 100%;

        transition: left 1.0s ease-in-out;

        overflow: hidden;
    }
.c-front-page-banner .slide img{
            min-height: 665px;
            width: 100%;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
.c-front-page-banner .no-anim{
        transition: none;
    }
.c-front-page-banner .center-content{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        padding-left: 64px;

        max-width: 1683px;
        width: 100%;
    }
.c-front-page-banner .center-content .title{
            font-size: 8.4375rem;
            font-weight: 900;
            color: #fff;

            padding-top: 120px;
            padding-bottom: 64px;
            padding-right: 660px;

            line-height: 8.4375rem;

            text-shadow: 1px 1px 5px rgba(0, 0, 0, .15);
            
        }
.c-front-page-banner .center-content .button{
            background-color: #50AC59;
            color: #fff;
            padding: 16px 50px;
            border-radius: 100px;
            -webkit-text-decoration: none;
            text-decoration: none;

            font-size: 1.375rem;
            font-weight: 500;

            margin-top: 64px;
        }
.c-front-page-banner .center-content .button:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
@media screen and (max-width: 1390px){
.c-front-page-banner{

        height: 460px;

}

        .c-front-page-banner .slide{

            height: 460px;
        }

            .c-front-page-banner .slide img{
                min-height: 460px;
            }

            .c-front-page-banner .center-content .title{
                font-size: 4rem;
                line-height: 4rem;
            }
        
    }
@media screen and (max-width: 1034px){
.c-front-page-banner{

        height: 370px;

}

        .c-front-page-banner .slide{
            height: 300px;
        }

            .c-front-page-banner .slide img{
                min-height: 300px;
            }

        .c-front-page-banner .center-content{

            text-align: center;
            padding-left: 0;
        }

            .c-front-page-banner .center-content .title{
                font-size: 2.5rem;
                line-height: 2.5rem;

                padding-left: 22px;
                padding-right: 22px;
                padding-top: 64px;
            }

    }
.c-frontpage-cunstroctions .main-title{
        text-align: center;
        font-size: 1.6875rem;
        font-weight: 100;

        padding-bottom: 16px;
    }
.c-frontpage-cunstroctions .center-content{
        max-width: 1231px;
        margin: 0 auto;

        padding: 0 32px;
        padding-top: 64px;
    }
.c-frontpage-cunstroctions .constructions{
        display: flex;
    }
.c-frontpage-cunstroctions .construction{
        flex: 1;
        margin: 12px;

        position: relative;

        overflow: hidden;

        padding-bottom: 31.5%;

        -webkit-text-decoration: none;

        text-decoration: none;
    }
.c-frontpage-cunstroctions .construction .image-holder{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            z-index: -1;

            -o-object-fit: cover;

               object-fit: cover;
            width: 102%;
            height: 100%;
        }
.c-frontpage-cunstroctions .construction img{
            transition: transform 0.1s ease-in-out;
            min-height: 100%;
            width: 100%;
            -o-object-fit: cover;
               object-fit: cover;
        }
.c-frontpage-cunstroctions .construction p{
            color: #fff;
            display: block;
            margin: 0;
            padding: 0;
        }
.c-frontpage-cunstroctions .construction .title{
            text-transform: uppercase;
            font-size: 1.125rem;

            letter-spacing: 0.125rem;
        }
.c-frontpage-cunstroctions .construction .button{
            background-color: rgba(16, 129, 64, 0.8);
            font-size: 0.75rem;

            border-radius: 100px;
            padding: 4px 0;

            width: 140px;
            text-align: center;

            margin-top: 32px;

            text-transform: uppercase;
            letter-spacing: 0.08313rem;
        }
.c-frontpage-cunstroctions .construction .dark-bg{
            background-color: rgba(0, 0, 0, 0.5);

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 100%;
            height: 100%;

            z-index: -1;
        }
.c-frontpage-cunstroctions .construction .center-buttons{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 100%;
        }
.c-frontpage-cunstroctions .construction .center-buttons p{
                text-align: center;
            }
.c-frontpage-cunstroctions .construction .center-buttons .button{
                margin: 0 auto;
                margin-top: 24px;
            }
.c-frontpage-cunstroctions .construction:hover img{
            transform: scale(1.1);
        }
.c-frontpage-cunstroctions .view-more{
        text-align: right;
        padding-right: 14px;
    }
.c-frontpage-cunstroctions .view-more a{
            color: #254F47;
            font-style: italic;
            -webkit-text-decoration: none;
            text-decoration: none;
        }
.c-frontpage-cunstroctions .view-more a:hover{
            -webkit-text-decoration: underline;
            text-decoration: underline;
        }
@media screen and (max-width: 960px){

        .c-frontpage-cunstroctions .center-content{
            padding: 0 8px;
        }

        .c-frontpage-cunstroctions .constructions{
            flex-direction: column;
        }

            .c-frontpage-cunstroctions .constructions .construction{
                padding-bottom: 88%;
            }
    }
.c-header{
    background-color: #fff;

    height: 140px;

}
.c-header .center-content{
        max-width: 1915px;
        width: 100%;
        margin: 0 auto;
        height: inherit;

        width: 100%;
        display: flex;

        padding: 0 24px;
    }
.c-header .item{
        flex: 1;
    }
.c-header .left-side{
        display: flex;
        align-items: center;
        justify-content: left;
    }
.c-header .left-side img{
            padding-left: 32px;
            width: 300px;
        }
.c-header .right-side{
        display: flex;
        align-items: center;
        flex: 1.1;

        padding-top: 60px;

        position: relative;

        width: 977px;
        min-width: 977px;
    }
.c-header .right-side #top-menu{
            width: 100% !important;
        }
.c-header .mobile-show{
        display: none;
    }
.c-header .mobile-right-side{
        flex: 1;
        display: flex;

        align-items: center;
        justify-content: right;
    }
.c-header .hamburger-button{
        width: 30px;
    }
.c-header .language-links{
        position: absolute;
        top: 24px;
        right: 20px;

        display: flex;
        justify-content: center;
        width: 58px;
    }
.c-header .language-links a{
            flex: 1;
            display: block;

            -webkit-text-decoration: none;

            text-decoration: none;
            padding-top: 5px;

            color: #108140;

            font-size: 0.875rem;

            letter-spacing: 1.56;
        }
.c-header .language-links p{
            flex: 1;
            display: block;
            margin: 0;

            color: #108140;
            text-align: center;

            font-size: 0.875rem;
            letter-spacing: 1.56;
        }
.c-header nav{
        width: 100%;
    }
.c-header .c-menu{
        display: flex;
        list-style: none;

        align-items: center;
        justify-content: flex-end;
        gap: 26px;
        padding-left: 0;
    }
.c-header .c-menu .triangle-icon{
            display: none;
        }
.c-header .c-menu li{

            position: relative;
            border-bottom: 33px solid transparent;
            padding-bottom: 17px;

            text-align: center;
        }
.c-header .c-menu li:hover{
            border-bottom: 33px solid #108140;
        }
.c-header .c-menu li:hover .lvl2{
                max-height: 1000px;
            }
.c-header .c-menu a{
            font-size: 1.25rem;
            color: #108140;
            -webkit-text-decoration: none;
            text-decoration: none;

            text-transform: uppercase;
            font-weight: 500;
            padding: 8px;

            padding-bottom: 23px;
            letter-spacing: 0.13875rem;
        }
.c-header .c-menu .active{
            border-bottom: 33px solid #108140;
        }
.c-header .c-menu .pactive{
            border-bottom: 33px solid #108140;
        }
.c-header .c-menu .lvl2{
            max-height: 0;
            overflow: hidden;
            position: absolute;
            background-color: #fff;
            top: 80px;

            display: block;
            left: 0;
            min-width: 100%;
            width: -moz-fit-content;
            width: fit-content;
            z-index: 10;

            transition: max-height 0.5s ease-out;

        }
.c-header .c-menu .lvl2 a{
                display: block;
                border: 0;
                padding: 0;
                padding: 12px;
                font-size: 0.9375rem;

                margin: 0 14px;

                border-bottom: 1px solid rgba(151, 151, 151, .4);
            }
.c-header .c-menu .lvl2 li:last-child a{
                    border: 0;
                }
.c-header .c-menu .lvl2 a:hover{
                border-bottom: 1px solid transparent;
            }
.c-header .c-menu .lvl2 li{
                border: 0;
                padding-bottom: 4px;
            }
.c-header .c-menu .lvl2 li:hover{
                border: 0;
                background-color: #108140;
            }
.c-header .c-menu .lvl2 li:hover a{
                    color: #fff;
                    border-bottom: 1px solid transparent;
                }
@media screen and (max-width: 1460px){

        .c-header .right-side{
            width: 746px;
            min-width: 753px;
            padding-top: 66px;
        }

        .c-header .language-links{
            right: 13px;
        }
            .c-header .left-side img{
                width: 300px;
            }

        .c-header .c-menu{
            gap: 8px;
        }

            .c-header .c-menu li a{
                font-size: 1rem;
            }

            .c-header .c-menu .lvl2{
                top: 74px;
            }
    }
@media screen and (max-width: 1100px){
.c-header{

        height: 50px;

}

        .c-header .mobile-hide{
            display: none;
        }

        .c-header .mobile-show{
            display: flex;
        }

        .c-header .left-side{

            padding-top: 0;
        }

            .c-header .left-side img{
                min-width: 106px;
                max-width: 106px;
                width: 106px;

                padding-left: 0;
            }

        .c-header .right-side{

        }
    }
.c-mobile-menu{

    display: none;

    background-color: #fff;

    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;

    max-height: 0;
    transition: max-height 0.3s ease-out;
    
    overflow: scroll;

    z-index: 100;

}
.c-mobile-menu .c-menu{
        list-style: none;

        padding-left: 0;
        
    }
.c-mobile-menu .main{
        border-left: 32px solid #108140;
    }
.c-mobile-menu a{
        font-size: 1.25rem;
        -webkit-text-decoration: none;
        text-decoration: none;
        color: #108140;
        letter-spacing: 0.13875rem;
        font-weight: 700;
        text-transform: uppercase;

        padding: 8px 0px;
        margin-left: 35px;

        display: block;

        border-bottom: 1px solid #D8D8D8;
    }
.c-mobile-menu li{
        position: relative;
    }
.c-mobile-menu .triangle-icon{
        position: absolute;
        top: 0px;
        right: 18px;

        width: 12px;
        height: 14px;
        padding: 24px;

        background-color: transparent;
        border: 0;

        transition: transform 0.2s ease-in-out;
    }
.c-mobile-menu .triangle-icon img{
            width: 12px;
            height: 14px;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            
        }
.c-mobile-menu .rotated-button{

        transform: rotate(90deg);
    }
.c-mobile-menu .rotated-button img{
            
        }
.c-mobile-menu .lvl2{
        max-height: 0;
        overflow: hidden;

        transition: max-height 0.2s cubic-bezier(.19,1,.22,1);
    }
.c-mobile-menu .lvl2 a{
            font-size: 1rem;
            padding-left: 64px;
            padding-right: 64px;
        }
.c-mobile-menu .active-sub-menu{
        max-height: 2000px;

        transition: max-height 0.5s ease-in;
    }
.c-mobile-menu .language-links{
        width: 100%;
        display: flex;

        border-left: 32px solid #108140;

        padding: 12px;
        padding-left: 32px;
    }
.c-mobile-menu .language-links a{
            margin: 0;
            padding: 0;

            border: 0;
            font-weight: 500;

            letter-spacing: 0.0975rem;
            font-size: 0.875rem;
            padding-top: 4px;
        }
.c-mobile-menu .language-links p{
            margin: 0;
            padding: 0;
            color: #108140;
            margin: 0 8px;
            padding-bottom: 4px;
        }
@media screen and (max-width: 1100px){
.c-mobile-menu{
        display: block;

}
    }
.active-menu{
    max-height: 1000px;
    transition: max-height 0.2s ease-in;
}
.c-news-list .image-holder{
        height: 643px;
        overflow: hidden;

        display: flex;
        justify-content: center;
        align-items: center;
    }
.c-news-list .image-holder img{
            width: 100%;
            -o-object-fit: cover;
               object-fit: cover;

            min-height: 643px;
        }
.c-news-list .center-title{
        max-width: 1261px;
        padding: 32px;
        margin: 0 auto;
        margin-top: 100px;
    }
.c-news-list .center-title h1{
            text-transform: uppercase;
        }
.c-news-list .news-list{
        max-width: 1230px;
        margin: 0 auto;

        display: flex;
        flex-wrap: wrap;
    }
.c-news-list .item{
        max-width: 583px;
        margin: 16px;

        color: #000;
        -webkit-text-decoration: none;
        text-decoration: none;
    }
.c-news-list .item p{
            padding: 0;
            margin: 0;
        }
.c-news-list .item .title{
            font-weight: 700;
            font-size: 2.1875rem;
            letter-spacing: 0.1875rem;
            text-transform: uppercase;
        }
.c-news-list .item .date{
            font-size: 1rem;
            font-weight: 100;
            letter-spacing: 0.04rem;
            padding-top: 21px;
        }
.c-news-list .item .text{
            padding-top: 21px;
        }
.c-news-list .item:hover p{
            color: #108140;
        }
@media screen and (max-width: 1230px){
        .c-news-list .news-list{
            justify-content: center;
        }

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

                .c-news-list .news-list .item img{
                    width: 100%;
                    height: auto;
                }
    }
@media screen and (max-width: 800px){

        .c-news-list .image-holder{
            height: 413px;
        }

            .c-news-list .image-holder img{
                min-height: 413px;
            }

        .c-news-list .center-title{
            margin-top: 32px;
            padding-bottom: 0;
        }
            .c-news-list .center-title h1{
                font-size: 2rem;
            }
    }
.c-news-page-content .image-holder{
        max-width: 966px;
        height: 100%;
        margin: 0 auto;
    }
.c-news-page-content .center-image{
        max-width: 966px;
        width: 100%;
        height: auto;

        margin: 0 auto;

        margin-top: 64px;
    }
.c-news-page-content .content{
        
        max-width: 900px;
        margin: 0 auto;

        padding: 0 32px;
        margin-top: 64px;
    }
.c-news-page-content .content .date{
            margin: 0;
            padding: 0;

            font-size: 1rem;
            letter-spacing: 0.02875rem;
            font-weight: 100;
        }
.c-news-page-content .content .title{
            margin-top: 12px;
            text-transform: uppercase;
        }
.c-news-page-content .content img{
            width: 100%;
        }
@media screen and (max-width: 1100px) {
        .c-news-page-content .center-image{
            margin-top: 0;
        }
            .c-news-page-content .content .title{
                font-size: 2rem;
            }
    }
.c-pager {
  width: 100%;
  max-width: min(1300px, calc(100vw - 15px * 2));
  max-width: var(--page-width-large);
  margin: max(15px, min(8vw, 107px)) auto 50px;
}
.c-pager > .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(345px, min(1300px, calc(100vw - 15px * 2))), 393px));
    grid-template-columns: repeat(auto-fit, minmax(min(345px, var(--page-width-large)), 393px));
    grid-gap: max(30px, min(6vw, 43px)) 60px;
    gap: max(30px, min(6vw, 43px)) 60px;
    justify-content: center;
    width: 100%;
    margin-bottom: 66px;
  }
.c-pagination {

  width: -moz-fit-content;

  width: fit-content;
  margin: 0 auto;
  padding-top: 64px;
}
.c-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 0;
    padding: 0;
    list-style: none;
  }
.c-pagination ul > li > * {
        display: block;
        padding: 0.5em 0.7em;
      }
.c-pagination ul > li > *[aria-current='page'] {
          color: white;
          background-color: #108140;
        }
.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/pagination/icons/chevron-left.svg');
            mask-image: url('/images/pagination/icons/chevron-left.svg');
  }
.c-pagination .next::after {
    display: inline-block;
    margin-left: 1ch;
    -webkit-mask-image: url('/images/pagination/icons/chevron-right.svg');
            mask-image: url('/images/pagination/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-tabs {
  margin-bottom: 80px;

}
.c-tabs [role='tablist'] {
    display: flex;
    flex-wrap: wrap;
  }
.c-tabs [role='tab'] {
    padding: max(16px, min(3vw, 22px)) max(22px, min(3vw, 30px)) max(16px, min(3vw, 24px)) max(22px, min(3vw, 30px));
    font-weight: 600;
    font-weight: var(--font-weight-semi-bold, 600);
    font-size: max(1.125rem, min(3vw, 1.5rem));
    text-align: left;
    background-color: #e8eaf0;
    border: none;
    cursor: pointer;
    transition: background-color 150ms ease;
  }
.c-tabs [role='tab'] .label span {
      word-wrap: anywhere;
    }
.c-tabs [role='tab'][aria-selected='true'] {
      background-color: white;
      background-color: var(--color-white, #fff);
    }
.c-tabs .panels-wrapper {
    display: grid;
    grid-template: 'panels' 100%;
  }
.c-tabs [role='tabpanel'] {
    grid-area: panels;
    height: max-content;
    background-color: white;
    background-color: var(--color-white, #fff);
    transition: opacity 150ms ease;
  }
.c-tabs [role='tabpanel'][aria-hidden='true'] {
      opacity: 0;
      pointer-events: none;

    }
.c-tabs [role='tabpanel'] .content {
      /* For the example */
      width: 100%;
      height: 500px;
      background-color: grey;
    }
.c-textpage-content .image-holder{
        height: 643px;

        position: relative;
        overflow: hidden;

        z-index: -1;
    }
.c-textpage-content .image-holder img{
            width: 100%;
            min-height: 643px;

            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -o-object-fit: cover;
               object-fit: cover;

            z-index: -1;
        }
.c-textpage-content .center-content{

        padding-top: 100px;
        padding-left: 32px;
        padding-right: 32px;

        max-width: 900px;
        margin: 0 auto;
        
    }
.c-textpage-content .center-content h1, .c-textpage-content .center-content h2{
            text-transform: uppercase;
        }
.c-textpage-content .center-content img{
            width: 100%;
        }
.c-textpage-content .center-content p + h2{
            padding-top: 32px;
        }
.c-textpage-content .center-content .content{
            padding: 0 32px;

            max-height: 0;
            overflow: hidden;

            transition: max-height 0.5s ease-out;
        }
.c-textpage-content .center-content .active-content{
            max-height: 4000px;
            transition: max-height 0.5s ease-out;
        }
.c-textpage-content .center-content .active-title{
            background-color: #108140;
            color: #fff;
        }
.c-textpage-content .center-content .active-title p{
                color: #fff;
            }
.c-textpage-content .center-content .active-title .unselected-icon{
                display: none;
            }
.c-textpage-content .center-content .active-title .selected-icon{
                display: block;
            }
.c-textpage-content .accordion-list{
        padding-top: 32px;

        
    }
.c-textpage-content .unselected-icon{
        display: block;
    }
.c-textpage-content .selected-icon{
        display: none;
    }
.c-textpage-content .title-block{
        position: relative;

        background-color: rgba(101, 113, 110, 0.15);
        color: #108140;

        margin-top: 16px;

        cursor: pointer;
    }
.c-textpage-content .title-block p{
            color: #108140;
            padding: 21px;
            padding-left: 64px;

            font-size: 1.875rem;
            letter-spacing: 0.16063rem;

            font-weight: 700;
            margin: 0;
        }
.c-textpage-content .title-block:hover{

        background-color: #108140;
    }
.c-textpage-content .title-block:hover p{
            color: #fff;
        }
.c-textpage-content .title-block:hover .unselected-icon{
            display: none;
        }
.c-textpage-content .title-block:hover .selected-icon{
            display: block;
        }
.c-textpage-content .accordion-icon{
        transition: transform 0.2s ease-in-out;
    }
.c-textpage-content .icon-img{
        width: 20px !important;
        height: auto !important;
    }
.c-textpage-content .icon-img{
        position: absolute;
        top: 50%;
        right: 43px;

        transform: translateY(-50%);

        transition: transform 0.2s ease-in-out;
    }
.c-textpage-content .rotated img{
            transform: rotate(90deg);
        }
@media screen and (max-width: 500px){

        .c-textpage-content .image-holder{
            height: 413px;
        }

            .c-textpage-content .image-holder img{
                min-height: 413px;
            }

        .c-textpage-content .center-content{

            padding-top: 32px;
        }

            .c-textpage-content .center-content .title{
                font-size: 2rem;
            }
                .c-textpage-content .center-content .title-block p{
                    font-size: 1.25rem;
                    padding-left: 24px;
                    padding-right: 80px;
                }

        

    }
.c-why-us{

    padding-top: 64px;

}
.c-why-us .center-content{
        max-width: 828px;
        margin: 0 auto;
        padding: 0 32px;
    }
.c-why-us .title{
        font-weight: 100;
        font-size: 1.6875rem;
        text-align: center;

        padding-bottom: 35px;
    }
.c-why-us .reasons{
        display: flex;
        justify-content: center;

        margin-top: -50px;
    }
.c-why-us .reason{
        flex: 1;
        position: relative;

        padding-top: 64px;

        display: flex;
        flex-direction: column;
    }
.c-why-us .reason .item{
            position: relative;
        }
.c-why-us .reason .dot-item{
            display: flex;
            align-items: center;
            justify-content: center;

            padding-bottom: 22px;
        }
.c-why-us .reason p{
            color: #65716E;
            font-size: 1rem;
            text-align: center;
            margin: 0;

            font-weight: 700;

            padding: 0 46px;
        }
.c-why-us .reason .dot{
            width: 28px;
            height: 28px;
            border-radius: 100px;

            background-color: #fff;
            border: 8px solid #65716E;

            position: relative;
        }
.c-why-us .reason .dash{
            height: 1px;
            width: 100%;
            background-color: #000;

            position: absolute;
            top: 78px;
            left: 100%;
            transform: translateX(-50%);
            z-index: -1;
        }
.c-why-us .reason:hover .point{
            background-color: #108140;
            box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.3);
        }
.c-why-us .reason:hover .item .dot{
                border-color: #108140;
                box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.3);
            }
.c-why-us .reason:hover p{
            color: #108140;
            cursor: default;
        }
.c-why-us .point{
        width: 28px;
        height: 28px;
        border-radius: 100px;
        background-color: #65716E;

        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
.c-why-us .white-point{
        width: 12px;
        height: 12px;
        border-radius: 100px;
        background-color: #fff;

        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
.c-why-us .dash{
        height: 1px;
        background-color: #000;

        position: absolute;
        top: 25%;
        left: 98%;
        transform: translate(-50%, -50%);
    }
.c-why-us .mobile-dash{
        display: none;

        width: 1px;
        background-color: #000;

        position: absolute;
        top: 74%;
        left: 76%;
        transform: translate(-50%, -50%);
    }
.c-why-us .big-dash{
        display: none;
    }
@media screen and (max-width: 830px){
.c-why-us{

        padding-top: 0;

}

        .c-why-us .title{
            margin-bottom: 0;
            padding-bottom: 10px;
        }

        .c-why-us .center-content{
            max-width: 338px;
        }

        .c-why-us .reasons{
            flex-direction: column;

            padding: 0 33px;

            position: relative;

            margin-top: 0;
        }

        .c-why-us .big-dash{
            display: block;
            width: 1px;
            height: 60%;

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

            background-color: #000;

            z-index: -1;
        }

        .c-why-us .reason{
            padding-top: 0;
            margin-bottom: 0px;
            padding-bottom: 0px;

            min-height: 100px;

            flex-direction: row-reverse;
            align-items: center;
                justify-content: center;

        }

            .c-why-us .reason .item{
                flex: 1;
                align-items: center;
                justify-content: center;
            }

                .c-why-us .reason .item p{
                    padding-right: 10px;
                }

            .c-why-us .reason .dash{
                display: none;
                width: 1px;
                height: 100%;

                top: 18px;
                left: auto;
                right: 60px;
                transform: none;

                display: none;
            }

            .c-why-us .reason .mobile-dash{
                width: 1px;
                height: 100%;
                background-color: #000;

                position: absolute;
                left: auto;
                right: 51px;
                top: 100px;

                z-index: -1;
            }

            .c-why-us .reason .dot-item{
                padding: 0;
            }

            .c-why-us .reason p{
                text-align: center;
                padding-left: 0;
                padding-right: 0px;
            }

        .c-why-us .last-reason{
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .c-why-us .point{
            top: 25%;
            left: 76%;
        }

        .c-why-us .white-point{
            top: 25%;
            left: 76%;
        }

        

        .c-why-us .mobile-dash{
            display: block;
        }

    }
.c-featured-pages + .c-why-us{
    padding-top: 124px !important;
}