:root {
  --sitecolor: #004247;
  --textcolor: #004247;
  --titlecolor: #004247;
  --linkcolor: #004247;
  --linkcolor-hov: #004247;
  --headerHeight: 152px;
  --gutter: 50px;
  --borderRadius: 10px;
}
@media (max-width: 1199px) {
  :root {
    --gutter: 30px;
    --headerHeight: 90px;
  }
}
@media (max-width: 767px) {
  :root {
    --headerHeight: 76px;
    --gutter: 20px;
  }
}
:root {
  --deskWidth: 1280px;
  --deskSpace: 80px;
  --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
}
@media (max-width: 1199px) {
  :root {
    --deskSpace: 67px;
    --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
  }
}
@media (max-width: 767px) {
  :root {
    --deskSpace: 20px;
    --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
  }
}
:root {
  --spaceArea: clamp(2.1875rem, 6.38506876vw + 0.63113949rem, 6.25rem);
}
:root {
  --spacePart: 10px;
}
@media (max-width: 1199px) {
  :root {
    --spacePart: 10px;
  }
}
@media (max-width: 767px) {
  :root {
    --spacePart: 8px;
  }
}
:root {
  --spaceUnit: 30px;
}
@media (max-width: 1199px) {
  :root {
    --spaceUnit: 25px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceUnit: 17px;
  }
}
:root {
  --spaceTotal: 40px;
}
@media (max-width: 1199px) {
  :root {
    --spaceTotal: 35px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceTotal: 25px;
  }
}
:root {
  --js-breakpoint: breakpointLarge;
}
@media (max-width: 1199px) {
  :root {
    --js-breakpoint: breakpointMedium;
  }
}
@media (max-width: 767px) {
  :root {
    --js-breakpoint: breakpointSmall;
  }
}
.button {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.button:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .button:before {
    border-radius: 60px 40px 40px 0;
  }
}
.button:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .button:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .button {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .button:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .button:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .button:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .button:hover:before {
    width: calc(100% + 7px);
  }
}
.button:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.button:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.button:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .button:focus:before {
    width: calc(100% + 7px);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archia';
  font-style: normal;
  font-weight: 400;
  src: url('/extras/fonts/archia-regular-webfont.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archia';
  font-style: normal;
  font-weight: 600;
  src: url('/extras/fonts/archia-semibold-webfont.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Archia';
  font-style: normal;
  font-weight: 700;
  src: url('/extras/fonts/archia-bold-webfont.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#edit * :not(.is-marked):focus-within {
  outline: none;
}
:focus {
  outline-color: var(--sitecolor);
}
*::selection {
  background: var(--sitecolor);
  color: #fff;
}
.hidden,
.cb-invisible {
  display: none !important;
}
li {
  list-style-position: inside;
}
img,
audio,
video,
iframe {
  float: left;
  width: 100%;
}
strong {
  font-weight: 700;
}
sup,
sub {
  position: relative;
  vertical-align: baseline;
  top: -0.8em;
  font-size: 70%;
}
sub {
  top: 0.4em;
}
address {
  font-style: normal;
}
input,
textarea {
  border-radius: 0;
  font-family: 'Archia', sans-serif;
  font-size: clamp(1rem, 0.58939096vw + 0.85633595rem, 1.375rem);
  line-height: clamp(1.4375rem, 1.0805501vw + 1.17411591rem, 2.125rem);
}
.unit caption {
  display: none;
}
.flag {
  background: var(--sitecolor);
  color: #fff;
}
img.cb-loading {
  background-size: 30px 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader.svg);
}
.cbdModule {
  float: left;
  width: 100%;
}
#view .cbdModule.is-empty {
  display: none;
}
.cbDynamicContent__element {
  float: left;
  width: 100%;
}
.area {
  float: left;
  width: 100%;
}
#view .area:empty {
  display: none;
}
.area .unit {
  float: left;
  width: 100%;
  margin-top: var(--spaceUnit);
  margin-bottom: var(--spaceUnit);
  position: relative;
}
.unit__background {
  float: left;
  width: 100%;
}
.unit__content {
  float: left;
  width: 100%;
}
.unit__head,
.unit__body,
.unit__foot {
  float: left;
  width: 100%;
}
.unit--fold div.less,
.unit--fold div.more {
  float: left;
  width: 100%;
}
.unit--fold .ctrl {
  float: left;
  width: 100%;
}
.unit .part {
  float: left;
  width: 100%;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  position: relative;
}
.part__content {
  float: left;
  width: 100%;
}
.pict a {
  float: left;
  width: 100%;
}
.pict img {
  width: 100%;
}
.pict img:not(.svg) {
  width: auto;
  max-width: 100% !important;
}
#root#root#root img.zoom {
  display: none !important;
}
.lazyimage {
  visibility: hidden;
}
.lazyimage.lazyloaded {
  visibility: initial;
}
#edit .part video {
  pointer-events: none;
}
.cb-image-figure {
  float: left;
  width: 100%;
}
.cb-image-container {
  float: left;
  width: 100%;
  position: relative;
}
.cb-image-caption {
  float: left;
  width: 100%;
  margin-top: 6px;
}
#disp.zoom .cb-image-figure {
  height: 100%;
}
#disp.zoom .cb-image-container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom .cb-image-caption {
  display: none;
}
.cb-album .cb-image-figure {
  opacity: 1 !important;
  display: block !important;
}
.cb-album .cb-image-container {
  position: static;
}
.cb-album .cb-image-caption {
  display: none;
}
div.load {
  background: none !important;
}
.show a {
  float: left;
  width: 100%;
  display: block;
}
#edit .line {
  padding-top: 5px;
  padding-bottom: 5px;
}
.line hr {
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--textcolor);
}
.line hr.bold {
  border-bottom-width: 2px;
}
.line hr.dash {
  border-bottom-style: dashed;
}
.line hr.spot {
  border-bottom-style: dotted;
}
#edit div.code {
  position: relative;
  min-height: 30px;
}
#edit div.code:after {
  content: 'Code';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #aaa;
  opacity: 0.6;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0 20px;
}
.cb-code-executable {
  float: left;
  width: 100%;
}
.part.cb-youtube iframe,
.part.cb-vimeo iframe {
  height: 100%;
  background-color: #fff;
}
.part.cb-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.part.cb-share .cb-service {
  float: left;
  margin-left: 16px;
}
.part.cb-share .cb-service:first-child {
  margin-left: 0;
}
.part.cb-share .cb-service * {
  float: left;
}
.part.cb-share .cb-service a {
  float: left;
  width: 50px;
  height: 50px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 10000px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.part.cb-share .cb-service a:hover {
  filter: invert(1);
}
.part.cb-share .cb-service.cb-service-facebook-share a {
  background-size: auto 24px;
  background-image: url(/images/cb-default/socialShare-facebook-black.svg);
}
.part.cb-share .cb-service.cb-service-twitter a {
  background-size: auto 18px;
  background-image: url(/images/cb-default/socialShare-twitter-black.svg);
}
.text-section {
  float: left;
  width: 100%;
}
.list {
  float: left;
  width: 100%;
}
.list--bullet li {
  list-style: none;
  padding-left: 2em;
  position: relative;
}
.list--bullet li:before {
  content: '';
  color: var(--textcolor);
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 1em;
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/listicon.svg);
}
.list--numbered {
  counter-reset: numberedList;
}
.list--numbered li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.list--numbered li:before {
  content: counter(numberedList) ".";
  counter-increment: numberedList;
  position: absolute;
  left: 0;
  top: 0;
}
#expo {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
#slides {
  float: left;
  width: 100%;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  position: relative;
  overflow: hidden;
}
#slides .slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
#slides a {
  display: block;
  width: 100%;
  height: 100%;
}
#slides a.null {
  cursor: default;
}
.cb-slides .cb-image-figure {
  height: 100%;
}
.cb-slides .cb-image-container {
  height: 100% !important;
}
#slides img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
#slides img.lazyimage {
  visibility: initial;
  filter: blur(10px);
  transform: scale(1.05);
  transition: all 0.12s;
}
#slides img.lazyimage.lazyloaded {
  filter: blur(0);
  transform: scale(1);
}
#expo div.link {
  display: none;
  float: left;
  width: 100%;
  height: 0;
}
#expo a.link {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 50px;
  transform: translateY(-50%);
  background: var(--sitecolor);
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#expo a.link.prev {
  left: 20px;
}
#expo a.link.next {
  right: 20px;
}
table.link,
table.link tbody {
  float: left;
  display: block;
  width: 100%;
  height: 0;
}
.cb-index-all {
  display: block;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cb-index-all td {
  float: left;
  display: block;
  margin: 0 10px;
}
.cb-index-all td.init {
  margin-left: 0;
}
.cb-index-all td.exit {
  margin-right: 0;
}
.cb-index-all a {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s;
}
.cb-index-all td.this a {
  background: var(--sitecolor);
}
.cb-index-some {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.cb-index-some td {
  float: left;
  display: block;
  color: #fff;
}
.cb-index-some td:first-child:after {
  display: inline-block;
  content: '/';
  margin: 0 5px;
}
.cb-index-some a {
  color: #fff;
}
.cb-index-some a:hover,
.cb-index-some a:focus {
  color: #fff;
}
#over {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100% !important;
  background-color: rgba(0, 66, 71, 0.85);
}
#disp {
  position: absolute;
  z-index: 5001;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: 1000px !important;
  max-width: 90%;
  min-height: 100vh;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 80px 0 !important;
  font-size: 14px;
  font-family: 'Archia', sans-serif;
  line-height: 1.42857143;
  color: var(--textcolor);
}
@media (max-width: 767px) {
  #disp {
    padding: 20px 0 !important;
  }
}
.disp-wrapper {
  float: left;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px;
}
@media (max-width: 767px) {
  .disp-wrapper {
    padding: 15px;
  }
}
#disp form {
  float: left;
}
.disp-wrapper > form {
  width: 100%;
}
@media (max-width: 767px) {
  #disp form {
    width: 100%;
  }
}
#disp .fail {
  color: #ae2121;
}
#disp .part {
  margin-top: 4px;
  margin-bottom: 4px;
}
#disp a.mail {
  float: left;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
#disp .head,
#disp .body,
#disp .foot {
  float: left;
  width: 100%;
  position: relative;
}
#disp .body {
  margin: 20px 0;
}
#disp .foot form + form {
  float: right;
}
#disp h2 {
  font-size: 14px;
  line-height: 1.71428571;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--sitecolor);
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px;
}
#disp h3 {
  color: var(--sitecolor);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0;
  width: 100%;
}
#disp .head .ctrl {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
#disp .head .ctrl > div {
  float: left;
}
#disp .head .ctrl a {
  float: left;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 16px;
  height: 24px;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
#disp .foot input,
#disp .foot a {
  float: left;
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: 1.42857143;
}
#disp .foot input:before,
#disp .foot a:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  #disp .foot input:before,
  #disp .foot a:before {
    border-radius: 60px 40px 40px 0;
  }
}
#disp .foot input:after,
#disp .foot a:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  #disp .foot input:after,
  #disp .foot a:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  #disp .foot input,
  #disp .foot a {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  #disp .foot input:after,
  #disp .foot a:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  #disp .foot input:after,
  #disp .foot a:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  #disp .foot input:hover,
  #disp .foot a:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  #disp .foot input:hover:after,
  #disp .foot a:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  #disp .foot input:hover:before,
  #disp .foot a:hover:before {
    width: calc(100% + 7px);
  }
}
#disp .foot input:focus,
#disp .foot a:focus {
  color: var(--btnLinkColorFocus, #fff);
}
#disp .foot input:focus:before,
#disp .foot a:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
#disp .foot input:focus:after,
#disp .foot a:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  #disp .foot input:focus:before,
  #disp .foot a:focus:before {
    width: calc(100% + 7px);
  }
}
#disp .foot input.next,
#disp .foot a.next {
  float: right;
}
#disp.mail .foot input {
  float: right;
}
@media (max-width: 767px) {
  #disp .foot input,
  #disp .foot a {
    width: 100%;
    margin: 5px 0;
  }
  #disp .foot input:first-child,
  #disp .foot a:first-child {
    margin-top: 0;
  }
  #disp .foot input:last-child,
  #disp .foot a:last-child {
    margin-bottom: 0;
  }
}
#disp fieldset {
  float: left;
  width: 100%;
  position: relative;
  margin: 4px 0;
}
#disp fieldset.tiny {
  width: 48%;
}
#disp .head fieldset,
#disp .foot fieldset {
  margin: 0;
}
@media (max-width: 767px) {
  #disp fieldset.tiny {
    width: 100%;
  }
}
#disp label.name {
  float: left;
  width: 30%;
  margin-right: 4%;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  #disp label.name {
    width: 100%;
    margin-right: 0;
  }
}
#disp input.text,
#disp textarea {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  min-height: 26px;
  box-sizing: border-box;
  padding: 2px 10px;
}
#disp input.text.fail,
#disp textarea.fail {
  border: 2px solid #ae2121;
}
#disp textarea {
  min-height: 100px;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  #disp input.text,
  #disp textarea {
    width: 100%;
  }
}
#disp select {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  height: 26px;
}
@media (max-width: 767px) {
  #disp select {
    width: 100%;
  }
}
#disp input + label,
#disp input + label {
  display: block;
  padding-left: 30px;
}
#disp input[type*="radio"],
#disp input[type*="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 20px;
  width: 20px;
}
.cb-sitemap-target {
  float: left;
  margin-bottom: 20px;
  color: #fff;
  padding: 5px 10px;
  background-color: #ae2121;
}
.cb-sitemap-contents {
  float: left;
  width: 100%;
}
.cb-sitemap-contents li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.cb-sitemap-contents li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}
.cb-zoom-indicator {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px !important;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 18px 18px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-zoom-white.svg);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.05, 0.8, 0.5, 1);
}
a.zoom .cb-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1199px) {
  .cb-zoom-indicator {
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px !important;
    background-size: 12px 12px;
    opacity: 1;
    transform: scale(1);
  }
}
#disp.zoom {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  background: none;
  padding: 0 !important;
  display: block !important;
  transform: none;
}
#disp.zoom .disp-wrapper {
  padding: 0;
  background: none;
  height: 100%;
}
#disp.zoom div.head h2 {
  display: none;
}
#disp.zoom div.head div.ctrl {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}
@media (max-width: 767px) {
  #disp.zoom div.head div.ctrl {
    top: 20px;
    right: 20px;
  }
}
#disp.zoom div.head div.ctrl > div {
  float: left;
  margin: 0 10px;
}
#disp.zoom div.head div.ctrl > div:first-child {
  margin-left: 0;
}
#disp.zoom div.head div.ctrl > div:last-child {
  margin-right: 0;
}
#disp.zoom div.head div.ctrl a {
  float: left;
  display: block;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-white.svg);
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#disp.zoom div.head div.ctrl .next a {
  background-image: url(/images/cb-default/cb-arrow-right-white.svg);
}
#disp.zoom div.head div.ctrl .quit a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
  background-size: 16px 16px;
}
#disp.zoom div.head div.ctrl a:hover {
  transform: scale(1.1);
}
#disp.zoom div.head div.ctrl a:active {
  transform: scale(1);
}
#disp.zoom div.body {
  float: left;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 80px 30px;
  margin: 0;
}
@media (max-width: 767px) {
  #disp.zoom div.body {
    padding: 60px 20px;
  }
}
#disp.zoom div.body > div {
  float: left;
  width: 100% !important;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body a {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body img {
  float: left;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#disp.zoom div.foot {
  display: none;
}
.ie11 #disp.zoom {
  position: absolute;
}
.ie11 #disp.zoom div.body,
.ie11 #disp.zoom div.body > div,
.ie11 #disp.zoom div.body a {
  height: auto;
  display: block;
}
.ie11 #disp.zoom div.body img {
  float: none;
  position: relative;
  height: auto;
  display: block;
  margin: 0 auto;
}
#disp.srch {
  display: block !important;
}
#disp.srch h2 {
  display: none;
}
#disp.srch .disp-wrapper {
  background: none;
  padding: 0;
}
#disp.srch .head .ctrl a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
}
#disp.srch div.body {
  margin: 0;
}
#disp.srch fieldset {
  margin: 0;
}
#disp.srch label.name {
  display: none;
}
#disp.srch input.text {
  font-family: 'Archia', sans-serif;
  background-color: transparent;
  margin-top: 40px;
  width: 100%;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding: 20px 10px;
  -webkit-font-smoothing: antialiased;
  appearance: none;
}
#disp.srch input.text::placeholder {
  color: #fff;
}
@media (max-width: 767px) {
  #disp.srch input.text {
    font-size: 18px;
  }
}
.cb-result {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
.cb-result p {
  margin-top: 40px;
}
.cb-result a {
  color: #fff;
  text-decoration: none;
}
.cb-result a:hover {
  color: #fff;
  text-decoration: underline;
}
.cb-result table {
  float: left;
  width: 100%;
  border-collapse: collapse;
}
.cb-result tbody {
  width: 100%;
}
.cb-result th {
  padding-top: 20px;
  font-size: 24px;
  line-height: 1;
  text-align: left;
}
.cb-result th:first-child {
  padding-right: 40px;
  width: 80px;
}
.cb-result td {
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cb-result th,
.cb-result td {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .cb-result {
    font-size: 14px;
  }
  .cb-result th {
    padding-top: 10px;
    font-size: 18px;
  }
  .cb-result th:first-child {
    padding-right: 10px;
    width: 54px;
  }
  .cb-result td {
    padding-bottom: 10px;
    padding-top: 5px;
  }
}
.unit.form form {
  float: left;
  width: 100%;
}
.cb-form-required {
  float: left;
  width: 100%;
}
.unit.form fieldset {
  float: left;
  width: 100%;
  position: relative;
}
.unit.form div.ctrl {
  float: left;
  width: 100%;
}
.unit.form div.ctrl.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
@media (min-width: 768px) {
  .unit.form .tile div.ctrl {
    float: right;
    width: 66%;
  }
}
.unit.form .name {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  color: #7C7C7C;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .unit.form .tile .name {
    padding-bottom: 0;
    width: 30%;
    min-height: 55px;
  }
}
.part--choice,
.part--input {
  border-radius: 5px;
  border: 0 solid var(--Beige, #EDE7DD);
  background: var(--grau-50, #F3F3F3);
  padding: 10px 30px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .part--choice,
  .part--input {
    padding: 10px;
  }
}
.unit.form input.text,
.unit.form textarea {
  float: left;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  min-height: 55px;
  appearance: none;
}
@media (max-width: 767px) {
  .unit.form input.text,
  .unit.form textarea {
    min-height: 33px;
  }
}
.unit.form input.text.fail,
.unit.form textarea.fail {
  background-color: #e7bcbc;
}
.unit.form textarea {
  padding: 10px;
}
@media (min-width: 768px) {
  .unit.form .tile input.text,
  .unit.form .tile textarea {
    float: right;
    width: 66%;
  }
}
.unit.form div.tick div.ctrl > div {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile div.ctrl > div {
    min-height: 55px;
    align-items: center;
  }
}
.unit.form div.tick label {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.unit.form div.tick input {
  float: left;
  margin-right: 10px;
  flex-shrink: 0;
  width: 20px;
}
.unit.form select {
  float: left;
  width: 100%;
  font-family: 'Archia', sans-serif;
  font-size: clamp(1rem, 0.58939096vw + 0.85633595rem, 1.375rem);
  line-height: clamp(1.4375rem, 1.0805501vw + 1.17411591rem, 2.125rem);
  background: transparent;
  height: 55px;
  padding: 5px;
}
.unit.form .part.text a .star {
  width: 313px;
  height: 150px;
  display: inline-block;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/key.svg);
}
#view .unit.form .part.text a .star {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  pointer-events: none;
}
.unit.form .ship fieldset > div {
  float: left;
  width: 100%;
}
.unit.form .ship fieldset > div.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
.unit.form .ship div.chop {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.unit.form .ship div.chop input {
  float: left;
  width: 100%;
  display: block;
  font-size: 12px;
}
.unit.form .ship div.chop span {
  float: left;
}
.unit.form .ship div.chop span::file-selector-button {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  margin-right: 16px;
}
.unit.form .ship div.chop span::file-selector-button:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .unit.form .ship div.chop span::file-selector-button:before {
    border-radius: 60px 40px 40px 0;
  }
}
.unit.form .ship div.chop span::file-selector-button:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .unit.form .ship div.chop span::file-selector-button:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .unit.form .ship div.chop span::file-selector-button {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .unit.form .ship div.chop span::file-selector-button:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .ship div.chop span::file-selector-button:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .unit.form .ship div.chop span::file-selector-button:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .unit.form .ship div.chop span::file-selector-button:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .unit.form .ship div.chop span::file-selector-button:hover:before {
    width: calc(100% + 7px);
  }
}
.unit.form .ship div.chop span::file-selector-button:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.unit.form .ship div.chop span::file-selector-button:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.unit.form .ship div.chop span::file-selector-button:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .ship div.chop span::file-selector-button:focus:before {
    width: calc(100% + 7px);
  }
}
.unit.form .ship div.chop a {
  float: left;
  display: block;
  margin-left: 10px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 12px;
  height: 12px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
@media (min-width: 768px) {
  .unit.form .ship.tile fieldset > div {
    float: right;
    width: 66%;
    min-height: 55px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
.unit.form .unit__foot {
  display: flex;
}
@media (max-width: 767px) {
  .unit.form .unit__foot {
    justify-content: center;
  }
}
.unit.form .submit {
  float: left;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.unit.form .submit:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .unit.form .submit:before {
    border-radius: 60px 40px 40px 0;
  }
}
.unit.form .submit:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .unit.form .submit:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .unit.form .submit {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .unit.form .submit:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .submit:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .unit.form .submit:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .unit.form .submit:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .unit.form .submit:hover:before {
    width: calc(100% + 7px);
  }
}
.unit.form .submit:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.unit.form .submit:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.unit.form .submit:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .unit.form .submit:focus:before {
    width: calc(100% + 7px);
  }
}
.calendar {
  position: absolute !important;
  z-index: 2;
  left: 34% !important;
  top: 100% !important;
  right: unset !important;
  background: #fff;
  width: 200px;
  margin: 10px 0 0 0 !important;
  box-shadow: 0 0 6px rgba(160, 160, 160, 0.4);
  font-size: 14px;
  line-height: 1.14285714;
  padding: 20px;
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.calendar th,
.calendar td {
  text-align: center;
  padding: 2px;
}
.calendar tr.month th {
  padding-bottom: 10px;
}
.calendar tr.month th:first-child a,
.calendar tr.month th:last-child a {
  float: left;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
}
.calendar tr.month th:last-child a {
  float: right;
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.calendar td.today a {
  color: var(--textcolor);
  text-decoration: underline;
}
.unit.form .recaptcha-info {
  color: #aaa;
}
.unit.form .recaptcha-info a {
  color: #aaa;
}
.unit.form .recaptcha-info a:hover,
.unit.form .recaptcha-info a:focus {
  text-decoration: underline;
}
.unit.form .part.fail {
  font-size: 16px;
  line-height: 1.25;
  border-left: 4px solid #ae2121;
  box-sizing: border-box;
  padding: 20px;
  background-color: #e7bcbc;
  color: #ae2121;
}
.unit.form div.cb-form-sent {
  float: left;
  width: 100%;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
}
.unit.form div.cb-form-sent a {
  float: right;
  color: #5abb55;
}
#disp.two-step-verification div.body {
  overflow: hidden;
}
#disp.two-step-verification p {
  float: left;
  width: 100%;
}
.two-step-verification-container {
  float: left;
  width: 100%;
  min-width: 300px;
  margin-top: 10px;
  height: 350px;
  position: relative;
}
.two-step-verification-container a {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.two-step-verification-container a:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .two-step-verification-container a:before {
    border-radius: 60px 40px 40px 0;
  }
}
.two-step-verification-container a:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .two-step-verification-container a:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .two-step-verification-container a {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .two-step-verification-container a:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .two-step-verification-container a:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .two-step-verification-container a:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .two-step-verification-container a:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .two-step-verification-container a:hover:before {
    width: calc(100% + 7px);
  }
}
.two-step-verification-container a:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.two-step-verification-container a:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.two-step-verification-container a:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .two-step-verification-container a:focus:before {
    width: calc(100% + 7px);
  }
}
.two-step-verification__div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  background-size: 100px 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader-black.svg);
}
.two-step-verification-container.loaded .two-step-verification__div {
  background-image: none;
}
.table {
  float: left;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.table-layout-fixed .table {
  table-layout: fixed;
}
#edit .table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-head tr {
  border-top: none;
}
.table th {
  font-weight: normal;
  padding: 5px 5px;
  vertical-align: top;
}
.table th.init {
  padding-left: 0;
}
.table th.exit {
  padding-right: 0;
}
.table th.align-left {
  text-align: left;
}
.table th.align-center {
  text-align: center;
}
.table th.align-right {
  text-align: right;
}
.table--headline th {
  font-weight: 700;
}
.table td {
  padding: 5px 5px;
  vertical-align: top;
}
.table td.init {
  padding-left: 0;
}
.table td.exit {
  padding-right: 0;
}
.table td.align-left {
  text-align: left;
}
.table td.align-center {
  text-align: center;
}
.table td.align-right {
  text-align: right;
}
#edit .table td {
  border-left: 1px dashed #e0e0e0;
  border-right: 1px dashed #e0e0e0;
}
.table--footer .table-foot td {
  font-weight: 700;
}
@media (max-width: 767px) {
  .part--table {
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .part--table::-webkit-scrollbar {
    display: none;
  }
  .part--table .table {
    white-space: nowrap;
    width: auto;
    min-width: 100%;
  }
}
html,
body {
  float: left;
  width: 100%;
  min-height: 100vh;
}
.logo {
  float: left;
  height: 46px;
}
body:has(.navToggle[aria-expanded="true"]) .logo {
  content: url("/images/wgw-logo-neg.svg");
}
@media (max-width: 1199px) {
  .logo {
    height: 37px;
  }
}
@media (max-width: 767px) {
  .logo {
    height: 27px;
    content: url("/images/wgw-logo-short.svg");
  }
  body:has(.navToggle[aria-expanded="true"]) .logo {
    content: url("/images/wgw-logo-short-neg.svg");
  }
}
.logo__image {
  width: auto;
  height: 100%;
}
#head {
  float: left;
  width: 100%;
}
.layout1 #head,
.layout6 #head,
.layout4 #head {
  text-align: center;
  width: 612px;
  max-width: 100%;
  align-self: center;
}
.layout8 #head {
  margin-block-start: calc(var(--spaceTotal) * 1);
  margin-block-end: calc(var(--spaceUnit) * 1);
}
.wrapper {
  float: left;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Archia', sans-serif;
  font-size: clamp(1rem, 0.58939096vw + 0.85633595rem, 1.375rem);
  line-height: clamp(1.4375rem, 1.0805501vw + 1.17411591rem, 2.125rem);
  color: var(--textcolor);
  accent-color: var(--sitecolor);
  overflow: hidden;
  hyphens: none;
  display: flex;
  flex-direction: column;
}
.totalIndent {
  padding-block-start: calc(var(--spaceArea) + var(--spaceTotal));
  box-sizing: border-box;
}
.headerIndent {
  padding-block-start: calc(var(--headerHeight) + var(--spaceArea) + var(--spaceTotal));
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .headerIndent {
    padding-block-start: calc(var(--headerHeight) + var(--spaceArea));
  }
}
.desk {
  *zoom: 1;
  margin: 0 auto;
  max-width: var(--deskMaxWidth);
  width: var(--deskWidth);
  position: relative;
}
.desk:before,
.desk:after {
  display: table;
  content: '';
}
.desk:after {
  clear: both;
}
.mobile-navigation .desk,
.section--footer .desk,
.section--header .desk {
  --deskWidth: 100%;
}
@media (max-width: 1199px) {
  .mobile-navigation .desk,
  .section--footer .desk,
  .section--header .desk {
    --deskSpace: 30px;
    --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
  }
}
@media (max-width: 767px) {
  .mobile-navigation .desk,
  .section--footer .desk,
  .section--header .desk {
    --deskSpace: 20px;
    --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
  }
}
.section {
  float: left;
  width: 100%;
  position: relative;
}
.container {
  float: left;
  width: 100%;
  position: relative;
}
.backlink {
  --linkcolor: #8F9B81;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}
@media (max-width: 767px) {
  .backlink {
    margin-bottom: calc(var(--spaceTotal) * 1);
  }
}
.backlink:before {
  content: '';
  width: 18px;
  aspect-ratio: 1;
  background-color: var(--linkcolor);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/backlink.svg);
          mask-image: url(/images/backlink.svg);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (hover: hover) and (pointer: fine) {
  .backlink:hover:before,
  .backlink:focus:before {
    background-color: var(--linkcolor-hov);
  }
}
.container--title {
  display: flex;
  flex-direction: column;
}
.container--mood {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  isolation: isolate;
  box-sizing: border-box;
  min-height: 80svh;
  padding-block: var(--headerHeight);
}
@media (max-width: 767px) {
  .container--mood {
    padding-block-end: 50px;
  }
}
.container--mood .mood {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.container--mood .mood__image,
.container--mood .mood__video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.container--mood .content {
  width: var(--deskWidth);
  max-width: var(--deskMaxWidth);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.container--mood .area--intro {
  --spaceUnit: 0;
  width: 500px;
  max-width: 100%;
  padding: 20px 37px 29px 56px;
  box-sizing: border-box;
  border-radius: 5px 80px;
  background-color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 1199px) {
  .container--mood .area--intro {
    padding: 10px 26px 16px 40px;
    border-radius: 4px 56px;
  }
}
@media (max-width: 767px) {
  .container--mood .area--intro {
    padding: 15px 18px 20px 30px;
    border-radius: 5px 90px;
  }
}
.container--moodSide {
  position: relative;
  align-items: center;
  isolation: isolate;
  box-sizing: border-box;
  min-height: 60svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1199px) {
  .container--moodSide {
    display: flex;
    flex-direction: column;
    min-height: max-content;
    gap: 30px;
  }
}
.container--moodSide .mood {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: relative;
}
@media (max-width: 1199px) {
  .container--moodSide .mood {
    aspect-ratio: 390 / 250;
    order: -999;
  }
}
.container--moodSide .mood__image,
.container--moodSide .mood__video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.container--moodSide .content {
  width: 100%;
  padding-inline-start: max(var(--deskSpace), calc((100vw - var(--deskWidth)) / 2));
  padding-inline-end: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-block: calc(var(--headerHeight) + 30px);
}
@media (max-width: 1199px) {
  .container--moodSide .content {
    padding-block: 0;
    padding-inline: var(--deskSpace);
  }
}
.container--moodSettlement {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  margin-block-start: calc(var(--headerHeight) / 2 + 20px);
}
@media (max-width: 1199px) {
  .container--moodSettlement {
    margin-block-start: calc(var(--headerHeight) / 2 + 10px);
  }
}
.container--moodSettlement .mood {
  aspect-ratio: 1440 / 660;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: relative;
}
@media (max-width: 1199px) {
  .container--moodSettlement .mood {
    aspect-ratio: 390 / 250;
    order: -999;
  }
}
.container--moodSettlement .mood__image,
.container--moodSettlement .mood__video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.container--moodSettlement .content {
  width: 723px;
  max-width: var(--deskMaxWidth);
  margin-inline-start: max(var(--deskSpace), calc((100vw - var(--deskWidth)) / 2));
  margin-inline-end: var(--deskSpace);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .container--moodSettlement .content {
    margin-inline: var(--deskSpace);
  }
}
.container--moodSmall {
  position: relative;
  align-items: center;
  isolation: isolate;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--gutter);
  margin-top: calc(var(--spaceTotal) * 2);
}
@media (max-width: 1199px) {
  .container--moodSmall {
    display: flex;
    flex-direction: column;
    min-height: max-content;
  }
}
.container--moodSmall .mood {
  width: 100%;
  padding-inline-start: 100px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .container--moodSmall .mood {
    padding-inline-start: 0;
  }
}
.container--moodSmall .mood__image,
.container--moodSmall .mood__video {
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--borderRadius);
  overflow: hidden;
  aspect-ratio: 504 / 431;
  z-index: -1;
  position: relative;
}
@media (max-width: 1199px) {
  .container--moodSmall .mood__image,
  .container--moodSmall .mood__video {
    aspect-ratio: 390 / 250;
    order: -999;
  }
}
.container--moodSmall .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.container--moodSmallTwo {
  position: relative;
  align-items: center;
  isolation: isolate;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 0 var(--gutter);
  margin-top: calc(var(--spaceTotal) * 2);
}
@media (max-width: 1199px) {
  .container--moodSmallTwo {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .container--moodSmallTwo {
    display: flex;
    flex-direction: column-reverse;
    min-height: max-content;
    margin-top: calc(var(--spaceTotal) * 2 - 20px);
  }
}
.container--moodSmallTwo .mood {
  width: 100%;
  padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .container--moodSmallTwo .mood {
    padding-inline-start: 0;
  }
}
@media (max-width: 767px) {
  .container--moodSmallTwo .mood {
    width: 50%;
    align-self: flex-end;
    margin-bottom: -40px;
    padding: 0;
  }
}
.container--moodSmallTwo .mood__image,
.container--moodSmallTwo .mood__video {
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--borderRadius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  z-index: -1;
  position: relative;
}
.container--moodSmallTwo .mood #slides img {
  object-fit: contain;
}
.container--moodSmallTwo .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.section--header {
  position: fixed;
  margin-block-start: 50px;
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.section--header.navi--hidden {
  margin-block-start: unset;
  transform: translateY(-100%);
}
.cb-scroll-triggered--active .section--header {
  margin-block-start: unset;
}
@media (max-width: 1199px) {
  .section--header {
    margin-block-start: 27px;
  }
}
@media (max-width: 767px) {
  .section--header {
    margin-block-start: 20px;
  }
}
.container--head {
  padding-inline: 28px;
  padding-block: 28px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
}
.container--head:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.cb-scroll-triggered--active .container--head:after {
  left: calc(var(--deskSpace) * -1);
  width: calc(100% + var(--deskSpace) * 2);
  border-radius: 0;
}
@media (max-width: 1199px) {
  .container--head {
    padding-inline: 23px;
    padding-block: 13px;
  }
}
@media (max-width: 767px) {
  .container--head {
    padding-inline: 20px;
    padding-block: 14px;
  }
}
body:has(.navToggle[aria-expanded="true"]) .container--head:after {
  background-color: transparent;
  box-shadow: unset;
}
.container--nav {
  width: unset;
  display: flex;
  gap: 50px;
  align-items: center;
}
@media (max-width: 767px) {
  .container--nav {
    gap: 25px;
  }
}
.search {
  display: flex;
  gap: 16px;
  align-items: center;
}
.search__text {
  font-family: 'Archia', sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #8F9B81;
}
@media (max-width: 1199px) {
  .search__text {
    display: none;
  }
}
.search__icon {
  width: 33px;
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/search.svg);
}
@media (max-width: 767px) {
  .search__icon {
    width: 26px;
  }
}
@media (min-width: 1200px) {
  .search__icon {
    width: 36px;
  }
}
main {
  float: left;
  width: 100%;
  position: relative;
  flex: 1 0 auto;
}
.bgcolor--lightgrey {
  background-color: #EFEFEF;
  --foldLines: #fff;
}
.bgcolor--green {
  background-color: #004247;
  --sitecolor: #8F9B81;
  --textcolor: #fff;
  --titlecolor: #8F9B81;
  --btnSecLinkColor: #fff;
  --linkcolor: #8F9B81;
  --linkcolor-hov: #8F9B81;
  --btnBgColorHov: #8F9B81;
}
.cbdModule--newsLeadText {
  margin-top: calc(var(--spaceTotal) * 1);
  text-align: center;
  width: 612px;
  max-width: 100%;
  align-self: center;
}
.newsMood {
  float: left;
  width: 100%;
  position: relative;
  margin-top: calc(var(--spaceTotal) * 1);
  display: grid;
  gap: 0 var(--gutter);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .newsMood {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.newsMood__content {
  aspect-ratio: 1024 / 683;
  grid-column: 1 / -1;
  border-radius: var(--borderRadius);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .newsMood__content {
    grid-column: 2 / 12;
  }
}
.area--one {
  display: grid;
  gap: 0 var(--gutter);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: calc(var(--spaceArea) * 1);
}
@media (min-width: 768px) {
  .area--one {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.layout1 .area--one.area1,
.layout4 .area--one.area1,
.layout8 .area--one.area1 {
  margin-block-start: 0;
}
.area--one .unit {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .area--one .unitGrid--1-2 {
    grid-column: span 6;
  }
  .area--one .unitGrid--1-2.indent {
    padding-inline-start: var(--gutter);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-2 {
    grid-column: span 6;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-2-team {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .area--one .unitGrid--1-3 {
    grid-column: span 6;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-3 {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .area--one .unitGrid--2-3 {
    grid-column: span 6;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--2-3 {
    grid-column: span 8;
  }
}
.area--one .unitGrid--1-4 {
  --spacePart: 6px;
  grid-column: span 1;
}
@media (min-width: 768px) {
  .area--one .unitGrid--1-4 {
    grid-column: span 4;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-4 {
    grid-column: span 3;
  }
}
.area--one .unitGrid--3-4 {
  --spacePart: 6px;
}
@media (min-width: 768px) {
  .area--one .unitGrid--3-4 {
    grid-column: span 8;
  }
  .area--one .unitGrid--3-4 .part.link {
    width: auto;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--3-4 {
    padding-inline-end: 100px;
    box-sizing: border-box;
    grid-column: span 9;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-1-indentBoth {
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .unitGrid--1-1-indentBoth .unit__content {
    grid-column: 3 / 11;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-1-indentBothSmall {
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .unitGrid--1-1-indentBothSmall .body,
  .area--one .unitGrid--1-1-indentBothSmall .head,
  .area--one .unitGrid--1-1-indentBothSmall .unit__content {
    grid-column: 2 / 12;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-1-indentRight {
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .unitGrid--1-1-indentRight .unit__content {
    grid-column: 1 / 8;
  }
}
@media (min-width: 1200px) {
  .area--one .unitGrid--1-1-indentRightV2 {
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .unitGrid--1-1-indentRightV2 .unit__content {
    grid-column: 2 / 9;
  }
}
.area--one .unitTwo {
  margin-block: calc(var(--spaceTotal) * 1);
  border-radius: 17px;
  background-color: #004247;
  --sitecolor: #8F9B81;
  --textcolor: #fff;
  --titlecolor: #8F9B81;
  --linkcolor: #8F9B81;
  --linkcolor-hov: #8F9B81;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 50px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .area--one .unitTwo {
    padding-block: 30px 170px;
  }
}
.area--one .unitTwo .unit__content {
  width: 50%;
}
@media (max-width: 1199px) {
  .area--one .unitTwo .unit__content {
    width: 100%;
    padding-inline: 20px;
    box-sizing: border-box;
  }
}
.area--one .unitTwo:after {
  content: '';
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(25% - 75px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/illu-1.svg);
}
@media (max-width: 1199px) {
  .area--one .unitTwo:after {
    width: 172px;
    left: 50%;
    bottom: 0;
    top: unset;
    transform: translateX(-50%);
  }
}
.area--one .unitTwo:before {
  content: '';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(25% - 80px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/illu-2.svg);
}
@media (max-width: 1199px) {
  .area--one .unitTwo:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .area--one .unitFour .unit__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--gutter);
  }
}
.area--one .unit--foto .head {
  margin-top: 30px;
  order: 999;
  position: relative;
}
@media (max-width: 767px) {
  .area--one .unit--foto .head {
    margin-top: 10px;
  }
}
.area--one .unit--fold {
  margin-top: 0;
}
.area--one .unit--fold:has(+.unit--fold) {
  margin-bottom: 0!important;
}
.area--one .unit--fold:nth-child(1 of .unit--fold) .unit__content {
  border-top: 2px solid var(--foldLines, #EFEFEF);
}
.area--one .unit--fold .unit__content {
  border-bottom: 2px solid var(--foldLines, #EFEFEF);
}
.area--one .unit--fold .fold-toggle {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 280px;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  color: var(--textcolor);
  display: inline-block;
  text-decoration: none!important;
  font-size: clamp(1.0625rem, 0.68762279vw + 0.89489194rem, 1.5rem);
  line-height: clamp(1.4375rem, 0.88408644vw + 1.22200393rem, 2rem);
  font-weight: 600;
  color: var(--foldToggleColor, #004247);
}
@media (max-width: 1199px) {
  .area--one .unit--fold .fold-toggle {
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .area--one .unit--fold .fold-toggle {
    padding-right: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.area--one .unit--fold .fold-toggle:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 31px;
  height: 20px;
  background-color: #8F9B81;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/folding-toggle.svg);
          mask-image: url(/images/folding-toggle.svg);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .area--one .unit--fold .fold-toggle:after {
    width: 26px;
    height: 18px;
    right: 10px;
  }
}
.area--one .unit--fold .fold-toggle--open:after {
  transform: translateY(-50%) rotate(180deg);
}
.area--one .unit--fold div.less .part {
  margin: 0;
}
.area--one .unit--fold div.more {
  padding-inline-end: 280px;
  box-sizing: border-box;
  display: block!important;
  block-size: 0;
  overflow: hidden;
  transition-property: block-size, content-visibility;
  transition-duration: 0.5s;
  transition-behavior: allow-discrete;
}
@media (max-width: 1199px) {
  .area--one .unit--fold div.more {
    padding-inline-end: 80px;
  }
}
@media (max-width: 767px) {
  .area--one .unit--fold div.more {
    padding-inline-end: 60px;
  }
}
.area--one .unit--fold div.more .part:last-child {
  margin-bottom: calc(var(--spacePart) * 2);
}
.area--one .unit--fold.unit--foldOpen div.more {
  /* Fallback for browsers that don't support calc-size() function */
  block-size: auto;
  /* calc-size() function allows transition to height: auto; */
  block-size: calc-size(auto, size);
}
.area--one .unit--fold .unit__foot {
  display: none;
}
.area--one .facts .unit__content {
  padding: 30px 40px;
  box-sizing: border-box;
  border-radius: var(--borderRadius);
  background-color: var(--factsBg, #EFEFEF);
}
@media (max-width: 767px) {
  .area--one .facts .unit__content {
    padding: 10px 20px;
  }
}
.area--one .facts--list {
  --factsBg: #004247;
  --sitecolor: #8F9B81;
  --textcolor: #fff;
  --titlecolor: #8F9B81;
  --btnSecLinkColor: #fff;
  --linkcolor: #8F9B81;
  --linkcolor-hov: #8F9B81;
  --btnBgColorHov: #8F9B81;
}
.area--one .facts .unit__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .area--one .facts .unit__body {
    grid-template-columns: 1fr;
  }
}
.area--one .facts h2 {
  color: var(--titlecolor);
  font-size: clamp(1.1875rem, 0.58939096vw + 1.04383595rem, 1.5625rem);
  line-height: clamp(1.5rem, 0.58939096vw + 1.35633595rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
  color: #8F9B81;
}
@media (min-width: 1200px) {
  .area--one .facts {
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .facts .unit__content {
    grid-column: 1 / 11;
  }
}
.area--one .unit--gallery {
  --spacePart: 0;
}
.area--one .unit--gallery .unit__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
@media (max-width: 1199px) {
  .area--one .unit--gallery .unit__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.area--one .unit--quicklinks {
  --spacePart: 0;
  box-sizing: border-box;
  padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
}
@media (max-width: 1199px) {
  .area--one .unit--quicklinks {
    padding-inline: 10px;
  }
}
.area--one .unit--quicklinks .unit__body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(clamp(8.125rem, 6.036rem + 8.57vw, 13.75rem), 100%), 1fr));
  gap: 70px;
}
@media (max-width: 1199px) {
  .area--one .unit--quicklinks .unit__body {
    gap: 20px 30px;
  }
}
.area--one .unit--quicklinks .part a {
  text-align: center;
  width: 100%;
  background-color: #EFEFEF;
  color: var(--quicklinkColor, #004247);
  aspect-ratio: 1;
  border-radius: 100%;
  padding: 1.25em;
  box-sizing: border-box;
  font-size: clamp(0.875rem, 1.0805501vw + 0.61161591rem, 1.5625rem);
  line-height: clamp(1.125rem, 1.17878193vw + 0.83767191rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  gap: 20px;
}
@media (max-width: 1199px) {
  .area--one .unit--quicklinks .part a {
    padding: 1em;
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .area--one .unit--quicklinks .part a {
    gap: 10px;
    font-size: clamp(1rem, 0.88408644vw + 0.78450393rem, 1.5625rem);
    line-height: clamp(1.25rem, 0.98231827vw + 1.01055992rem, 1.875rem);
  }
}
.area--one .unit--quicklinks .part a:after {
  content: '';
  width: 42px;
  height: 40px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  background-image: url(/images/quicklink-arrow.svg);
}
@media (max-width: 767px) {
  .area--one .unit--quicklinks .part a:after {
    width: 24px;
    height: 23px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--quicklinks .part a:hover,
  .area--one .unit--quicklinks .part a:focus {
    --quicklinkColor: #8F9B81;
    background-color: #004247;
  }
}
.area--one .unit--quicklinks .part a.open:after {
  rotate: 0deg;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--quicklinks .part a.open:hover:after,
  .area--one .unit--quicklinks .part a.open:focus:after {
    rotate: -45deg;
  }
}
.area--one .unit--quicklinks .part a.load:after {
  rotate: 45deg;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--quicklinks .part a.load:hover:after,
  .area--one .unit--quicklinks .part a.load:focus:after {
    rotate: 90deg;
  }
}
.area--one .unit--timeline {
  --yearWidth: 86px;
  --yearGap: 20px;
  margin-top: calc(var(--spaceUnit) * 1 + 10px);
  margin-bottom: calc(var(--spaceUnit) * 1 + 10px);
}
.area--one .unit--timeline .unit__content {
  isolation: isolate;
  padding-inline-start: calc(var(--yearWidth) + var(--yearGap));
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 767px) {
  .area--one .unit--timeline .part.pict {
    width: calc(100% + var(--yearWidth) + var(--yearGap));
    margin-left: calc((var(--yearWidth) + var(--yearGap)) * -1);
  }
}
.area--one .unit--timeline:not(:nth-last-child(1 of .unit--timeline)) .unit__content:after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(var(--yearWidth) / 2 + 1px);
  height: calc(100% + (var(--spaceUnit) * 2 + var(--yearGap)));
  width: var(--yearLine, 2px);
  background-color: #8F9B81;
  z-index: -1;
}
.area--one .unit--timeline .part.text:first-child {
  background-color: #8F9B81;
  aspect-ratio: 1;
  border-radius: 100%;
  width: var(--yearWidth);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: calc(var(--spacePart) * -1);
  left: 0;
}
.area--one .unit--timeline .part.text:first-child * {
  color: #fff;
  font-size: clamp(0.9375rem, 1.47347741vw + 0.57833988rem, 1.875rem);
  line-height: clamp(1.125rem, 2.1611002vw + 0.59823183rem, 2.5rem);
}
@media (min-width: 768px) {
  .area--one .unit--timeline {
    --yearWidth: 110px;
    --yearGap: 60px;
    display: grid;
    grid-template-columns: subgrid;
  }
  .area--one .unit--timeline .unit__content {
    grid-column: 2 / 12;
  }
  .area--one .unit--timeline .unit__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--gutter);
  }
  .area--one .unit--timeline .unit__body .part {
    grid-column: 1 / -1;
  }
  .area--one .unit--timeline .unit__body .part--slim {
    grid-column: span 1;
  }
}
@media (min-width: 1200px) {
  .area--one .unit--timeline {
    --yearWidth: 170px;
    --yearGap: 100px;
  }
}
.area--one .team .unit__background img {
  aspect-ratio: 277 / 372;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: var(--borderRadius);
}
.area--one .team--one {
  --spaceUnit: calc(var(--gutter) / 2);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.area--one .team--one .unit__content {
  flex: 1 0 auto;
}
.area--one .team--one .unit__background {
  flex-shrink: 0;
  margin-bottom: calc(var(--spacePart) * 2);
}
.area--one .team--one .unit__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.area--one .team--two {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 300px 1fr;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .area--one .team--two {
    grid-template-columns: 140px 1fr;
    align-items: flex-start;
  }
}
.area--one .unit--sideimage.sideImageOne {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 1 + 5px);
  margin-top: calc(var(--spaceUnit) * 2);
  margin-bottom: calc(var(--spaceUnit) * 2);
}
.area--one .unit--sideimage.sideImageOne .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  overflow: hidden;
  align-self: flex-start;
  border-radius: 10px;
}
.area--one .unit--sideimage.sideImageOne .unit__background img {
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  aspect-ratio: 350 / 250;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:hover .part.link .open,
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:focus .part.link .open {
    color: var(--btnLinkColorHov, #fff);
  }
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:hover .part.link .open:after,
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:focus .part.link .open:after {
    opacity: 1;
    transform: translateX(0);
  }
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:hover .part.link .open:before,
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:focus .part.link .open:before {
    width: calc(100% + 7px);
  }
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:hover .unit__background img,
  .area--one .unit--sideimage.sideImageOne.unit--isAnchor:focus .unit__background img {
    scale: 1.05;
  }
}
@media (min-width: 768px) {
  .area--one .unit--sideimage.sideImageOne {
    display: grid;
    gap: 0 calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) + clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem));
    padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
    box-sizing: border-box;
    align-items: center;
  }
  .area--one .unit--sideimage.sideImageOne .unit__background {
    position: relative;
  }
  .area--one .unit--sideimage.sideImageOne .unit__background img {
    width: 100%;
    max-width: 100%!important;
    height: 100%!important;
    max-height: 100%!important;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    scale: var(--scaleBgimage, 1);
    aspect-ratio: 500 / 430;
  }
  .area--one .unit--sideimage.sideImageOne.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageOne.sideimageLeft .unit__content {
    grid-column: 2 / 3;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageOne.sideimageLeft .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageOne.sideimageRight {
    grid-template-columns: var(--sideimageRightColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageOne.sideimageRight .unit__content {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageOne.sideimageRight .unit__background {
    grid-column: 2 / 3;
    order: 999;
    box-sizing: border-box;
  }
}
.area--one .unit--sideimage.sideImageTwo {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 1 + 5px);
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
.area--one .unit--sideimage.sideImageTwo .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  overflow: hidden;
  width: 60%;
  align-self: center;
  border-radius: 10px;
}
.area--one .unit--sideimage.sideImageTwo .unit__background img {
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  aspect-ratio: 350 / 250;
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:hover .part.link .open,
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:focus .part.link .open {
    color: var(--btnLinkColorHov, #fff);
  }
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:hover .part.link .open:after,
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:focus .part.link .open:after {
    opacity: 1;
    transform: translateX(0);
  }
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:hover .part.link .open:before,
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:focus .part.link .open:before {
    width: calc(100% + 7px);
  }
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:hover .unit__background img,
  .area--one .unit--sideimage.sideImageTwo.unit--isAnchor:focus .unit__background img {
    scale: 1.05;
  }
}
@media (min-width: 768px) {
  .area--one .unit--sideimage.sideImageTwo {
    display: grid;
    gap: 0 10px;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageTwo .unit__background {
    position: relative;
    width: 100%;
    aspect-ratio: 390 / 300;
  }
  .area--one .unit--sideimage.sideImageTwo .unit__background img {
    width: 100%;
    max-width: 100%!important;
    height: 100%!important;
    max-height: 100%!important;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    scale: var(--scaleBgimage, 1);
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 1fr 1fr);
    padding-inline-start: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageLeft .unit__content {
    grid-column: 2 / 3;
    padding-inline-start: calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) * 2);
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageLeft .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageRight {
    grid-template-columns: var(--sideimageRightColumn, 1fr 1fr);
    padding-inline-end: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageRight .unit__content {
    grid-column: 1 / 2;
    box-sizing: border-box;
    padding-inline-end: calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) * 2);
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageRight .unit__background {
    grid-column: 2 / 3;
    order: 999;
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  .area--one .unit--sideimage.sideImageTwo.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 390px 1fr);
  }
  .area--one .unit--sideimage.sideImageTwo.sideimageRight {
    grid-template-columns: var(--sideimageRightColumn, 1fr 390px);
  }
}
.area--one .unit--sideimage.sideImageThree {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 1 + 5px);
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
.area--one .unit--sideimage.sideImageThree .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  overflow: hidden;
  width: 60%;
  align-self: center;
  border-radius: 10px;
}
.area--one .unit--sideimage.sideImageThree .unit__background img {
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  aspect-ratio: 350 / 250;
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:hover .part.link .open,
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:focus .part.link .open {
    color: var(--btnLinkColorHov, #fff);
  }
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:hover .part.link .open:after,
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:focus .part.link .open:after {
    opacity: 1;
    transform: translateX(0);
  }
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:hover .part.link .open:before,
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:focus .part.link .open:before {
    width: calc(100% + 7px);
  }
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:hover .unit__background img,
  .area--one .unit--sideimage.sideImageThree.unit--isAnchor:focus .unit__background img {
    scale: 1.05;
  }
}
@media (min-width: 768px) {
  .area--one .unit--sideimage.sideImageThree {
    display: grid;
    align-items: center;
    gap: 0 var(--gutter);
    box-sizing: border-box;
    padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
  }
  .area--one .unit--sideimage.sideImageThree .unit__background {
    position: relative;
    aspect-ratio: 390 / 300;
    width: 60%;
    justify-self: center;
    align-items: center;
  }
  .area--one .unit--sideimage.sideImageThree .unit__background img {
    width: 100%;
    max-width: 100%!important;
    height: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    scale: var(--scaleBgimage, 1);
  }
  .area--one .unit--sideimage.sideImageThree.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageThree.sideimageLeft .unit__content {
    grid-column: 2 / 3;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageThree.sideimageLeft .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageThree.sideimageRight {
    grid-template-columns: var(--sideimageRightColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageThree.sideimageRight .unit__content {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageThree.sideimageRight .unit__background {
    grid-column: 2 / 3;
    order: 999;
    box-sizing: border-box;
  }
}
.area--one .unit--sideimage.sideImageFour {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 1 + 5px);
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
.area--one .unit--sideimage.sideImageFour .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  overflow: hidden;
  width: 60%;
  align-self: center;
  border-radius: 10px;
}
.area--one .unit--sideimage.sideImageFour .unit__background img {
  object-fit: contain;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  aspect-ratio: 1;
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:hover .part.link .open,
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:focus .part.link .open {
    color: var(--btnLinkColorHov, #fff);
  }
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:hover .part.link .open:after,
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:focus .part.link .open:after {
    opacity: 1;
    transform: translateX(0);
  }
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:hover .part.link .open:before,
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:focus .part.link .open:before {
    width: calc(100% + 7px);
  }
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:hover .unit__background img,
  .area--one .unit--sideimage.sideImageFour.unit--isAnchor:focus .unit__background img {
    scale: 1.05;
  }
}
@media (min-width: 768px) {
  .area--one .unit--sideimage.sideImageFour {
    display: grid;
    align-items: center;
    gap: 0 var(--gutter);
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFour .unit__background {
    position: relative;
    aspect-ratio: 1;
    width: 60%;
    justify-self: center;
    align-items: center;
  }
  .area--one .unit--sideimage.sideImageFour .unit__background img {
    width: 100%;
    max-width: 100%!important;
    height: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    scale: var(--scaleBgimage, 1);
  }
  .area--one .unit--sideimage.sideImageFour.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageFour.sideimageLeft .unit__content {
    grid-column: 2 / 3;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFour.sideimageLeft .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFour.sideimageRight {
    grid-template-columns: var(--sideimageRightColumn, 1fr 1fr);
  }
  .area--one .unit--sideimage.sideImageFour.sideimageRight .unit__content {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFour.sideimageRight .unit__background {
    grid-column: 2 / 3;
    order: 999;
    box-sizing: border-box;
  }
}
.area--one .unit--sideimage.sideImageFive {
  display: flex;
  row-gap: calc(var(--spacePart) * 1 + 5px);
  align-items: flex-start;
  gap: var(--gutter);
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
.area--one .unit--sideimage.sideImageFive .unit__background {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  overflow: hidden;
  width: 107px;
  max-width: 100%;
  border-radius: 10px;
}
.area--one .unit--sideimage.sideImageFive .unit__background img {
  object-fit: contain;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  aspect-ratio: 1;
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
}
@media (hover: hover) and (pointer: fine) {
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:hover .part.link .open,
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:focus .part.link .open {
    color: var(--btnLinkColorHov, #fff);
  }
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:hover .part.link .open:after,
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:focus .part.link .open:after {
    opacity: 1;
    transform: translateX(0);
  }
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:hover .part.link .open:before,
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:focus .part.link .open:before {
    width: calc(100% + 7px);
  }
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:hover .unit__background img,
  .area--one .unit--sideimage.sideImageFive.unit--isAnchor:focus .unit__background img {
    scale: 1.05;
  }
}
@media (min-width: 768px) {
  .area--one .unit--sideimage.sideImageFive {
    display: grid;
    align-items: center;
    gap: 0 var(--gutter);
    padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFive .unit__background {
    position: relative;
    aspect-ratio: 1;
    width: 240px;
    max-width: 100%;
    justify-self: center;
    align-items: center;
  }
  .area--one .unit--sideimage.sideImageFive .unit__background img {
    width: 100%;
    max-width: 100%!important;
    height: 100%!important;
    max-height: 100%!important;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    scale: var(--scaleBgimage, 1);
  }
  .area--one .unit--sideimage.sideImageFive.sideimageLeft {
    grid-template-columns: var(--sideimageLeftColumn, 240px 1fr);
    padding-inline-start: calc(clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem) * 2);
  }
  .area--one .unit--sideimage.sideImageFive.sideimageLeft .unit__content {
    grid-column: 2 / 3;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFive.sideimageLeft .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFive.sideimageRight {
    grid-template-columns: var(--sideimageLeftColumn, 240px 1fr);
    padding-inline-end: calc(clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem) * 2);
  }
  .area--one .unit--sideimage.sideImageFive.sideimageRight .unit__content {
    grid-column: 2 / 3;
    box-sizing: border-box;
  }
  .area--one .unit--sideimage.sideImageFive.sideimageRight .unit__background {
    grid-column: 1 / 2;
    box-sizing: border-box;
  }
}
.area--one .unit--spacer {
  margin: 0;
}
#edit .area--one .unit--spacer {
  margin-top: calc(var(--spacePart) * 1);
  margin-bottom: calc(var(--spacePart) * 1);
  background-color: rgba(113, 202, 243, 0.5);
}
#edit .area--one .unit--spacer:after {
  content: 'Spacer / Abstand';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  text-align: center;
  display: inline-block;
  z-index: 1;
}
.area--one .unit--spacer.space--one {
  height: calc(var(--spaceTotal) * 1);
}
.area--one .unit--spacer.space--two {
  height: calc(var(--spaceTotal) * 2);
}
.area--one .unit--spacer.space--three {
  height: calc(var(--spaceTotal) * 3);
}
.area--one .unit--spacer .spacerPart {
  pointer-events: none;
  display: none;
  margin: 0;
}
.area--one .unit--spacer .spacerPart hr {
  display: none;
}
.contentAlign--center .part.text {
  text-align: center;
}
.contentAlign--center .part.load,
.contentAlign--center .part.link {
  text-align: center;
}
.contentAlign--center .cb-image-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cb-googlemapscontainer {
  border-radius: var(--borderRadius);
  overflow: hidden;
  height: 400px !important;
}
.cb-googlemapscontainer > div {
  height: 400px !important;
}
.part.text .open:not(.fold-toggle) {
  --linkcolor-hov: #8F9B81;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--decoColor, #8F9B81);
          text-decoration-color: var(--decoColor, #8F9B81);
  text-decoration-thickness: 4px;
  text-underline-position: under;
}
@media (max-width: 767px) {
  .part.text .open:not(.fold-toggle) {
    text-decoration-thickness: 3px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .part.text .open:not(.fold-toggle):hover,
  .part.text .open:not(.fold-toggle):focus {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
.part.pict img:not(.svg) {
  border-radius: var(--borderRadius);
}
.section--footer {
  flex-shrink: 0;
  background-color: #004247;
  --textcolor: #8F9B81;
  --linkcolor: #8F9B81;
  --linkcolor-hov: #D0D1CD;
}
.footArea {
  width: 100%;
  margin-top: 70px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 90px var(--gutter);
}
@media (max-width: 1199px) {
  .footArea {
    gap: 50px var(--gutter);
    margin-top: 40px;
  }
}
.footUnit {
  float: left;
  width: 100%;
  position: relative;
}
.footUnit--one {
  display: flex;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
}
.vcard {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  color: var(--textcolor);
}
@media (max-width: 1199px) {
  .vcard {
    flex-direction: column;
    gap: 30px;
  }
}
.vcard__adr {
  display: flex;
  gap: 40px 60px;
}
@media (max-width: 1199px) {
  .vcard__adr {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .vcard__adr {
    flex-direction: column;
    gap: 30px;
  }
}
.footTitle {
  white-space: nowrap;
  font-weight: 700;
}
.footLogo {
  width: 108px;
}
@media (max-width: 767px) {
  .footLogo {
    width: 74px;
  }
}
.part--footSocial {
  --spacePart: 0;
  width: auto;
  min-width: 20px;
  float: left;
}
.iconLinks {
  float: left;
  width: 100%;
  position: relative;
}
.iconLinks__content {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.iconLinks__icon {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: var(--socialWidth, 50px);
  aspect-ratio: 1;
  display: inline-block;
  transition: background-color 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  position: relative;
  background-color: var(--linkcolor);
  border-radius: 100vw;
}
@media (max-width: 1199px) {
  .iconLinks__icon {
    --socialWidth: 45px;
  }
}
.iconLinks__icon:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-mask-image: var(--socialIcon, url('/images/instagram.svg'));
          mask-image: var(--socialIcon, url('/images/instagram.svg'));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .iconLinks__icon:hover,
  .iconLinks__icon:focus {
    background-color: var(--linkcolor-hov);
  }
}
.iconLinks__icon--instagram {
  --socialIcon: url('/images/instagram.svg');
}
.toplink {
  width: var(--socialWidth, 50px);
  aspect-ratio: 1;
  display: inline-block;
  transition: background-color 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  position: relative;
  background-color: var(--linkcolor);
  border-radius: 100vw;
}
@media (max-width: 1199px) {
  .toplink {
    --socialWidth: 45px;
  }
}
.toplink:after {
  content: '';
  position: absolute;
  width: 23px;
  height: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-mask-image: var(--socialIcon, url('/images/toplink.svg'));
          mask-image: var(--socialIcon, url('/images/toplink.svg'));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .toplink:hover,
  .toplink:focus {
    background-color: var(--linkcolor-hov);
  }
}
.getintouch {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1199px) {
  .getintouch {
    position: absolute;
    right: 0;
  }
}
@media (max-width: 767px) {
  .getintouch {
    bottom: 0;
  }
}
.unit--footLinks {
  --spaceUnit: 0;
  --spacePart: 0;
  min-height: 20px;
  width: auto;
  min-width: 50px;
  display: flex;
}
#edit .unit--footLinks {
  outline: 1px dotted var(--textcolor);
}
.unit--footLinks .unit__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.unit--footLinks .part {
  width: auto;
  min-width: 30px;
}
.unit--footLinks .part:not(:last-child) {
  display: inline-flex;
}
.unit--footLinks .part:not(:last-child):after {
  content: "|";
  margin-inline: 15px;
  color: var(--textcolor);
  font-size: clamp(0.8125rem, 0.39292731vw + 0.71672397rem, 1.0625rem);
  line-height: clamp(1.5rem, 1.57170923vw + 1.11689587rem, 2.5rem);
  font-weight: 600;
}
.unit--footLinks .part .open {
  font-size: clamp(0.8125rem, 0.39292731vw + 0.71672397rem, 1.0625rem);
  line-height: clamp(1.5rem, 1.57170923vw + 1.11689587rem, 2.5rem);
  font-weight: 600;
}
a {
  color: var(--linkcolor);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover,
  a:focus {
    color: var(--linkcolor-hov);
  }
}
@media (max-width: 767px) {
  .btn--primary {
    display: flex;
    justify-content: center;
  }
}
.btn--primary .open {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.btn--primary .open:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .btn--primary .open:before {
    border-radius: 60px 40px 40px 0;
  }
}
.btn--primary .open:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .btn--primary .open:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .btn--primary .open {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .btn--primary .open:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary .open:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .btn--primary .open:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .btn--primary .open:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .btn--primary .open:hover:before {
    width: calc(100% + 7px);
  }
}
.btn--primary .open:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.btn--primary .open:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.btn--primary .open:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary .open:focus:before {
    width: calc(100% + 7px);
  }
}
.btn--secondary .open {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  color: var(--btnSecLinkColor, #004247);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (hover: hover) and (pointer: fine) {
  .btn--secondary .open:hover,
  .btn--secondary .open:focus {
    color: var(--btnSecLinkColorHover, #8F9B81);
  }
}
.btn--icon {
  display: flex;
}
.btn--icon .open {
  display: inline-flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 1199px) {
  .btn--icon .open {
    gap: 10px;
  }
}
.btn--icon .open:before {
  content: '';
  width: clamp(1.375rem, 2.25933202vw + 0.82428782rem, 2.8125rem);
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #8F9B81;
  background-image: var(--btnIcon, url('/images/icon-phone.svg'));
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--btnIconSize, calc(clamp(1.375rem, 2.25933202vw + 0.82428782rem, 2.8125rem) / 2)) auto;
}
.btn--icon.mail {
  --btnIcon: url('/images/icon-mail.svg');
}
.btn--icon.web {
  --btnIcon: url('/images/icon-www.svg');
}
.btn.btn--sizeSmall .open {
  gap: 10px;
  font-size: clamp(1.0625rem, 0.29469548vw + 0.99066798rem, 1.25rem);
  line-height: clamp(1.375rem, 0.39292731vw + 1.27922397rem, 1.625rem);
}
@media (max-width: 767px) {
  .btn.btn--sizeSmall .open {
    gap: 6px;
  }
}
.btn.btn--sizeSmall .open:before {
  content: '';
  width: clamp(1.25rem, 0.68762279vw + 1.08239194rem, 1.6875rem);
  background-size: var(--btnIconSize, calc(clamp(1.25rem, 0.68762279vw + 1.08239194rem, 1.6875rem) / 2)) auto;
}
@media (max-width: 767px) {
  .part.load:not(.part--quickdownload) {
    display: flex;
    justify-content: center;
  }
}
.part.load:not(.part--quickdownload) .load {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.part.load:not(.part--quickdownload) .load:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .part.load:not(.part--quickdownload) .load:before {
    border-radius: 60px 40px 40px 0;
  }
}
.part.load:not(.part--quickdownload) .load:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .part.load:not(.part--quickdownload) .load:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .part.load:not(.part--quickdownload) .load {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .part.load:not(.part--quickdownload) .load:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .part.load:not(.part--quickdownload) .load:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .part.load:not(.part--quickdownload) .load:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .part.load:not(.part--quickdownload) .load:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .part.load:not(.part--quickdownload) .load:hover:before {
    width: calc(100% + 7px);
  }
}
.part.load:not(.part--quickdownload) .load:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.part.load:not(.part--quickdownload) .load:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.part.load:not(.part--quickdownload) .load:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .part.load:not(.part--quickdownload) .load:focus:before {
    width: calc(100% + 7px);
  }
}
.title1 {
  color: var(--titlecolor);
  font-size: clamp(1.6875rem, 1.47347741vw + 1.32833988rem, 2.625rem);
  line-height: clamp(2.125rem, 1.57170923vw + 1.74189587rem, 3.125rem);
  text-wrap: balance;
  font-weight: 700;
}
.title2 {
  color: var(--titlecolor);
  font-size: clamp(1.4375rem, 0.68762279vw + 1.26989194rem, 1.875rem);
  line-height: clamp(1.75rem, 1.17878193vw + 1.46267191rem, 2.5rem);
  text-wrap: balance;
  font-weight: 700;
}
.title3 {
  color: var(--titlecolor);
  font-size: clamp(1.1875rem, 0.58939096vw + 1.04383595rem, 1.5625rem);
  line-height: clamp(1.5rem, 0.58939096vw + 1.35633595rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
}
.title4 {
  color: var(--titlecolor);
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
}
.star {
  color: var(--titlecolor);
  --titlecolor: #8F9B81;
}
h1 {
  font-size: clamp(1.6875rem, 1.47347741vw + 1.32833988rem, 2.625rem);
  line-height: clamp(2.125rem, 1.57170923vw + 1.74189587rem, 3.125rem);
  text-wrap: balance;
  font-weight: 700;
  color: var(--titlecolor);
}
h2 {
  font-size: clamp(1.6875rem, 1.47347741vw + 1.32833988rem, 2.625rem);
  line-height: clamp(2.125rem, 1.57170923vw + 1.74189587rem, 3.125rem);
  text-wrap: balance;
  font-weight: 700;
  color: var(--titlecolor);
}
h3 {
  font-size: clamp(1.4375rem, 0.68762279vw + 1.26989194rem, 1.875rem);
  line-height: clamp(1.75rem, 1.17878193vw + 1.46267191rem, 2.5rem);
  text-wrap: balance;
  font-weight: 700;
  color: var(--titlecolor);
}
h4 {
  font-size: clamp(1.1875rem, 0.58939096vw + 1.04383595rem, 1.5625rem);
  line-height: clamp(1.5rem, 0.58939096vw + 1.35633595rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
  color: var(--titlecolor);
}
h5 {
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
  color: var(--titlecolor);
}
.loud {
  font-size: clamp(1.0625rem, 0.68762279vw + 0.89489194rem, 1.5rem);
  line-height: clamp(1.4375rem, 0.88408644vw + 1.22200393rem, 2rem);
  font-weight: 600;
  color: var(--loudColor, #8F9B81);
}
.norm {
  color: var(--textcolor);
  hyphens: auto;
}
.pale {
  font-size: clamp(0.9375rem, 0.39292731vw + 0.84172397rem, 1.1875rem);
  line-height: clamp(1.25rem, 0.68762279vw + 1.08239194rem, 1.6875rem);
  color: var(--textcolor);
  hyphens: auto;
}
.cbdModule--moodTitle {
  margin-bottom: calc(var(--spaceTotal) * 1);
}
.moodTitle {
  color: var(--titlecolor);
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
  --titlecolor: #8F9B81;
}
@media screen and (prefers-reduced-motion: no-preference) {
  #view:not(.bodyReplaced) .cbdModule:not(.cbdModule--react),
  #view:not(.bodyReplaced) #head {
    opacity: 0;
    transform: translateY(15%);
    transition: transform 1s cubic-bezier(0.3, 1, 0.8, 1), opacity 1s cubic-bezier(0.3, 1, 0.8, 1);
  }
  #view:not(.bodyReplaced) .cbdModule:not(.cbdModule--react).is-intersecting,
  #view:not(.bodyReplaced) #head.is-intersecting {
    opacity: 1;
    transform: unset;
  }
  #view:not(.bodyReplaced) .area .unit {
    opacity: 0;
    transform: translateY(15%);
    transition: transform 1s cubic-bezier(0.3, 1, 0.8, 1), opacity 1s cubic-bezier(0.3, 1, 0.8, 1);
  }
  #view:not(.bodyReplaced) .area .unit.is-intersecting {
    opacity: 1;
    transform: unset;
  }
}
body:has(.navToggle[aria-expanded="true"])  {
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section {
    transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
  }
  body.cb-toggle-target-active .section {
    transform: translateY(200px);
  }
  body.cb-toggle-target-active .section.section--header {
    transform: none;
  }
}
.navToggle {
  cursor: pointer;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  position: relative;
  gap: 25px;
}
@media (max-width: 1199px) {
  .navToggle {
    gap: 17px;
  }
}
body:has(.navToggle[aria-expanded="true"]) .navToggle:after {
  opacity: 1;
}
.navToggle__line--2,
.navToggle__line--3 {
  top: 50%;
  transform: translateY(-50%);
}
.navToggle__line--4 {
  top: unset;
  bottom: 0;
}
.navToggle__icon * {
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  transform-origin: center;
}
@media (min-width: 1200px) {
  .navToggle__icon {
    width: 46px;
    height: 31px;
  }
}
@media (max-width: 767px) {
  .navToggle__icon {
    width: 35px;
  }
}
.navToggle__text {
  font-family: 'Archia', sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #8F9B81;
}
@media (max-width: 1199px) {
  .navToggle__text {
    display: none;
  }
}
.navToggle__lineTwo,
.navToggle__lineThree {
  transform-origin: center;
}
.navToggle[aria-expanded="true"] .navToggle__lineOne {
  transform: translateX(-100%);
}
.navToggle[aria-expanded="true"] .navToggle__circleOne {
  transition-delay: 0.2s;
  transform: translateX(-100%);
}
.navToggle[aria-expanded="true"] .navToggle__circleTwo {
  transition-delay: 0.2s;
  transform: translateX(100%);
}
.navToggle[aria-expanded="true"] .navToggle__lineFour {
  transform: translateX(100%);
}
.navToggle[aria-expanded="true"] .navToggle__lineTwo {
  transform: rotate(-45deg) scale(0.9);
}
.navToggle[aria-expanded="true"] .navToggle__lineThree {
  transform: rotate(45deg) scale(0.9);
}
.mobile-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #004247;
  overflow-y: scroll;
  transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
@media (max-width: 767px) {
  .mobile-navigation {
    height: 100%;
  }
}
.mobile-navigation.is-visible {
  transform: translateY(0);
}
.navi-animation {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-block-start: calc(var(--headerHeight) + 20px);
  padding-block-end: var(--headerHeight);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-100vh);
  transition: all 0s 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
body:has(.navToggle[aria-expanded="true"]) .navi-animation {
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: translateY(0);
  opacity: 1;
}
#edit .navi-animation {
  padding-block-start: calc(var(--headerHeight) + 120px);
}
.navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navigation div.navi {
  width: 100%;
  float: left;
  display: block;
  position: relative;
  --linkcolor: #fff;
  --linkcolor-hov: #8F9B81;
}
.navigation div.navi > .cb-toggle {
  display: none;
}
.navigation div.navi > .item {
  float: left;
  position: relative;
}
.navigation div.navi > .item.item-empty > .cb-toggle {
  display: none;
}
.navigation div.navi > .item > .menu {
  width: 100%;
  display: block;
}
@media (min-width: 1200px) {
  .navigation__second {
    align-self: flex-end;
    padding-inline-end: 34px;
    box-sizing: border-box;
  }
}
.navigation__second div.navi {
  --linkcolor-hov: #fff;
  --linkcolor: #8F9B81;
  display: flex;
  gap: 40px;
  margin-block-start: 50px;
  margin-block-end: 50px;
}
@media (min-width: 1200px) {
  .navigation__second div.navi {
    margin-block-start: 72px;
    margin-block-end: 72px;
  }
}
.navigation__second div.navi > .item {
  display: flex;
  gap: 40px;
}
@media (min-width: 1200px) {
  .navigation__second div.navi > .item {
    gap: 50px;
  }
}
.navigation__second div.navi > .item.exit {
  margin-bottom: 0;
}
.navigation__second div.navi > .item > .menu {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .navigation__second div.navi > .item > .menu {
    font-size: 25px;
  }
}
.navigation__second div.navi > .item > .menu.path {
  color: var(--linkcolor-hov);
}
@media (hover: hover) and (pointer: fine) {
  .navigation__second div.navi > .item > .menu:hover,
  .navigation__second div.navi > .item > .menu:focus {
    color: var(--linkcolor-hov);
  }
}
.navigation__main {
  width: 500px;
}
@media (max-width: 1199px) {
  .navigation__main {
    width: 100%;
  }
}
.navigation__main div.navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
@media (max-width: 1199px) {
  .navigation__main div.navi {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .navigation__main div.navi {
    gap: 30px;
  }
}
.navigation__main div.navi > .item {
  padding-inline: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navigation__main div.navi > .item > .menu {
  font-size: clamp(1.6875rem, 1.27701375vw + 1.3762279rem, 2.5rem);
  line-height: clamp(2.1875rem, 1.27701375vw + 1.8762279rem, 3rem);
  text-align: center;
  font-weight: 600;
}
.navigation__main div.navi > .item > .menu.path {
  color: var(--linkcolor-hov);
}
@media (hover: hover) and (pointer: fine) {
  .navigation__main div.navi > .item > .menu:hover,
  .navigation__main div.navi > .item > .menu:focus {
    color: var(--linkcolor-hov);
  }
}
.navigation__main div.sub2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.navigation__main div.sub2 > .item.init {
  margin-top: 15px;
}
.navigation__main div.sub2 > .item > .menu {
  font-size: clamp(1.125rem, 0.88408644vw + 0.90950393rem, 1.6875rem);
  line-height: clamp(1.5625rem, 0.98231827vw + 1.32305992rem, 2.1875rem);
  font-weight: 600;
}
.navigation__main div.sub2 {
  overflow: hidden;
  max-height: 0;
}
.navigation__main div.sub2 > .item {
  opacity: 0;
  transform: scale(0.8);
}
.navigation__main div.navi > .item.cb-toggle-target-active > div.navi {
  transition: none;
  max-height: 1000px;
  transition: max-height 2s;
}
.navigation__main div.navi > .item.cb-toggle-target-active > div.navi > .item {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s;
}
.navigation__main .cb-toggle {
  position: absolute;
  right: 0;
  top: 12px;
  z-index: 2;
  cursor: pointer;
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/nav-toggle.svg);
  transition: all 0.3s cubic-bezier(0.05, 0.8, 0.5, 1);
}
@media (max-width: 767px) {
  .navigation__main .cb-toggle {
    top: 6px;
  }
}
.navigation__main .cb-toggle.cb-toggle-active {
  transform: scaleY(-1);
}
.cb-album {
  position: relative;
  padding-top: var(--spacePart);
  padding-bottom: var(--spacePart);
}
.cb-album .body-mobile {
  display: none !important;
}
.cb-album h2 {
  display: none;
}
.unit--foto {
  display: flex;
  flex-direction: column;
}
.cb-album .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--borderRadius);
}
.cb-album .part {
  width: 100% !important;
  margin: 0 !important;
}
.cb-album .part.desc {
  display: none;
}
#root.ie11 .cb-album img {
  height: auto !important;
  max-height: 1000000000px !important;
}
.cb-album.cb-album .scan {
  margin-top: 40px !important;
}
.cb-album.cb-album .scan:first-child {
  margin-top: 0 !important;
  margin-bottom: 40px !important;
}
.cb-album .scan table,
.cb-album .scan tbody,
.cb-album .scan tr {
  float: left;
  display: block;
  width: 100%;
}
.cb-matrix .body {
  margin-top: -0.5%;
  margin-bottom: -0.5%;
}
.cb-matrix .part {
  margin-top: 0.5% !important;
  margin-bottom: 0.5% !important;
}
.cb-matrix .part.foto {
  height: auto !important;
  box-sizing: border-box;
}
.cb-matrix .part.foto a.foto,
.cb-matrix .part.foto span.foto {
  display: block;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
}
.cb-matrix .part.foto img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-matrix .part.foto a.foto.zoom img {
  transform: scale(1.1);
}
.cb-matrix.cb-matrix-columns-1 .part.foto {
  width: 100% !important;
}
.cb-matrix.cb-matrix-columns-2 .part.foto {
  width: 49.5% !important;
}
.cb-matrix.cb-matrix-columns-3 .part.foto {
  width: 32.66666667% !important;
}
.cb-matrix.cb-matrix-columns-4 .part.foto {
  width: 24.25% !important;
}
.cb-matrix.cb-matrix-columns-5 .part.foto {
  width: 19.2% !important;
}
.cb-matrix.cb-matrix-columns-6 .part.foto {
  width: 15.83333333% !important;
}
.cb-matrix.cb-matrix-columns-7 .part.foto {
  width: 13.42857143% !important;
}
.cb-matrix.cb-matrix-columns-8 .part.foto {
  width: 11.625% !important;
}
.cb-matrix .scan tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cb-matrix .scan td {
  float: left;
  display: block;
  margin: 0 10px;
  font-size: 16px;
  line-height: 1.25;
}
.cb-matrix .scan td:first-child {
  margin-left: 0;
}
.cb-matrix .scan td:last-child {
  margin-right: 0;
}
.cb-matrix .scan td.prev,
.cb-matrix .scan td.next {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 20px;
  height: 20px;
}
.cb-matrix .scan td.prev a,
.cb-matrix .scan td.next a {
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
}
.cb-matrix .scan td.prev:empty,
.cb-matrix .scan td.next:empty {
  opacity: 0.5;
  pointer-events: none;
}
.cb-matrix .scan td.next a {
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.cb-matrix .scan td a {
  color: var(--textcolor);
}
.cb-matrix .scan td .same {
  color: var(--sitecolor);
}
.cb-strips .part.foto {
  height: auto !important;
  max-height: 1000000000px !important;
}
.cb-strips-images {
  float: left;
  width: 100%;
  height: 0 !important;
  padding-bottom: 56.25%;
  position: relative;
}
.cb-strips-images a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  z-index: 2;
  transition: opacity 1s cubic-bezier(0.05, 0.8, 0.5, 1), transform 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  overflow: hidden;
}
.cb-strips-images a.is-active {
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}
.cb-strips-images img {
  opacity: 1 !important;
  display: block !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.cb-strips .scan tbody > tr {
  float: left;
  width: 100%;
  display: flex;
}
.cb-strips .scan tbody > tr > td {
  float: left;
  width: 100%;
  display: block;
}
.cb-strips .scan td.prev,
.cb-strips .scan td.next {
  margin-right: 1.25%;
  width: 6.25%;
}
.cb-strips .scan td.next {
  margin-right: 0;
  margin-left: 1.25%;
}
.cb-strips .scan div.prev,
.cb-strips .scan div.next {
  float: left;
  width: 100%;
  height: 100%;
}
.cb-strips .scan div.prev a,
.cb-strips .scan div.next a {
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
  transition: background 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-strips .scan div.prev a:hover,
.cb-strips .scan div.next a:hover {
  background-position: 40% 50%;
}
.cb-strips .scan div.next a {
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.cb-strips .scan div.next a:hover {
  background-position: 60% 50%;
}
.cb-strips .scan td.cb-strips-thumbs {
  width: 85%;
}
.cb-strips-container {
  float: left;
  width: 100%;
}
.cb-strips-container .body {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cb-strips-container .part.foto {
  position: relative;
}
.cb-strips-container .part.foto a.foto,
.cb-strips-container .part.foto span.foto {
  float: left;
  width: 100%;
  display: block;
  height: 0;
  position: relative;
  padding-bottom: 60%;
  opacity: 0.4;
  transition: opacity 0.4s cubic-bezier(0.05, 0.8, 0.5, 1);
  overflow: hidden;
}
.cb-strips-container .part.foto a.foto:hover,
.cb-strips-container .part.foto span.foto:hover,
.cb-strips-container .part.foto a.foto.is-active,
.cb-strips-container .part.foto span.foto.is-active {
  opacity: 1;
}
.cb-strips-container .part.foto a.foto .cb-zoom-indicator,
.cb-strips-container .part.foto span.foto .cb-zoom-indicator {
  display: none;
}
.cb-strips-container .part.foto img {
  opacity: 1 !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-strips-container .part.foto a.foto:hover img {
  transform: scale(1.2);
}
.cb-strips-4 .cb-strips-container .part.foto {
  width: 23.95833333% !important;
}
.cb-strips-6 .cb-strips-container .part.foto {
  width: 15.50925926% !important;
}
.cb-strips-8 .cb-strips-container .part.foto {
  width: 11.28472222% !important;
}
.cb-strips-10 .cb-strips-container .part.foto {
  width: 8.75% !important;
}
.cb-slideshow-images {
  float: left;
  width: 100%;
}
.cb-slideshow .part.foto,
.cb-slideshow .part.crossslideContainer {
  max-height: 1000000000px !important;
  max-width: 100% !important;
  height: 0 !important;
  padding-bottom: 66.69921875%;
  overflow: hidden;
  position: relative;
}
.cb-slideshow a.foto {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.05, 0.8, 0.5, 1);
}
.cb-slideshow a.foto.is-activated {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
}
.cb-slideshow img {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: none !important;
  z-index: 1;
  border-radius: var(--borderRadius);
}
.cb-slideshow img.is-activated {
  z-index: 2;
}
#view .cb-slideshow.cb-manual img {
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: scale(1.05);
}
#view .cb-slideshow.cb-manual a.foto.is-activated img {
  transform: scale(1);
}
#view .cb-slideshow.cb-fading img {
  opacity: 0 !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  transform: scale(1.05);
}
#view .cb-slideshow.cb-fading img.is-activated,
#view .cb-slideshow.cb-fading .cb-image-figure.is-activated img {
  opacity: 1 !important;
  transform: scale(1);
}
#view .cb-slideshow.cb-sliding img {
  opacity: 0 !important;
  width: 110% !important;
  max-width: 110% !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  animation-name: SlideshowSlide;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#view .cb-slideshow.cb-sliding img.is-activated,
#view .cb-slideshow.cb-sliding .cb-image-figure.is-activated img {
  opacity: 1 !important;
}
@keyframes SlideshowSlide {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -10%;
  }
  100% {
    margin-left: 0;
  }
}
#view .cb-slideshow.cb-moving img {
  opacity: 0 !important;
  transition: all 1s cubic-bezier(0.05, 0.8, 0.5, 1);
  animation-name: SlideshowMove;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#view .cb-slideshow.cb-moving img.is-activated,
#view .cb-slideshow.cb-moving .cb-image-figure.is-activated img {
  opacity: 1 !important;
}
@keyframes SlideshowMove {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cb-slideshow .head {
  width: 100%;
}
.cb-slideshow .ctrl {
  float: left;
  width: 100%;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cb-slideshow .ctrl a {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: var(--socialWidth, 50px);
  aspect-ratio: 1;
  display: inline-block;
  transition: background-color 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  position: relative;
  background-color: #8F9B81;
  border-radius: 100vw;
}
@media (max-width: 1199px) {
  .cb-slideshow .ctrl a {
    --socialWidth: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cb-slideshow .ctrl a:hover,
  .cb-slideshow .ctrl a:focus {
    background-color: #004247;
  }
}
.cb-slideshow .ctrl a:after {
  content: '';
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-mask-image: var(--btnArrowIcon, url('/images/btn-prev.svg'));
          mask-image: var(--btnArrowIcon, url('/images/btn-prev.svg'));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.cb-slideshow .ctrl a.fade {
  cursor: default;
}
.cb-slideshow .ctrl .next a {
  --btnArrowIcon: url(/images/btn-next.svg);
}
.crossslide {
  float: left;
  width: 100%;
  max-width: 100% !important;
  position: static !important;
  padding: 0 !important;
}
.ns-teaserWrapper {
  float: left;
  width: 100%;
}
.ns-teaserWrapper--newsTeaser .ns-teaserArea {
  margin-top: calc(var(--spaceArea) * 1);
  margin-bottom: calc(var(--spaceArea) * 1);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.ns-teaserWrapper--newsTeaser .ns-teaser {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link,
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:after,
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:before,
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:before {
    width: calc(100% + 7px);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__image,
  .ns-teaserWrapper--newsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__image {
    transform: scale(1.05);
  }
}
.ns-teaserWrapper--newsTeaser .ns-teaser__content {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 2 + 5px);
}
@media (min-width: 768px) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) + clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem));
    padding-inline-end: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__content {
    grid-template-columns: 390px 1fr;
  }
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--title {
  color: var(--titlecolor);
  font-size: clamp(1.4375rem, 0.68762279vw + 1.26989194rem, 1.875rem);
  line-height: clamp(1.75rem, 1.17878193vw + 1.46267191rem, 2.5rem);
  text-wrap: balance;
  font-weight: 700;
  margin-bottom: 10px;
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--date {
  margin-bottom: 15px;
  color: var(--titlecolor);
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
  --titlecolor: #8F9B81;
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link {
  margin-top: auto;
  margin-top: calc(var(--spaceTotal) * 1);
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:before {
    border-radius: 60px 40px 40px 0;
  }
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:hover:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--link:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--newsTeaser .ns-teaser__part--link:focus:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--pict {
  overflow: hidden;
  border-radius: var(--borderRadius);
}
.ns-teaserWrapper--newsTeaser .ns-teaser__part--pict .ns-teaser__image {
  aspect-ratio: 390 / 300;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.ns-teaserWrapper {
  float: left;
  width: 100%;
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaserArea {
  margin-top: calc(var(--spaceTotal) * 1);
  margin-bottom: calc(var(--spaceTotal) * 1);
  display: grid;
  gap: var(--gutter);
}
@media (min-width: 1200px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaserArea {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser {
  float: left;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link,
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:after,
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:before,
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:before {
    width: calc(100% + 7px);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__image,
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__image {
    transform: scale(1.05);
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__content {
    grid-template-columns: minmax(0, 1fr) 285px;
    min-height: 380px;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__section--content {
  background-color: #EFEFEF;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  width: calc(100% + 88px);
  z-index: 2;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__section--content {
    padding: 20px 20px 30px 20px;
    width: 100%;
    margin-top: -20px;
    order: 99;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--title {
  color: var(--titlecolor);
  font-size: clamp(1.1875rem, 0.58939096vw + 1.04383595rem, 1.5625rem);
  line-height: clamp(1.5rem, 0.58939096vw + 1.35633595rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
  --titlecolor: #8F9B81;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--title {
    margin-bottom: 10px;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--date {
  margin-bottom: 20px;
  color: var(--titlecolor);
  font-size: clamp(1.1875rem, 0.58939096vw + 1.04383595rem, 1.5625rem);
  line-height: clamp(1.5rem, 0.58939096vw + 1.35633595rem, 1.875rem);
  text-wrap: balance;
  font-weight: 700;
  font-size: clamp(1.0625rem, 0.78585462vw + 0.87094794rem, 1.5625rem);
  line-height: clamp(1.375rem, 0.98231827vw + 1.13555992rem, 2rem);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--date {
    margin-bottom: 15px;
  }
}
.ns-teaser--startpageNewsTeaser .ns-teaser__part--text {
  font-size: clamp(0.9375rem, 0.39292731vw + 0.84172397rem, 1.1875rem);
  line-height: clamp(1.25rem, 0.68762279vw + 1.08239194rem, 1.6875rem);
  color: var(--textcolor);
  hyphens: auto;
}
.cbdModule--startpageNewsTitle,
.cbdModule--startpageNewsButton {
  text-align: center;
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__button {
  position: absolute;
  top: 35px;
  right: 25px;
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__button {
    top: 20px;
    right: 20px;
    width: 40px;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link {
  margin-top: auto;
  margin-top: calc(var(--spaceTotal) * 1);
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:before {
    border-radius: 60px 40px 40px 0;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:hover:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--link:focus:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--pict {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--pict {
    aspect-ratio: 350 / 157;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.ns-teaserWrapper--startpageNewsTeaser .ns-teaser__part--pict .ns-teaser__image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ns-teaserWrapper {
  float: left;
  width: 100%;
}
.ns-teaserWrapper--settlementsTeaser .ns-teaserArea {
  margin-top: calc(var(--spaceArea) * 1);
  margin-bottom: calc(var(--spaceArea) * 1);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser {
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceUnit) * 1);
  margin-bottom: calc(var(--spaceUnit) * 1);
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link,
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:after,
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__part--link:before,
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__part--link:before {
    width: calc(100% + 7px);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:hover .ns-teaser__image,
  .ns-teaserWrapper--settlementsTeaser .ns-teaser.is-linkAround:focus .ns-teaser__image {
    transform: scale(1.05);
  }
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__content {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--spacePart) * 2 + 5px);
}
@media (min-width: 768px) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) + clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem));
    padding-inline: clamp(1.875rem, -2.74rem + 7.21vw, 3.75rem);
    box-sizing: border-box;
  }
}
@media (min-width: 1200px) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__content {
    grid-template-columns: 390px 1fr;
  }
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--title {
  color: var(--titlecolor);
  font-size: clamp(1.4375rem, 0.68762279vw + 1.26989194rem, 1.875rem);
  line-height: clamp(1.75rem, 1.17878193vw + 1.46267191rem, 2.5rem);
  text-wrap: balance;
  font-weight: 700;
  margin-bottom: 10px;
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--preTitle {
  margin-bottom: 15px;
  color: var(--titlecolor);
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
  --titlecolor: #8F9B81;
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link {
  margin-top: auto;
  margin-top: calc(var(--spaceTotal) * 1);
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:before {
    border-radius: 60px 40px 40px 0;
  }
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:hover:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .ns-teaserWrapper--settlementsTeaser .ns-teaser__part--link:focus:before {
    width: calc(100% + 7px);
  }
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--pict {
  overflow: hidden;
  border-radius: var(--borderRadius);
}
.ns-teaserWrapper--settlementsTeaser .ns-teaser__part--pict .ns-teaser__image {
  aspect-ratio: 390 / 300;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
#map {
  /* default cluster styling */
  --cluster-fill-color: var(--sitecolor);
  --cluster-stroke-color: #fff;
  --cluster-stroke-width: 2;
  --cluster-font-color: #fff;
  --cluster-font-family: 'Archia', sans-serif;
  --cluster-font-size: 20;
  --cluster-font-dy-offset: 1;
  --panOffsetX: 0;
  --panOffsetY: -200;
  box-sizing: border-box;
  float: left;
  width: 100%;
  margin-top: calc(var(--spaceArea) * 1);
  aspect-ratio: 1280 / 666;
  border-radius: var(--borderRadius);
  overflow: hidden;
}
@media (max-width: 1199px) {
  #map {
    aspect-ratio: 1;
  }
}
.ns-locationMarkerCluster {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid var(--sitecolor);
  box-sizing: border-box;
  transform: translateY(-50%) translateX(-50%);
}
.ns-locationMarkerCluster__count {
  position: absolute;
  inset: 2px;
  background-color: var(--sitecolor);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'Archia', sans-serif;
  font-weight: 700;
  text-align: center;
}
.ns-locationMarker {
  width: 35px;
  height: 43px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  cursor: pointer;
  background-color: gold;
  transform: translateY(-50%) translateX(-50%);
  background: url(/images/settlementpin.svg) no-repeat center center;
  background-size: 100% 100%;
}
.ns-locationMarker.ns-locationMarker--show {
  z-index: 3;
}
.ns-locationMarker__pin {
  width: 35px;
  height: 43px;
}
.ns-locationPopUp {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: 10px;
  z-index: 100;
  background-color: #fff;
  width: 160px;
  transform: translateX(-50%);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  box-sizing: border-box;
}
.ns-locationPopUp:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 2;
  margin-left: -10px;
  margin-top: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-top-color: #fff;
  border-width: 10px 10px 0 10px;
}
@media (max-width: 767px) {
  .ns-locationPopUp {
    width: 310px;
  }
}
.ns-locationPopUp__content {
  box-sizing: border-box;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ns-locationPopUp__content .ns-content {
  float: left;
  width: 100%;
}
.ns-locationPopUp__content .ns-content__text {
  box-sizing: border-box;
  padding: 10px;
}
.ns-locationPopUp__part {
  float: left;
}
.ns-locationPopUp__part--pict img {
  aspect-ratio: 280 / 115;
  width: 100%;
  max-width: 100%!important;
  height: 100%!important;
  max-height: 100%!important;
  object-fit: cover;
  object-position: center;
  border-radius: var(--borderRadius);
}
.ns-locationPopUp__part--title {
  color: var(--textcolor);
  text-align: center;
  margin-bottom: calc(var(--spacePart) * 1);
  font-size: clamp(1.0625rem, 0.49115914vw + 0.94277996rem, 1.375rem);
  line-height: clamp(1.375rem, 0.78585462vw + 1.18344794rem, 1.875rem);
  text-wrap: balance;
  font-weight: 600;
}
.ns-locationPopUp__part--link {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  font-size: 16px;
  padding: 18px 40px 18px 35px;
  min-width: min(100%, 280px);
}
.ns-locationPopUp__part--link:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-locationPopUp__part--link:before {
    border-radius: 60px 40px 40px 0;
  }
}
.ns-locationPopUp__part--link:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .ns-locationPopUp__part--link:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .ns-locationPopUp__part--link {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .ns-locationPopUp__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .ns-locationPopUp__part--link:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .ns-locationPopUp__part--link:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .ns-locationPopUp__part--link:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .ns-locationPopUp__part--link:hover:before {
    width: calc(100% + 7px);
  }
}
.ns-locationPopUp__part--link:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.ns-locationPopUp__part--link:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.ns-locationPopUp__part--link:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .ns-locationPopUp__part--link:focus:before {
    width: calc(100% + 7px);
  }
}
.ns-locationPopUp__part--link:after {
  content: '';
  top: 17px;
  right: 24px;
  --btnArrowSize: 22px;
}
.ns-locationPopUp__part--badge .ns-badge {
  font-size: 14px;
  line-height: 1.57142857;
}
.ns-locationPopUp__toggle {
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 3;
  width: 20px;
  height: 20px;
  background: var(--sitecolor);
  border-radius: 50%;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
.ns-locationPopUp__toggle:before,
.ns-locationPopUp__toggle:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 10px;
  background-color: #fff;
}
.ns-locationPopUp__toggle:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ns-locationPopUp__toggle:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.locationMarker {
  position: relative;
  transform: translate(-50%, -100%);
  z-index: 2;
  font-family: 'Archia', sans-serif;
}
.locationMarker.is-active {
  z-index: 3;
}
.layout6 .locationMarker {
  opacity: 0.3;
  transform: scale(0.8);
  transition: all 200ms ease-in-out;
}
.layout6 .locationMarker.is-active {
  opacity: 1;
  transform: scale(1);
}
.locationMarker__pin {
  width: 62px;
  height: 75px;
  cursor: pointer;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/settlementpin.svg);
}
.locationMarker__infoBox {
  margin-bottom: 30px;
  background-color: var(--sitecolor);
  --textcolor: #fff;
  --titlecolor: #8F9B81;
  --btnSecLinkColor: #fff;
  --linkcolor: #8F9B81;
  --linkcolor-hov: #8F9B81;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.locationMarker__infoBox:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 20px solid var(--sitecolor);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
#map .locationMarker__infoBox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: bottom center;
  bottom: 100%;
  z-index: 10;
  width: 280px;
  animation-name: fadeInScale;
  animation-duration: 100ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
.locationMarker__image .locationImage {
  height: 120px;
  object-fit: cover;
}
.layout5 #outsideInfoBox .locationMarker__image {
  flex-grow: 1;
}
.layout5 #outsideInfoBox .locationMarker__image .locationImage {
  height: 100%;
}
.layout6 #outsideInfoBox .locationMarker__image {
  height: 100%;
  width: 100%;
  max-width: 100px;
}
.layout6 #outsideInfoBox .locationMarker__image .locationImage {
  height: 100%;
  width: 100%;
}
.locationMarker__content {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.locationMarker__actions {
  margin-top: calc(var(--spacePart) * 2);
  width: 100%;
  display: flex;
  gap: 20px;
}
.locationMarker__part--text {
  color: var(--textcolor);
}
.locationMarker__part--link {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.locationMarker__part--link:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .locationMarker__part--link:before {
    border-radius: 60px 40px 40px 0;
  }
}
.locationMarker__part--link:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .locationMarker__part--link:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .locationMarker__part--link {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .locationMarker__part--link:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .locationMarker__part--link:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .locationMarker__part--link:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .locationMarker__part--link:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .locationMarker__part--link:hover:before {
    width: calc(100% + 7px);
  }
}
.locationMarker__part--link:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.locationMarker__part--link:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.locationMarker__part--link:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .locationMarker__part--link:focus:before {
    width: calc(100% + 7px);
  }
}
.locationMarker__part--scrollto {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 23px 60px 23px 45px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  min-width: min(100%, 320px);
  line-height: normal;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  isolation: isolate;
  font-size: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
  line-height: clamp(1.25rem, 0.19646365vw + 1.20211198rem, 1.375rem);
}
.locationMarker__part--scrollto:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--btnBgColor, #8F9B81);
  z-index: -1;
  border-radius: 65px 45px 45px 0;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .locationMarker__part--scrollto:before {
    border-radius: 60px 40px 40px 0;
  }
}
.locationMarker__part--scrollto:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 30px;
  width: var(--btnArrowSize, 25px);
  aspect-ratio: 1;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/btn-arrow.svg);
  align-self: flex-end;
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .locationMarker__part--scrollto:after {
    top: 17px;
    right: 24px;
    --btnArrowSize: 22px;
  }
}
@media (max-width: 767px) {
  .locationMarker__part--scrollto {
    padding: 18px 40px 18px 35px;
    min-width: min(100%, 280px);
  }
  .locationMarker__part--scrollto:after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .locationMarker__part--scrollto:after {
    opacity: 0;
    transform: translateX(-7px);
  }
  .locationMarker__part--scrollto:hover {
    color: var(--btnLinkColorHov, #fff);
  }
  .locationMarker__part--scrollto:hover:after {
    opacity: 1;
    transform: translateX(0);
  }
  .locationMarker__part--scrollto:hover:before {
    width: calc(100% + 7px);
  }
}
.locationMarker__part--scrollto:focus {
  color: var(--btnLinkColorFocus, #fff);
}
.locationMarker__part--scrollto:focus:before {
  background-color: var(--btnBgColorHov, #004247);
}
.locationMarker__part--scrollto:focus:after {
  opacity: 1;
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .locationMarker__part--scrollto:focus:before {
    width: calc(100% + 7px);
  }
}
.locationMarker__close {
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background-size: 36px 36px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/close.svg);
  cursor: pointer;
}
/*# sourceMappingURL=./screen-small.css.map */