@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; }

/*------------------------------------*\
    #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: 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: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[21];
  grid-template-columns: repeat(21, 1fr);
  padding-top: 2rem;
  padding-bottom: calc((100vw - (20 * 10px)) / 21); }
  @media only screen and (min-width: 40em) {
    main {
      padding-top: calc((100vw - (20 * 10px)) / 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 {
  font-weight: normal;
  font-style: italic; }

h1 + .intro {
  -ms-grid-column: 5;
  -ms-grid-column-span: 12;
  grid-column: 5 / 17;
  margin-bottom: calc((100vw - (20 * 10px)) / 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: .95;
  margin-bottom: calc((100vw - (20 * 10px)) / 21);
  -ms-grid-column: 5;
  -ms-grid-column-span: 15;
  grid-column: 5 / 20; }
  h1 {
    font-size: 32px; }
    @media screen and (min-width: 320px) {
      h1 {
        font-size: calc(2.29167vw + 24.66667px); } }
    @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.41667vw + 18.66667px); } }
    @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; }
  .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 .1s ease-out; }
  .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 - (20 * 10px)) / 42);
  border-top: 3px solid #f1bc29;
  background-color: #404042;
  color: #d5d5db;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none; }

.button, .pagesection__intro .intro > a:last-child, .post-password-form input[type="submit"], .wp-block-button__link {
  position: relative;
  display: inline-block;
  padding: .4em 1.8em .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, .pagesection__intro .intro > a:last-child::after, .post-password-form input[type="submit"]::after, .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: .55em;
    top: .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, .pagesection__intro .intro > a:hover:last-child, .post-password-form input:hover[type="submit"], .button:focus, .pagesection__intro .intro > a:focus:last-child, .post-password-form input:focus[type="submit"], .wp-block-button__link:hover, .wp-block-button__link:focus {
    background-color: #fff0ab; }
    .button:hover::after, .pagesection__intro .intro > a:last-child:hover::after, .post-password-form input[type="submit"]:hover::after, .button:focus::after, .pagesection__intro .intro > a:last-child:focus::after, .post-password-form input[type="submit"]:focus::after, .wp-block-button__link:hover::after, .wp-block-button__link:focus::after {
      transform: translateX(0.25em); }
  .button:focus, .pagesection__intro .intro > a:focus:last-child, .post-password-form input:focus[type="submit"], .wp-block-button__link:focus {
    border: 2px solid #1f1d18;
    outline: none; }
  .page-conferences .button, .page-conferences .pagesection__intro .intro > a:last-child, .pagesection__intro .page-conferences .intro > a:last-child, .page-conferences .post-password-form input[type="submit"], .post-password-form .page-conferences input[type="submit"], .page-conferences .wp-block-button__link {
    background-color: #f1919c;
    box-shadow: 0 1px 1px 0 #bf737c; }
    .page-conferences .button:hover, .page-conferences .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .page-conferences .intro > a:hover:last-child, .page-conferences .post-password-form input:hover[type="submit"], .post-password-form .page-conferences input:hover[type="submit"], .page-conferences .button:focus, .page-conferences .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .page-conferences .intro > a:focus:last-child, .page-conferences .post-password-form input:focus[type="submit"], .post-password-form .page-conferences input:focus[type="submit"], .page-conferences .wp-block-button__link:hover, .page-conferences .wp-block-button__link:focus {
      background-color: #ffccd2; }

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

.button--large {
  padding: .8em 1.8em .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: .4em; }

.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; }

.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: .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;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .select-wrapper:after,
  .ginput_container_select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    border: 6.66667px 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.41667vw + 18.66667px); } }
    @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: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        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: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px; } }

.gfield_description.validation_message {
  position: relative;
  margin-top: 5px;
  font-size: .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; }

/*------------------------------------*\
    #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 .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 [role="banner"] {
    padding-bottom: 0;
    background-size: 100% 6.6em, 100% 6rem, 50% auto; }
    .page-home [role="banner"] .logo, .page-search [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: .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 .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(: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::-ms-input-placeholder {
      color: #1f1d18;
      opacity: .75; }
    .sitesearch__input::placeholder {
      color: #1f1d18;
      opacity: .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.41667vw + 18.66667px); } }
      @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: .8em; } }
    @media only screen and (min-width: 55em) {
      header [role="navigation"] ul {
        margin-left: 63px; } }
    header [role="navigation"] ul li {
      border-top: 3px solid transparent;
      line-height: 1.1;
      margin-bottom: .5em; }
    @media only screen and (min-width: 40em) {
      header [role="navigation"] ul li:not(:last-child) {
        margin-right: 2rem;
        padding-left: 1rem; } }
    @media only screen and (min-width: 55em) {
      header [role="navigation"] ul li:not(:last-child) {
        margin-right: calc((100vw - (20 * 10px)) / 42);
        padding-left: 1rem; } }
  @media only screen and (min-width: 40em) {
    header [role="navigation"] > ul > li {
      padding: .5rem 1rem .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: .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.2rem; } }
    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: calc( (((100vw - (20 * 10px)) / 21 ) * 2) + 10px);
        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 header [role="navigation"] ul {
    margin-bottom: 2em; }
    @media only screen and (min-width: 40em) {
      .page-home header [role="navigation"] ul, .page-search header [role="navigation"] ul {
        font-size: 1.4rem;
        margin-bottom: 1rem; } }
  .page-home header [role="navigation"] a, .page-search 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 header [role="navigation"] a:hover, .page-search 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; } }

article {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  grid-column: 1 / span 21;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[21];
  grid-template-columns: repeat(21, 1fr);
  margin-bottom: 2rem; }
  article header {
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    grid-column: 1 / 22;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px; }
    @media only screen and (min-width: 60em) {
      article header {
        -ms-grid-row: 1;
        grid-row: 1; } }
    @media only screen and (min-width: 40em) {
      article header {
        -ms-grid-column: 5;
        -ms-grid-column-span: 17;
        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 {
        -ms-grid-column: 5;
        -ms-grid-column-span: 12;
        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 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    grid-column: 1 / 22;
    -ms-grid-row-align: start;
    align-self: start;
    margin-top: calc((100vw - (20 * 10px)) / 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.41667vw + 18.66667px); } }
      @media screen and (min-width: 1280px) {
        article .meta {
          font-size: 24px; } }
    @media only screen and (min-width: 40em) {
      article .meta {
        -ms-grid-column: 1;
        -ms-grid-column-span: 21;
        grid-column: 1 / 22;
        -ms-grid-row: 2;
        grid-row: 2;
        width: 22.3%;
        margin-top: calc((100vw - (20 * 10px)) / 21); } }
    @media only screen and (min-width: 60em) {
      article .meta {
        width: auto;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        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: .8rem;
    font-weight: 400;
    margin-top: .8rem;
    text-transform: uppercase; }
  article aside {
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    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 - (20 * 10px)) / 21); } }
    @media only screen and (min-width: 60em) {
      article aside {
        -ms-grid-column: 17;
        -ms-grid-column-span: 5;
        grid-column: 17 / 22;
        -ms-grid-row: 2;
        -ms-grid-row-span: 4;
        grid-row: 2 / span 4;
        padding: 0 10px calc((100vw - (20 * 10px)) / 21) 10px;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between; } }

.content {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  grid-column: 1 / 22;
  -ms-grid-row: 2;
  grid-row-start: 2;
  padding: 0 0 calc((100vw - (20 * 10px)) / 21);
  margin-bottom: 0;
  margin-top: calc((100vw - (20 * 10px)) / 21); }
  @media only screen and (min-width: 40em) {
    .content {
      padding-left: 25%; } }
  @media only screen and (min-width: 60em) {
    .content {
      -ms-grid-column: 1;
      -ms-grid-column-span: 16;
      grid-column: 1 / 17;
      -ms-grid-columns: (1fr)[16];
      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;
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    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) {
        -ms-grid-column: 5;
        -ms-grid-column-span: 17;
        grid-column: 5 / 22; } }
    @media only screen and (min-width: 60em) {
      .content > *:not(.media):not(.pagesection):not(.quotes) {
        -ms-grid-column: 5;
        -ms-grid-column-span: 12;
        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.41667vw + 18.66667px); } }
      @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 {
    -ms-grid-columns: (1fr)[16];
    grid-template-columns: repeat(16, 1fr); }

@media only screen and (max-width: 60em) {
  .study-content {
    -ms-grid-row: 3;
    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 - (20 * 10px)) / 42); }
  .summary em {
    display: block;
    font-size: .667em;
    font-family: 'Noto';
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase; }

.gallery {
  position: relative;
  display: flex;
  flex-flow: column nowrap; }
  .gallery .gallery--media {
    order: -1; }
  @media only screen and (min-width: 40em) {
    .gallery {
      grid-column: 1 / -1;
      display: contents;
      margin-left: 10px;
      margin-right: 10px; } }
  .gallery nav, .gallery > h2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
    border-top: 1px solid #404042; }
    @media only screen and (min-width: 40em) {
      .gallery nav, .gallery > h2 {
        margin: calc((100vw - (20 * 10px)) / 42) 10px 0 10px;
        padding: 10px 10px 0; } }
  .gallery nav {
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    border: 0;
    /** IE FIX **/ }
    @media only screen and (min-width: 40em) {
      .gallery nav {
        border-top: 1px solid #404042; } }
    .gallery nav a {
      position: relative;
      background: #404042;
      min-width: 67px; }
      .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; }
    @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 - (20 * 10px)) / 42); }
    .gallery figure .video__wrapper {
      width: 100%;
      height: 0;
      padding-top: 56.25%;
      position: relative; }
      .gallery figure .video__wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%; }
    @media only screen and (min-width: 40em) {
      .gallery figure {
        padding: 0 10px;
        margin-top: calc((100vw - (20 * 10px)) / 42); } }
  .gallery figcaption {
    font-family: 'Noto';
    font-size: .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; }

.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: calc( ( 100vw / 21 * 4  * -1 ));
        width: calc( 100vw / 21 * 4 - 40px);
        position: absolute;
        top: 0;
        border-top: 0; } }

.linklist, .wp-block-kit-linklist {
  -ms-grid-column: 5;
  -ms-grid-column-span: 17;
  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 {
      -ms-grid-column: 5;
      -ms-grid-column-span: 17;
      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.41667vw + 18.66667px); } }
      @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), .linklist figcaption a:not(.button), .wp-block-kit-linklist h3 a:not(.button), .wp-block-kit-linklist figcaption a:not(.button) {
      padding: 0;
      color: inherit; }
      .linklist h3 a:not(.button)::before, .linklist figcaption a:not(.button)::before, .wp-block-kit-linklist h3 a:not(.button)::before, .wp-block-kit-linklist figcaption a:not(.button)::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 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), .wp-block-kit-linklist a:not(.button) {
    position: relative;
    display: block;
    padding: 10px 0 10px 1.4rem;
    text-decoration: none; }
    .linklist a:not(.button)::before, .wp-block-kit-linklist a:not(.button)::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 .1s ease-out; }
    .linklist a:not(.button):hover, .linklist a:not(.button):focus, .wp-block-kit-linklist a:not(.button):hover, .wp-block-kit-linklist a:not(.button):focus {
      text-decoration: underline; }
    .linklist a:not(.button):focus, .wp-block-kit-linklist a:not(.button):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; }

.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%; }

@media only screen and (min-width: 40em) {
  .collection {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[21];
    grid-template-columns: repeat(21, 1fr); } }

@media only screen and (min-width: 60em) {
  .collection {
    -ms-grid-columns: (1fr)[15];
    grid-template-columns: repeat(15, 1fr); } }

.collection ul {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  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: -ms-grid;
          display: grid;
          -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); } } }
  @media only screen and (min-width: 40em) {
    .collection ul {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      padding-left: 10px; } }
  @media only screen and (min-width: 60em) {
    .collection ul {
      -ms-grid-column: 1;
      -ms-grid-column-span: 15;
      grid-column: 1 / 16; } }

.collection > .button-bar {
  grid-column: 1 / -1;
  padding: 10px;
  text-align: center; }

.collection--featured .card:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  flex: 1 0 66%; }
  @media only screen and (min-width: 40em) {
    .collection--featured .card:nth-child(1) {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2; } }

.collection--featured .card:nth-child(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / span 2; }
  @media only screen and (min-width: 40em) {
    .collection--featured .card:nth-child(2) {
      -ms-grid-column: 3;
      -ms-grid-column-span: 1;
      grid-column: 3 / span 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2; } }

.collection--wide ul {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr); }

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

.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: -ms-grid;
        display: grid;
        grid-gap: 10px;
        -ms-grid-columns: (1fr)[2];
        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 {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr); } } }

.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 - (20 * 10px)) / 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.41667vw + 18.66667px); } }
      @media screen and (min-width: 1280px) {
        .card h3 {
          font-size: 24px; } }
  .card .card__type {
    display: inline-block;
    position: relative;
    top: -.3rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .6em;
    font-weight: 700;
    padding: .125rem .25rem;
    margin-right: .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 - (20 * 10px)) / 42); }
  .card .button, .card .pagesection__intro .intro > a:last-child, .pagesection__intro .card .intro > a:last-child, .card .post-password-form input[type="submit"], .post-password-form .card input[type="submit"] {
    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 .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .card .intro > a:hover:last-child, .card .post-password-form input:hover[type="submit"], .post-password-form .card input:hover[type="submit"], .card .button:focus, .card .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .card .intro > a:focus:last-child, .card .post-password-form input:focus[type="submit"], .post-password-form .card input:focus[type="submit"] {
      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 - (20 * 10px)) / 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.70833vw + 17.33333px); } }
      @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) .pagesection__intro .intro > a:last-child, .pagesection__intro .collection--featured .card:nth-child(2) .intro > a:last-child, .collection--featured .card:nth-child(2) .post-password-form input[type="submit"], .post-password-form .collection--featured .card:nth-child(2) input[type="submit"] {
    background-color: #15af97;
    box-shadow: 0 1px 1px 0 #0b594d; }
    .collection--featured .card:nth-child(2) .button:hover, .collection--featured .card:nth-child(2) .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .collection--featured .card:nth-child(2) .intro > a:hover:last-child, .collection--featured .card:nth-child(2) .post-password-form input:hover[type="submit"], .post-password-form .collection--featured .card:nth-child(2) input:hover[type="submit"] {
      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: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        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; }
  .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: .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 .pagesection__intro .intro > a:last-child, .pagesection__intro .expert-card .intro > a:last-child, .expert-card .post-password-form input[type="submit"], .post-password-form .expert-card input[type="submit"], .contact-card .button, .contact-card .pagesection__intro .intro > a:last-child, .pagesection__intro .contact-card .intro > a:last-child, .contact-card .post-password-form input[type="submit"], .post-password-form .contact-card input[type="submit"] {
    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 .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .expert-card .intro > a:hover:last-child, .expert-card .post-password-form input:hover[type="submit"], .post-password-form .expert-card input:hover[type="submit"], .expert-card .button:focus, .expert-card .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .expert-card .intro > a:focus:last-child, .expert-card .post-password-form input:focus[type="submit"], .post-password-form .expert-card input:focus[type="submit"], .contact-card .button:hover, .contact-card .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .contact-card .intro > a:hover:last-child, .contact-card .post-password-form input:hover[type="submit"], .post-password-form .contact-card input:hover[type="submit"], .contact-card .button:focus, .contact-card .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .contact-card .intro > a:focus:last-child, .contact-card .post-password-form input:focus[type="submit"], .post-password-form .contact-card input:focus[type="submit"] {
      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: .125rem .25rem .125rem .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.41667vw + 18.66667px); } }
      @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; }
    .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;
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  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: 40em) {
    .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: 40em) {
    .content .pagesection .pagesection__intro {
      width: 25%; } }
  @media only screen and (min-width: 50em) {
    .footer-content .pagesection {
      padding-left: 19.2% !important;
      padding-right: 9.5% !important;
      width: calc(100% - 10px); } }

.pagesection__intro {
  padding: 10px 10px 10px 10px;
  border-top: 1px solid #404042; }
  @media only screen and (min-width: 40em) {
    .pagesection__intro {
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
      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: .8em; }
  .pagesection__intro .intro > a:last-child {
    margin-top: 20px;
    display: block;
    font-size: .9em; }

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

.collection {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  grid-column: 1 / 22; }
  @media only screen and (min-width: 50em) {
    .collection {
      -ms-grid-column: 5;
      -ms-grid-column-span: 17;
      grid-column: 5 / 22; } }
  @media only screen and (min-width: 80em) {
    .collection {
      -ms-grid-column: 5;
      -ms-grid-column-span: 15;
      grid-column: 5 / 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; }

.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 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  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 {
      -ms-grid-column: 5;
      -ms-grid-column-span: 12;
      grid-column: 5 / 17;
      padding-right: 10px; } }

#main + aside#paragraph {
  margin-top: -100px; }

blockquote {
  position: relative;
  background-color: white;
  margin-bottom: calc((100vw - (20 * 10px)) / 42);
  padding: calc((100vw - (20 * 10px)) / 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.41667vw + 18.66667px); } }
    @media screen and (min-width: 1280px) {
      blockquote {
        font-size: 24px; } }
  @media only screen and (min-width: 40em) {
    blockquote {
      padding: 5rem calc((100vw - (20 * 10px)) / 21) calc((100vw - (20 * 10px)) / 42);
      margin-top: calc((100vw - (20 * 10px)) / 21); } }
  blockquote p {
    padding-bottom: 30px; }
  blockquote::before {
    content: '';
    border-top: 1px solid black;
    width: calc((100vw - (20 * 10px)) / 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: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1f1d18; }
    blockquote footer::before, blockquote cite::before {
      content: '';
      border-top: 1px solid black;
      width: calc( (((100vw - (20 * 10px)) / 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 {
    -ms-grid-column: 5;
    -ms-grid-column-span: 15;
    grid-column: 5 / 20;
    display: none; }
    .quotes blockquote.active {
      display: block; }
  .quotes nav, .quotes > h2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
    border-top: 1px solid #404042; }
    @media only screen and (min-width: 40em) {
      .quotes nav, .quotes > h2 {
        margin: calc((100vw - (20 * 10px)) / 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; }

.homebanner {
  grid-column: 1/-1;
  margin-top: -1rem;
  margin-bottom: 5.333rem; }
  @media only screen and (min-width: 60em) {
    .homebanner {
      margin-bottom: calc((100vw - (20 * 10px)) / 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 - (20 * 10px)) / 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: .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.04167vw + 12.66667px); } }
        @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 - (20 * 10px)) / 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 .pagesection__intro .intro > a:last-child, .pagesection__intro .homebanner__intro .intro > a:last-child, .homebanner__intro .post-password-form input[type="submit"], .post-password-form .homebanner__intro input[type="submit"] {
    align-self: flex-end; }

.homebanner__news {
  padding: 0 10px;
  margin-top: -6rem;
  margin-bottom: calc((100vw - (20 * 10px)) / 21); }
  @media only screen and (min-width: 40em) {
    .homebanner__news {
      display: flex;
      -ms-grid-columns: (1fr)[21];
      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%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 13;
    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: .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 {
  border-top: 1px solid #1f1d18;
  border-bottom: 1px solid #1f1d18;
  padding: 10px 0;
  margin-bottom: 0;
  background-color: rgba(255, 222, 68, 0.1);
  line-height: 1.25;
  font-size: 18px;
  font-weight: 500; }
  .highlightblock h3 {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .highlightblock h3 {
        font-size: calc(0.41667vw + 18.66667px); } }
    @media screen and (min-width: 1280px) {
      .highlightblock h3 {
        font-size: 24px; } }
  @media (prefers-color-scheme: dark) {
    .highlightblock h3 {
      color: #1f1d18; } }
  .highlightblock h3 a {
    padding: 0; }
    .highlightblock h3 a::before {
      content: none; }

.highlightblock__body {
  padding: 10px !important;
  background-color: #fff4c4;
  display: flex;
  flex-direction: column; }
  @media (prefers-color-scheme: dark) {
    .highlightblock__body {
      color: #1f1d18; } }
  .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 {
      color: #1f1d18; } }

.highlightblock .button, .highlightblock .pagesection__intro .intro > a:last-child, .pagesection__intro .highlightblock .intro > a:last-child, .highlightblock .post-password-form input[type="submit"], .post-password-form .highlightblock input[type="submit"] {
  align-self: flex-end;
  margin-top: 10px;
  background-color: #ffe678; }
  .highlightblock .button:hover, .highlightblock .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .highlightblock .intro > a:hover:last-child, .highlightblock .post-password-form input:hover[type="submit"], .post-password-form .highlightblock input:hover[type="submit"], .highlightblock .button:focus, .highlightblock .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .highlightblock .intro > a:focus:last-child, .highlightblock .post-password-form input:focus[type="submit"], .post-password-form .highlightblock input:focus[type="submit"] {
    background-color: #f7ca00; }

.highlightblock--kit h3 {
  background-color: #ffde44;
  border-color: #998529;
  padding: 10px 10px; }

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

.highlightblock--study .highlightblock__body {
  background-color: #d5d5db; }

.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 {
      color: #1f1d18; } }
  @media (prefers-color-scheme: dark) {
    .highlightblock--study p a {
      color: #1f1d18; } }
  .highlightblock--study p > a:last-child {
    align-self: flex-end;
    padding: .4em 1.8em .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 {
      content: '';
      position: absolute;
      right: .55em;
      top: .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 {
      content: none; }
    .highlightblock--study p > a:last-child:hover, .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 {
        transform: translateX(0.25em); }
    .highlightblock--study p > a:last-child:focus {
      box-shadow: 0 0 0 2px #482057; }

.highlightblock--study .button, .highlightblock--study .pagesection__intro .intro > a:last-child, .pagesection__intro .highlightblock--study .intro > a:last-child, .highlightblock--study .post-password-form input[type="submit"], .post-password-form .highlightblock--study input[type="submit"] {
  color: #33173d;
  background-color: #cfbad6;
  box-shadow: 0 1px 1px 0 #76418a; }
  .highlightblock--study .button:hover, .highlightblock--study .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .highlightblock--study .intro > a:hover:last-child, .highlightblock--study .post-password-form input:hover[type="submit"], .post-password-form .highlightblock--study input:hover[type="submit"], .highlightblock--study .button:focus, .highlightblock--study .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .highlightblock--study .intro > a:focus:last-child, .highlightblock--study .post-password-form input:focus[type="submit"], .post-password-form .highlightblock--study input:focus[type="submit"] {
    background-color: #b191bd;
    border-color: transparent; }
  .highlightblock--study .button:focus, .highlightblock--study .pagesection__intro .intro > a:focus:last-child, .pagesection__intro .highlightblock--study .intro > a:focus:last-child, .highlightblock--study .post-password-form input:focus[type="submit"], .post-password-form .highlightblock--study input:focus[type="submit"] {
    box-shadow: 0 0 0 2px #482057; }

.highlightblock--topic {
  display: flex;
  flex-flow: column nowrap; }
  .highlightblock--topic h3 {
    background-color: transparent;
    color: #f1bc29;
    background: #404042;
    border: 0;
    border-top: 3px solid #f1bc29;
    padding-left: 10px; }
  .highlightblock--topic ul {
    background: #404042;
    flex: 1; }
  .highlightblock--topic a:not(.button) {
    color: white; }
    .highlightblock--topic a:not(.button)::before {
      background-image: url("./../images/icons/icon-right-white.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; }

.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 - (20 * 10px)) / 21 ) * 2) + 10px) 0 calc((100vw - (20 * 10px)) / 21);
  margin-bottom: 0; }
  @media (prefers-color-scheme: dark) {
    .footer-content {
      color: #1f1d18; } }
  .footer-content:before {
    content: '';
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    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 {
        -ms-grid-column: 1;
        -ms-grid-column-span: 14;
        grid-column: 1 / 15; } }
  .footer-content h2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    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;
          -ms-grid-column: 5;
          -ms-grid-column-span: 15;
          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 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 21;
    grid-column: 1 / 22;
    padding: 20px;
    flex-flow: column nowrap !important; }
    @media only screen and (min-width: 50em) {
      .footer-content .wrapped__content {
        -ms-grid-column: 5;
        -ms-grid-column-span: 17;
        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;
  -ms-grid-columns: (1fr)[21];
  grid-template-columns: repeat(21, 1fr);
  grid-gap: 10px;
  padding: 50px 10px; }
  @supports (display: grid) {
    [role="contentinfo"] {
      display: -ms-grid;
      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 {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 21;
  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 {
      -ms-grid-column: 17;
      -ms-grid-column-span: 5;
      grid-column: 17 / span 5;
      -ms-grid-row: 2;
      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;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  grid-column: 1 / span 21; }
  .site-footer nav ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
  .site-footer nav a {
    color: white;
    font-size: 16px; }
  @media only screen and (min-width: 40em) {
    .site-footer nav {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 1;
      -ms-grid-column-span: 9;
      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: -.4rem;
  margin-bottom: calc((100vw - (20 * 10px)) / 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 - (20 * 10px)) / 21) 10px; }
  .publications .publication {
    margin-bottom: calc((100vw - (20 * 10px)) / 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 .pagesection__intro .intro > a:last-child, .pagesection__intro .publications-filter .button-wrapper .intro > a:last-child, .publications-filter .button-wrapper .post-password-form input[type="submit"], .post-password-form .publications-filter .button-wrapper input[type="submit"] {
      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: .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; }
  .publication__meta.publication__downloads {
    margin-top: 40px; }
    .publication__meta.publication__downloads dl dt {
      padding-bottom: 10px; }
  .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: .8rem; }
    .publication__meta-sidebar dd {
      flex: 1;
      padding-left: 10px;
      font-weight: normal;
      text-align: right; }

.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: '\25ba\0020'; }

.expendable button[aria-expanded="true"]::before {
  content: '\25bc\0020'; }

@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 h1 {
  position: relative;
  padding: 0 calc( (((100vw - (20 * 10px)) / 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.70833vw + 13.33333px); } }
    @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 - (20 * 10px)) / 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;
  -webkit-font-feature-settings: "smcp" on;
  font-feature-settings: "smcp" on;
  font-weight: 500;
  text-align: center;
  letter-spacing: .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.29167vw + 24.66667px); } }
    @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 - (20 * 10px)) / 21); }

.cta:not(.pagesection__content) {
  display: flex;
  flex-direction: column;
  background-color: #f1bc29;
  border-top: 6px solid #404042;
  padding: 10px;
  margin-bottom: calc((100vw - (20 * 10px)) / 42);
  margin-bottom: calc((100vw - (20 * 10px)) / 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) .pagesection__intro .intro > a:last-child, .pagesection__intro .cta:not(.pagesection__content) .intro > a:last-child, .cta:not(.pagesection__content) .post-password-form input[type="submit"], .post-password-form .cta:not(.pagesection__content) input[type="submit"] {
    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 {
    -ms-grid-column: 8;
    -ms-grid-column-span: 5;
    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: 10vw; } }
  .page-conferences .cta .links {
    border-color: #1961ac; }
  .page-conferences .cta .button, .page-conferences .cta .pagesection__intro .intro > a:last-child, .pagesection__intro .page-conferences .cta .intro > a:last-child, .page-conferences .cta .post-password-form input[type="submit"], .post-password-form .page-conferences .cta input[type="submit"] {
    background: #f1919c; }

.page-conferences .pagesection__content .cta {
  border-top: 0;
  margin-top: 0;
  padding-top: 0; }
  .page-conferences .pagesection__content .cta h3 {
    padding: 10px; }

.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.41667vw + 18.66667px); } }
    @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; } }

.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; }
  .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: .9em; }

.room-layouts .layouts {
  font-family: "Sectra", Georgia, serif;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  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.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: -ms-grid;
      display: grid; } }
  @media only screen and (min-width: 50em) {
    .pagesection__content.related ul {
      -ms-grid-columns: (1fr)[3];
      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: #404042; } }
  .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: -ms-grid;
    display: grid;
    grid-gap: 0 10px;
    border: 0;
    -ms-grid-columns: 1fr 1fr;
    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 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 15;
  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 - (20 * 10px)) / 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;
        -ms-grid-row-align: center;
        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 .pagesection__intro .intro > a:last-child, .pagesection__intro .study .study__information .intro > a:last-child, .study .study__information .post-password-form input[type="submit"], .post-password-form .study .study__information input[type="submit"] {
      background: #fff0ab; }
      .study .study__information .button:hover, .study .study__information .pagesection__intro .intro > a:hover:last-child, .pagesection__intro .study .study__information .intro > a:hover:last-child, .study .study__information .post-password-form input:hover[type="submit"], .post-password-form .study .study__information input:hover[type="submit"] {
        background: #ffde44; }

.study + .button, .pagesection__intro .intro > .study + a:last-child, .post-password-form .study + input[type="submit"] {
  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; }
  .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: .2em 1.6em .2em .5em;
  margin-left: calc( 50% - 4em);
  margin-bottom: calc((100vw - (20 * 10px)) / 21); }
  .wp-block-kit-read-more::after {
    top: .3em;
    right: .4em;
    background-image: url("./../images/icons/icon-up.svg"); }
  .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); }

.read-more--content.visuallyhidden + .button::after, .pagesection__intro .intro > .read-more--content.visuallyhidden + a:last-child::after, .post-password-form .read-more--content.visuallyhidden + input[type="submit"]::after {
  background-image: url("./../images/icons/icon-down.svg"); }

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 {
      -ms-grid-row: 2;
      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 {
        background: #ffde44 !important;
        color: #404042 !important;
        box-shadow: 0 1px 1px 0 #bf9521; }
        aside.sidebar.study__sidebar .wp-block-button a:hover::after {
          background-image: url(./../images/icons/icon-right.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 .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 -90; }
  .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;
  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%; }

.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: space-around;
  align-items: stretch; }
  .wp-block-kit-partners > div {
    display: flex;
    align-items: center;
    flex: 1 0 45%;
    max-width: 47.5%;
    margin: 0 10px 10px 0;
    background: white;
    border: 1px solid #404042;
    border-left: 0;
    border-right: 0; }
    .wp-block-kit-partners > div img {
      max-height: 120px; }
    .wp-block-kit-partners > div:nth-child(2n+0) {
      margin-right: 0; }
  @media only screen and (min-width: 50em) {
    .wp-block-kit-partners {
      background: white;
      align-items: center; }
      .wp-block-kit-partners > div {
        background: transparent;
        border: 0;
        flex: 1 0 30%;
        max-width: 32%; }
        .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; }

nav.pagination {
  -ms-grid-column: 1;
  -ms-grid-column-span: 15;
  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; }
  nav.pagination span {
    background: #0f8064;
    color: white; }
  nav.pagination a:hover {
    background: #f1bc29; }

.filter__taxonomy, .page__nav {
  -ms-grid-column: 1;
  -ms-grid-column-span: 21;
  grid-column: 1 / 22;
  padding: 10px 0;
  margin: calc((100vw - (20 * 10px)) / 21) 10px 3rem;
  border-top: 1px solid #1f1d18; }
  @media only screen and (min-width: 40em) {
    .filter__taxonomy, .page__nav {
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
      grid-column: 1 / 5;
      -ms-grid-row: 2;
      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: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    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.wp-block-embed-youtube {
    padding-top: 10px;
    padding-bottom: 20px; }
  .wp-block-embed .entry-content-asset {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative; }
  .wp-block-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .wp-block-embed.wp-block-embed-issuu {
    width: 100%;
    margin-top: 10px; }

.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, .15s ease; }
  .faq-list > ul > li > a.is-open {
    padding-left: 10px;
    font-weight: 700;
    background-color: #ffde44; }
    .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; }
  .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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  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); }

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

.checklist ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: -ms-grid;
  display: grid; }
  @media only screen and (min-width: 50em) {
    .checklist ul {
      -ms-grid-columns: (1fr)[2];
      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 - (20 * 10px)) / 21 ) * 2) + 10px) calc((100vw - (20 * 10px)) / 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.70833vw + 13.33333px); } }
    @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 - (20 * 10px)) / 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: 40em) {
    .cookie-notice.active {
      display: flex; } }
  @media only screen and (max-width: 40em) {
    .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 .pagesection__intro .intro > a:last-child, .pagesection__intro .cookie-notice .button-wrapper .intro > a:last-child, .cookie-notice .button-wrapper .post-password-form input[type="submit"], .post-password-form .cookie-notice .button-wrapper input[type="submit"] {
      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 .pagesection__intro .intro > a:last-child, .pagesection__intro .cookie-notice .button-wrapper .intro > a:last-child, .cookie-notice .button-wrapper .post-password-form input[type="submit"], .post-password-form .cookie-notice .button-wrapper input[type="submit"] {
          margin-bottom: 0; } }
  .cookie-notice .cancel-link {
    font-size: .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: .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 .pagesection__intro .intro > a:last-child, .pagesection__intro .wp-block-kit-linklist.topics .intro > a:last-child, .wp-block-kit-linklist.topics .post-password-form input[type="submit"], .post-password-form .wp-block-kit-linklist.topics input[type="submit"] {
    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 .pagesection__intro .intro > a:last-child::after, .pagesection__intro .wp-block-kit-linklist.topics .intro > a:last-child::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 {
      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 {
  display: inline-block; }
  .social-button .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 {
      background-image: url("../images/icons/linkedin.svg"); }
    .social-button .icon.twitter {
      background-image: url("../images/icons/twitter.svg"); }
  .social-button .text {
    padding-right: 20px; }

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

@media only screen and (min-width: 60em) {
  #main.impact-areas + .pagesection .pagesection__content {
    max-width: 80%; }
    #main.impact-areas + .pagesection .pagesection__content.linklist {
      padding-top: 0;
      border-top: 0; }
      #main.impact-areas + .pagesection .pagesection__content.linklist .wp-block-kit-linklist {
        margin: 0;
        padding: 0 10px 10px 0; } }

.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; }

.vacancy-dialog {
  position: fixed;
  z-index: 9;
  left: 1rem;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .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: .4em 1em .4em 1em;
    border: 2px solid transparent;
    border-radius: 2px;
    font-family: "Sectra", Georgia, serif;
    font-size: 18px;
    font-style: italic; }
