@charset "UTF-8";
/*------------------------------------*\
    STYLE.SCSS
\*------------------------------------*/
/**
 * Here we start to pull everything together into one big stylesheet.
 *
 * SETUP............Settings, tools, mixins, etc.
 * GENERIC..........normalize.css, reset, shared styles, etc.
 * BASE.............Basic HTML elements.
 * OBJECTS..........Objects, abstractions, design patterns.
 * GUI..............Components and modules.
 * TRUMPS...........Helpers, overrides, ‘trump-cards’.
 */
/*------------------------------------*\
    #SETUP
\*------------------------------------*/
/**
 * Settings, variables and tools.
 */
/*------------------------------------*\
    #SETTINGS
\*------------------------------------*/
/**
 * Pull in all the settings we require for this project.
 */
@font-face {
  font-family: "Sectra";
  src: url(./../fonts/gt-sectra-bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Sectra";
  src: url(./../fonts/gt-sectra-medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Sectra";
  src: url(./../fonts/gt-sectra-medium-italic.woff) format("woff"), url(./../fonts/gt-sectra-medium-italic.woff2) format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Sectra";
  src: url(./../fonts/gt-sectra-book.woff) format("woff"), url(./../fonts/gt-sectra-book.woff2) format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Noto";
  src: url(./../fonts/notosans-regular.woff) format("woff"), url(./../fonts/notosans-regular.woff2) format("woff2");
}
@font-face {
  font-family: "Noto";
  src: url(./../fonts/notosans-bold.woff) format("woff"), url(./../fonts/notosans-bold.woff2) format("woff2");
  font-weight: bold;
}
/* --- BLACK --- */
/* --- OFFBLACK --- */
/* --- YELLOW --- */
/* --- WARM YELLOW --- */
/* --- PURPLE --- */
/* --- MINT--- */
/* --- PINK--- */
/* --- BLUE--- */
/* --- SKY BLUE--- */
/* --- BLUE--- */
/* --- DE TROPEN GREEN--- */
/*------------------------------------*\
    #GENERIC
\*------------------------------------*/
/**
 * These are far reaching styles that affect and underpin every element on the
 * page, e.g. `* {}`.
 */
/*------------------------------------*\
    #GENERIC
\*------------------------------------*/
/**
 * Pull in all our generic styles, e.g. resets.
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  margin: 0;
}

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

[hidden] {
  display: none;
}

hr {
  margin: 1rem 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  clip: auto !important;
  color: crimson;
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  padding: 15px 23px 14px;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*------------------------------------*\
    #BASE
\*------------------------------------*/
/**
 * These are base HTML elements, things with no classes on them, e.g. `h1 {}`,
 * `blockquote {}`.
 */
/*------------------------------------*\
    #BASE
\*------------------------------------*/
/**
 * Pull in all the base files we want.
 */
body {
  padding: 0;
  margin: 0;
  background-color: #fcf6eb;
  color: #404042;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #404042;
    color: #fcf6eb;
  }
}

@media only screen and (min-width: 40em) {
  .page-content, .page-profile, .page-conferences {
    background-image: linear-gradient(90deg, #ebe2cc 0%, #ebe2cc 100%);
    background-repeat: repeat-y;
    background-size: 25% 100%;
  }
}
@media only screen and (min-width: 40em) and (prefers-color-scheme: dark) {
  .page-content, .page-profile, .page-conferences {
    background-image: none;
  }
}
@media only screen and (min-width: 60em) {
  .page-content, .page-profile, .page-conferences {
    background-image: url(./../images/background-pattern.png);
    background-repeat: repeat-y;
    background-size: 100%;
  }
}
@media only screen and (min-width: 60em) and (prefers-color-scheme: dark) {
  .page-content, .page-profile, .page-conferences {
    background-image: linear-gradient(90deg, #1f1d18 0%, #1f1d18 100%);
  }
}

main {
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  padding-top: 2rem;
  padding-bottom: calc((100vw - 200px) / 21);
}
@media only screen and (min-width: 40em) {
  main {
    padding-top: calc((100vw - 200px) / 21);
  }
}
.page-home main, .page-profile main, .page-conferences main {
  padding-top: 0;
}
.page-content main {
  padding-bottom: 10px;
}
.page-home main {
  display: block;
}

.page-content .content {
  padding-bottom: 50px;
}

body {
  font-family: "Sectra", Georgia, serif;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

em {
  font-weight: 700;
  font-style: normal;
}

.content em, .pagesection em {
  font-weight: normal !important;
  font-style: italic !important;
}

h1 + .intro {
  grid-column: 5/17;
  margin-bottom: calc((100vw - 200px) / 21);
}

.paragraph p, .paragraph ul, .paragraph ol {
  margin-bottom: 1em;
}

h1, h2, h3 {
  font-family: "Sectra", Georgia, serif;
}

h1 {
  line-height: 1.1;
  line-height: 0.95;
  margin-bottom: calc((100vw - 200px) / 21);
  grid-column: 5/20;
}
h1 {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(2.2916666667vw + 24.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 54px;
  }
}

h2 {
  line-height: 1.25;
  font-weight: 700;
}
h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  margin: 1rem 0;
}

a {
  color: #1f1d18;
}
@media (prefers-color-scheme: dark) {
  a {
    color: #fcf6eb;
  }
}
a:focus {
  outline: 2px dotted currentColor;
}

.arrowlink {
  position: relative;
  display: block;
  padding-left: 1.4rem;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
@media (prefers-color-scheme: dark) {
  .arrowlink {
    color: white;
  }
}
.arrowlink::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  background-image: url(./../images/icons/icon-right.svg);
  background-size: 1.1em 1.1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  transition: transform 0.1s ease-out;
}
@media (prefers-color-scheme: dark) {
  .arrowlink::before {
    background-image: url(./../images/icons/icon-right-white.svg);
  }
}
.arrowlink:hover, .arrowlink:focus {
  text-decoration: underline;
}
.arrowlink:focus {
  box-shadow: 0 0 0 4px #f1bc29;
}

.link--topic {
  display: block;
  padding: 0.75rem 1rem 0.75rem 10px;
  margin-bottom: calc((100vw - 200px) / 42);
  border-top: 3px solid #f1bc29;
  background-color: #404042;
  color: #d5d5db;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
}

.button, .feedback-form .choice-buttons .gfield_radio label, .post-password-form input[type=submit], .pagesection__intro .intro:not(.no-button) > a:last-child, .wp-block-button__link {
  position: relative;
  display: inline-block;
  padding: 0.4em 1.8em 0.4em 1em;
  border: 2px solid transparent;
  border-radius: 2px;
  background-color: #fff0ab;
  background-color: #f1bc29;
  box-shadow: 0 1px 1px 0 #bf9521;
  color: #1f1d18;
  font-family: "Sectra", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.1s ease-out, transform 0.1s ease-out, background-color 0.1s ease-out;
}
.button::after, .feedback-form .choice-buttons .gfield_radio label::after, .post-password-form input[type=submit]::after, .pagesection__intro .intro:not(.no-button) > a:last-child::after, .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 0.55em;
  top: 0.65em;
  background-image: url(./../images/icons/icon-right.svg);
  background-size: 1em 1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  transition: transform, 0.15s ease-out;
}
.button:hover, .feedback-form .choice-buttons .gfield_radio label:hover, .post-password-form input[type=submit]:hover, .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .button:focus, .feedback-form .choice-buttons .gfield_radio label:focus, .post-password-form input[type=submit]:focus, .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .wp-block-button__link:hover, .wp-block-button__link:focus {
  background-color: #fff0ab;
}
.button:hover::after, .feedback-form .choice-buttons .gfield_radio label:hover::after, .post-password-form input[type=submit]:hover::after, .pagesection__intro .intro:not(.no-button) > a:hover:last-child::after, .button:focus::after, .feedback-form .choice-buttons .gfield_radio label:focus::after, .post-password-form input[type=submit]:focus::after, .pagesection__intro .intro:not(.no-button) > a:focus:last-child::after, .wp-block-button__link:hover::after, .wp-block-button__link:focus::after {
  transform: translateX(0.25em);
}
.button:focus, .feedback-form .choice-buttons .gfield_radio label:focus, .post-password-form input[type=submit]:focus, .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .wp-block-button__link:focus {
  border: 2px solid #1f1d18;
  outline: none;
}
.page-conferences .button, .page-conferences .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .page-conferences label, .page-conferences .post-password-form input[type=submit], .post-password-form .page-conferences input[type=submit], .page-conferences .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .page-conferences .intro:not(.no-button) > a:last-child, .page-conferences .wp-block-button__link {
  background-color: #f1919c;
  box-shadow: 0 1px 1px 0 #bf737c;
}
.page-conferences .button:hover, .page-conferences .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .page-conferences label:hover, .page-conferences .post-password-form input[type=submit]:hover, .post-password-form .page-conferences input[type=submit]:hover, .page-conferences .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .page-conferences .intro:not(.no-button) > a:hover:last-child, .page-conferences .button:focus, .page-conferences .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .page-conferences label:focus, .page-conferences .post-password-form input[type=submit]:focus, .post-password-form .page-conferences input[type=submit]:focus, .page-conferences .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .page-conferences .intro:not(.no-button) > a:focus:last-child, .page-conferences .wp-block-button__link:hover, .page-conferences .wp-block-button__link:focus {
  background-color: #ffccd2;
}

.button--slim {
  font-size: 0.8em;
}
.button--slim:hover::after, .button--slim:focus::after {
  transform: translateX(4px);
}

.button--large {
  padding: 0.8em 1.8em 0.8em 1em;
}
.button--large::after {
  top: 1.1em;
}

.wp-block-button {
  margin-top: 1rem;
}

.wp-block-button__link {
  border-radius: 2px !important;
}

[type=submit] {
  padding-right: 1em;
}

table {
  border-top: 2px solid #1f1d18;
  margin-bottom: 1rem;
  width: 100%;
}
table th, table td {
  border-bottom: 1px solid rgba(31, 29, 24, 0.5);
  border-bottom: 1px solid #9e8f6a;
}
table td {
  padding: 10px 0;
}

ul {
  list-style-type: square;
  margin-bottom: 1rem;
  margin-left: 20px;
  padding-left: 10px;
}

ol {
  margin-bottom: 1rem;
  margin-left: 20px;
  padding-left: 10px;
}

.list--unstyled {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

li {
  margin-bottom: 0.4em;
}

.content > li {
  list-style-type: square;
  margin-left: 26px;
}

.mail {
  background-image: url(./../images/icons/icon-email.svg);
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  background-position: left 50%;
  padding-left: 30px;
}

.phone {
  background-image: url(./../images/icons/icon-phone.svg);
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  background-position: left 50%;
  padding-left: 30px;
}

.icon-download {
  background-image: url(./../images/icons/icon-download-book.svg);
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  background-position: left 50%;
  padding: 5px 0 5px 30px;
}

.linkedin_url {
  background-image: url("./../images/icons/icon-linkedin.svg");
  background-size: 1.4rem 1.6rem;
  background-repeat: no-repeat;
  background-position: left 50%;
  padding-left: 30px;
}

.visuallyhidden, .sr-only {
  position: absolute !important;
  display: inline-block !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
}

form {
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
form h2, form h3 {
  margin-bottom: 20px;
  font-size: 1.25em;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}

input:not([type=submit]) {
  font-size: inherit;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
input:not([type=submit])[type=text], input:not([type=submit])[type=number], input:not([type=submit])[type=email], input:not([type=submit])[type=tel], input:not([type=submit])[type=text] {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(31, 29, 24, 0.5);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) inset;
}
input:not([type=submit]):focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75);
}

select {
  font-size: inherit;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: block;
  width: 100%;
  padding: 10px;
}

textarea {
  font-size: inherit;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(31, 29, 24, 0.5);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) inset;
}

.select-wrapper,
.ginput_container_select {
  display: block;
  width: 100%;
  border: 1px solid rgba(31, 29, 24, 0.5);
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
}
.select-wrapper select,
.ginput_container_select select {
  padding: 10px;
  width: 100%;
  background: transparent;
  border: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.select-wrapper:after,
.ginput_container_select:after {
  position: absolute;
  top: 18px;
  right: 10px;
  border: 6.6666666667px solid transparent;
  border-top: 10px solid #404042;
  width: 0;
  height: 0;
  content: "";
}

fieldset {
  border: none;
  padding: 10px 0 0 0;
}

legend {
  font-family: "Sectra", Georgia, serif;
  line-height: 1.25;
}
legend {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  legend {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  legend {
    font-size: 24px;
  }
}

/* Gravity Forms */
.gform_fields {
  padding: 0;
  list-style: none;
  margin-left: 0;
}

.gfield {
  margin-bottom: 20px;
}

.gfield_radio, .gfield_checkbox {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
.gfield_radio li, .gfield_checkbox li {
  display: flex;
  align-items: center;
}
.gfield_radio input, .gfield_radio label, .gfield_checkbox input, .gfield_checkbox label {
  display: inline-block;
  width: auto;
}
.gfield_radio label, .gfield_checkbox label {
  padding-left: 10px;
}
@media only screen and (min-width: 40em) {
  @supports (display: grid) {
    .gfield_radio, .gfield_checkbox {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
.gfield_radio [type=text], .gfield_checkbox [type=text] {
  margin-left: 10px;
}

form [role=alert] {
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 2rem;
}
form .validation_error {
  margin-bottom: 1rem;
  font-weight: 700;
}

/*
 * Datepicker:
 */
.ginput_container_date {
  position: relative;
}
.ginput_container_date .ui-datepicker-trigger {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  right: 15px;
  top: 15px;
}

.ui-datepicker {
  background: white;
  border: 1px solid #404042;
  padding: 10px;
  border-radius: 0 0 4px 4px;
}
.ui-datepicker .ui-datepicker-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.ui-datepicker .ui-datepicker-title {
  flex: 1 0 100%;
  display: flex;
  justify-content: space-between;
}
.ui-datepicker .ui-datepicker-title select {
  flex: 1;
  max-width: 45%;
}
.ui-datepicker .ui-datepicker-calendar {
  width: 100%;
  margin-top: 10px;
  border: 0;
}
.ui-datepicker .ui-datepicker-calendar tr th, .ui-datepicker .ui-datepicker-calendar tr td {
  border-bottom: 0;
  border-collapse: collapse;
  text-align: center;
  vertical-align: middle;
  line-height: 25px;
  border: 2px solid transparent;
}
.ui-datepicker .ui-datepicker-calendar tr td:not(.ui-datepicker-unselectable):hover, .ui-datepicker .ui-datepicker-calendar tr td:not(.ui-datepicker-unselectable):focus {
  border-color: #404042;
}
.ui-datepicker .ui-datepicker-calendar tbody tr:nth-child(even) td {
  background: #f8f8f8;
}
.ui-datepicker .ui-datepicker-calendar tr th {
  background: #f1bc29;
  color: white;
}

@supports (display: grid) {
  .gf_name_has_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}

.gfield_description.validation_message {
  position: relative;
  margin-top: 5px;
  font-size: 0.9em;
  padding-left: 1.4rem;
  color: #c00;
}
.gfield_description.validation_message:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 2px;
  background-image: url(./../images/icons/icon-alert.svg);
  background-size: 1.1em 1.1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
}

/**
 *  Payments
 */
.gfield_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gfield_price > label {
  flex: 1;
}

.ginput_container_singleproduct {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  flex: 1;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ginput_container_singleproduct {
    height: 73px;
  }
}
.ginput_container_singleproduct span {
  display: none;
}
.ginput_container_singleproduct .ginput_quantity_label {
  display: block;
  width: 100%;
  text-align: right;
}
.ginput_container_singleproduct .ginput_quantity {
  flex: 3;
}

.gfield_total {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 10px;
  margin: 0 -20px 10px -20px;
  background: #ebe2cc;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gfield.hide-quantity-label {
    height: 42px;
  }
}
.gfield.hide-quantity-label .ginput_quantity_label {
  display: none;
}

.gfield_price label {
  padding-right: 20px;
}

.pronamic_pay_display_icons li {
  display: flex;
}
.pronamic_pay_display_icons li label {
  display: flex;
}
.pronamic_pay_display_icons li label img {
  width: auto;
  height: auto;
}

/*------------------------------------*\
    #OBJECTS
\*------------------------------------*/
/**
 * These are the objects, abstractions and design patterns.
 */
/*------------------------------------*\
    #OBJECTS
\*------------------------------------*/
/**
 * Pull in all our objects and abstractions.
 */
[role=banner] {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  padding: 1.6rem 2rem 2rem;
  background-image: linear-gradient(#ffde44 98%, #f1bc29 98%), linear-gradient(#1f1d18, #1f1d18), url(./../images/kartel-header.svg);
  background-size: 100% 8.9em, 100% 6rem, 50% auto;
  background-repeat: no-repeat, repeat-x, repeat-x;
  background-position: left top, left bottom 0.4rem, left bottom;
}
@media (prefers-color-scheme: dark) {
  [role=banner] {
    background-image: linear-gradient(#f7ca00 98%, #f1bc29 98%), linear-gradient(#1f1d18, #1f1d18), url(./../images/kartel-header.svg);
  }
}
@media only screen and (max-width: 40em) {
  [role=banner] {
    max-height: 100px;
    padding: 1rem 1rem;
    border-bottom: 6px solid #1f1d18;
  }
}
[role=banner] .logo {
  /*		position: absolute;
  		left: 2rem;
  		top: 2rem;*/
  flex-shrink: 0;
  height: 62px;
  margin-bottom: 2rem;
}
[role=banner] .logo img {
  height: 100%;
  width: auto;
  max-width: initial;
}
.page-home [role=banner], .page-search:not(.page-contentpage-impact-areas) [role=banner] {
  padding-bottom: 0;
  background-size: 100% 6.6em, 100% 6rem, 50% auto;
}
.page-home [role=banner] .logo, .page-search:not(.page-contentpage-impact-areas) [role=banner] .logo {
  margin-bottom: 2.4rem;
}

.search {
  font-size: 0.875em;
}
@media only screen and (max-width: 40em) {
  .search {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    background-color: transparent;
    padding: 1em;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    background-color: transparent;
    border-top: 1px solid transparent;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
  }
}

.toggle-menu {
  text-align: center;
  text-transform: uppercase;
  background: none;
  border: 1px solid #1f1d18;
  display: none;
  align-self: flex-start;
  margin: 20px 0 0 0;
  padding: 5px;
  border-radius: 2px;
}
@media only screen and (max-width: 40em) {
  .toggle-menu {
    display: inline-block;
    z-index: 20;
  }
}
.toggle-menu img {
  margin: 0;
  display: none;
}
.toggle-menu .close-icon, .toggle-menu .close-icon + p {
  display: none;
}
.toggle-menu .close-icon + p {
  color: #ffde44;
}

.switch-language {
  text-align: right;
  text-transform: uppercase;
  font-size: 0.8em;
}
@media only screen and (max-width: 40em) {
  .switch-language a, .switch-language span {
    color: white;
    display: block;
    padding: 2.5px 0;
  }
}
@media only screen and (min-width: 40em) {
  .switch-language :first-child {
    margin-right: 10px;
  }
}
@media (prefers-color-scheme: dark) and (min-width: 40em) {
  .switch-language a, .switch-language span {
    color: black;
  }
}

.sitesearch {
  padding: 0;
  margin: 0;
  background-color: transparent;
  display: flex;
}
@media only screen and (min-width: 40em) {
  .sitesearch {
    margin-top: 20px;
  }
}
.sitesearch__input {
  padding: 5px 10px;
  background-color: white;
  border: 1px solid #f1bc29;
  border-radius: 3px 0 0 3px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25) inset;
  transition: background-color 0.1s ease-out;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
@media only screen and (min-width: 40em) {
  .sitesearch__input {
    width: 10em;
    background-color: #ffe678;
  }
}
.sitesearch__input:hover, .sitesearch__input:focus {
  background-color: white;
}
.sitesearch__input:not(:-moz-placeholder-shown) {
  background-color: white;
}
.sitesearch__input:not(:-ms-input-placeholder) {
  background-color: white;
}
.sitesearch__input:not(:placeholder-shown) {
  background-color: white;
}
.sitesearch__input:focus {
  border: 1px solid rgba(31, 29, 24, 0.8);
  box-shadow: none;
  outline: none;
}
.sitesearch__input:focus + button {
  border: 1px solid rgba(31, 29, 24, 0.8);
  border-left: none;
  outline: 2px solid #1f1d18;
}
.sitesearch__input::-moz-placeholder {
  color: #1f1d18;
  opacity: 0.75;
}
.sitesearch__input:-ms-input-placeholder {
  color: #1f1d18;
  opacity: 0.75;
}
.sitesearch__input::placeholder {
  color: #1f1d18;
  opacity: 0.75;
}
.sitesearch button {
  padding: 5px 10px;
  border-radius: 0 3px 3px 0;
  border: 1px solid #f1bc29;
  border-left: none;
  font-size: inherit;
  background: #f7ca00 url(./../images/icons/icon-search.svg) no-repeat 50%;
  background-size: 1.4em;
  min-width: 2.8em;
}
.sitesearch button:hover, .sitesearch button:focus {
  background-color: #1f1d18;
  background-image: url(./../images/icons/icon-search-white.svg);
}

.skiplinks {
  background-color: #1f1d18;
}
.skiplinks a {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  color: #ffde44;
  line-height: 1.25;
}
.skiplinks a {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .skiplinks a {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .skiplinks a {
    font-size: 24px;
  }
}
.skiplinks a:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  outline: none;
  box-shadow: none;
  padding: 10px;
  text-decoration: underline;
}

@media only screen and (max-width: 40em) {
  [role=banner] .search .switch-language, [role=banner] .search .sitesearch {
    display: none;
  }
  [role=banner].active [role=navigation] {
    display: block;
    pointer-events: auto;
  }
  [role=banner].active .toggle-menu {
    border-color: #ffde44;
  }
  [role=banner].active .toggle-menu .menu-icon + p {
    display: none;
  }
  [role=banner].active .toggle-menu .close-icon + p {
    display: inline-block;
  }
  [role=banner].active .toggle-menu img {
    display: none;
  }
  [role=banner].active .search {
    background: black;
    border-color: #ffde44;
  }
  [role=banner].active .search .switch-language {
    display: block;
  }
  [role=banner].active .search .sitesearch {
    display: flex;
  }
}

header [role=navigation] {
  width: 100%;
  flex: 1 0 100%;
  /* SUBNAV */
}
header [role=navigation] ul {
  list-style: none;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 100;
  font-size: 1em;
  margin-left: 0;
  padding-left: 0;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] ul {
    display: flex;
    position: relative;
    margin-left: 0;
    text-align: left;
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 60em) {
  header [role=navigation] ul {
    margin-left: 63px;
  }
}
header [role=navigation] ul li {
  border-top: 3px solid transparent;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] ul li:not(:last-child) {
    margin-right: 1.2rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 60em) {
  header [role=navigation] ul li:not(:last-child) {
    margin-right: 2.4rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 40em) {
  header [role=navigation] > ul > li {
    padding: 0.5rem 1rem 0.125rem;
  }
}
header [role=navigation] a {
  color: #ffde44;
  text-decoration: none;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] a {
    color: #1f1d18;
  }
}
header [role=navigation] a:hover, header [role=navigation] a:focus {
  border-bottom: 1px solid currentColor;
}
header [role=navigation] a:focus {
  box-shadow: 0 0 0 4px currentColor;
  text-decoration: none;
  border-bottom: none;
}
header [role=navigation] a.breadcrumb {
  border-bottom: 1px solid currentColor;
  display: none;
}
header [role=navigation] span.arrow-right {
  color: #ffde44;
  padding: 0 10px;
  display: none;
}
header [role=navigation] [aria-current=page] {
  color: #ffe35e;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] [aria-current=page] {
    border-bottom: 1px solid currentColor;
  }
}
header [role=navigation] .nav--active {
  padding-bottom: 1rem;
}
header [role=navigation] .nav--active > a {
  color: #ffde44;
}
header [role=navigation] .nav--active .arrow-right, header [role=navigation] .nav--active .breadcrumb {
  display: inline-block;
}
header [role=navigation] .nav--active ul {
  display: block;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] .nav--active {
    background-color: #1f1d18;
    border-top: 3px solid #f1bc29;
  }
  header [role=navigation] .nav--active ul {
    display: flex;
  }
}
header [role=navigation] ul ul {
  margin-top: 0.6em;
  margin-left: 0;
  padding-left: 1rem;
  border-left: 1px solid currentColor;
  padding-top: 0.25rem;
  background-color: transparent;
  font-size: 1.6rem;
  color: #ffde44;
  font-weight: 400;
  display: none;
}
header [role=navigation] ul ul .nav--active {
  border-top: 0;
}
@media only screen and (min-width: 40em) {
  header [role=navigation] ul ul {
    position: absolute;
    left: 0;
    top: 3.2rem;
    margin-top: 0;
    font-size: 1rem;
    border-left: none;
  }
}
@media only screen and (min-width: 40em) {
  header [role=navigation] ul ul {
    font-size: 1.1rem;
  }
}
header [role=navigation] ul ul li {
  border-top: none;
}
header [role=navigation] ul ul li.nav--active a {
  border-bottom: 2px solid #ffde44;
}
@media only screen and (min-width: 55em) {
  header [role=navigation] ul ul li:not(:last-child) {
    margin-right: 4rem;
    padding-left: 0;
  }
}
@media only screen and (max-width: 55em) {
  header [role=navigation] ul ul li:first-child {
    padding-left: 0;
  }
}
header [role=navigation] ul ul a {
  color: currentColor;
}
header [role=navigation] ul ul a:hover, header [role=navigation] ul ul a:focus {
  border-bottom-width: 2px;
}
header [role=navigation] ul ul [aria-current=page] {
  border-bottom: 2px solid currentColor;
}
.page-home header [role=navigation] ul, .page-search:not(.page-contentpage-knowledge-centre) header [role=navigation] ul {
  margin-bottom: 2em;
}
@media only screen and (min-width: 40em) {
  .page-home header [role=navigation] ul, .page-search:not(.page-contentpage-knowledge-centre) header [role=navigation] ul {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.page-home header [role=navigation] a, .page-search:not(.page-contentpage-knowledge-centre) header [role=navigation] a {
  color: #f1bc29;
  font-weight: 400;
}
.page-home header [role=navigation] a:hover, .page-home header [role=navigation] a:focus, .page-search:not(.page-contentpage-knowledge-centre) header [role=navigation] a:hover, .page-search:not(.page-contentpage-knowledge-centre) header [role=navigation] a:focus {
  border-bottom-width: 2px;
}
@media only screen and (max-width: 40em) {
  header [role=navigation] {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    background-color: #1f1d18;
    padding: 2em 1em;
    display: none;
    pointer-events: none;
  }
}

@media only screen and (max-width: 40em) {
  .cookie-notice.active ~ [role=banner].active [role=navigation] {
    padding-top: 10rem;
  }
}

article {
  grid-column: 1/span 21;
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  margin-bottom: 2rem;
}
article header {
  grid-column: 1/22;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 60em) {
  article header {
    grid-row: 1;
  }
}
@media only screen and (min-width: 40em) {
  article header {
    grid-column: 5/22;
  }
}
@media only screen and (min-width: 40em) and (max-width: 60em) {
  article header {
    padding-left: 9%;
  }
}
@media only screen and (min-width: 60em) {
  article header {
    grid-column: 5/17;
  }
}
article header h1 {
  margin-bottom: 1rem;
  color: #1f1d18;
}
@media (prefers-color-scheme: dark) {
  article header h1 {
    color: #fcf6eb;
  }
}
article header .subtitle {
  margin: 0;
  padding: 0;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #404042;
}
@media (prefers-color-scheme: dark) {
  article header .subtitle {
    color: #fcf6eb;
  }
}
article .meta {
  grid-column: 1/22;
  align-self: start;
  margin-top: calc((100vw - 200px) / 42);
  z-index: 1;
  margin: 0 10px;
  padding: 10px 10px 0;
  line-height: 1.25;
  font-weight: 700;
  border-top: 1px solid #404042;
}
article .meta {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  article .meta {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  article .meta {
    font-size: 24px;
  }
}
@media only screen and (min-width: 40em) {
  article .meta {
    grid-column: 1/22;
    grid-row: 2;
    width: 22.3%;
    margin-top: calc((100vw - 200px) / 21);
  }
}
@media only screen and (min-width: 60em) {
  article .meta {
    width: auto;
    grid-column: 1/5;
  }
}
article .date {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
article aside {
  grid-column: 1/22;
  padding: 0 10px;
}
@media only screen and (min-width: 40em) {
  article aside {
    padding-left: 25%;
    margin-left: 10px;
    margin-top: calc((100vw - 200px) / 21);
  }
}
@media only screen and (min-width: 60em) {
  article aside {
    grid-column: 17/22;
    grid-row: 2/span 4;
    padding: 0 10px calc((100vw - 200px) / 21) 10px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.content {
  grid-column: 1/22;
  grid-row-start: 2;
  padding: 0 0 calc((100vw - 200px) / 21);
  margin-bottom: 0;
  margin-top: calc((100vw - 200px) / 21);
}
@media only screen and (min-width: 40em) {
  .content {
    padding-left: 25%;
  }
}
@media only screen and (min-width: 60em) {
  .content {
    grid-column: 1/17;
    grid-template-columns: repeat(16, 1fr);
  }
}
.content p, .content ul, .content ol {
  margin-bottom: 1em;
}
.content > *:not(.media):not(.pagesection):not(.quotes) {
  padding-left: 10px;
  padding-right: 10px;
  grid-column: 1/22;
}
.content > *:not(.media):not(.pagesection):not(.quotes).collection ul {
  padding-left: 0;
}
@media only screen and (min-width: 40em) {
  .content > *:not(.media):not(.pagesection):not(.quotes) {
    grid-column: 5/22;
  }
}
@media only screen and (min-width: 60em) {
  .content > *:not(.media):not(.pagesection):not(.quotes) {
    grid-column: 5/17;
  }
}
.content > h2 {
  margin: 0;
  line-height: 1.25;
  font-weight: 700;
}
.content > h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .content > h2 {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .content > h2 {
    font-size: 24px;
  }
}
.content > h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.content > .intro {
  font-weight: 400;
  font-size: 1.333em;
}
.content img {
  display: block;
  width: 100%;
}
.content .pagesection {
  grid-template-columns: repeat(16, 1fr);
}

@media only screen and (max-width: 60em) {
  .study-content {
    grid-row-start: 3;
  }
}

.summary {
  list-style: none;
  padding: 0;
  margin-left: 10px;
  font-size: 18px;
  color: #404042;
}
.summary > li + li {
  margin-top: calc((100vw - 200px) / 42);
}
.summary em {
  display: block;
  font-size: 0.667em;
  font-family: "Noto";
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (prefers-color-scheme: dark) {
  .summary {
    color: #f2e3bb;
  }
}

.gallery {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.gallery .gallery--media {
  order: -1;
  position: relative;
}
@media only screen and (min-width: 40em) {
  .gallery {
    grid-column: 1/-1;
    display: contents;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.gallery nav, .gallery > h2 {
  grid-column: 1/5;
  border-top: 1px solid #404042;
}
@media only screen and (min-width: 40em) {
  .gallery nav, .gallery > h2 {
    margin: calc((100vw - 200px) / 42) 10px 0 10px;
    padding: 10px 10px 0;
  }
}
.gallery nav {
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  display: grid;
  border: 0;
  /** IE FIX **/
}
@media only screen and (min-width: 40em) {
  .gallery nav {
    border-top: 1px solid #404042;
  }
}
.gallery nav a {
  position: relative;
  min-width: 67px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 40em) {
  .gallery nav a {
    margin-bottom: 0;
  }
}
.gallery nav a img {
  display: block;
}
.gallery nav a .play-btn {
  position: absolute;
  border: 16px solid white;
  border-color: transparent transparent transparent white;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -8px;
}
.gallery nav a:hover {
  opacity: 0.6;
}
@media only screen and (min-width: 40em) {
  .gallery nav {
    position: absolute;
    display: flex;
    right: 81%;
    margin-top: 8px;
    height: 0;
  }
  .gallery nav a {
    flex: 1 0 25%;
    max-width: calc(33% - 10px);
    margin: 0 10px 10px 0;
  }
}
.gallery nav h3 {
  flex: 1 0 100%;
  padding: 0 0 10px 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gallery nav {
    right: auto;
    left: -17vw;
    width: 17vw;
  }
}
.gallery figure {
  grid-column: 5/-1;
  margin-bottom: calc((100vw - 200px) / 42);
}
@media only screen and (min-width: 40em) {
  .gallery figure {
    padding: 0 10px;
    margin-top: calc((100vw - 200px) / 42);
  }
}
.gallery figcaption {
  font-family: "Noto";
  font-size: 0.8em;
  font-style: italic;
}
.gallery .gallery--media {
  grid-column: 5/-1;
}
.gallery .gallery--media figure {
  display: none;
}
.gallery .gallery--media figure.gallery--media--first, .gallery .gallery--media figure:target {
  display: block;
}
.gallery .gallery--media figure:target ~ .gallery--media--first {
  display: none;
}
.gallery .gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  height: 46px;
  padding: 1em;
}
.gallery .gallery-nav span.label {
  display: none;
}
.gallery .gallery-nav.btn-prev::after {
  transform: rotate(180deg);
}
.gallery .gallery-nav.btn-next {
  left: auto;
  right: 0;
}

.pagesection__content.media {
  padding-top: 50px;
}
.pagesection__content.media .gallery {
  display: block;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
.pagesection__content.media .gallery--media {
  margin-top: -30px;
  width: 100%;
}
.pagesection__content.media .gallery--media figure {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.pagesection__content.media nav {
  display: none;
}
@media only screen and (min-width: 50em) {
  .pagesection__content.media nav {
    display: flex;
    padding: 0;
    left: -19.0476190476vw;
    width: calc(19.0476190476vw - 40px);
    position: absolute;
    top: 0;
    border-top: 0;
  }
}

.gallery--vertical nav {
  position: relative;
  right: 0;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  padding-left: 0;
  padding-right: 0;
}
.gallery--vertical nav a {
  flex: 0 1 70px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  display: block;
  margin: 0 10px 10px 0;
}

.linklist, .wp-block-kit-linklist {
  grid-column: 5/22;
  display: flex;
  flex-wrap: wrap;
  margin-right: 10px;
  margin-left: 0;
  padding-right: 10px;
  padding-right: 0;
  min-width: 300px;
  list-style-type: none;
  align-items: flex-start;
}
@media only screen and (min-width: 40em) {
  .linklist, .wp-block-kit-linklist {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 60em) {
  .linklist, .wp-block-kit-linklist {
    grid-column: 5/22;
  }
}
.linklist > li, .linklist > div, .linklist > figure, .wp-block-kit-linklist > li, .wp-block-kit-linklist > div, .wp-block-kit-linklist > figure {
  flex: 1 0 100%;
  padding: 0;
  margin-bottom: 10px;
}
@media only screen and (min-width: 60em) {
  .linklist > li, .linklist > div, .linklist > figure, .wp-block-kit-linklist > li, .wp-block-kit-linklist > div, .wp-block-kit-linklist > figure {
    flex: 1 0 30%;
    padding: 10px;
  }
}
.linklist > figure, .wp-block-kit-linklist > figure {
  flex-basis: 60%;
}
@media only screen and (min-width: 60em) {
  .linklist .linklist__wide, .wp-block-kit-linklist .linklist__wide {
    flex: 1 0 60%;
  }
}
.linklist > li:nth-last-child(4):first-child,
.linklist > li:nth-last-child(4):first-child ~ li, .wp-block-kit-linklist > li:nth-last-child(4):first-child,
.wp-block-kit-linklist > li:nth-last-child(4):first-child ~ li {
  flex: 1 0 45%;
}
.linklist > li:nth-last-child(4):first-child ~ li:nth-child(3),
.linklist > li:nth-last-child(5):first-child ~ li:nth-child(4),
.linklist > li:nth-last-child(6):first-child ~ li:nth-child(4), .wp-block-kit-linklist > li:nth-last-child(4):first-child ~ li:nth-child(3),
.wp-block-kit-linklist > li:nth-last-child(5):first-child ~ li:nth-child(4),
.wp-block-kit-linklist > li:nth-last-child(6):first-child ~ li:nth-child(4) {
  margin-left: 0;
}
.linklist h3, .linklist figcaption, .wp-block-kit-linklist h3, .wp-block-kit-linklist figcaption {
  border-top: 1px solid #1f1d18;
  border-bottom: 1px solid #1f1d18;
  padding: 10px 0;
  margin-top: 0;
  margin-bottom: 10px;
  align-self: flex-start;
  width: 100%;
  line-height: 1.25;
  font-weight: 500;
}
.linklist h3, .linklist figcaption, .wp-block-kit-linklist h3, .wp-block-kit-linklist figcaption {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .linklist h3, .linklist figcaption, .wp-block-kit-linklist h3, .wp-block-kit-linklist figcaption {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .linklist h3, .linklist figcaption, .wp-block-kit-linklist h3, .wp-block-kit-linklist figcaption {
    font-size: 24px;
  }
}
.linklist h3 a:not(.button):not(.card__header), .linklist figcaption a:not(.button):not(.card__header), .wp-block-kit-linklist h3 a:not(.button):not(.card__header), .wp-block-kit-linklist figcaption a:not(.button):not(.card__header) {
  padding: 0;
  color: inherit;
}
.linklist h3 a:not(.button):not(.card__header)::before, .linklist figcaption a:not(.button):not(.card__header)::before, .wp-block-kit-linklist h3 a:not(.button):not(.card__header)::before, .wp-block-kit-linklist figcaption a:not(.button):not(.card__header)::before {
  content: none;
}
.linklist ul, .wp-block-kit-linklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
.linklist.has-read-more ul, .wp-block-kit-linklist.has-read-more ul {
  height: auto;
}
.linklist .read-more-link, .wp-block-kit-linklist .read-more-link {
  margin-left: auto;
  text-decoration: underline !important;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.linklist .read-more-link::before, .wp-block-kit-linklist .read-more-link::before {
  display: none !important;
}
.linklist p, .wp-block-kit-linklist p {
  margin: 0;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}
.linklist a:not(.button):not(.card__header), .wp-block-kit-linklist a:not(.button):not(.card__header) {
  position: relative;
  display: block;
  padding: 10px 0 10px 1.4rem;
  text-decoration: none;
}
.linklist a:not(.button):not(.card__header)::before, .wp-block-kit-linklist a:not(.button):not(.card__header)::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 13px;
  background-image: url(./../images/icons/icon-right.svg);
  background-size: 1.1em 1.1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  transition: transform 0.1s ease-out;
}
@media (prefers-color-scheme: dark) {
  .linklist a:not(.button):not(.card__header)::before, .wp-block-kit-linklist a:not(.button):not(.card__header)::before {
    background-image: url(./../images/icons/icon-right-white.svg);
  }
}
.linklist a:not(.button):not(.card__header):hover, .linklist a:not(.button):not(.card__header):focus, .wp-block-kit-linklist a:not(.button):not(.card__header):hover, .wp-block-kit-linklist a:not(.button):not(.card__header):focus {
  text-decoration: underline;
}
.linklist a:not(.button):not(.card__header):focus, .wp-block-kit-linklist a:not(.button):not(.card__header):focus {
  box-shadow: 0 0 0 4px #f1bc29;
}
.linklist.highlightblock, .wp-block-kit-linklist.highlightblock {
  flex-flow: column nowrap;
}
.linklist.highlightblock h3, .wp-block-kit-linklist.highlightblock h3 {
  display: block;
  width: 100%;
  padding: 10px;
  align-self: flex-start;
}
.linklist.highlightblock .highlightblock__body, .wp-block-kit-linklist.highlightblock .highlightblock__body {
  flex: 1;
}
@media (prefers-color-scheme: dark) {
  .linklist.highlightblock a:not(.button):not(.card__header)::before, .wp-block-kit-linklist.highlightblock a:not(.button):not(.card__header)::before {
    background-image: url(./../images/icons/icon-right.svg);
  }
}

.linklist--study h3 {
  background-color: transparent;
  border-color: #5c296f;
  color: #5c296f;
}
@media (prefers-color-scheme: dark) {
  .linklist--study h3 {
    color: #cfbad6;
    border-color: #cfbad6;
  }
}

.linklist--conferences h3, .linklist--conferences figcaption {
  background-color: transparent;
  border-color: #1961ac;
  color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .linklist--conferences h3, .linklist--conferences figcaption {
    color: #88bef7;
    border-color: #88bef7;
  }
}

.pagesection__content.linklist {
  align-items: stretch;
}
.pagesection__content.linklist .wp-block-kit-linklist ul {
  width: 100%;
}
.pagesection__content.linklist .card h3 {
  border: 0;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 40em) {
  .collection {
    display: grid;
    grid-template-columns: repeat(21, 1fr);
  }
}
@media only screen and (min-width: 60em) {
  .collection {
    grid-template-columns: repeat(15, 1fr);
  }
}
.collection ul {
  grid-column: 1/22;
  padding: 0 10px 0 0;
  margin-left: 0;
  gap: 10px;
  grid-gap: 10px;
  list-style-type: none;
}
@media only screen and (min-width: 20em) {
  .collection ul {
    display: flex;
    flex-wrap: wrap;
  }
  @supports (display: grid) {
    .collection ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
@media only screen and (min-width: 40em) {
  .collection ul {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 10px;
  }
}
@media only screen and (min-width: 60em) {
  .collection ul {
    grid-column: 1/16;
  }
}
.collection > .button-bar {
  grid-column: 1/-1;
  padding: 10px;
  text-align: center;
}
.collection--featured .card:nth-child(1) {
  grid-column: 1/span 2;
  flex: 1 0 66%;
}
@media only screen and (min-width: 40em) {
  .collection--featured .card:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
}
.collection--featured .card:nth-child(2) {
  grid-column: 1/span 2;
  grid-row: 2/span 2;
}
@media only screen and (min-width: 40em) {
  .collection--featured .card:nth-child(2) {
    grid-column: 3/span 1;
    grid-row: 1/span 2;
  }
}
@media only screen and (max-width: 40em) {
  .collection .card.card--event {
    grid-column: 1/span 2;
  }
}
.collection.search--empty {
  min-height: 540px;
}
.collection .no-results {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  text-align: center;
  grid-column: 1/20;
}
.collection .no-results h2 {
  padding-bottom: 20px;
}
.collection--wide ul {
  grid-template-columns: repeat(2, 1fr);
}

.page-content .collection ul {
  padding-right: 0;
}

.pagesection__content div:not(.collection) + .collection ul {
  grid-template-columns: 1fr;
}

.vacancy-collection {
  display: flex;
  flex-flow: row wrap;
}
.vacancy-collection .card {
  flex: 1 0 100%;
  margin-right: 0;
}
@media only screen and (min-width: 50em) {
  .vacancy-collection .card {
    flex: 1 0 30%;
    margin-right: 10px;
    max-width: calc( 33% - 10px );
  }
  .vacancy-collection .card:nth-child(3n+0) {
    margin-right: 0;
  }
  @supports (display: grid) {
    .vacancy-collection {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: repeat(2, 1fr);
    }
    .vacancy-collection .card {
      width: 100%;
      flex: none;
      max-width: initial;
    }
  }
}
@media only screen and (min-width: 60em) {
  @supports (display: grid) {
    .vacancy-collection {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

.page-conferences .collection--featured .card:nth-child(1) h3 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .page-conferences .collection--featured .card:nth-child(1) h3 {
    font-size: calc(0vw + 26px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences .collection--featured .card:nth-child(1) h3 {
    font-size: 26px;
  }
}
.page-conferences .collection--featured .card:nth-child(2) h3 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .page-conferences .collection--featured .card:nth-child(2) h3 {
    font-size: calc(0vw + 26px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences .collection--featured .card:nth-child(2) h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences .collection .card h3 {
    font-size: 22px;
  }
}

.pagesection.collection__vacancy .pagesection__intro, .pagesection.collection__vacancy .pagesection__content {
  border-top: none;
}

.card {
  display: flex;
  flex-direction: column;
  flex: 1 0 32%;
  padding: 10px;
  background-color: #d5d5db;
  color: #1f1d18;
  font-size: 18px;
  border-top: 6px solid #f1bc29;
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  .card {
    background-color: #404042;
    color: #fcf6eb;
  }
}
.card .card__header {
  display: block;
  margin-bottom: calc((100vw - 200px) / 21);
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
}
.card .card__header:hover, .card .card__header:focus {
  outline: none;
}
.card .card__header:hover h3, .card .card__header:focus h3 {
  text-decoration: underline;
}
.card img {
  width: 100%;
}
.card h3 {
  display: inline;
  line-height: 1.25;
  font-weight: 400;
  line-height: 1.1;
}
.card h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .card h3 {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .card h3 {
    font-size: 24px;
  }
}
.card .card__type {
  display: inline-block;
  position: relative;
  top: -0.3rem;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6em;
  font-weight: 700;
  padding: 0.125rem 0.25rem;
  margin-right: 0.125rem;
  margin-bottom: 0;
  background-color: white;
  color: #404042;
  border-radius: 1px;
}
.card p:not(.card__type) {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.875em;
}
.card p:not(.card__type):last-of-type {
  margin-bottom: calc((100vw - 200px) / 42);
}
.card .button, .card .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .card label, .card .post-password-form input[type=submit], .post-password-form .card input[type=submit], .card .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .card .intro:not(.no-button) > a:last-child {
  align-self: flex-end;
  margin-top: auto;
  color: #1f1d18;
  background-color: #ffde44;
  /*		font-style: italic;
  		text-decoration: none;
  		font-weight: $medium;*/
}
.card .button:hover, .card .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .card label:hover, .card .post-password-form input[type=submit]:hover, .post-password-form .card input[type=submit]:hover, .card .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .card .intro:not(.no-button) > a:hover:last-child, .card .button:focus, .card .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .card label:focus, .card .post-password-form input[type=submit]:focus, .post-password-form .card input[type=submit]:focus, .card .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .card .intro:not(.no-button) > a:focus:last-child {
  background-color: #fff0ab;
}
.card:focus-within {
  box-shadow: 0 0 0 4px black;
}

.card--compact {
  padding: 10px 5px;
}
.card--compact .card__header {
  margin-bottom: 0;
}
.card--compact h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0;
}
.card--compact p:not(.card__type) {
  display: inline;
  font-family: "Sectra", Georgia, serif;
  font-size: 18px;
}
.card--compact p:not(.card__type):last-of-type {
  margin-bottom: calc((100vw - 200px) / 42);
}

.card--project {
  border-top: 6px solid #15af97;
}
.card--project .card__type {
  color: #0f8064;
}

.card--event {
  font-size: 1rem;
  border-top: 6px solid #f1919c;
}
.card--event .card__type {
  color: #1961ac;
}
.card--event img {
  margin-top: 10px;
}

.card--room .card__type,
.card--service .card__type {
  display: none;
}

/* Featured cards in collections */
.collection--featured .card:nth-child(1) {
  background-color: #f1bc29;
  color: #1f1d18;
  border-top: none;
}
.collection--featured .card:nth-child(1) h3 {
  display: block;
  font-weight: 500;
}
.collection--featured .card:nth-child(1) h3 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .collection--featured .card:nth-child(1) h3 {
    font-size: calc(2.7083333333vw + 17.3333333333px);
  }
}
@media screen and (min-width: 1280px) {
  .collection--featured .card:nth-child(1) h3 {
    font-size: 52px;
  }
}
.collection--featured .card:nth-child(1) .card__type {
  background-color: #ffde44;
  color: #1f1d18;
}
.collection--featured .card:nth-child(2) {
  background-color: #404042;
  color: white;
  border-top: none;
}
@media (prefers-color-scheme: dark) {
  .collection--featured .card:nth-child(2) {
    background-color: #1f1d18;
  }
}
.collection--featured .card:nth-child(2) h3 {
  display: block;
}
.collection--featured .card:nth-child(2) h3 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .collection--featured .card:nth-child(2) h3 {
    font-size: calc(0.625vw + 24px);
  }
}
@media screen and (min-width: 1280px) {
  .collection--featured .card:nth-child(2) h3 {
    font-size: 32px;
  }
}
.collection--featured .card:nth-child(2) .button, .collection--featured .card:nth-child(2) .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .collection--featured .card:nth-child(2) label, .collection--featured .card:nth-child(2) .post-password-form input[type=submit], .post-password-form .collection--featured .card:nth-child(2) input[type=submit], .collection--featured .card:nth-child(2) .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .collection--featured .card:nth-child(2) .intro:not(.no-button) > a:last-child {
  background-color: #15af97;
  box-shadow: 0 1px 1px 0 #0b594d;
}
.collection--featured .card:nth-child(2) .button:hover, .collection--featured .card:nth-child(2) .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .collection--featured .card:nth-child(2) label:hover, .collection--featured .card:nth-child(2) .post-password-form input[type=submit]:hover, .post-password-form .collection--featured .card:nth-child(2) input[type=submit]:hover, .collection--featured .card:nth-child(2) .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .collection--featured .card:nth-child(2) .intro:not(.no-button) > a:hover:last-child {
  background-color: #76e3d3;
}
.collection--featured .card:nth-child(1) img,
.collection--featured .card:nth-child(2) img {
  order: -1;
  margin-bottom: 20px;
}
.collection--featured .card:nth-child(1) .card__type,
.collection--featured .card:nth-child(2) .card__type {
  margin-bottom: 5px;
  top: 0;
}
.collection--featured .card--event:nth-child(2) .card__type {
  background-color: #8c545b;
  color: #404042;
}
.collection--featured .card--project:nth-child(2) {
  /*		> .button {
  			background-color: $color-green;
  		}*/
}
.collection--featured .card--project:nth-child(2) .card__type {
  background-color: #0f8064;
  color: white;
}

.wrapped__content.possibility-block, .pagesection__content.possibility-block {
  display: flex;
}
.wrapped__content.possibility-block .card, .pagesection__content.possibility-block .card {
  flex: 1 0 45%;
  margin: 0 10px 10px 0;
}
.wrapped__content.possibility-block .card:nth-child(even), .pagesection__content.possibility-block .card:nth-child(even) {
  margin-right: 0;
}
.wrapped__content.possibility-block .card:nth-child(odd):last-child, .pagesection__content.possibility-block .card:nth-child(odd):last-child {
  flex-grow: 0;
  flex-basis: calc(50% - 5px);
}

@media only screen and (min-width: 60em) {
  .pagesection__content.expert {
    padding-right: 10px;
  }
  @supports (display: grid) {
    .pagesection__content.expert {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 10px;
    }
  }
  .pagesection__content.expert h2 {
    flex: 1 0 100%;
  }
  .pagesection__content.expert .expert-card {
    margin-right: 0;
  }
}

.expert-card, .contact-card {
  position: relative;
  flex: 1 1 45%;
  padding: 40px 10px 10px;
  background-color: rgba(118, 227, 211, 0.25);
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media only screen and (min-width: 960px) {
  .expert-card, .contact-card {
    margin-bottom: 0;
  }
  .expert-card:nth-child(2n+1), .contact-card:nth-child(2n+1) {
    margin-right: 10px;
  }
}
.expert-card h3, .expert-card h4, .contact-card h3, .contact-card h4 {
  font-size: 1.05em;
  padding-right: 80px;
  margin: 0;
}
.expert-card .profession, .contact-card .profession {
  font-size: 0.9em;
  padding-right: 80px;
}
.expert-card .actions, .contact-card .actions {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #1f1d18;
  border-bottom: 1px solid #1f1d18;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.875em;
}
.expert-card .actions a, .contact-card .actions a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
.expert-card .actions a:last-child, .contact-card .actions a:last-child {
  margin-bottom: 0;
}
.expert-card .button, .expert-card .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .expert-card label, .expert-card .post-password-form input[type=submit], .post-password-form .expert-card input[type=submit], .expert-card .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .expert-card .intro:not(.no-button) > a:last-child, .contact-card .button, .contact-card .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .contact-card label, .contact-card .post-password-form input[type=submit], .post-password-form .contact-card input[type=submit], .contact-card .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .contact-card .intro:not(.no-button) > a:last-child {
  align-self: flex-end;
  display: inline-block;
  background-color: white;
  border-color: transparent;
  box-shadow: 0 1px 2px 0 #d5d5db;
  margin-top: 20px;
}
.expert-card .button:hover, .expert-card .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .expert-card label:hover, .expert-card .post-password-form input[type=submit]:hover, .post-password-form .expert-card input[type=submit]:hover, .expert-card .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .expert-card .intro:not(.no-button) > a:hover:last-child, .expert-card .button:focus, .expert-card .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .expert-card label:focus, .expert-card .post-password-form input[type=submit]:focus, .post-password-form .expert-card input[type=submit]:focus, .expert-card .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .expert-card .intro:not(.no-button) > a:focus:last-child, .contact-card .button:hover, .contact-card .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .contact-card label:hover, .contact-card .post-password-form input[type=submit]:hover, .post-password-form .contact-card input[type=submit]:hover, .contact-card .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .contact-card .intro:not(.no-button) > a:hover:last-child, .contact-card .button:focus, .contact-card .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .contact-card label:focus, .contact-card .post-password-form input[type=submit]:focus, .post-password-form .contact-card input[type=submit]:focus, .contact-card .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .contact-card .intro:not(.no-button) > a:focus:last-child {
  background-color: #b6fcf2;
  border-color: transparent;
}
.expert-card figure, .contact-card figure {
  position: absolute;
  right: 20px;
  top: 20px;
}
.expert-card img, .contact-card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.expert-card::before, .contact-card::before {
  content: "Expert";
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 12px;
  position: absolute;
  left: 5px;
  top: 5px;
  padding: 0.125rem 0.25rem 0.125rem 0.25rem;
  background-color: #404042;
  color: white;
}
.expert-card:focus-within, .contact-card:focus-within {
  box-shadow: 0 0 0 0.25rem #76e3d3;
}

.contact-card .actions {
  border-bottom: 0;
}
.contact-card::before {
  content: "";
  display: none;
}

/*
.featured-expert {
	padding: 0 $gap;
	position: relative;

	img {
		display: block;
		width: 100%;
	}

	figcaption {
		position: absolute;
		bottom: 0;
		left: $gap;
		right: $gap;
		padding: $gap * 2;
		//background-color: rgba($color-yellow, .86);
		background-image: url(./../images/kartel-caption.svg);
		background-size: auto;
		background-repeat: repeat-x;
		background-position: left top;

		@media only screen and (min-width: 60em) {
			padding: $gap * 4;
		}


	}

	h3 {
		@include fontsize-xl;
		padding-bottom: $gap / 2;
	}

	a {
		text-decoration: none;
		display: flex;
	}
}*/
/*
@media only screen and (min-width: 60em){
    .content > .wp-block-kit-expert.expert-card{
        grid-column: 5 / span 5;
    }
}*/
.pagesection__content.excerpt,
.pagesection__content.service {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 10px;
}

.excerpt {
  flex: 1 0 100%;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 60em) {
  .excerpt {
    flex: 1 0 45%;
  }
  .excerpt:nth-child(2n) {
    margin-left: 10px;
  }
}
.excerpt h3 {
  border-top: 1px solid #1f1d18;
  border-bottom: 1px solid #1f1d18;
  padding: 5px;
  margin-bottom: 10px;
  line-height: 1.25;
  font-weight: 500;
}
.excerpt h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .excerpt h3 {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .excerpt h3 {
    font-size: 24px;
  }
}
.excerpt p, .excerpt .intro {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  padding: 0 5px;
}
.excerpt a {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 27px;
  color: #1f1d18;
}
@media (prefers-color-scheme: dark) {
  .excerpt a {
    color: white;
  }
}
.excerpt a::before {
  top: 13px;
  left: 5px;
}
.excerpt a:focus {
  box-shadow: 0 0 0 4px #f1bc29;
}

.excerpt:nth-last-child(4):first-child,
.excerpt:nth-last-child(4):first-child ~ .excerpt {
  flex: 1 0 45%;
}

.excerpt:nth-last-child(4):first-child ~ .excerpt:nth-child(3),
.excerpt:nth-last-child(5):first-child ~ .excerpt:nth-child(4),
.excerpt:nth-last-child(6):first-child ~ .excerpt:nth-child(4) {
  margin-left: 0;
}

.pagesection {
  position: relative;
  grid-column: 1/22;
  padding: 0 0 0 0;
  margin-bottom: 4rem;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 50em) {
  .pagesection {
    padding-left: 19%;
    padding-right: 9.5%;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 50em) {
  .pagesection .pagesection__intro {
    width: 19.2%;
  }
}
@media only screen and (min-width: 40em) {
  .page-content .pagesection, .page-conferences .pagesection {
    padding-right: 0;
    padding-left: 24%;
  }
}
@media only screen and (min-width: 60em) {
  .page-content .pagesection, .page-conferences .pagesection {
    padding-left: 18.3%;
    width: 75%;
  }
}
@media only screen and (min-width: 50em) {
  .page-content .pagesection .pagesection__intro, .page-conferences .pagesection .pagesection__intro {
    width: 24.5%;
  }
}
@media only screen and (min-width: 40em) {
  .content .pagesection {
    padding-left: 32.9%;
    padding-right: 0;
    width: calc(133% - 10px);
    margin-left: -33%;
  }
}
@media only screen and (min-width: 50em) {
  .content .pagesection .pagesection__intro {
    width: 25%;
  }
}
@media only screen and (min-width: 50em) {
  .footer-content .pagesection {
    width: calc(100% - 10px);
  }
  .footer-content .pagesection .pagesection__intro {
    width: 19%;
  }
}
.pagesection__intro {
  padding: 10px 10px 10px 10px;
  border-top: 1px solid #404042;
}
@media only screen and (min-width: 50em) {
  .pagesection__intro {
    grid-column: 1/5;
    margin-right: 0;
    position: absolute;
    left: 0;
  }
}
.pagesection__intro h1, .pagesection__intro h2 {
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 60em) {
  .pagesection__intro h1, .pagesection__intro h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 2.75em;
  }
}
.pagesection__intro p {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.8em;
}
.pagesection__intro .intro:not(.no-button) > a:last-child {
  margin-top: 20px;
  display: block;
  font-size: 0.9em;
}

.pagesection__content {
  padding-top: 20px;
  margin-bottom: 0;
  grid-column: 1/22;
  margin: 0 10px 0 10px;
  padding-left: 0;
}
@media only screen and (min-width: 50em) {
  .pagesection__content {
    margin: 0;
    grid-column: 5/22;
    border-top: 1px solid #404042;
    padding-right: 0;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 80em) {
  .pagesection__content {
    grid-column: 5/20;
  }
}

.collection {
  grid-column: 1/22;
}
@media only screen and (min-width: 50em) {
  .collection {
    grid-column: 5/22;
  }
}
@media only screen and (min-width: 80em) {
  .collection {
    grid-column: 5/20;
  }
}

@media only screen and (min-width: 50em) {
  .pagesection__content > .collection {
    -ms-grid-column: 1;
    -ms-grid-column-span: 17;
    grid-column: 1/22;
  }
}
@media only screen and (min-width: 80em) {
  .pagesection__content > .collection {
    -ms-grid-column: 1;
    -ms-grid-column-span: 15;
    grid-column: 1/20;
  }
}
.pagesection--study .pagesection__intro,
.pagesection--study .pagesection__content {
  border-color: #5c296f;
}
.pagesection--study h1, .pagesection--study h2 {
  color: #5c296f;
}
@media (prefers-color-scheme: dark) {
  .pagesection--study h1, .pagesection--study h2 {
    color: #cfbad6;
  }
}

.pagesection--taxonomy {
  padding-right: 10px;
}

.pagesection--conferences .pagesection__intro,
.pagesection--conferences .pagesection__content {
  border-color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .pagesection--conferences .pagesection__intro,
.pagesection--conferences .pagesection__content {
    color: #88bef7;
  }
}
.pagesection--conferences h1, .pagesection--conferences h2 {
  color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .pagesection--conferences h1, .pagesection--conferences h2 {
    color: #88bef7;
  }
}

@media only screen and (min-width: 50em) {
  .pagesection--noborder .pagesection__intro {
    margin-right: 10px;
  }
}
.pagesection--noborder .pagesection__content {
  border-top: none;
  padding-top: 0;
}

.page-conferences .pagesection {
  grid-column: 1/span 21;
  /*
  		@media only screen and (min-width: 50em) {
  			padding-left: 25%;
  			width: 76%;
  		}

  		.pagesection__intro {
  			@media only screen and (min-width: 50em) {
  				width: 25%;
  			}
  		}*/
}
@media only screen and (min-width: 60em) {
  .page-conferences .pagesection .pagesection__content {
    grid-column: 5/17;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 960px) {
  #main + aside#paragraph {
    margin-top: -100px;
  }
}

blockquote {
  position: relative;
  background-color: white;
  margin-bottom: calc((100vw - 200px) / 42);
  padding: calc((100vw - 200px) / 21);
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  color: #2c4295;
  text-align: center;
}
blockquote {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  blockquote {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  blockquote {
    font-size: 24px;
  }
}
@media only screen and (min-width: 40em) {
  blockquote {
    padding: 5rem calc((100vw - 200px) / 21) calc((100vw - 200px) / 42);
    margin-top: calc((100vw - 200px) / 21);
  }
}
blockquote p {
  max-width: 24em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}
blockquote::before {
  content: "";
  border-top: 1px solid black;
  width: calc((100vw - 200px) / 21);
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
}
blockquote footer, blockquote cite {
  position: relative;
  margin-top: 3rem;
  padding-top: 1rem;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f1d18;
}
blockquote footer::before, blockquote cite::before {
  content: "";
  border-top: 1px solid black;
  width: calc((100vw - 200px) / 21 * 2 + 10px);
  position: absolute;
  left: 50%;
  top: 0rem;
  transform: translateX(-50%);
}

.quotes {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 40em) {
  .quotes {
    grid-column: 1/-1;
    margin-right: 10px;
    margin-left: -33%;
    width: 133%;
    padding-left: 33%;
  }
}
.quotes blockquote {
  grid-column: 5/20;
  display: none;
}
.quotes blockquote.active {
  display: block;
}
.quotes nav, .quotes > h2 {
  grid-column: 1/5;
  border-top: 1px solid #404042;
}
@media only screen and (min-width: 40em) {
  .quotes nav, .quotes > h2 {
    margin: calc((100vw - 200px) / 21) 10px 0 10px;
    padding: 10px 0 0 0;
    position: absolute;
    /*right: 81%;*/
    left: 0;
    width: 19%;
    margin-top: 0;
  }
}
.quotes nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  /*			display: grid;
  			grid-template-columns: repeat(4, 1fr);
  			grid-gap: $gap / 2;*/
}
.quotes nav li {
  background-color: rgba(76, 76, 76, 0.2);
  text-align: center;
  border: 1px solid rgba(64, 64, 66, 0.3);
  flex: 0 1 60px;
  margin-right: 5px;
}
.quotes nav li[aria-selected=true], .quotes nav li.active {
  background-color: #5c296f;
  box-shadow: 0 0 0 0.125rem black;
}
.quotes nav li span {
  text-align: center;
  vertical-align: middle;
  font-size: 90px;
  line-height: 0px;
  margin-top: 75%;
  color: #5c296f;
  display: inline-block;
}
.quotes nav img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  display: block;
}

.testimonial p {
  max-width: 24em;
}

.homebanner {
  grid-column: 1/-1;
  margin-top: -1rem;
  margin-bottom: 5.333rem;
}
@media only screen and (min-width: 60em) {
  .homebanner {
    margin-bottom: calc((100vw - 200px) / 21);
  }
}

.homebanner__intro {
  padding: 5rem 10px 9rem;
  background-color: #ffde44;
  color: #1f1d18;
}
@media (prefers-color-scheme: dark) {
  .homebanner__intro {
    color: #ffde44;
    background-color: #0f0f0f;
  }
}
@media only screen and (min-width: 40em) {
  .homebanner__intro {
    display: flex;
    /*			display: grid;
    			grid-template-columns: repeat(21, 1fr);*/
  }
}
.homebanner__intro header {
  padding: 0 20px;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 40em) {
  .homebanner__intro header {
    margin-bottom: calc((100vw - 200px) / 21);
    flex: 1 1 66%;
  }
}
.homebanner__intro header h2 {
  font-size: 0.75em;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #404042;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (prefers-color-scheme: dark) {
  .homebanner__intro header h2 {
    color: white;
  }
}
.homebanner__intro header p {
  line-height: 1.05;
  font-weight: 700;
  font-family: "Sectra", Georgia, serif;
  max-width: 10em;
  margin: 0;
}
.homebanner__intro header p {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  .homebanner__intro header p {
    font-size: calc(6.0416666667vw + 12.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .homebanner__intro header p {
    font-size: 90px;
  }
}
.homebanner__intro div {
  flex: 1 1 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: calc((100vw - 200px) / 21);
}
.homebanner__intro div p {
  margin-bottom: 1.4em;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
.homebanner__intro div p:last-of-type {
  margin-bottom: 2.8em;
}
.homebanner__intro .button, .homebanner__intro .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .homebanner__intro label, .homebanner__intro .post-password-form input[type=submit], .post-password-form .homebanner__intro input[type=submit], .homebanner__intro .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .homebanner__intro .intro:not(.no-button) > a:last-child {
  align-self: flex-end;
}

.homebanner__news {
  padding: 0 10px;
  margin-top: -6rem;
  margin-bottom: calc((100vw - 200px) / 21);
}
@media only screen and (min-width: 40em) {
  .homebanner__news {
    display: flex;
    grid-template-columns: repeat(21, 1fr);
    /*gap: $gap;*/
    margin-top: -10rem;
  }
}
.homebanner__news div {
  background-color: black;
  min-height: 4em;
}
.homebanner__news > :nth-child(2) {
  flex-grow: 1;
  flex-basis: 66%;
  grid-column: 1/14;
}
@media only screen and (max-width: 40em) {
  .homebanner__news > :nth-child(2) {
    margin-bottom: 10px;
  }
}
.homebanner__news > :nth-child(3) {
  flex-grow: 1;
  flex-basis: 33%;
  margin-left: 0;
}
@media only screen and (min-width: 40em) {
  .homebanner__news > :nth-child(3) {
    margin-left: 10px;
  }
}
.homebanner__news img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
.homebanner__news figure {
  position: relative;
  flex-shrink: 0;
}
.homebanner__news figure:focus-within {
  box-shadow: 0 0 0 4px black;
}
.homebanner__news figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #f1bc29;
  color: white;
  padding: 30px 20px 10px 20px;
}
@media only screen and (max-width: 40em) {
  .homebanner__news figcaption {
    top: 0;
  }
}
.homebanner__news figcaption::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(92, 41, 111, 0.8);
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 40em) {
  .homebanner__news figcaption::before {
    background-color: transparent;
    background-image: url(./../images/kartel-caption-project.svg);
  }
}
.homebanner__news figcaption h2, .homebanner__news figcaption h3 {
  position: relative;
  order: 1;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  color: white;
}
.homebanner__news figcaption h2, .homebanner__news figcaption h3 {
  font-size: 28px;
}
@media screen and (min-width: 640px) {
  .homebanner__news figcaption h2, .homebanner__news figcaption h3 {
    font-size: calc(3.75vw + 4px);
  }
}
@media screen and (min-width: 1280px) {
  .homebanner__news figcaption h2, .homebanner__news figcaption h3 {
    font-size: 52px;
  }
}
.homebanner__news figcaption p {
  position: relative;
  order: 0;
  color: white;
  margin-bottom: 10px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875em;
  letter-spacing: 0.18em;
  margin-left: 2px;
}
.homebanner__news figcaption a {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  color: transparent;
}
.homebanner__news .event figcaption {
  color: #f1919c;
}
.homebanner__news .event figcaption::before {
  background-color: #88bef7;
}
@media only screen and (min-width: 40em) {
  .homebanner__news .event figcaption::before {
    background-color: transparent;
    background-image: url(./../images/kartel-caption-event.svg);
  }
}

.highlightblock h3, .pagesection__content.linklist .highlightblock h3 {
  border-top: 1px solid #1f1d18;
  border-bottom: 1px solid #1f1d18;
  padding: 10px;
  margin-bottom: 0;
  background-color: rgba(255, 222, 68, 0.1);
  line-height: 1.25;
  font-size: 18px;
  font-weight: 500;
}
.highlightblock h3, .pagesection__content.linklist .highlightblock h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .highlightblock h3, .pagesection__content.linklist .highlightblock h3 {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .highlightblock h3, .pagesection__content.linklist .highlightblock h3 {
    font-size: 24px;
  }
}
@media (prefers-color-scheme: dark) {
  .highlightblock h3, .pagesection__content.linklist .highlightblock h3 {
    color: #1f1d18;
  }
}
.highlightblock h3 a, .pagesection__content.linklist .highlightblock h3 a {
  padding: 0;
}
.highlightblock h3 a::before, .pagesection__content.linklist .highlightblock h3 a::before {
  content: none;
}
.highlightblock__body, .pagesection__content.linklist .highlightblock__body {
  padding: 10px !important;
  background-color: #fff4c4;
  display: flex;
  flex-direction: column;
}
@media (prefers-color-scheme: dark) {
  .highlightblock__body, .pagesection__content.linklist .highlightblock__body {
    color: #1f1d18;
  }
}
.highlightblock__body p, .pagesection__content.linklist .highlightblock__body p {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (prefers-color-scheme: dark) {
  .highlightblock__body a, .pagesection__content.linklist .highlightblock__body a {
    color: #1f1d18;
  }
}
.highlightblock .button, .highlightblock .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .highlightblock label, .highlightblock .post-password-form input[type=submit], .post-password-form .highlightblock input[type=submit], .highlightblock .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .highlightblock .intro:not(.no-button) > a:last-child, .pagesection__content.linklist .highlightblock .button {
  align-self: flex-end;
  margin-top: 10px;
  background-color: #ffe678;
}
.highlightblock .button:hover, .highlightblock .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .highlightblock label:hover, .highlightblock .post-password-form input[type=submit]:hover, .post-password-form .highlightblock input[type=submit]:hover, .highlightblock .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .highlightblock .intro:not(.no-button) > a:hover:last-child, .highlightblock .button:focus, .highlightblock .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .highlightblock label:focus, .highlightblock .post-password-form input[type=submit]:focus, .post-password-form .highlightblock input[type=submit]:focus, .highlightblock .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .highlightblock .intro:not(.no-button) > a:focus:last-child, .pagesection__content.linklist .highlightblock .button:hover, .pagesection__content.linklist .highlightblock .button:focus {
  background-color: #f7ca00;
}
.highlightblock--kit h3, .pagesection__content.linklist .highlightblock--kit h3 {
  background-color: #ffde44;
  border-color: #998529;
  padding: 10px 10px;
}
.highlightblock--study h3, .pagesection__content.linklist .highlightblock--study h3 {
  background-color: #b191bd;
  color: #33173d;
  border-color: #76418a;
}
.highlightblock--study .highlightblock__body, .pagesection__content.linklist .highlightblock--study .highlightblock__body {
  background-color: #d5d5db;
}
.highlightblock--study p, .pagesection__content.linklist .highlightblock--study p {
  background-color: #d5d5db;
  display: flex;
  flex-direction: column;
  /*            p {
                  font-family: $sans;
                  @include fontsize-s;
                  margin-bottom: $gap * 2;
              }*/
}
@media (prefers-color-scheme: dark) {
  .highlightblock--study p, .pagesection__content.linklist .highlightblock--study p {
    color: #1f1d18;
  }
}
@media (prefers-color-scheme: dark) {
  .highlightblock--study p a, .pagesection__content.linklist .highlightblock--study p a {
    color: #1f1d18;
  }
}
.highlightblock--study p > a:last-child, .pagesection__content.linklist .highlightblock--study p > a:last-child {
  align-self: flex-end;
  padding: 0.4em 1.8em 0.4em 1em;
  margin-top: 20px;
  color: #1f1d18;
  font-family: "Sectra", Georgia, serif;
  font-size: 18px;
  color: #33173d;
  background-color: #cfbad6;
  box-shadow: 0 1px 1px 0 #76418a;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.1s ease-out, transform 0.1s ease-out, background-color 0.1s ease-out;
}
.highlightblock--study p > a:last-child::after, .pagesection__content.linklist .highlightblock--study p > a:last-child::after {
  content: "";
  position: absolute;
  right: 0.55em;
  top: 0.65em;
  background-image: url(./../images/icons/icon-right.svg);
  background-size: 1em 1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1em;
  height: 1em;
  transition: transform, 0.15s ease-out;
}
.highlightblock--study p > a:last-child::before, .pagesection__content.linklist .highlightblock--study p > a:last-child::before {
  content: none;
}
.highlightblock--study p > a:last-child:hover, .highlightblock--study p > a:last-child:focus, .pagesection__content.linklist .highlightblock--study p > a:last-child:hover, .pagesection__content.linklist .highlightblock--study p > a:last-child:focus {
  background-color: #b191bd;
  border-color: transparent;
}
.highlightblock--study p > a:last-child:hover::after, .highlightblock--study p > a:last-child:focus::after, .pagesection__content.linklist .highlightblock--study p > a:last-child:hover::after, .pagesection__content.linklist .highlightblock--study p > a:last-child:focus::after {
  transform: translateX(0.25em);
}
.highlightblock--study p > a:last-child:focus, .pagesection__content.linklist .highlightblock--study p > a:last-child:focus {
  box-shadow: 0 0 0 2px #482057;
}
.highlightblock--study .button, .highlightblock--study .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .highlightblock--study label, .highlightblock--study .post-password-form input[type=submit], .post-password-form .highlightblock--study input[type=submit], .highlightblock--study .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .highlightblock--study .intro:not(.no-button) > a:last-child, .pagesection__content.linklist .highlightblock--study .button {
  color: #33173d;
  background-color: #cfbad6;
  box-shadow: 0 1px 1px 0 #76418a;
}
.highlightblock--study .button:hover, .highlightblock--study .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .highlightblock--study label:hover, .highlightblock--study .post-password-form input[type=submit]:hover, .post-password-form .highlightblock--study input[type=submit]:hover, .highlightblock--study .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .highlightblock--study .intro:not(.no-button) > a:hover:last-child, .highlightblock--study .button:focus, .highlightblock--study .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .highlightblock--study label:focus, .highlightblock--study .post-password-form input[type=submit]:focus, .post-password-form .highlightblock--study input[type=submit]:focus, .highlightblock--study .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .highlightblock--study .intro:not(.no-button) > a:focus:last-child, .pagesection__content.linklist .highlightblock--study .button:hover, .pagesection__content.linklist .highlightblock--study .button:focus {
  background-color: #b191bd;
  border-color: transparent;
}
.highlightblock--study .button:focus, .highlightblock--study .feedback-form .choice-buttons .gfield_radio label:focus, .feedback-form .choice-buttons .gfield_radio .highlightblock--study label:focus, .highlightblock--study .post-password-form input[type=submit]:focus, .post-password-form .highlightblock--study input[type=submit]:focus, .highlightblock--study .pagesection__intro .intro:not(.no-button) > a:focus:last-child, .pagesection__intro .highlightblock--study .intro:not(.no-button) > a:focus:last-child, .pagesection__content.linklist .highlightblock--study .button:focus {
  box-shadow: 0 0 0 2px #482057;
}
.highlightblock--topic, .pagesection__content.linklist .highlightblock--topic {
  display: flex;
  flex-flow: column nowrap;
  background-color: transparent;
  border-top: 3px solid #f1bc29;
}
.highlightblock--topic h3, .pagesection__content.linklist .highlightblock--topic h3 {
  background-color: transparent;
  color: #404042;
  border: 0;
  padding-left: 10px;
}
.highlightblock--topic ul, .pagesection__content.linklist .highlightblock--topic ul {
  background-color: transparent;
  flex: 1;
}
.highlightblock--topic a:not(.button), .pagesection__content.linklist .highlightblock--topic a:not(.button) {
  color: #1f1d18;
}
.highlightblock--topic a:not(.button)::before, .pagesection__content.linklist .highlightblock--topic a:not(.button)::before {
  background-image: url("./../images/icons/icon-right.svg");
}

.highlight-kit, .highlight-study, .highlight-topic {
  margin: 10px;
  padding: 0 !important;
  background-color: #fff4c4;
}
.highlight-kit h3, .highlight-study h3, .highlight-topic h3 {
  background-color: #ffde44;
  border-color: #998529;
  padding: 10px 10px;
  margin-top: 0;
}
@media (prefers-color-scheme: dark) {
  .highlight-kit h3, .highlight-kit p, .highlight-study h3, .highlight-study p, .highlight-topic h3, .highlight-topic p {
    color: #1f1d18;
  }
}

.highlight-study {
  background-color: #d5d5db;
}
.highlight-study h3 {
  background-color: #b191bd;
  color: #33173d;
  border-color: #76418a;
}

.highlight-topic {
  background: #404042;
}
.highlight-topic h3 {
  background-color: transparent;
  color: #f1bc29;
  background: #404042;
  border: 0;
  border-top: 3px solid #f1bc29;
}
.highlight-topic p, .highlight-topic a, .highlight-topic strong {
  color: white;
}
.highlight-topic a:not(.button) {
  color: white;
}
.highlight-topic a:not(.button)::before {
  background-image: url("./../images/icons/icon-right-white.svg");
}

.footer-content {
  min-height: 10rem;
  width: 100% !important;
  background-image: linear-gradient(transparent 4px, white 4px), url(./../images/kartel-footer.svg);
  background-repeat: no-repeat, repeat-x;
  background-size: auto, 50% auto;
  padding: calc((100vw - 200px) / 21 * 2 + 10px) 0 calc((100vw - 200px) / 21);
  margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
  .footer-content {
    color: #1f1d18;
  }
}
.footer-content:before {
  content: "";
  grid-column: 1/22;
  height: 1px;
  background: #1f1d18;
  width: auto;
  margin: 0 0 -1px 10px;
}
@media only screen and (min-width: 60em) {
  .footer-content:before {
    grid-column: 1/15;
  }
}
.footer-content h2 {
  grid-column: 1/5;
  margin-right: 0;
  padding: 10px;
}
@media (prefers-color-scheme: dark) {
  .footer-content h2 {
    color: #1f1d18;
  }
}
@media (prefers-color-scheme: dark) {
  .footer-content .pagesection {
    border-color: #1f1d18 !important;
  }
}
@media (prefers-color-scheme: dark) {
  .footer-content .pagesection__intro {
    border-color: #1f1d18 !important;
  }
}
.footer-content .pagesection.about .pagesection__content {
  display: flex;
  flex-flow: row wrap;
}
.footer-content .pagesection.about .pagesection__content > div {
  flex: 1 0 100%;
  padding: 10px 0 0 20px;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 60em) {
  .footer-content .pagesection.about .pagesection__content > div {
    padding-left: 0;
  }
}
.footer-content .pagesection.about .pagesection__content > div:first-child {
  padding-left: 0;
}
@media only screen and (min-width: 60em) {
  .footer-content .pagesection.about .pagesection__content > div {
    flex: 1;
  }
}
.footer-content .pagesection.about .pagesection__content > div:last-of-type {
  background: #f1bc29;
  margin: 0 10px;
  border-top: 3px solid #1f1d18;
  padding: 20px;
  align-self: flex-start;
}
@media only screen and (min-width: 60em) {
  .footer-content .pagesection.about .pagesection__content > div:last-of-type {
    margin-right: 0;
  }
}
.footer-content .pagesection.about .pagesection__content > div:last-of-type .wp-block-button {
  margin: auto 0 0 0;
  text-align: right;
}
.footer-content .pagesection.about .pagesection__content > div:last-of-type a {
  align-self: flex-end;
  background: #ffde44;
  color: #404042;
}
.footer-content .pagesection.scholarship {
  margin-left: 0;
  margin-right: 0;
}
.footer-content .pagesection.scholarship .pagesection__content {
  border-top: 0;
  background: #404042;
  margin: 50px 0;
  padding: 50px 10% 50px 10%;
  text-align: center;
}
@media only screen and (min-width: 50em) {
  .footer-content .pagesection.scholarship .pagesection__content {
    padding: 50px 20%;
  }
}
@media only screen and (min-width: 60em) {
  .footer-content .pagesection.scholarship .pagesection__content {
    margin: 200px 0;
    grid-column: 5/span 15;
  }
}
.footer-content .pagesection.scholarship .pagesection__content h3, .footer-content .pagesection.scholarship .pagesection__content p {
  color: #f1bc29;
}
.footer-content .pagesection.scholarship .pagesection__content h3 {
  line-height: 1.2;
  padding-bottom: 20px;
}
.footer-content .pagesection.scholarship .pagesection__content h3 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .footer-content .pagesection.scholarship .pagesection__content h3 {
    font-size: calc(0.625vw + 20px);
  }
}
@media screen and (min-width: 1280px) {
  .footer-content .pagesection.scholarship .pagesection__content h3 {
    font-size: 28px;
  }
}
.footer-content .pagesection.scholarship .pagesection__content a {
  background: #ffde44;
  padding: 10px 30px 10px 20px;
  font-family: "Sectra", Georgia, serif;
  font-style: italic;
  text-decoration: none;
  margin: 20px 0 0 0;
  display: inline-block;
  color: #404042;
}
.footer-content .wrapped__content {
  grid-column: 1/22;
  padding: 20px;
  flex-flow: column nowrap !important;
}
@media only screen and (min-width: 50em) {
  .footer-content .wrapped__content {
    grid-column: 5/22;
  }
}
@media only screen and (min-width: 60em) {
  .footer-content .wrapped__content {
    grid-column: span 5;
  }
}
.footer-content .wrapped__content p, .footer-content .wrapped__content strong {
  padding-bottom: 20px;
}
.footer-content .wrapped__content p {
  font-size: 14px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 145%;
}
.footer-content .wrapped__content .stats {
  font-size: 16px;
  font-family: "Sectra", Georgia, serif;
}
.footer-content .wrapped__content .stats strong {
  font-size: 30px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d5d5db;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-family: "Sectra", Georgia, serif;
}
.footer-content .wrapped__content .stats br {
  display: none;
  height: 0;
}
.footer-content .wrapped__content .wp-block-button__link {
  font-family: "Sectra", Georgia, serif;
  font-style: italic;
  text-decoration: none;
  color: #404042;
  padding: 10px 30px 10px 20px;
}

[role=contentinfo] {
  min-height: 10rem;
  background-color: #1f1d18;
  grid-template-columns: repeat(21, 1fr);
  grid-gap: 10px;
  padding: 50px 10px;
}
@supports (display: grid) {
  [role=contentinfo] {
    display: grid;
  }
}

.site-footer aside {
  background: #6d6d70;
  grid-column: span 22;
  border-top: 3px solid #f1bc29;
  padding: 10px 20px;
  margin-bottom: 1em;
  width: 50%;
}
@supports (display: grid) {
  .site-footer aside {
    width: auto;
  }
}
@media only screen and (min-width: 60em) {
  .site-footer aside {
    grid-column: span 4;
  }
}
@media only screen and (min-width: 50em) {
  .site-footer aside {
    grid-column: span 6;
  }
}
.site-footer aside h2 {
  font-size: 1.2em;
  color: #f2ca5a;
  padding-bottom: 10px;
}
.site-footer aside p, .site-footer aside a {
  color: white;
}
.site-footer .tropenmuseum {
  grid-row: 4;
  grid-column: 2/span 21;
  margin-top: 20px;
  border-top: 3px solid #f1bc29;
  padding: 10px 30px 10px 10px;
  text-decoration: none;
}
@media only screen and (min-width: 50em) {
  .site-footer .tropenmuseum {
    grid-column: 17/span 5;
    grid-row: 2;
  }
}
.site-footer .tropenmuseum h2, .site-footer .tropenmuseum p {
  color: white;
}
.site-footer .tropenmuseum h2 {
  padding-bottom: 10px;
  font-size: 1rem;
}
.site-footer .tropenmuseum p {
  font-size: 0.75em;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.site-footer .tropenmuseum:hover, .site-footer .tropenmuseum:focus {
  background: #f1bc29;
  border-color: white;
}
.site-footer .tropenmuseum:hover h2, .site-footer .tropenmuseum:hover p, .site-footer .tropenmuseum:focus h2, .site-footer .tropenmuseum:focus p {
  color: #1f1d18;
}
.site-footer nav {
  margin-top: 20px;
  display: flex;
  grid-row: 3;
  grid-column: 1/span 21;
}
.site-footer nav ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
@media only screen and (min-width: 550px) {
  .site-footer nav ul {
    flex-flow: row wrap;
  }
}
.site-footer nav a {
  color: white;
  font-size: 16px;
}
@media only screen and (min-width: 40em) {
  .site-footer nav {
    grid-row: 2;
    grid-column: 1/10;
    align-items: flex-end;
  }
  .site-footer nav ul {
    justify-content: flex-start;
  }
  .site-footer nav ul li {
    margin-right: 20px;
  }
}

.masthead {
  grid-column: 1/-1;
  position: relative;
  z-index: 2;
  padding-top: 66%;
  margin-top: -0.4rem;
  margin-bottom: calc((100vw - 200px) / 21);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 40em) {
  .masthead {
    padding-top: 33.333%;
  }
}
.masthead img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}

.publications {
  list-style: none;
  padding: 10px 0 10px;
  border-top: 1px solid #1f1d18;
  margin: calc((100vw - 200px) / 21) 10px;
}
.publications .publication {
  margin-bottom: calc((100vw - 200px) / 21);
  padding: 10px 0 0;
  border-top: 1px solid #404042;
}
.publications .publication h3 {
  margin-bottom: 0;
}
.publications .publication p {
  margin-bottom: 10px;
}
.publications .publication .publication__intro {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
}
.publications .publication:first-of-type {
  border-top: 0;
}
.publications .publication .files img, .publications .publication .links img {
  max-height: 1rem;
  width: auto;
  display: inline-block;
}
.publications .publication .files p, .publications .publication .links p {
  display: inline-block;
  padding-left: 10px;
}
.publications .publication .files p span, .publications .publication .links p span {
  padding-left: 3px;
}
.publications .publication .files a, .publications .publication .links a {
  display: block;
  margin-bottom: 5px;
}

.publications-filter {
  align-items: center;
}
.publications-filter .field {
  margin: 0 10px 10px 0;
}
.publications-filter .field.field__search {
  flex: 1 0 100%;
}
.publications-filter .button-wrapper {
  text-align: right;
}
.publications-filter .button-wrapper .button, .publications-filter .button-wrapper .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .publications-filter .button-wrapper label, .publications-filter .button-wrapper .post-password-form input[type=submit], .post-password-form .publications-filter .button-wrapper input[type=submit], .publications-filter .button-wrapper .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .publications-filter .button-wrapper .intro:not(.no-button) > a:last-child {
  cursor: pointer;
}
@media only screen and (min-width: 50em) {
  .publications-filter {
    display: flex;
    flex-flow: row wrap;
  }
  .publications-filter h2, .publications-filter .button-wrapper {
    flex: 1 0 100%;
  }
  .publications-filter .field {
    flex: 1;
  }
  .publications-filter .field.field__keyword {
    margin-right: 10px;
  }
}

.publication {
  margin-bottom: 3rem;
}

.publication__meta {
  border-top: 1px solid #d5d5db;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.8em;
  display: flex;
  flex-wrap: wrap;
}
.publication__meta dl {
  flex: 1 1 45%;
  padding: 10px 0;
  border-bottom: 1px solid #d5d5db;
}
.publication__meta dl:nth-of-type(2n+1) {
  margin-right: 10px;
}
.publication__meta dt {
  font-weight: 700;
  color: #404042;
}
@media (prefers-color-scheme: dark) {
  .publication__meta dt {
    color: #f2e3bb;
  }
}
.publication__meta.publication__downloads {
  margin-top: 40px;
}
.publication__meta.publication__downloads dl dt {
  padding-bottom: 10px;
}
.publication__meta .link a {
  display: block;
}
.publication__meta-sidebar {
  margin-top: 20px;
}
.publication__meta-sidebar dl {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row nowrap;
}
.publication__meta-sidebar dd, .publication__meta-sidebar dt {
  font-size: 0.8rem;
}
.publication__meta-sidebar dd {
  flex: 1;
  padding-left: 10px;
  font-weight: normal;
  text-align: right;
}
.publication__meta dd.files {
  display: flex;
  flex-flow: column nowrap;
}

.pagesection__content > .staff-publications {
  border-top: 0;
  margin: 0;
}

.expendable button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
}
.expendable button[aria-expanded=false]::before {
  content: "► ";
}
.expendable button[aria-expanded=true]::before {
  content: "▼ ";
}

.page-conferences main {
  margin-top: calc((100vw - 200px) / 21);
}
@media only screen and (min-width: 60em) {
  .page-conferences main {
    background: url(./../images/kit-ce-illustration.svg) no-repeat right 4.7% top 0;
    background-size: 14.3%;
  }
}
.page-conferences .masthead + main {
  margin-top: 0;
}
.page-conferences h1 {
  position: relative;
  padding: 0 calc((100vw - 200px) / 21 * 2 + 10px) 1.6rem;
  text-align: center;
  font-variant: small-caps;
  text-transform: capitalize;
  margin: 0 0 20px 0;
}
.page-conferences h1 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .page-conferences h1 {
    font-size: calc(2.7083333333vw + 13.3333333333px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences h1 {
    font-size: 48px;
  }
}
.page-conferences h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc((100vw - 200px) / 21 * 2 + 10px);
  height: 1px;
  background-color: #1f1d18;
}
.page-conferences h1 .subtitle {
  color: #1f1d18;
}
.page-conferences .card h3 {
  display: block;
  position: relative;
  padding: 20px 10px;
  line-height: 1.2;
  font-variant: small-caps;
  font-feature-settings: "smcp" on;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  background: linear-gradient(#1f1d18 1px, #1f1d18 1px) no-repeat center bottom;
  background-size: 3rem 1px;
}
.page-conferences .card h3 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .page-conferences .card h3 {
    font-size: calc(0.625vw + 20px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences .card h3 {
    font-size: 28px;
  }
}
.page-conferences .card p {
  font-family: "Sectra", Georgia, serif;
}
.page-conferences .card p:last-of-type {
  margin-bottom: 10px;
}
.page-conferences .card__header {
  margin-bottom: 1rem;
}
.page-conferences h1.page-title {
  line-height: 1.1;
}
.page-conferences h1.page-title {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  .page-conferences h1.page-title {
    font-size: calc(2.2916666667vw + 24.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences h1.page-title {
    font-size: 54px;
  }
}
.page-conferences .quotes h2 {
  color: #1961ac;
}
.page-conferences .quotes nav {
  border-color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .page-conferences .pagesection__intro {
    border-color: #88bef7;
  }
}
.page-conferences .pagesection__content {
  border-color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .page-conferences .pagesection__content {
    border-color: #88bef7;
  }
}
.page-conferences .footer-kit .wrapped__content h3 {
  border: 0;
  padding: 0 0 20px 0;
}
.page-conferences.page-event main {
  margin-top: calc((100vw - 200px) / 21);
}

.cta:not(.pagesection__content) {
  display: flex;
  flex-direction: column;
  background-color: #f1bc29;
  border-top: 6px solid #404042;
  padding: 10px;
  margin-bottom: calc((100vw - 200px) / 42);
  margin-bottom: calc((100vw - 200px) / 42);
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
@media (prefers-color-scheme: dark) {
  .cta:not(.pagesection__content) {
    color: #1f1d18;
  }
  .cta:not(.pagesection__content) a {
    color: #1f1d18;
  }
}
@media only screen and (max-width: 60em) {
  .cta:not(.pagesection__content) {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 60em) {
  .sidebar .cta:not(.pagesection__content) {
    margin-left: 0;
  }
}
.cta:not(.pagesection__content) h3 {
  margin-bottom: 20px;
  font-family: "Sectra", Georgia, serif;
}
.cta:not(.pagesection__content) p {
  font-size: 0.875em;
}
.cta:not(.pagesection__content) .links {
  width: 100%;
  margin: 10px 0 20px;
  padding: 5px 0;
  border-top: 1px solid #404042;
  border-bottom: 1px solid #404042;
}
.cta:not(.pagesection__content) .links a {
  display: block;
  padding: 5px 10px;
  font-weight: 700;
  text-decoration: none;
}
.cta:not(.pagesection__content) .links a.mail, .cta:not(.pagesection__content) .links a.phone {
  padding-left: 30px;
  font-weight: 400;
}
.cta:not(.pagesection__content) .button, .cta:not(.pagesection__content) .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .cta:not(.pagesection__content) label, .cta:not(.pagesection__content) .post-password-form input[type=submit], .post-password-form .cta:not(.pagesection__content) input[type=submit], .cta:not(.pagesection__content) .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .cta:not(.pagesection__content) .intro:not(.no-button) > a:last-child {
  font-family: "Sectra", Georgia, serif;
  background-color: #ffde44;
  align-self: flex-end;
  margin-top: 20px;
}

@media only screen and (min-width: 60em) {
  .content > .wp-block-kit-cta.cta {
    grid-column: 8/span 5;
  }
}
.page-conferences .cta {
  background: transparent;
  border-top: 2px solid #1961ac;
}
@media only screen and (min-width: 60em) {
  .page-conferences .cta {
    margin-top: 12vw;
  }
}
@media only screen and (min-width: 1500px) {
  .page-conferences .cta {
    margin-top: 15vw;
  }
}
@media (prefers-color-scheme: dark) {
  .page-conferences .cta {
    color: #88bef7;
  }
  .page-conferences .cta a:not(.button) {
    color: #88bef7;
  }
}
.page-conferences .cta .links {
  border-color: #1961ac;
}
.page-conferences .cta .button, .page-conferences .cta .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .page-conferences .cta label, .page-conferences .cta .post-password-form input[type=submit], .post-password-form .page-conferences .cta input[type=submit], .page-conferences .cta .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .page-conferences .cta .intro:not(.no-button) > a:last-child {
  background: #f1919c;
}
.page-conferences .pagesection__content .cta {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.page-conferences .pagesection__content .cta h3 {
  padding: 10px;
}

.sdg-calendar .button-wrapper {
  margin: 15px 0;
  text-align: center;
}
.sdg-calendar .calendar-items.row {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  width: 100%;
}
.sdg-calendar .calendar-items.row li {
  background: white;
  flex: 1 0 100%;
  padding: 10px;
  margin: 0 0 15px 0;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1000px) {
  .sdg-calendar .calendar-items.row li {
    flex: 1 0 30%;
    margin: 0 15px 15px 0;
  }
}
.sdg-calendar .agenda-date {
  display: grid;
  grid-template-columns: 40% 1fr;
  height: 65px;
}
.sdg-calendar .agenda-date span {
  color: #898989;
}
.sdg-calendar .agenda-date .day {
  grid-column: 1;
  grid-row: 1/3;
  font-size: 4rem;
  line-height: 4rem;
  text-align: right;
  padding-right: 10px;
}
.sdg-calendar .agenda-date .day-name {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1rem;
  padding-top: 0.6em;
}
.sdg-calendar .agenda-date .month-year {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1rem;
}
.sdg-calendar .calendar-item .inside-article {
  background: #F3F3F3;
  padding: 1em;
  border-radius: 1em;
  position: relative;
  margin: 1em 0 0 0;
}
.sdg-calendar .calendar-item h2 {
  font-size: 1.1rem;
  font-weight: bold;
}
.sdg-calendar .calendar-item a {
  color: #333;
  text-decoration: none;
}
.sdg-calendar .calendar-item .post-image {
  display: none;
  float: right;
  width: 200px;
  height: auto;
  margin: -1.2em 0 0 1.2em;
}
.sdg-calendar .calendar-item .post-image img {
  max-width: 100%;
  height: auto;
}
.sdg-calendar .calendar-item .entry-summary {
  margin-top: 0.3em;
}
.sdg-calendar .calendar-item .entry-summary p {
  color: #333;
  line-height: 150%;
}
.sdg-calendar .calendar-item:first-of-type .inside-article {
  background: #E8B068;
}
.sdg-calendar .calendar-item:first-of-type .inside-article a, .sdg-calendar .calendar-item:first-of-type .inside-article h2 {
  color: white;
}
.sdg-calendar .calendar-item:first-of-type .inside-article .entry-summary p, .sdg-calendar .calendar-item:first-of-type .inside-article .post-source {
  color: white;
}

.page-conferences article header .subtitle {
  line-height: 1.25;
  text-align: center;
  font-family: "Sectra", Georgia, serif;
  padding: 0 20%;
}
.page-conferences article header .subtitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .page-conferences article header .subtitle {
    font-size: calc(0.4166666667vw + 18.6666666667px);
  }
}
@media screen and (min-width: 1280px) {
  .page-conferences article header .subtitle {
    font-size: 24px;
  }
}
.page-conferences article {
  margin-bottom: 0;
}
.page-conferences article .content {
  padding-bottom: 0;
}
.page-conferences .meta, .page-conferences .gallery nav, .page-conferences .pagesection__intro {
  color: #1961ac;
  border-color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .page-conferences .meta, .page-conferences .gallery nav, .page-conferences .pagesection__intro {
    color: #88bef7;
    border-color: #88bef7;
  }
}
.page-conferences .wrapped__content {
  display: flex;
  flex-flow: column nowrap;
}
.page-conferences .wrapped__content > div {
  flex: 1;
  margin-right: 10px;
}
.page-conferences .wrapped__content > div:last-child {
  margin-right: 0;
}
.page-conferences .wrapped__content h3 {
  color: #1961ac;
  padding: 10px 0 20px 5px;
  border-top: 1px solid #1961ac;
}
@media only screen and (min-width: 50em) {
  .page-conferences .wrapped__content {
    flex-flow: row nowrap;
  }
}
.page-conferences .wrapped__content ul:not(.layouts) {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  padding: 0 20px;
  margin-left: 0;
  color: #1961ac;
}
.page-conferences .wrapped__content ul:not(.layouts) li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}
.page-conferences .wrapped__content ul:not(.layouts) li:before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 5px;
  background: #1961ac;
  display: block;
  margin: 8px 10px 0;
  margin-left: -15px;
}
.page-conferences .wrapped__content ul:not(.layouts).layouts li:before {
  content: none;
}
.page-conferences .pagesection__content {
  display: flex;
  flex-flow: row wrap;
}
.page-conferences .pagesection__content > div {
  flex: 1 0 45%;
  margin-left: 10px;
}
.page-conferences .pagesection__content > div > h3 {
  border: 1px solid #1961ac;
  border-right: 0;
  border-left: 0;
  color: #1961ac;
}
@media (prefers-color-scheme: dark) {
  .page-conferences .pagesection__content > div > h3 {
    color: #4e93de;
  }
}
.page-conferences .pagesection__content .quotes {
  flex: 1 0 100%;
}
.page-conferences .pagesection__content .quotes blockquote {
  margin-left: 10px;
}
.page-conferences .related .card__type {
  display: none;
}
.page-conferences .related .card {
  border-color: #f1919c;
}
.page-conferences .contact-card h4, .page-conferences .contact-card p {
  color: #1f1d18;
}
@media only screen and (min-width: 50em) {
  .page-conferences .wrapped__content.possibility-block {
    flex-flow: row wrap;
  }
  .page-conferences .wrapped__content.possibility-block .card h3 {
    border-top: 0;
  }
}

.room-layout {
  font-size: 0.9em;
}

.room-layouts .layouts {
  font-family: "Sectra", Georgia, serif;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 5px;
  margin-left: 0;
  color: #1961ac;
}
.room-layouts .layouts li {
  padding-top: 50px;
  background: transparent;
  font-weight: 700;
  background-image: url("../images/layouts/carre.svg");
  background-size: auto 36px;
  background-position: top center;
  background-repeat: no-repeat;
}
.room-layouts .layouts li.classroom {
  background-image: url("../images/layouts/classroom.svg");
}
.room-layouts .layouts li.lecture {
  background-image: url("../images/layouts/lecture.svg");
}
.room-layouts .layouts li.reception {
  background-image: url("../images/layouts/reception.svg");
}
.room-layouts .layouts li.round_table {
  background-image: url("../images/layouts/round_table.svg");
}
.room-layouts .layouts li.square {
  background-image: url("../images/layouts/square.svg");
}
.room-layouts .layouts li.theatre {
  background-image: url("../images/layouts/theatre.svg");
}
.room-layouts .layouts li.u_shape {
  background-image: url("../images/layouts/u_shape.svg");
}
.room-layouts .layouts li.persons {
  background-image: url("../images/layouts/persons.svg");
  background-size: auto 32px;
  background-position: center top;
}
.room-layouts .layouts li.surface {
  background-image: url("../images/layouts/surface.svg");
  background-size: auto 32px;
  background-position: center 10px;
}
.room-layouts .layouts p {
  text-align: center;
  width: 100%;
}

.room-specs ul li strong {
  flex: 1;
}
.room-specs ul li span {
  margin-left: auto;
  text-align: right;
}

.listing h3 {
  padding: 10px 0;
  margin-bottom: 20px;
}
.listing h3:empty {
  display: none;
}
.listing .actions:empty {
  display: none;
}

@media only screen and (min-width: 50em) {
  .pagesection__content > .wp-block-kit-contact {
    max-width: calc(50% - 10px);
  }
  .pagesection__content.expert > .wp-block-kit-contact {
    max-width: initial;
  }
  .pagesection__content.expert > .wp-block-kit-contact .contact-card {
    margin-right: 0;
    height: 100%;
  }

  .pagesection__content.contact {
    display: flex;
    flex-flow: row wrap;
  }
  .pagesection__content.contact > .wp-block-kit-contact,
.pagesection__content.contact > .wp-block-kit-expert {
    margin: 0 10px 10px 0;
    flex: 1 0 45%;
    display: flex;
    flex-flow: column nowrap;
  }
  .pagesection__content.contact > .wp-block-kit-contact:nth-child(even),
.pagesection__content.contact > .wp-block-kit-expert:nth-child(even) {
    margin-right: 0;
  }
}
.contact-card {
  padding: 10px;
  background-color: rgba(118, 227, 211, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact-card figure {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
}
.contact-card figure img {
  background: black;
  width: 50px;
  height: 50px;
}
.contact-card .actions {
  display: block;
}
.contact-card .actions:empty {
  display: none;
}
.page-conferences .contact-card {
  background-color: #ffe6e8;
}
@media (prefers-color-scheme: dark) {
  .contact-card a {
    color: #404042;
  }
}

.pagesection__content.related ul {
  grid-gap: 10px;
  margin: 0;
  padding: 0 0 0 0;
}
@supports (display: grid) {
  .pagesection__content.related ul {
    display: grid;
  }
}
@media only screen and (min-width: 50em) {
  .pagesection__content.related ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pagesection__content.related .intro {
  font-size: 16px;
}
.pagesection__content.related .wp-post-image {
  max-width: 100%;
  height: auto;
}

.pagesection__content .related + .wp-block-button, .pagesection__content .collection + .wp-block-button {
  text-align: center;
  padding: 20px 0;
}

.filter-collection {
  margin: 0;
  background: #fff4c4;
  border: 1px solid #1f1d18;
  border-left: 0;
  border-right: 0;
  padding: 10px;
  margin-bottom: 2rem;
  display: flex;
  flex-flow: column nowrap;
}
@media (prefers-color-scheme: dark) {
  .filter-collection {
    color: #fcf6eb;
    background: #0f0f0f;
  }
}
.filter-collection header {
  padding: 0;
  margin-bottom: 20px;
  display: flex;
}
.filter-collection header h4 {
  font-family: "Sectra", Georgia, serif;
}
.filter-collection header a {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: white url("./../images/icons/icon-top.svg") no-repeat;
  background-size: 1rem 1rem;
  background-position: center center;
  margin-left: auto;
}
.filter-collection input, .filter-collection .select-wrapper {
  font-size: 16px;
}
.filter-collection label {
  margin: 20px 0 10px 0;
}
.filter-collection .date-range {
  padding: 0;
  display: grid;
  grid-gap: 0 10px;
  border: 0;
  grid-template-columns: 1fr 1fr;
}
.filter-collection button {
  /*        @include fontsize-m();
          font-family: $serif;
          padding: $gap $gap * 2;
          background: $color-yellow;
          border: 0;
          font-style: italic;*/
  margin: 20px 0 0 auto;
}

.no-posts {
  grid-column: 5/20;
  padding-top: 100px;
  text-align: center;
}
.no-posts h3 {
  padding-bottom: 10px;
}

.tornblock {
  position: relative;
  flex-shrink: 0;
  padding-right: 0;
  margin-right: 0;
}
.tornblock:focus-within {
  box-shadow: 0 0 0 4px black;
}
.tornblock img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}

.tornblock__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #1f1d18;
  padding: 30px 20px 10px 20px;
}
.tornblock__caption::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: url(./../images/kartel-caption.svg);
}
.tornblock__caption h2, .tornblock__caption h3 {
  position: relative;
  font-size: 2.5em;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}
.tornblock__caption h2, .tornblock__caption h3 {
  font-size: 28px;
}
@media screen and (min-width: 640px) {
  .tornblock__caption h2, .tornblock__caption h3 {
    font-size: calc(3.75vw + 4px);
  }
}
@media screen and (min-width: 1280px) {
  .tornblock__caption h2, .tornblock__caption h3 {
    font-size: 52px;
  }
}
.tornblock__caption p {
  position: relative;
  margin-bottom: 10px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.875em;
}
.tornblock__caption a {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  color: transparent;
}

.study {
  margin-bottom: calc((100vw - 200px) / 21);
  padding-left: 10px;
  padding-right: 10px;
}
.study h3 {
  padding-bottom: 10px;
  margin-bottom: 0;
}
.study h3 a {
  text-decoration: none;
}
.study .intro {
  font-size: 18px;
}
.study .study__information {
  display: flex;
  list-style: none;
  padding: 0;
  margin-left: 0;
  border-top: 1px solid #a3a3a8;
}
.study .study__information li {
  flex: 1;
  padding: 10px 0;
  margin-right: 10px;
  border-bottom: 1px solid #a3a3a8;
}
.study .study__information li.no-border {
  border-bottom: 0;
  text-align: right;
  align-self: center;
}
.study .study__information li p {
  font-size: 0.875em;
  margin-bottom: 0;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.study .study__information .button, .study .study__information .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .study .study__information label, .study .study__information .post-password-form input[type=submit], .post-password-form .study .study__information input[type=submit], .study .study__information .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .study .study__information .intro:not(.no-button) > a:last-child {
  background: #fff0ab;
}
.study .study__information .button:hover, .study .study__information .feedback-form .choice-buttons .gfield_radio label:hover, .feedback-form .choice-buttons .gfield_radio .study .study__information label:hover, .study .study__information .post-password-form input[type=submit]:hover, .post-password-form .study .study__information input[type=submit]:hover, .study .study__information .pagesection__intro .intro:not(.no-button) > a:hover:last-child, .pagesection__intro .study .study__information .intro:not(.no-button) > a:hover:last-child {
  background: #ffde44;
}

.study + .button, .feedback-form .choice-buttons .gfield_radio .study + label, .post-password-form .study + input[type=submit], .pagesection__intro .intro:not(.no-button) > .study + a:last-child {
  margin-left: 10px;
}

.study__meta {
  border-top: 2px solid #404042;
  display: flex;
  flex-flow: row wrap;
  margin: 10px 10px 30px 10px;
}
.study__meta dl {
  padding: 20px 0;
  margin: 0 0 10px 0;
  flex: 1 0 100%;
  border-bottom: 1px solid #9e8f6a;
}
.study__meta dl:last-of-type {
  margin-right: 0;
}
.study__meta dl dd, .study__meta dl dt {
  font-size: 0.85rem;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.study__meta dl dt {
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (min-width: 30em) {
  .study__meta dl {
    flex: 1 0 45%;
    margin-right: 10px;
  }
  .study__meta dl:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 60em) {
  .study__meta dl {
    flex: 1 0 30%;
    max-width: 32%;
  }
  .study__meta dl:nth-child(even) {
    margin-right: 10px;
  }
  .study__meta dl:nth-child(3n+0) {
    margin-right: 0;
  }
}

.collection__study:first-of-type {
  margin-top: 100px;
}
.collection__study .pagesection__intro {
  border-color: #5c296f;
}
.collection__study .pagesection__intro h2 {
  color: #5c296f;
}
@media (prefers-color-scheme: dark) {
  .collection__study .pagesection__intro h2 {
    color: #cfbad6;
  }
}
.collection__study .pagesection__intro .intro {
  font-size: 18px;
  font-family: "Sectra", Georgia, serif;
}
.collection__study .pagesection__content {
  border-color: #5c296f;
}

.wp-block-kit-read-more {
  background-color: #fff0ab;
  padding: 0.2em 1.6em 0.2em 0.5em;
  margin-left: calc(50% - 4em);
  margin-bottom: calc((100vw - 200px) / 21);
}
.wp-block-kit-read-more::after {
  top: 0.3em;
  right: 0.4em;
  background-image: url("./../images/icons/icon-up.svg");
  transform: rotate(180deg);
}
.wp-block-kit-read-more:hover, .wp-block-kit-read-more:focus {
  background: #ffde44;
}
.wp-block-kit-read-more:hover::after, .wp-block-kit-read-more:focus::after {
  transform: translateY(0.25em) rotate(180deg);
}
.wp-block-kit-read-more.clicked::after {
  transform: rotate(0deg);
}
.wp-block-kit-read-more.clicked:hover::after, .wp-block-kit-read-more.clicked:focus::after {
  transform: translateY(0.25em) rotate(0deg);
}

.read-more--content.visuallyhidden + .button::after, .feedback-form .choice-buttons .gfield_radio .read-more--content.visuallyhidden + label::after, .post-password-form .read-more--content.visuallyhidden + input[type=submit]::after, .pagesection__intro .intro:not(.no-button) > .read-more--content.visuallyhidden + a:last-child::after {
  background-image: url("./../images/icons/icon-down.svg");
  transform: rotate(0deg);
}
.read-more--content.visuallyhidden + .button:hover::after, .feedback-form .choice-buttons .gfield_radio .read-more--content.visuallyhidden + label:hover::after, .post-password-form .read-more--content.visuallyhidden + input[type=submit]:hover::after, .pagesection__intro .intro:not(.no-button) > .read-more--content.visuallyhidden + a:hover:last-child::after, .read-more--content.visuallyhidden + .button:focus::after, .feedback-form .choice-buttons .gfield_radio .read-more--content.visuallyhidden + label:focus::after, .post-password-form .read-more--content.visuallyhidden + input[type=submit]:focus::after, .pagesection__intro .intro:not(.no-button) > .read-more--content.visuallyhidden + a:focus:last-child::after {
  transform: translateY(0.25em);
}

aside.sidebar {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  /*    .cta{
          border-top: 0;
          background: $color-yellow;

          .button{
              background: $color-yellow-warm;
          }
      }*/
}
@media only screen and (min-width: 60em) {
  aside.sidebar {
    padding-bottom: 0;
    margin-bottom: -250px;
  }
}
aside.sidebar .wp-block-image img {
  display: block;
  width: 100%;
}
aside.sidebar .wp-block-button a {
  font-size: 16px;
  width: 100%;
}
aside.sidebar .wp-block-button + .wp-block-kit-cta {
  margin-top: 30px;
}
@media only screen and (max-width: 60em) {
  .study-content + aside.sidebar.study__sidebar {
    grid-row: 2;
  }
}
@media only screen and (min-width: 60em) {
  aside.sidebar.study__sidebar > div {
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
  }
}
aside.sidebar.study__sidebar .wp-block-button {
  margin-top: 0;
}
aside.sidebar.study__sidebar .wp-block-button:last-of-type a {
  font-size: 1em;
  color: #404042 !important;
  background: #fff4c4;
  box-shadow: 0 1px 1px 0 #bf9521;
}
aside.sidebar.study__sidebar .wp-block-button:last-of-type a::after {
  background-image: url(./../images/icons/icon-right.svg);
}
aside.sidebar.study__sidebar .wp-block-button a {
  font-size: 1.2em;
  color: #ffde44 !important;
  background: #404042;
  box-shadow: 0 1px 1px 0 black;
}
aside.sidebar.study__sidebar .wp-block-button a::after {
  background-image: url(./../images/icons/icon-right-yellow.svg);
}
aside.sidebar.study__sidebar .wp-block-button a:hover, aside.sidebar.study__sidebar .wp-block-button a:focus {
  background: #ffde44 !important;
  color: #404042 !important;
  box-shadow: 0 1px 1px 0 #bf9521;
}
aside.sidebar.study__sidebar .wp-block-button a:hover::after, aside.sidebar.study__sidebar .wp-block-button a:focus::after {
  background-image: url(./../images/icons/icon-right.svg);
}
@media (prefers-color-scheme: dark) {
  aside.sidebar.study__sidebar .wp-block-button a {
    background: #ffde44 !important;
    color: #404042 !important;
    box-shadow: 0 1px 1px 0 #bf9521;
  }
  aside.sidebar.study__sidebar .wp-block-button a::after {
    background-image: url(./../images/icons/icon-right.svg);
  }
  aside.sidebar.study__sidebar .wp-block-button a:hover, aside.sidebar.study__sidebar .wp-block-button a:focus {
    color: #ffde44 !important;
    background: #404042 !important;
    box-shadow: 0 1px 1px 0 black;
  }
  aside.sidebar.study__sidebar .wp-block-button a:hover::after, aside.sidebar.study__sidebar .wp-block-button a:focus::after {
    background-image: url(./../images/icons/icon-right-yellow.svg);
  }
}
aside.sidebar.study__sidebar .wp-block-button + .wp-block-button {
  margin-top: 20px;
}

.sdgs {
  display: flex;
  flex-flow: row wrap;
}
.sdgs > div {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.sdgs h3 {
  flex: 1 0 100%;
  border-top: 1px solid #1f1d18;
  padding: 10px 0 10px 0;
}
.sdgs ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
  font-size: 14px;
  font-weight: 500;
}
.sdgs li {
  display: flex;
  align-items: center;
}
.sdgs li a {
  display: flex;
  align-items: center;
}
.sdgs .sdg-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin-right: 10px;
  background-size: 100%;
  background-image: url("../images/icons/icons-sdg.png");
  background-repeat: no-repeat;
}
.sdgs .no-poverty {
  background-position: 0px 0px;
}
.sdgs .zero-hunger {
  background-position: 0px -45px;
}
.sdgs .good-health-and-well-being {
  background-position: 0px -90px;
}
.sdgs .quality-education {
  background-position: 0px -135px;
}
.sdgs .gender-equality {
  background-position: 0px -180px;
}
.sdgs .clean-water-and-sanitation {
  background-position: 0px -225px;
}
.sdgs .affordable-and-clean-energy {
  background-position: 0px -270px;
}
.sdgs .decent-work-and-economic-growth {
  background-position: 0px -315px;
}
.sdgs .industry-innovation-and-infrastructure {
  background-position: 0px -360px;
}
.sdgs .reduced-inequalities {
  background-position: 0px -405px;
}
.sdgs .sustainable-cities-and-communities {
  background-position: 0px -450px;
}
.sdgs .responsible-consumption-and-production {
  background-position: 0px -495px;
}
.sdgs .climate-action {
  background-position: 0px -540px;
}
.sdgs .life-below-water {
  background-position: 0px -585px;
}
.sdgs .life-on-land {
  background-position: 0px -630px;
}
.sdgs .peace-justice-and-strong-institutions {
  background-position: 0px -675px;
}
.sdgs .partnership-for-the-goals {
  background-position: 0px -720px;
}

.summary > .impact-area a {
  font-size: 1.25em;
  position: relative;
  text-decoration: none;
  color: #d5d5db;
  display: block;
  padding: 10px 40px 10px 10px;
  background: #404042;
  font-weight: 700;
  border-top: 3px solid #f1bc29;
}
.summary > .impact-area a::after {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 15px;
  background: #d5d5db;
  background-image: url("../images/icons/icon-navigate-right.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  top: 10px;
  right: 10px;
  display: block;
  content: "";
}
.summary > .impact-area a:hover, .summary > .impact-area a:focus {
  background: #0f0f0f;
}

.project-experts {
  padding: 10px 0 10px 0;
  border-top: 1px solid #1f1d18;
}
.project-experts ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.project-experts h3 {
  margin-bottom: 20px;
}
.project-experts li {
  display: block;
  margin: 0 0 30px 0;
  flex: 1 1 300px;
}
.project-experts li figure {
  width: 46px;
  height: 46px;
  background: rgba(31, 29, 24, 0.3);
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
.project-experts li img {
  border-radius: 50%;
  width: 100%;
}
.project-experts li .profession {
  font-size: 0.875em;
}
.project-experts li:last-child {
  margin-bottom: 0;
}
.project-experts a {
  display: block;
  text-decoration: none;
  border-radius: 40px 0 0 40px;
}
.project-experts a:hover h4, .project-experts a:focus h4 {
  text-decoration: underline;
}
.project-experts a:focus {
  background-color: rgba(241, 188, 41, 0.5);
}
.project-experts a.more-experts-link {
  border-radius: 0;
  text-decoration: underline;
  font-size: 1rem;
  text-align: right;
  display: block;
  padding-right: 20px;
  background-image: url(./../images/icons/icon-right.svg);
  background-repeat: no-repeat;
  background-size: 1em 1em;
  background-position: 100% 50%;
}
@media (prefers-color-scheme: dark) {
  .project-experts a.more-experts-link {
    background-image: url(./../images/icons/icon-right-white.svg);
  }
}

.staff-collection {
  list-style: none;
  margin-left: 10px;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.staff-collection li {
  display: block;
  padding: 20px 10px 20px 0;
  display: block;
  min-height: 50px;
  flex: 1 1 50%;
  display: flex;
  align-items: flex-start;
}
.staff-collection li figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(118, 227, 211, 0.25);
  float: left;
  margin: 0 20px 0 0;
  flex-shrink: 0;
}
.staff-collection li h2, .staff-collection li strong {
  display: block;
  font-size: 1em;
}
.staff-collection li p {
  margin-bottom: 0;
}
.staff-collection li:after {
  clear: both;
}

.wp-block-kit-partners {
  display: flex;
  flex-flow: row wrap;
  padding: 10px 10px 0 10px;
  margin-bottom: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  background: white;
}
.wp-block-kit-partners > div {
  display: flex;
  align-items: center;
  flex: 1 1 360px;
  margin: 0 10px 10px 0;
  background: white;
  border-left: 0;
  border-right: 0;
}
.wp-block-kit-partners > div img {
  max-width: 240px;
}
.wp-block-kit-partners > div:nth-child(2n+0) {
  margin-right: 0;
}
@media only screen and (min-width: 40em) {
  .wp-block-kit-partners {
    flex: 1 0 240px;
  }
}
@media only screen and (min-width: 50em) {
  .wp-block-kit-partners > div {
    background: transparent;
    border: 0;
    flex: 1 0 240px;
    gap: 10px;
  }
  .wp-block-kit-partners > div:nth-child(3n+0) {
    margin-right: 0;
  }
}

.page-conferences .pagesection__content .wp-block-kit-partners,
.pagesection__content .wp-block-kit-partners {
  flex: 1 0 100%;
  margin: 10px 0;
}

.pagesection__content.partners {
  padding-top: 0;
}

nav.pagination {
  grid-column: 1/16;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  -ms-grid-row: 3;
}
nav.pagination span, nav.pagination a {
  background: #d5d5db;
  padding: 5px 10px 10px 10px;
  line-height: 100%;
  margin: 0 10px 10px 0;
}
@media (prefers-color-scheme: dark) {
  nav.pagination span, nav.pagination a {
    color: #404042;
  }
}
nav.pagination span {
  background: #0f8064;
  color: white;
}
nav.pagination a:hover, nav.pagination a:focus {
  background: #f1bc29;
  box-shadow: 0 0 0 4px black;
}
@media (prefers-color-scheme: dark) {
  nav.pagination a:hover, nav.pagination a:focus {
    box-shadow: 0 0 0 4px #f2e3bb;
  }
}

.filter__taxonomy, .page__nav {
  grid-column: 1/22;
  padding: 10px 0;
  margin: calc((100vw - 200px) / 21) 10px 3rem;
  border-top: 1px solid #1f1d18;
}
@media only screen and (min-width: 40em) {
  .filter__taxonomy, .page__nav {
    grid-column: 1/5;
    grid-row: 2;
  }
}
.filter__taxonomy h3, .page__nav h3 {
  margin-bottom: 20px;
  min-height: 2.75em;
}

.banner {
  position: relative;
  padding: 0;
}
.banner h3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #ffde44;
  padding: 10px;
  margin-top: 0;
  text-align: center;
  color: #1f1d18 !important;
}
.banner.green h3 {
  background: #1f7f6d !important;
  color: #fcf6eb !important;
}
.banner.green:hover h3, .banner.green:focus h3 {
  color: #2bb39a !important;
  background-color: #1f1d18 !important;
}
.banner.blue h3 {
  background: #1961ac !important;
}
.banner.blue:hover h3, .banner.blue:focus h3 {
  color: #1961ac !important;
  background-color: #1f1d18 !important;
}
.banner.pink h3 {
  background: #f1919c !important;
}
.banner.pink:hover h3, .banner.pink:focus h3 {
  color: #f1919c !important;
  background-color: #1f1d18 !important;
}
.banner img {
  display: block;
  width: 100%;
  height: auto;
}

a.banner:hover h3, a.banner:focus h3 {
  background: #1f1d18 !important;
  color: #ffde44 !important;
}
a.banner:focus {
  text-decoration: underline;
  box-shadow: 0 0 0 4px black;
}

.pagesection__content.banner {
  display: flex;
  padding: 10px;
}
.pagesection__content.banner .banner {
  flex: 1 0 45%;
}
.pagesection__content.banner .banner:first-child {
  margin-right: 10px;
}

.page-conferences .pagesection__content > .banner > h3 {
  border: 0;
}

.wp-block-kit-text-and-button h3 {
  padding: 5px;
  border-top: 1px solid #404042;
  border-bottom: 1px solid #404042;
  margin-bottom: 10px;
  margin-top: 0;
}

.pagesection__content.text-and-button div:first-of-type {
  margin-bottom: 20px;
}
@media only screen and (min-width: 50em) {
  .pagesection__content.text-and-button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .pagesection__content.text-and-button div {
    margin-bottom: 0;
  }
}

.highlightblock.wp-block-kit-text-and-button h3 {
  padding: 10px 10px;
  margin-bottom: 0;
}
.highlightblock.wp-block-kit-text-and-button p {
  padding: 20px 10px 10px 10px;
}

.wp-block-embed {
  position: relative;
  /*
  &.wp-block-embed-issuu, 
  &.is-provider-issuu{
      width: 100%;
      height: 100%;
      margin-top: $gap;

      .issuuembed{
          width: 100% !important;
          height: 100% !important;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
      }
  }*/
}
.wp-block-embed.is-type-video, .wp-block-embed.wp-block-embed-issuu {
  padding-top: 10px;
  padding-bottom: 20px;
}
.wp-block-embed.is-type-video iframe, .wp-block-embed.wp-block-embed-issuu iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wp-block-embed.is-type-video .entry-content-asset, .wp-block-embed.wp-block-embed-issuu .entry-content-asset {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.wp-block-embed.is-type-wp-embed {
  margin-top: 10px;
}
.wp-block-embed.is-type-wp-embed iframe {
  width: 100%;
}

.faq-list ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
.faq-list > ul > li > a {
  text-decoration: none;
  display: flex;
  position: relative;
  padding: 10px 30px 10px 0;
}
.faq-list > ul > li > a::before {
  content: "";
  background-image: url(./../images/icons/icon-down.svg);
  background-size: 1.1em 1.1em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 1em;
  margin-top: 2px;
  right: 0;
  position: absolute;
  transition: transform, 0.15s ease;
}
.faq-list > ul > li > a.is-open {
  padding-left: 10px;
  font-weight: 700;
  background-color: #ffde44;
}
@media (prefers-color-scheme: dark) {
  .faq-list > ul > li > a.is-open {
    color: #404042;
  }
}
.faq-list > ul > li > a.is-open::before {
  background-image: url(./../images/icons/icon-up.svg);
}
.faq-list > ul > li > a:hover, .faq-list > ul > li > a:focus {
  text-decoration: underline;
}

.faq__content {
  display: none;
  padding: 10px;
  background-color: #fff0ab;
  margin-bottom: 10px;
}
@media (prefers-color-scheme: dark) {
  .faq__content {
    color: #404042;
  }
  .faq__content a {
    color: #404042;
  }
}
.faq__content.active {
  display: block;
}
.faq__content ul {
  list-style: disc;
  margin-left: 20px;
}

.page-conferences .faq-list > ul > li > a.is-open {
  background-color: #f1919c;
}
.page-conferences .faq__content {
  background-color: #ffccd2;
}

.pagesection__content.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  grid-gap: 10px;
  padding-right: 10px;
}
.pagesection__content.faq-list .listing h3 {
  margin-top: 0;
  border-top: 1px solid #404042;
  border-bottom: 1px solid #404042;
}
.pagesection__content.faq-list ul > li > a::before {
  background-image: url(./../images/icons/icon-right.svg);
}
@media (prefers-color-scheme: dark) {
  .pagesection__content.faq-list ul > li > a::before {
    background-image: url(./../images/icons/icon-right-white.svg);
  }
}

.pagesection__content .faq-list {
  margin-bottom: 20px;
}

.checklist ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: grid;
}
@media only screen and (min-width: 50em) {
  .checklist ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.checklist ul li {
  display: flex;
  padding: 0 10px 4px 0;
}
.checklist ul li p {
  flex: 1;
}
.checklist ul li::before {
  content: "";
  height: 1em;
  width: 24px;
  display: block;
  margin-right: 5px;
  background: url("../images/icons/icon-check.svg");
}

.four-o-four h1 {
  position: relative;
  padding: 0 calc((100vw - 200px) / 21 * 2 + 10px) calc((100vw - 200px) / 42);
  text-align: center;
  font-variant: small-caps;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.four-o-four h1 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .four-o-four h1 {
    font-size: calc(2.7083333333vw + 13.3333333333px);
  }
}
@media screen and (min-width: 1280px) {
  .four-o-four h1 {
    font-size: 48px;
  }
}
.four-o-four h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc((100vw - 200px) / 21 * 2 + 10px);
  height: 1px;
  background-color: #1f1d18;
}
.four-o-four header, .four-o-four .content {
  text-align: center;
}

.cookie-notice {
  position: relative;
  top: 0;
  padding: 10px;
  background: #404042;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 300;
}
.cookie-notice.active {
  display: block;
}
@media only screen and (min-width: 50em) {
  .cookie-notice.active {
    display: flex;
  }
}
@media only screen and (max-width: 50em) {
  .cookie-notice p {
    margin-bottom: 1rem;
  }
}
.cookie-notice p, .cookie-notice p > a, .cookie-notice .cancel-link {
  color: white;
}
.cookie-notice p > a:hover, .cookie-notice .cancel-link:hover {
  color: #ffde44;
}
.cookie-notice .button-wrapper {
  justify-self: flex-end;
  flex-flow: column nowrap;
  align-items: flex-end;
}
.cookie-notice .button-wrapper .button, .cookie-notice .button-wrapper .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .cookie-notice .button-wrapper label, .cookie-notice .button-wrapper .post-password-form input[type=submit], .post-password-form .cookie-notice .button-wrapper input[type=submit], .cookie-notice .button-wrapper .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .cookie-notice .button-wrapper .intro:not(.no-button) > a:last-child {
  margin-bottom: 10px;
}
@media only screen and (min-width: 40em) {
  .cookie-notice .button-wrapper {
    flex-flow: row nowrap;
    align-items: center;
    margin-left: 40px;
    display: flex;
    text-align: right;
  }
  .cookie-notice .button-wrapper .button, .cookie-notice .button-wrapper .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .cookie-notice .button-wrapper label, .cookie-notice .button-wrapper .post-password-form input[type=submit], .post-password-form .cookie-notice .button-wrapper input[type=submit], .cookie-notice .button-wrapper .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .cookie-notice .button-wrapper .intro:not(.no-button) > a:last-child {
    margin-bottom: 0;
  }
}
.cookie-notice .cancel-link {
  font-size: 0.8em;
  margin-left: 10px;
}

.language-warning {
  margin-bottom: 20px;
  padding: 5px;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #1f1d18;
  background-color: #f1bc29;
  border: 1px solid #bf9521;
  border-radius: 2px;
}

.wp-block-kit-linklist.topics {
  background: #404042;
  padding: 10px;
  display: flex;
  flex-flow: column nowrap;
  border-top: 2px solid #f1bc29;
}
.wp-block-kit-linklist.topics h3 {
  color: #f1bc29;
  margin-top: 0;
}
.wp-block-kit-linklist.topics .button, .wp-block-kit-linklist.topics .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .wp-block-kit-linklist.topics label, .wp-block-kit-linklist.topics .post-password-form input[type=submit], .post-password-form .wp-block-kit-linklist.topics input[type=submit], .wp-block-kit-linklist.topics .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .wp-block-kit-linklist.topics .intro:not(.no-button) > a:last-child {
  margin-top: auto;
  background: none;
  color: #ffde44;
  border: 0;
  box-shadow: none;
  align-self: flex-end;
}
.wp-block-kit-linklist.topics .button::after, .wp-block-kit-linklist.topics .feedback-form .choice-buttons .gfield_radio label::after, .feedback-form .choice-buttons .gfield_radio .wp-block-kit-linklist.topics label::after, .wp-block-kit-linklist.topics .post-password-form input[type=submit]::after, .post-password-form .wp-block-kit-linklist.topics input[type=submit]::after, .wp-block-kit-linklist.topics .pagesection__intro .intro:not(.no-button) > a:last-child::after, .pagesection__intro .wp-block-kit-linklist.topics .intro:not(.no-button) > a:last-child::after {
  background-image: url("./../images/icons/icon-right-yellow.svg");
}
.wp-block-kit-linklist.topics a {
  color: white;
}
.wp-block-kit-linklist.topics ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.wp-block-kit-linklist.topics ul a {
  display: flex;
  align-items: center;
}
.wp-block-kit-linklist.topics ul a svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0.2em 10px 0 0;
}
.wp-block-kit-linklist.topics ul a svg polygon {
  fill: white;
}

.pagesection__content.topics {
  display: flex;
  flex-flow: row wrap;
  border-top: 0;
  padding-top: 0;
}
.pagesection__content.topics .topics {
  flex: 1 0 45%;
  margin-right: 10px;
}
.pagesection__content.topics .topics:nth-child(even) {
  margin-right: 0;
}

.social-button, .social-icon {
  display: inline-block;
}
.social-button .icon, .social-icon .icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url("../images/icons/facebook.svg");
  background-size: 100% auto;
  margin-right: 5px;
}
.social-button .icon.linkedin, .social-icon .icon.linkedin {
  background-image: url("../images/icons/linkedin.svg");
}
.social-button .icon.twitter, .social-icon .icon.twitter {
  background-image: url("../images/icons/twitter.svg");
}
.social-button .text, .social-icon .text {
  padding-right: 20px;
}

.social-icon {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffde44;
}
.social-icon.icon__small {
  height: 1.2em;
  width: 1.2em;
  border-radius: 8px;
  margin-top: 5px;
}
.social-icon .icon {
  width: 100%;
  height: 100%;
}
.social-icon:hover .icon {
  opacity: 0.5;
}

.social-buttons {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.social-buttons.display__icons {
  flex-flow: row wrap;
}
.social-buttons.display__icons > a {
  margin: 0 5px 5px 0;
}
.social-buttons h3 {
  margin-top: 0;
  margin-bottom: 30px;
  width: 100%;
  padding: 10px 0;
  display: block;
}
.social-buttons .social-button {
  margin-bottom: 10px;
}

.contact-information .social-buttons {
  margin-top: 10px;
}
.contact-information .social-buttons a.social-icon {
  margin-right: 10px;
  border-radius: 9px;
  background-image: url("../images/icons/icon-facebook.png");
}
.contact-information .social-buttons a.social-icon.linkedin {
  background-image: url("../images/icons/icon-linkedin.png");
}
.contact-information .social-buttons a.social-icon.twitter {
  background-image: url("../images/icons/icon-twitter.png");
}
.contact-information .social-buttons a.social-icon:hover {
  background-color: transparent;
}

#main.knowledge-centre + .pagesection .pagesection__content.linklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media only screen and (min-width: 60em) {
  #main.knowledge-centre + .pagesection .pagesection__content {
    max-width: 80%;
  }
  #main.knowledge-centre + .pagesection .pagesection__content.linklist {
    padding-top: 0;
    border-top: 0;
    grid-template-columns: 1fr 1fr;
  }
  #main.knowledge-centre + .pagesection .pagesection__content.linklist .wp-block-kit-linklist {
    margin: 0;
    padding: 0;
    grid-column: unset;
  }
}
.event__meta {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  font-size: 1rem;
}
.event__meta li {
  display: flex;
  font-weight: 400;
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.event__meta li em {
  font-weight: 700;
  width: 50%;
  flex: 0 0 50%;
  margin-right: 10px;
}

.post-password-form p {
  font-family: "Sectra", Georgia, serif;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  padding-bottom: 40px;
}
.post-password-form label {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: flex;
  flex-flow: column nowrap;
  margin: 0 20px 0 0;
}
.post-password-form label input {
  width: 100%;
}
.post-password-form input[type=password] {
  font-size: 18px;
  padding: 5px 10px;
}
.post-password-form input[type=submit] {
  cursor: pointer;
}

.donate-field {
  background: #d5d5db;
  color: #0f0f0f;
  padding: 20px 20px 0 20px;
  margin-bottom: 0;
}
.donate-field.amount_getter {
  opacity: 0;
  height: 0px;
  width: 0px;
  overflow: hidden;
  display: block;
}
.donate-field .ginput_container_consent {
  display: flex;
}
.donate-field .ginput_container_consent input[type=checkbox] {
  margin-right: 10px;
}
.donate-field.gsection {
  padding: 20px 20px 0 20px;
  margin-bottom: -20px;
}
.donate-field.gfield_price + .gsection {
  background: #f1bc29;
  padding: 30px 20px;
  margin-bottom: 0;
}
.donate-field.gfield_price + .gsection h2 {
  margin: 0;
}
.donate-field .gfield_trigger_change .gfield_radio {
  display: flex;
}
.donate-field .gfield_trigger_change .gfield_radio li {
  width: auto !important;
  padding-right: 20px !important;
}
@media only screen and (min-width: 700px) {
  .donate-field .ginput_container_email {
    max-width: 80%;
  }
}
.donate-field .ginput_container_address {
  display: flex;
  flex-flow: row wrap;
}
.donate-field .ginput_container_address .ginput_full, .donate-field .ginput_container_address .ginput_left, .donate-field .ginput_container_address .ginput_right {
  margin-top: 10px;
  flex: 1 0 100%;
}
@media only screen and (min-width: 700px) {
  .donate-field .ginput_container_address {
    max-width: 80%;
  }
  .donate-field .ginput_container_address .ginput_left {
    flex: 1 0 40%;
    margin-top: 10px;
    margin-right: 20px;
  }
  .donate-field .ginput_container_address .ginput_right {
    flex: 1 0 40%;
  }
}
@media only screen and (max-width: 500px) {
  .donate-field .gf_name_has_2 {
    grid-template-columns: 1fr;
  }
}
.donate-field.amount_setter {
  padding: 20px 20px 10px 20px;
  margin-bottom: -40px;
}
.donate-field.gfield_price {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.donate-field.gfield_price {
  padding: 20px 20px 0 20px;
  margin-bottom: 0;
}
.donate-field:last-of-type {
  padding-bottom: 20px;
}
.donate-field .gfield_required {
  display: none;
}

/*
#field_55_12{ margin: -20px 0 0 0; padding-bottom: 15px; }
#field_55_12 label{ display: none; }*/
#field_55_14, #field_91_14, #input_91_13_date_format, #input_55_13_date_format {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: -16px ​0 0;
  padding: 0;
}

.gform_wrapper #field_55_10 .gfield_radio li img {
  width: 44px !important;
}

#field_91_12 {
  margin-top: -18px;
}

.amount_setter ul {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
}
.amount_setter ul li {
  margin-right: 20px;
}
.amount_setter ul li input[type=radio] {
  display: none;
}
.amount_setter ul li label {
  font-size: 1rem;
  line-height: 1rem;
  padding: 8px 10px;
  border-radius: 4px;
  background: #d5d5db;
  border: 1px solid #76418a;
  font-family: "Sectra", Georgia, serif;
  text-transform: lowercase;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.amount_setter ul li label:hover, .amount_setter ul li label:focus {
  background: #cfbad6;
  border: 1px solid #b191bd;
  outline: 1px solid #76418a;
  outline-offset: 1px;
}
.amount_setter ul li input[type=radio]:checked + label {
  border: 1px solid #76418a;
  box-shadow: none;
  background: #76418a;
  color: white;
}
.amount_setter ul li input[type=text] {
  padding: 4px 8px;
  font-size: 1rem;
  line-height: 1rem;
  margin: 0;
}
.amount_setter ul li.gchoice_55_4_3, .amount_setter ul li.other-value {
  display: flex;
  border-radius: 3px;
  border: 1px solid #76418a;
  padding: 0;
  margin: 0;
  height: 34px;
  max-width: 120px;
}
.amount_setter ul li.gchoice_55_4_3:before, .amount_setter ul li.other-value:before {
  border-radius: 3px 0 0 3px;
  content: "€";
  background: #d5d5db;
  padding: 4px 8px;
  margin-right: -1px;
  height: 100%;
}
.amount_setter ul li.gchoice_55_4_3 input, .amount_setter ul li.other-value input {
  border: 0;
  border-radius: 0 3px 3px 0;
}
@media only screen and (max-width: 780px) {
  .amount_setter ul {
    flex-flow: column;
  }
  .amount_setter ul li {
    align-self: flex-start;
  }
}

.donate-submit-wrapper {
  padding: 20px 20px 20px 20px;
  display: flex;
  background: #d5d5db;
  margin: -20px 0 0 0;
}

.donation-wrapper {
  display: flex;
}
.donation-wrapper.without-form .button, .donation-wrapper.without-form .feedback-form .choice-buttons .gfield_radio label, .feedback-form .choice-buttons .gfield_radio .donation-wrapper.without-form label, .donation-wrapper.without-form .pagesection__intro .intro:not(.no-button) > a:last-child, .pagesection__intro .donation-wrapper.without-form .intro:not(.no-button) > a:last-child, .donation-wrapper.without-form .post-password-form input[type=submit], .post-password-form .donation-wrapper.without-form input[type=submit] {
  margin-top: 20px;
  align-self: flex-start;
}
.donation-wrapper .card {
  background: #5c296f;
  border-top: 0;
  padding: 40px;
  margin-right: 10px;
}
.donation-wrapper .card h2, .donation-wrapper .card h3, .donation-wrapper .card .card__type {
  color: white;
}
.donation-wrapper .card .card__type {
  background: #33173d;
}
.donation-wrapper .form-top {
  background: #d5d5db;
  border-top: 4px solid #5c296f;
  padding: 0 20px 20px 20px;
}
.donation-wrapper .form-top .amount-wrapper {
  margin: 0;
  padding: 0;
}
.donation-wrapper .form-top .amount_setter {
  margin: 0 0 20px 0;
}
.donation-wrapper .form-top .amount_setter ul {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1100px) {
  .footer-content .pagesection.donate {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 780px) {
  .footer-content .pagesection.donate .donation-wrapper {
    flex-flow: column;
  }
  .footer-content .pagesection.donate .donation-wrapper .card {
    margin-right: 0;
  }
  .footer-content .pagesection.donate .donation-wrapper .form-top {
    padding-bottom: 20px;
  }
}

.vacancy-dialog {
  position: fixed;
  z-index: 9;
  left: 1rem;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem;
  background-color: white;
  box-shadow: 0 0 0 2rem rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  display: none;
}
.vacancy-dialog.is-open {
  display: block;
}
.vacancy-dialog iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vacancy-dialog .close-dialog {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: #1f1d18;
  border: none;
  color: #f1bc29;
  font-size: 100%;
  padding: 0.4em 1em 0.4em 1em;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: "Sectra", Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.wp-block-columns {
  display: flex;
  flex-flow: column nowrap;
  margin: 10px 0;
}
.wp-block-columns .wp-block-column .wp-block-image {
  width: 100%;
  height: auto;
}
.wp-block-columns .wp-block-column .wp-block-image img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .wp-block-columns {
    flex-flow: row nowrap;
    align-items: center;
  }
  .wp-block-columns .wp-block-column {
    margin-right: 10px;
  }
  .wp-block-columns .wp-block-column:last-child {
    margin-right: 0;
    margin-left: auto;
  }
}

.feedback-form {
  width: 80%;
  max-width: 500px;
  margin: 10px auto 40px auto;
}
.feedback-form .gform_footer {
  display: none;
  padding-bottom: 10px;
  background: #F5F5F6;
  padding: 10px;
}
.feedback-form .gform_fields {
  margin-bottom: 0;
  padding-bottom: 0;
}
.feedback-form .gform_hidden {
  display: none;
}
.feedback-form .gfield {
  background: #F5F5F6;
  padding: 20px;
  margin: 0;
}
.feedback-form .gfield legend.gfield_label {
  font-family: "Noto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: block;
  margin-bottom: 5px;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}
.feedback-form .gfield_html, .feedback-form .gform_confirmation_wrapper {
  padding: 20px;
  background: #d5d5db;
}
.feedback-form .gfield_radio {
  display: block;
}
.feedback-form .choice-buttons {
  background: #d5d5db;
}
.feedback-form .choice-buttons .gfield_label {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  padding-top: 10px;
}
.feedback-form .choice-buttons .gfield_radio {
  display: flex;
  margin-bottom: 0;
}
.feedback-form .choice-buttons .gfield_radio li {
  margin: 0 10px 0 0;
}
.feedback-form .choice-buttons .gfield_radio input {
  display: none;
}
.feedback-form .choice-buttons .gfield_radio label {
  background-color: #ffde44;
  padding: 0.4em 1em;
  cursor: pointer;
  text-transform: capitalize;
}
.feedback-form .choice-buttons .gfield_radio label::after {
  display: none;
}
.feedback-form .choice-buttons .gfield_radio input:checked ~ label,
.feedback-form .choice-buttons .gfield_radio input:focus ~ label,
.feedback-form .choice-buttons .gfield_radio label:hover {
  background: #f2ca5a;
}

.video__wrapper {
  width: 100%;
  position: relative;
}
.video__wrapper .play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: #404042;
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  display: flex;
  border: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video__wrapper .play-btn:after {
  content: "";
  border: 25px solid #ffde44;
  border-color: transparent transparent transparent #ffde44;
  width: 0px;
  height: 0px;
  padding: 0;
  margin-left: 30px;
}
.video__wrapper .play-btn:hover {
  background: #ffde44;
}
.video__wrapper .play-btn:hover:after {
  border-color: transparent transparent transparent #404042;
}
.video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
