* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf');
  font-style: normal;
}

:root {
  --color-black:      #000;
  --color-dark:       rgb(43,46,52);
  --color-darker:     rgb(51,51,51);
  --color-dark-hover: #383839;
  --color-white:      #fff;
  --color-grey:       #F0F0F0;
  --color-orange:     #FFA652;
  --color-paleorange: #FFB065;
  --color-yellow:     #F7ED74;
  --color-ochre:      #D8B144;
  --color-blue:       #A4C7EA;
  --color-purple:     #C7A9E0;
  --purple-light:     #D0B6E5;
  --color-brightgreen: #88D6A3;
  --color-palegreen: #ADE3BF;
  --color-dark-grey:  #BABABA;  
  --color-grey-bottom: #c9c9c9;
  --color-grey-2:#D8D8D8;
  --color-pink: #E69494;

  --color-text: var(--color-dark);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);

  --font-family-sans:       'Inter', sans-serif;
  --font-weight-thin:       400;
  --font-weight-normal:     500;
  --font-weight-bold:       500;

  --font-size-1: 1vw;
  --font-size-2: 1.2vw;

  --spacing-unit: 1.375vw;
  --element-height: calc(2 * var(--spacing-unit));
  --padding: var(--spacing-unit);
  --aside-width: calc(25vw - 1.375vw);

  --border-solid: 1px solid var(--color-dark);
  --border-dashed: 1px dashed var(--color-dark);
}

@media screen and (max-width: 480px) {
  :root { 
    --spacing-unit: 4.4vw;
    --aside-width: calc(100vw - 2 * var(--spacing-unit));
    --element-height: calc(2.5 * var(--spacing-unit));
  }

}

@media screen and (max-width: 767px) {
  :root {
    --font-size-1: 3.7vw;
    --font-size-2: 4.3vw;
  }
}

@media screen and (min-width:481px) and (max-width: 767px) {
  :root { 
    --spacing-unit: 3vw;
    --aside-width: calc(100vw - 2 * var(--spacing-unit));
    --element-height: calc(2.5 * var(--spacing-unit));
  }
}

@media screen and (min-width: 1920px) {
  :root { 
    --spacing-unit: 1.65rem;
    --aside-width: 454px;
  }
}

html {
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-normal);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-background);
}

body {
  margin: 0 auto;
  padding: 0;
}

.bg-blue { background: var(--color-blue); }
.bg-purple { background: var(--color-purple); }
.bg-lightpurple { background: var(--purple-light)}
.bg-orange {background: var(--color-orange);}
.bg-yellow {background: var(--color-yellow);}
.bg-ochre {background: var(--color-ochre);}
.bg-brightgreen {background: var(--color-brightgreen);}
.bg-palegreen {background: var(--color-palegreen);}
.bg-grey {background: var(--color-grey-2);}
.bg-paleorange {background: var(--color-paleorange)}
.bg-pink {background: var(--color-pink)}



li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}



strong, b {
  font-weight: var(--font-weight-normal);
}

.color-grey {color: var(--color-text-grey);}

.header {
  width: var(--aside-width); 
  position: fixed;
  z-index: 10000;
  top: var(--spacing-unit);
  left: var(--spacing-unit);
}



/* ========== Buttons ========== */

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

button.btn-disabled {
  cursor:auto;
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.btn {
  border-radius: 2em;
  margin:0 1em 1em 0;
}
  
.btn-link {text-decoration: none;}

.btn-link:hover {color:white}

.btn-outline-primary {
  color: var(--color-dark);
  border-color:var(--color-dark);
  background:white;
  font-size:0.875em;
  letter-spacing:0.28px;
  font-weight: 500;
  line-height:var(--element-height);
  height:var(--element-height);
  padding:0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
  
.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
background:var(--color-dark);
color:white;
border-color:var(--color-dark);
}

.top-right {
  position:absolute;
  top: var(--spacing-unit);
  right: var(--spacing-unit);
  z-index:9;
}

.top-right.lang-switch-s {z-index:10001}
.top-right.lang-switch-s .btn {margin:0}
.top-right.lang-switch-s .btn:not(.guide-link):hover { border: var(--border-dashed)}
.top-right.lang-switch-s .btn.guide-link:hover { background: #2B2E34; color: white}


@media screen and (max-width:767px) {
  .top-right.lang-switch-s > a,.guide-link {display:none;}
}

.top-right .btn {
  font-size:14px;
  font-weight: var(--font-weight-bold);
  text-transform:uppercase;
}

.btn-block a {
  border: var(--border-solid);
  font-weight: var(--font-weight-bold);
  background: white;
  color: var(--color-dark);
  min-width: 220px;
  line-height: var(--element-height);
  font-size: var(--font-size-1);
  padding: 0 calc(2*var(--spacing-unit)) 0 var(--spacing-unit);
  text-align: left;
  border-radius: calc(var(--element-height) / 2);
  margin: 0 auto;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.3px;
  z-index: 1;
  text-decoration:none!important;
}


.btn-link {
  border: var(--border-solid);
  font-weight: var(--font-weight-bold);
  background: white;
  color: var(--color-dark);
  min-width: 220px;
  line-height: var(--element-height);
  font-size: var(--font-size-1);
  padding:0 var(--spacing-unit);
  text-align: left;
  border-radius: calc(var(--element-height) / 2);
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
  position:relative;
  letter-spacing: 0.3px;
  z-index:1;
}

.btn-link:hover,
.btn-link:focus {
  border: thin dashed var(--color-dark);
}

.btn-link::after,
.btn-block a::after {
  content:"";
  display:block;
  width: 1em;
  height: 1em;
  background: url(/assets/icons/arrow-simple.svg) no-repeat;
  background-size: contain;;
  position: absolute;
  right: var(--spacing-unit);
  top: calc(0.5 * var(--element-height) - 0.5em);
  transform: rotate(180deg)
}

.btn-link.btn-external::after {
  transform:rotate(135deg);
}

.btn-link.__dark {
  background: var(--color-dark);
  border: var(--border-solid);
  color: white;
  margin: 0;
  text-align:center;
  padding:0 1.25em;
  letter-spacing: 0.05em;
}

.btn-link.__dark:hover, .btn-link.__dark:focus,
.apply__filter.filter__btn:hover, .apply__filter.filter__btn:focus {
  border: var(--border-solid);
  background: var(--color-dark-hover);
}

.btn-link.__dark::after { background:transparent }

.btn-link.__light {
  text-align:center;
  letter-spacing: 0.6px;
  padding:0;
  font-weight: var(--font-weight-bold);
}

.btn-link.btn-center {
  text-align:center;
  padding:0 var(--spacing-unit);
  min-width:0;
}

.btn-link.btn-center a {margin-right:0}

.btn-link.btn-center:after {
  background-image: none;
}

.btn-link.btn-disabled {
  border: var(--border-dashed);
}

.btn-link.btn-city {
  border: var(--border-dashed);
  padding: 0 1.5em;
  margin: 0 0 0 -1em;
}

.city-switch {
  border: var(--border-dashed);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 1.25em 0 1em;
}

.city-switch:before {
  content: "";
  display:inline-block;
  width:.8em;
  height:1.125em;
  background-image: url(/assets/icons/Marker.svg);
  background-repeat:no-repeat;
  background-size:contain;
}

.city-switch:hover {
  background-color: var(--color-yellow);
}

@keyframes blink-yellow {
  0%   { background-color: white; }
  10%  { background-color: var(--color-yellow); }
  90%  { background-color: var(--color-yellow); }
  100% { background-color: white; }
}

.city-switch.blink {
  animation: blink-yellow 2s ease-in-out 1;
}

.btn-link.btn-city::after {
  content:"";
  background-image:none;
}

.btn-link.btn-disabled:hover{
  color:inherit;
}

.btn-link a {
  display: block;
  text-decoration: none;
  color: var(--color-dark);
  margin-right: 2em;
}

.btn-link.__dark a {color: white; margin-right:0}




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

  .btn-link {
    min-width:0;
  }

}

/* ==== Navigation ==== */


.menu-toggle,
.menu-container {
  background: white;
  border:  var(--border-solid);
  border-radius: calc(var(--element-height) / 2);
  padding: var(--spacing-unit);
}

.menu-container {min-height: calc(var(--window-inner-height) - var(--element-height) - 3 * var(--spacing-unit));}

.menu-toggle {
  margin-bottom: var(--spacing-unit);
  padding: 0 var(--spacing-unit);
  height: var(--element-height);
  line-height: var(--element-height);
  font-size: var(--font-size-1);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3pt;
  position:relative;
  border-radius: calc(var(--element-height) / 2);
}

.menu-toggle::after {
  content:"";
  display:block;
  width: .8em;
  height: .8em;
  background: url(/assets/icons/plus.svg) no-repeat;
  background-size:contain;
  position: absolute;
  right: var(--spacing-unit);
  top: calc(50% - .4em);
  transition: .25s ease-in-out transform;
}

.menu-toggle:hover, 
.menu-toggle:focus {
  border: var(--border-dashed);
}

.menu-toggle .close,
.menu-toggle.open .current-page {display:none;}
.menu-toggle.open .close {display:inline;}
.menu-toggle.open::after {transform: rotate(45deg)}
.menu-container {display:none;}
.menu-container.open {display:block;}

.lang-switch {
  display:flex;
  justify-content: space-between;
  position: absolute;
  bottom: var(--spacing-unit);
  width: calc(100% - 2 * var(--spacing-unit));
}

@media screen and (max-width: 767px) {
  .menu-toggle {width:75%}
}

@media screen and (min-width: 768px) {
  .menu-container.open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .lang-switch {display:none;}

  .header .menu-container.open .social {position:static}

  .header .menu-container.open .menu {margin-bottom:auto;}
}

a.link-lang {
  background:white;
  border:thin solid black;
  border-radius: calc(var(--element-height) / 2);
  line-height: var(--element-height);
  padding: 0 var(--spacing-unit);
  font-size: 0.875rem;
  text-transform: uppercase;
  text-align:center;
  flex: 0 0 48%;
}

.link-lang.active { 
  background: var(--color-darker); 
  color: white 
}

.link-lang:not(.active):hover,
.link-lang:not(.active):focus,
.cancel__filters.filter__btn:not(.disabled):hover,
.cancel__filters.filter__btn:not(.disabled):focus {
  border: var(--border-dashed)
}

.menu a {
  display:inline-block;
  line-height: 1.15em;
  font-size: 2.9vw;
  margin-bottom:10px;
  text-transform: uppercase;
  border-bottom: 2px dashed transparent;
}

@media screen and (min-width:2000px){
  .menu a {
    font-size:58px;
  }
}

.header .social a,
.h-sq-25 .social a {
  border-bottom: 2px dashed transparent;
}

.menu a:hover,
.menu a:focus,
.menu a[aria-current] {
  text-decoration: none;
  border-color: var(--color-darker);
  display:inline-block;
}

.header .social a:hover {
  border-color: var(--color-darker);
}

.header .menu { margin-bottom: calc(3.4 * var(--element-height)); }

.header .social {
  position:absolute;
  bottom: 5em;
}
.header .social a {
  display:block;
  display:inline-block; /* Fix full width bottom dash hope nothing breaks */
  font-size:1.75vw;
  line-height:1.5em;
  text-transform:uppercase;
}

.h-sq-25 .social a {
  display: block;
  text-decoration:none;
  line-height: 1.25em;
  font-size: 2.9vw;
  text-align:center;
}

.h-sq-25 .social a:hover,
.h-sq-25 .social a:focus {
  text-decoration: none;
  border-color: var(--color-darker);
}

/* ==== Headers, Typography ==== */

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: var(--font-weight-bold);
  line-height: 1.2em;
}

.text {
  line-height: 1.15em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.align-center {
  text-align: center;
}

.text-white,
.text-white .column h2 {
  color:white;
}

/* ==== Images ==== */

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

figure {
  line-height:0
}

.illustration svg {
  width:100%;
  height:auto;
  max-height:max-content;
  max-height: -webkit-fill-available;
}

span.caption {
  position: absolute;
  right: 10px;
  color: var(--color-dark-grey);
  bottom: 10px;
  text-transform:uppercase;
  font-size:14px;
}

.block-type-image img {
  max-width: 100%;
}

@media (max-width:767px) {
  span.caption {font-size:10px}
}

/* ========== Illustrations and backgrounds ========== */

.illustration [class^="cls"], .illustration path {
  stroke-dasharray: 7 5 !important;
  stroke-width: 2px !important;
}

.illu {margin: var(--spacing-unit) 0;}

.illu > svg {
  width: 100%; 
  height:auto;
}

.img--fill {
  position:relative;
  background-repeat:no-repeat;
  background-size:cover;
}

.img--fill > img {
  width:100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.block-type-image:has(.illustration) ~ .block:not(.block-type-image) {
  position:relative;
}

/* ========== Footer ========== */

.footer {
  padding: var(--spacing-unit);
  line-height: 1.5em;
  background: var(--color-grey);
}

.colophon {
  padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
  font-size: 0.75em;
  line-height: 1.5em;
  background: var(--color-grey-bottom);
  display:flex;
  justify-content: space-between;
}

.footer a {font-weight: var(--font-weight-thin);}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p,
.footer a {
  color: var(--color-dark);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
  border-bottom: thin dashed var(--color-text);
}

.footer .grid:last-child {margin:70px 0 20px;}
.footer .grid > .column > p {margin-bottom:0;font-size:14px;}
.footer .tagline p {margin-left:1rem}

.footer .tagline .btn-link {min-width:0;position:relative}
.footer .tagline .btn-link:first-child {z-index:2}

.footer .btn-link.__dark {margin-bottom:0;min-width:12em;}
.footer .btn-link.__light.btn-city:hover {color:inherit}
.partner-logos li {
  display: inline-block;
  margin-right:40px;
}

.partner-logos li:last-child {margin-right:0;}

.partner-logos li img {
  max-height:48px;
  width:auto;
  vertical-align:bottom;
}

.tagline {
         display:flex; align-items:center;
      }
      @media screen and (max-width:480px) {
        .tagline,.colophon {
          display:block;
        }
        .tagline > span {display:inline-block;}
        .footer .tagline > p {
          margin: 1em 0;
        }
      }

/* ========== Layout ========== */

.grid {
  --columns: 12;
  --gutter: 0;
  display: grid;
  grid-gap: var(--gutter);
  grid-gap: 0;
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom: var(--gutter);
}

.layout.grid > .column > .block:not(.block-type-image)
.layout.grid > .column > .block:not(.block-type-image) {
  padding: var(--padding);
}

@media (max-width:767px) {
  .layout.grid > .column > .block.block-type-againblock {
    padding-top:var(--element-height);
  }
  
}

.block-type-text p:not(:last-child) {
  margin-bottom:1.5em;
}

.layout.grid .column.text {
  padding: calc(1.5 * var(--padding));
}

.grid > .column > p {
  font-size: var(--font-size-2);
  font-weight: var(--font-weight-thin);
  margin-bottom: 30px;
  line-height:1.5em;
}

.grid > .column > p:last-child {margin-bottom:0}

/*.layout.grid > .column[style*="--columns:6"],
.layout.grid:not(.col-1-grid) > .column[style*="--columns:6"] .block-type-againblock,
.layout.grid > .column[style*="--columns:6"] .block-type-topic {
  min-height: calc((100vw - var(--padding)) / 2);
}*/
.layout.grid > .column[style*="--columns:3"] {
  min-height: calc((100vw - var(--padding)) / 4);
}

.layout.grid > .column > .text > figure {
  margin: calc( var(--padding) * -1 )
}




.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}


.layout.grid .column { position:relative;}

.layout.grid .column h1 {
  color: var(--color-dark);
  font-size:75px;
  font-weight: var(--font-weight-normal);
  margin: 3em auto 1em;
  text-align: center;
}





@media (max-width:767px) {
  .topline + .column > .block:first-child {
    padding-top:var(--element-height)!important;
  }

  section.layout.grid:first-of-type > .topline {
    top: calc(2 * var(--spacing-unit) + var(--element-height))
  }
}

.column .glide h2 {
  color:#fff;
  max-width:83vw;
}
@media screen and (min-width:768px) {
  .column .glide h2 {
    max-width:83vw;
  }
}

/* Slideshows */
section:has(.glide) {
  background-size: cover;
}

.section-map,
.section-guide {background-size: auto 95% !important;padding: var(--spacing-unit);}
.section-price {background-size: auto 120% !important;}

.page-price-calculator .glossary {
  text-align: left;
}

.column h2,
.column h3,
.column h4 {
  color: var(--color-dark);
  font-weight: var(--font-weight-normal);
  text-align: center;
}

.column h2 + .btn-link {margin-top: 3rem;}
.column > h3 + .btn-link {margin-top: 2rem;}
.column h4 + .btn-link {margin-top: 1rem;}

.column h2 { font-size: 4.2vw; }
.column h3 { font-size: 42px; font-size: 2.8vw; }
.column h4 { font-size: 25px; font-size: 1.6vw; line-height: 1.3em}

.h-90 {min-height:90vh;overflow:hidden;}

.topline {
  font-size: 14px;
  line-height:1em;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.3px;
  top: var(--spacing-unit);
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 9;
}
.topline p {
  max-width:100% !important;
}

.layout.sq-col-2 .column {
  min-height: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/** NEW BLOCKS **/

.layout {
  position:relative;
}

@media screen and (min-width:768px) {
  .layout.h-90 .block-type-heading {
    max-width: 83vw;
  }
}


.layout.vertical__center .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--spacing-unit);
}


.layout.grid > .column > .block.block-type-heading.topline {
  padding:0;
}



.mobile-grid .column:first-child {
  display:grid;
  grid-template-columns: 50% 50%;
  grid-row: auto auto;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

@media screen and (max-width: 767px) {
  .menu-container {
    min-height: calc(var(--window-inner-height) - var(--element-height) - 3 * var(--spacing-unit));
  }

  .mobile-hidden {display:none;}

  .h-sq-50,
  .h-sq-25:not(.mobile-sq-50) {height:auto;min-height:100vw;}

  input[type="text"],
  input[type="email"],
  textarea {
    max-width: calc(100vw - 2.5rem)}

  .mobile-order-1 {order:1}
  .mobile-order-2 {order:2}
  .mobile-order-3 {order:3}
  .mobile-order-4 {order:4}

  .footer ul li a,
  .footer .social a {
    font-size: 25px;
    line-height: 34px;
  }

  .footer-menu ul {
    margin-bottom:1.5em;
  }

  .grid > .column {max-width:100vw;overflow:hidden;}
 
  .column h3, 
  .column h4 {font-size:7vw;}

  .column h2 + .btn-link,
  .column h3 + .btn-link,
  .column h4 + .btn-link {
    margin-top: calc(2 * var(--spacing-unit));
    margin-top: var(--spacing-unit);
  }

  .grid.team > .column > p {font-size:2.8vw; margin-bottom:1em}

  .menu a, .h-sq-25 .social a {
    font-size:11.2vw;
    line-height:1.17em;
  }

  .header .social a {font-size: 6.7vw;line-height:1.5em}

  .footer .grid > .column {
    margin-bottom: 20px
  }

  .footer .grid.footer-menu > .column{margin:0}

  .footer ul,
  .footer .social { text-align:center; }

  .footer .btn-link {min-width:0}

  .footer .tagline > * {flex-basis: 100%; order:2}

  .partner-logos {
    justify-content: space-around; 
    flex-wrap: wrap;
  }

  .partner-logos li {margin: 0 20px 20px;}
  

  #team-names {padding:.75em!important;}

.column h2 {font-size:9vw;}
/*.column h2,
.column h3,
.column h4 {
    max-width: 93.5%;
  }*/

  .height-mobile-auto {height:auto}

  .mobile-grid .column:first-child {display:grid;grid-template-columns: repeat(12, 1fr);}

  .mobile-grid .mobile-sq-50 {
    grid-column: span var(--columns);
    height:50vw;
    --columns:6;
    position:relative;
    padding-top: var(--element-height)!important;
  }

  .mobile-grid .mobile-sq-50 h3 {
    font-size:4vw;
  }

  .mobile-grid .mobile-sq-50 .btn-link {
    display:none;
  }

  .mobile-grid h3 a, .mobile-grid p a {text-decoration:underline;}

  

  #nl__block svg {display:none;}

  .footer .btn-link {
    font-size: 3.5vw;
  }

  

}

@media screen and (max-height:667px) {
     .menu a, .h-sq-25 .social a {
        font-size: 6vh;
        line-height: 110%;}
      .header .social a {
        font-size: 3vh;
        line-height: 1.5em;
    }
}

/* ====== Block styles ====== */

.block-type-heading,
.block-type-text,
.block-type-againblock,
.block-type-list {
  padding:var(--spacing-unit);
}

.block + .block {
  padding-top:0;
}

.block-type-againblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:flex-end;
  padding: var(--spacing-unit);
  gap: var(--spacing-unit);
  background-position:center;
}

.block-type-againblock.text-left * {
  text-align:left
}

.h-90.vertical__center {
  gap:var(--spacing-unit)
}

.section-imprint .column:first-child,
.section-privacy .column:first-child {
  padding-top: calc(var(--element-height) + var(--spacing-unit))
}

@media screen and (min-width:768px) {

  .block-type-againblock {
    gap: var(--element-height);
    background-size:cover;
  }

  .sq-col-2 .block-type-againblock,
  .block-type-againblock,
  .block-type-topic,
  .h-90 .column {
    padding: calc(2* var(--spacing-unit));
    padding-bottom: calc(4* var(--spacing-unit));
  }
}

.vertical__center,
.block-type-againblock.vertical__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.layout.grid.vertical__center {
  display:grid;
}


.block-type-againblock.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:baseline;
  gap: 2em;
  flex-direction:row;
}

.block-type-againblock.button-row .btn-link {
  margin:0;
}

.block-type-againblock.button-dark .btn-link {
  background: var(--color-dark);
  color: var(--color-white);
}

.block-type-againblock.button-dark .btn-link a {
  color: var(--color-white);
}
.block-type-againblock.button-dark .btn-link:after {
  filter: invert(1);
}

@media screen and (min-width:768px) {
  .illustration-absolute .illustration {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
  }
}

.block-type-text a,
.block-type-list a {
  text-decoration: underline;
}

.block-type-text + .block-type-heading {
  margin-top:6em
}




@media screen and (min-width:768px) {

  .block-type-text.size-xl {margin-bottom:3em;}
  
}





/* ========== Forms ========== */

.field {
  margin-bottom:.85em;
}

/* Remove shadows, Etc */ 
input[type="submit"],
input[type="text"],
input[type="email"],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-family-sans);
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
*:-webkit-direct-focus {
  outline:none !important;
  outline-width: 0 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
textarea:focus-visible {
  border: var(--border-dashed);
  outline: none !important;
}

input[type="submit"] {
  font-size: var(--font-size-1);
  cursor: pointer; 
}

input[type="text"],
input[type="email"] {
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-thin);
  font-size: 1em;
  border: var(--border-solid);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: var(--color-darker);
  background-color: #fff;
  box-sizing: border-box;
  height: var(--element-height);
  padding: 0px 1em;
  line-height: var(--element-height);
  margin: 0;
  width: 360px;
  vertical-align: top;
}

textarea {
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-thin);
  font-size: 1em;
  padding: 1em;
  border: var(--border-solid);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: var(--color-darker);
  background-color: #fff;
  width: 360px;
  text-align:left;
}

.honeypot {
  position: absolute;
  left: -9999px;
}



/* ========== Cookie modal ========== */

#cookie-modal.cookie-modal {
  background:transparent;
  z-index:10010;
}

#cookie-modal .cookie-modal__text {
  background: white;
  border-radius: calc(var(--element-height) / 2);
  border: var(--border-dashed);
  color: var(--color-darker);
  font-size: 14px;
  padding: 0 var(--spacing-unit);
  margin-right: var(--spacing-unit);
  margin-bottom: 0;
  flex-grow: 100;
  line-height: 1em;
}

@media screen and (min-width: 768px) {
  #cookie-modal .cookie-modal__text {
    line-height: var(--element-height);
  }
}

#cookie-modal .cookie-modal__title,
#cookie-modal .cookie-modal__options {
  display: none;
}

#cookie-modal .cookie-modal__content {
  margin: 0;
  display: flex;
  max-width: 100%;
  padding: var(--spacing-unit);
  background-color: transparent;
  position: fixed;
  bottom: 0;
  box-shadow: none;
  width:100%;
}

#cookie-modal .cookie-modal__button {
  border-radius: calc(var(--element-height) / 2);
  font-size:14px;
  font-weight:500;
  border: var(--border-solid);
  text-transform: uppercase;
  color:var(--color-darker);
  line-height: var(--element-height);
  padding: 0 var(--spacing-unit);
  text-align:center;
}

#cookie-modal .cookie-modal__button.primary {
  background: var(--color-darker);
  color:white;
}

#cookie-deny {background:white;}

@media screen and (max-width:480px) {
  #cookie-modal .cookie-modal__content {display:block}
  #cookie-modal .cookie-modal__text {margin:0 0 1em;border-radius:16px;padding:13px 16px 16px;line-height:18px}
  #cookie-modal .cookie-modal__buttons {
    width:100%; justify-content: space-between;
  }
  #cookie-accept,#cookie-deny {display:block}
  #cookie-modal .cookie-modal__button {margin-right:0; flex-basis: 48%}

}

.block-type-gallery ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 200px));
  grid-auto-rows: auto;
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.block-type-gallery li {
  padding: 1rem;
}

.block-type-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */



@media screen and (min-width: 768px) {

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-menu.grid {grid-template-columns: repeat(8, 1fr);}

  .grid > .column {
    grid-column: span var(--columns);
  }

  .h-90,.h-sq-50,.h-sq-25 {min-height:0;}
  .h-90 {min-height:90vh;}
  .h-sq-50 {height:50vw;}
  .h-sq-25 {
    height:25vw !important;
    width:25vw;
    position:relative;
  }

  .col-2-grid .column:last-child {
    display: flex;
    flex-wrap: wrap;
  }

  .h-90, .img--fill {
    background-size: cover;
    background-repeat: no-repeat;
   background-position: center; 
  }

  .h-sq-25 {
   background-size:contain;
   background-repeat: no-repeat;
   background-position: center; 
  }

  .h-sq-25 h3 {
    font-size: 1.6vw;
  }

  

  #mc_embed_signup {
    margin-top:2.5em;
  }

  .column.h-90 p {
    max-width: 83vw;
  }

  .desktop-hidden {display:none;}
  
}


#mc_embed_signup_scroll {
  display: flex;
  flex-direction: column;
  gap:20px;
}


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

  .btn-outline-primary {
    padding: 0 1em;
  }

  .layout.sq-col-2 .column {
    min-height:calc(100vw - 2* var(--spacing-unit));
  }

  .block-type-againblock {
        padding-bottom: calc(4* var(--spacing-unit));
  }

}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .layout.grid .column h4 {font-size: 18px}
  .topline {font-size:12px;top:14px}
}


/* Knowledge */

.knowledge-intro h3 {
  font-size: 3.5vw;
}

@media screen and (min-width:768px) {
  .knowledge-intro {
    background-image: url(/assets/images/knowledge/knowledge-intro-bg-desktop-2.svg);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
  }
}
  
@media screen and (max-width:767px) {
  .knowledge-intro {
    background-image: url(/assets/images/knowledge/knowledge-themes_tshirt.svg);
    background-size: 70%;
    background-repeat:no-repeat;
    background-position:bottom 20px center;
    justify-content: flex-start;
    padding-top: 140px!important;
  }

  .knowledge-intro h3 {
    font-size: 8vw;
  }
}



/* ========== Sliders ========== */

.glide {
    position: relative;
    width: 100%;
    box-sizing: border-box; 
    max-height:100%;
  }
  
  .glide, .glide__track, .glide__slides { height:100%; }
    .glide * {
      box-sizing: inherit; }
    .glide__track {
      overflow: hidden; max-width:100vw}
    .glide__slides {
      position: relative;
      width: 100%;
      list-style: none;
      backface-visibility: hidden;
      transform-style: preserve-3d;
      touch-action: pan-Y;
      overflow: hidden;
      padding: 0;
      white-space: nowrap;
      display: flex;
      flex-wrap: nowrap;
      will-change: transform; }
      .glide__slides--dragging {
        user-select: none; }
    .glide__slide {
      width: 100%;
      height: 100%;
      flex-shrink: 0;
      white-space: normal;
      user-select: none;
      -webkit-touch-callout: none;
      -webkit-tap-highlight-color: transparent;
      
      /* To vertically center items */
      display: flex;
      justify-content: center;
      align-items: center;
      margin:0!important;
      position:relative;
  
     }
  
  .glide__slide a {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none; }
  
  .glide__arrows {
    -webkit-touch-callout: none;
    user-select: none;
   }
  
  .glide__arrows button,
  .glide__bullets button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  
  .glide__bullets {
    -webkit-touch-callout: none;
    user-select: none; }
    
  .glide__arrow {
    background-color:transparent;
    position: absolute;
    display: block;
    height: 100%;
    width:50%;
    top: 50%;
    z-index: 2;
    color: transparent;
    opacity: 1;
    cursor: pointer;
    transition: opacity 150ms ease, border 300ms ease-in-out;
    transform: translateY(-50%);
    line-height: 1; }
  
    .glide__arrow:focus {
      outline: none; }
  
    .glide__arrow--left {
      background-image: url(../icons/slider-left.svg);
      background-repeat: no-repeat;
      background-position: center left 2em;
      background-size: 6vw;
      left: 0; }
    .glide__arrow--right {
      background-image: url(../icons/slider-right.svg);
      background-repeat: no-repeat;
      background-position: center right 2em;
      background-size: 6vw;
      right: 0; }
    .glide--no-bg {background-image: none;}
  
        .glide__arrow--disabled {
          opacity: 0.33; }
      
      .glide__bullets {
        position: absolute;
        z-index: 2;
        bottom: var(--spacing-unit);
        left: 50%;
        display: inline-flex;
        list-style: none;
        transform: translateX(-50%); }
      
      .glide__bullet {
        background-color: white;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        border: thin solid var(--color-dark);
        transition: all 300ms ease-in-out;
        cursor: pointer;
        line-height: 0;
        margin: 0 0.25em; }
        .glide__bullet:focus {
          outline: none; }
        .glide__bullet:hover, .glide__bullet:focus {
          background-color: var(--color-darker); }
        .glide__bullet--active { background-color: var(--color-dark); }
      
      .glide--swipeable {
        cursor: grab;
        cursor: -moz-grab;
        cursor: -webkit-grab; }
      
      .glide--dragging {
        cursor: grabbing;
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing; }
      
  @media screen and (max-width: 800px) {
    .glide--mobile-no-bg {background-image: none;}
    .arrows__ctl .glide__slide {padding: 0;}
    .glide__slide {
      
    /* style bug in safari */
      flex-grow:1;
      height:auto;
      min-height:100vw;
    }
  
    .glide, .glide__track, .glide__slides {
      flex-grow:1;
    }
  
    .h-90 .glide, .h-90 .glide__track, .h-90 .glide__slides {
      min-height: calc(90vh - (4 * var(--spacing-unit) + var(--element-height)))
    }
  
  }
  
  @media screen and (min-width: 768px) {
    .h-sq-50 .glide__track {max-width:50vw;}
  }