@charset "UTF-8";
/*! Author: Christoph Schüßler <schreib@herrschuessler.de> */
/*
 *
 * Build a grid system.
 * 
 * @param $breakpoints A sass map with min-width and max-width definitions
 * 
 * $breakpoints: (
 *   s: (
 *    min-width: null,
 *     max-width: 767px
 *   ),
 *   m: (
 *     min-width: 768px,
 *     max-width: 979px
 *   ),
 *   l: (
 *     min-width: 980px,
 *     max-width: 1279px
 *   ),
 *   xl: (
 *     min-width: 1280px,
 *     max-width: null
 *   )
 * );
 * 
 */
/*! based on normalize.css v6.0.0 | MIT License */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 3. Make sure document is at least as high as the viewport
 * 4. Apply default border-box model
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  height: 100%;
  /* 3 */ }

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 4 */ }

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Remove inner focus ring in FF
 * 1. prevent <option>s from becoming transparent as well.
 */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 black; }

option:not(:checked) {
  color: black;
  /* 1 */ }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* Reset
   ========================================================================== */
/**
 * Reset defaults
 */
html, body,
h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

nav ul, nav ol, nav li {
  list-style: none;
  margin: 0;
  padding: 0; }

/* Buttons
   ========================================================================== */
button {
  font-size: inherit;
  cursor: pointer; }
  button:focus {
    outline: none; }
  button::-moz-focus-inner {
    border: 0; }

/* Font handling
   ========================================================================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

nav * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/**
 * @file
 * Register webfonts.
 *
 * Open Sans
 */
@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: normal;
  src: url("../../fonts/Open-Sans-regular/Open-Sans-regular.eot");
  src: url("../../fonts/Open-Sans-regular/Open-Sans-regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-regular/Open-Sans-regular.woff2") format("woff2"), url("../../fonts/Open-Sans-regular/Open-Sans-regular.woff") format("woff"), url("../../fonts/Open-Sans-regular/Open-Sans-regular.ttf") format("truetype"), url("../../fonts/Open-Sans-regular/Open-Sans-regular.svg#OpenSans") format("svg"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: italic;
  src: url("../../fonts/Open-Sans-italic/Open-Sans-italic.eot");
  src: url("../../fonts/Open-Sans-italic/Open-Sans-italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-italic/Open-Sans-italic.woff2") format("woff2"), url("../../fonts/Open-Sans-italic/Open-Sans-italic.woff") format("woff"), url("../../fonts/Open-Sans-italic/Open-Sans-italic.ttf") format("truetype"), url("../../fonts/Open-Sans-italic/Open-Sans-italic.svg#OpenSans") format("svg"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 700;
  font-style: normal;
  src: url("../../fonts/Open-Sans-700/Open-Sans-700.eot");
  src: url("../../fonts/Open-Sans-700/Open-Sans-700.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-700/Open-Sans-700.woff2") format("woff2"), url("../../fonts/Open-Sans-700/Open-Sans-700.woff") format("woff"), url("../../fonts/Open-Sans-700/Open-Sans-700.ttf") format("truetype"), url("../../fonts/Open-Sans-700/Open-Sans-700.svg#OpenSans") format("svg"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 600;
  font-style: normal;
  src: url("../../fonts/Open-Sans-600/Open-Sans-600.eot");
  src: url("../../fonts/Open-Sans-600/Open-Sans-600.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-600/Open-Sans-600.woff2") format("woff2"), url("../../fonts/Open-Sans-600/Open-Sans-600.woff") format("woff"), url("../../fonts/Open-Sans-600/Open-Sans-600.ttf") format("truetype"), url("../../fonts/Open-Sans-600/Open-Sans-600.svg#OpenSans") format("svg"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 600;
  font-style: italic;
  src: url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.eot");
  src: url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.woff2") format("woff2"), url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.woff") format("woff"), url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.ttf") format("truetype"), url("../../fonts/Open-Sans-600italic/Open-Sans-600italic.svg#OpenSans") format("svg"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 700;
  font-style: italic;
  src: url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.eot");
  src: url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.woff2") format("woff2"), url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.woff") format("woff"), url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.ttf") format("truetype"), url("../../fonts/Open-Sans-700italic/Open-Sans-700italic.svg#OpenSans") format("svg"); }

body {
  min-width: 320px; }

input[type='checkbox'],
input[type='radio'],
input[type='range'],
input[type='file'] {
  line-height: normal;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0; }

.form-text,
.form-email,
.form-tel,
.form-date,
.form-password {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  border: 1px solid #ddd;
  font-size: 1em;
  max-width: 100%;
  outline: none;
  padding: .4em;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s; }
  .form-text:focus, .form-text:hover,
  .form-email:focus,
  .form-email:hover,
  .form-tel:focus,
  .form-tel:hover,
  .form-date:focus,
  .form-date:hover,
  .form-password:focus,
  .form-password:hover {
    border: 1px solid #2D71B3; }
  .form-text:focus + .description,
  .form-text:active + .description,
  .form-email:focus + .description,
  .form-email:active + .description,
  .form-tel:focus + .description,
  .form-tel:active + .description,
  .form-date:focus + .description,
  .form-date:active + .description,
  .form-password:focus + .description,
  .form-password:active + .description {
    color: #363636; }

.form-textarea {
  border: 1px solid #ddd;
  font-size: 1em;
  max-width: 100%;
  outline: none;
  padding: .4em;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s; }

::-moz-focus-inner {
  padding: 0;
  border: 0; }

label[for] {
  cursor: pointer; }

.form-wrapper summary {
  font-size: 0.9rem;
  opacity: .4;
  outline: none;
  padding-bottom: .5rem; }

.form-actions {
  margin: 1em 0 2em;
  text-align: right; }

.button,
.form-submit,
input[type='submit'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border: 1px solid currentColor;
  color: #002C4A;
  background-color: transparent;
  font-size: 1em;
  font-weight: 600;
  padding: .5em 1em;
  cursor: pointer; }
  .button:hover,
  .form-submit:hover,
  input[type='submit']:hover {
    border: 1px solid #2D71B3;
    color: #2D71B3; }

.form-item {
  margin-bottom: 1rem; }

label.form-required:after {
  content: '*';
  color: red;
  margin-left: 4px; }

.description {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-size: 0.8rem;
  line-height: 1.1rem;
  margin-top: .2rem;
  color: #8B8F93; }

a {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  text-decoration: none;
  color: #2D71B3; }
  a:hover, a:active, a:focus {
    color: #002C4A; }

::-moz-selection {
  background: #2D71B3;
  color: #fff; }

::selection {
  background: #2D71B3;
  color: #fff; }

::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
  text-transform: uppercase;
  font-size: 1.4rem; }

::-moz-placeholder {
  color: #999;
  opacity: 1;
  text-transform: uppercase;
  font-size: 1.4rem; }

::-ms-input-placeholder {
  color: #999;
  opacity: 1;
  text-transform: uppercase;
  font-size: 1.4rem; }

::placeholder {
  color: #999;
  opacity: 1;
  text-transform: uppercase;
  font-size: 1.4rem; }

html {
  font-size: 20px;
  line-height: 1.4; }

body {
  color: #363636;
  line-height: 1.6rem; }

body,
button,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif; }

b,
strong {
  font-weight: 600; }

a.link-external:before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-right: 0.3em;
  background: no-repeat url(../images/icon-link-external.svg) center center;
  background-size: contain;
  opacity: 0.3;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

a.link-external:hover:before {
  opacity: 1; }

.content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.9rem;
  color: #2D71B3;
  margin: 0 0 1rem 0; }
  .content h2 a:link,
  .content h2 a:visited {
    color: #2D71B3; }
  .content h2 a:hover {
    color: #002C4A; }

.content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8rem;
  color: #3074B4;
  margin: 1rem 0; }

.content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7rem;
  color: #3074B4;
  margin: 1rem 0; }

.content h5 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #363636;
  margin: 1rem 0; }

.content h6 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5rem;
  color: #363636;
  margin: 1rem 0; }

.content p {
  margin-bottom: 1rem; }
  .content p:last-child {
    margin-bottom: 0; }

.content ol, .content ul {
  padding-left: 1rem; }
  @media (min-width: 768px) {
    .content ol, .content ul {
      padding-left: 60px; } }
  .content ol li, .content ul li {
    padding-left: .5rem;
    margin-bottom: .5rem; }
    .content ol li:last-child, .content ul li:last-child {
      margin-bottom: 0; }

.content .pager__items, .content .node-type--event .field-activities ul, .node-type--event .field-activities .content ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .content .pager__items li, .content .node-type--event .field-activities ul li, .node-type--event .field-activities .content ul li {
    padding: 0;
    margin: 0; }

.content blockquote {
  color: #999; }
  .content blockquote:before {
    content: '“';
    position: absolute;
    font-size: 2.5rem;
    font-family: Georgia, Times, serif;
    margin-left: -1.5rem;
    margin-top: .2rem;
    color: #bbb; }

.g-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px; }

.g-container--grid {
  margin-top: -15px;
  margin-bottom: -15px; }
  .g-container--grid > * {
    margin-top: 15px;
    margin-bottom: 15px; }

/* max-width 380px */
@media (max-width: 380px) {
  [class^='g-item-xs-'],
  [class*=' g-item-xs-'] {
    padding-right: 15px;
    padding-left: 15px; }
  .g-hidden-xs {
    display: none; }
  .g-item-xs-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .g-item-xs-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .g-item-xs-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .g-item-xs-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .g-item-xs-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .g-item-xs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .g-item-xs-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .g-item-xs-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .g-item-xs-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .g-item-xs-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .g-item-xs-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .g-item-xs-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .g-push-xs-1 {
    margin-left: 8.33333%; }
  .g-push-xs-2 {
    margin-left: 16.66667%; }
  .g-push-xs-3 {
    margin-left: 25%; }
  .g-push-xs-4 {
    margin-left: 33.33333%; }
  .g-push-xs-5 {
    margin-left: 41.66667%; }
  .g-push-xs-6 {
    margin-left: 50%; }
  .g-push-xs-7 {
    margin-left: 58.33333%; }
  .g-push-xs-8 {
    margin-left: 66.66667%; }
  .g-push-xs-9 {
    margin-left: 75%; }
  .g-push-xs-10 {
    margin-left: 83.33333%; }
  .g-push-xs-11 {
    margin-left: 91.66667%; } }

/* 450px max-width 767px */
@media (min-width: 450px) and (max-width: 767px) {
  [class^='g-item-s-'],
  [class*=' g-item-s-'] {
    padding-right: 15px;
    padding-left: 15px; }
  .g-hidden-s {
    display: none; }
  .g-item-s-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .g-item-s-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .g-item-s-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .g-item-s-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .g-item-s-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .g-item-s-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .g-item-s-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .g-item-s-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .g-item-s-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .g-item-s-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .g-item-s-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .g-item-s-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .g-push-s-1 {
    margin-left: 8.33333%; }
  .g-push-s-2 {
    margin-left: 16.66667%; }
  .g-push-s-3 {
    margin-left: 25%; }
  .g-push-s-4 {
    margin-left: 33.33333%; }
  .g-push-s-5 {
    margin-left: 41.66667%; }
  .g-push-s-6 {
    margin-left: 50%; }
  .g-push-s-7 {
    margin-left: 58.33333%; }
  .g-push-s-8 {
    margin-left: 66.66667%; }
  .g-push-s-9 {
    margin-left: 75%; }
  .g-push-s-10 {
    margin-left: 83.33333%; }
  .g-push-s-11 {
    margin-left: 91.66667%; } }

/* 768px max-width 979px */
@media (min-width: 768px) and (max-width: 979px) {
  [class^='g-item-m-'],
  [class*=' g-item-m-'] {
    padding-right: 15px;
    padding-left: 15px; }
  .g-hidden-m {
    display: none; }
  .g-item-m-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .g-item-m-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .g-item-m-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .g-item-m-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .g-item-m-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .g-item-m-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .g-item-m-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .g-item-m-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .g-item-m-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .g-item-m-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .g-item-m-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .g-item-m-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .g-push-m-1 {
    margin-left: 8.33333%; }
  .g-push-m-2 {
    margin-left: 16.66667%; }
  .g-push-m-3 {
    margin-left: 25%; }
  .g-push-m-4 {
    margin-left: 33.33333%; }
  .g-push-m-5 {
    margin-left: 41.66667%; }
  .g-push-m-6 {
    margin-left: 50%; }
  .g-push-m-7 {
    margin-left: 58.33333%; }
  .g-push-m-8 {
    margin-left: 66.66667%; }
  .g-push-m-9 {
    margin-left: 75%; }
  .g-push-m-10 {
    margin-left: 83.33333%; }
  .g-push-m-11 {
    margin-left: 91.66667%; } }

/* 980px max-width 1199px */
@media (min-width: 980px) and (max-width: 1199px) {
  [class^='g-item-l-'],
  [class*=' g-item-l-'] {
    padding-right: 15px;
    padding-left: 15px; }
  .g-hidden-l {
    display: none; }
  .g-item-l-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .g-item-l-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .g-item-l-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .g-item-l-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .g-item-l-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .g-item-l-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .g-item-l-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .g-item-l-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .g-item-l-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .g-item-l-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .g-item-l-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .g-item-l-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .g-push-l-1 {
    margin-left: 8.33333%; }
  .g-push-l-2 {
    margin-left: 16.66667%; }
  .g-push-l-3 {
    margin-left: 25%; }
  .g-push-l-4 {
    margin-left: 33.33333%; }
  .g-push-l-5 {
    margin-left: 41.66667%; }
  .g-push-l-6 {
    margin-left: 50%; }
  .g-push-l-7 {
    margin-left: 58.33333%; }
  .g-push-l-8 {
    margin-left: 66.66667%; }
  .g-push-l-9 {
    margin-left: 75%; }
  .g-push-l-10 {
    margin-left: 83.33333%; }
  .g-push-l-11 {
    margin-left: 91.66667%; } }

/* 1200px */
@media (min-width: 1200px) {
  [class^='g-item-xl-'],
  [class*=' g-item-xl-'] {
    padding-right: 15px;
    padding-left: 15px; }
  .g-hidden-xl {
    display: none; }
  .g-item-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .g-item-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .g-item-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }
  .g-item-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .g-item-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .g-item-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }
  .g-item-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .g-item-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .g-item-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }
  .g-item-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .g-item-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .g-item-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .g-push-xl-1 {
    margin-left: 8.33333%; }
  .g-push-xl-2 {
    margin-left: 16.66667%; }
  .g-push-xl-3 {
    margin-left: 25%; }
  .g-push-xl-4 {
    margin-left: 33.33333%; }
  .g-push-xl-5 {
    margin-left: 41.66667%; }
  .g-push-xl-6 {
    margin-left: 50%; }
  .g-push-xl-7 {
    margin-left: 58.33333%; }
  .g-push-xl-8 {
    margin-left: 66.66667%; }
  .g-push-xl-9 {
    margin-left: 75%; }
  .g-push-xl-10 {
    margin-left: 83.33333%; }
  .g-push-xl-11 {
    margin-left: 91.66667%; } }

.clearfix::after {
  clear: both;
  content: '';
  display: table; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden-focusable {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden-focusable:active, .visuallyhidden-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

.hidden {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.l-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px; }

.site-main {
  margin-top: 1rem; }
  .front-page .site-main {
    margin-top: 0; }

@media (min-width: 768px) {
  .site-main.sidebar-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .site-main.sidebar-active .content {
      display: block;
      max-width: 70%; }
    .site-main.sidebar-active .sidebar {
      display: block;
      max-width: 30%;
      margin-left: 1rem;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }

.path-search #block-gizpatpa-content {
  padding-bottom: 36px; }

.user-form .form-text, .user-login-form .form-text, .contact-form .form-text, .mailing-list-subscribe-form .form-text,
.user-form .form-email,
.user-login-form .form-email,
.contact-form .form-email,
.mailing-list-subscribe-form .form-email,
.user-form .form-password,
.user-login-form .form-password,
.contact-form .form-password,
.mailing-list-subscribe-form .form-password {
  max-width: 520px;
  width: 100%; }

.user-form label, .user-login-form label, .contact-form label, .mailing-list-subscribe-form label {
  display: block; }
  .user-form label.option, .user-login-form label.option, .contact-form label.option, .mailing-list-subscribe-form label.option {
    display: inline-block; }

@media (min-width: 1200px) {
  .user-form label:not(.option), .user-login-form label:not(.option), .contact-form label:not(.option), .mailing-list-subscribe-form label:not(.option) {
    width: 180px;
    display: inline-block; }
  .user-form .description, .user-login-form .description, .contact-form .description, .mailing-list-subscribe-form .description {
    margin-left: 185px; } }

body .chosen-container .chosen-drop {
  background-color: #19DC88;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  font-weight: 600; }
  body .chosen-container .chosen-drop .chosen-search .chosen-search-input {
    color: #fff;
    border: none;
    font-size: 0.8rem; }

body .chosen-container .chosen-results {
  color: #fff;
  padding: 0; }
  body .chosen-container .chosen-results li.active-result {
    padding: 10px; }
  body .chosen-container .chosen-results li.highlighted {
    background-color: #25BA7A;
    background-image: none; }
  body .chosen-container .chosen-results li.no-results {
    color: #fff;
    background: none; }

body .chosen-container-active.chosen-with-drop .chosen-single {
  border: none;
  background-color: #E8F4FB;
  background-image: none;
  color: #95A2B1;
  -webkit-box-shadow: none;
          box-shadow: none; }

body .chosen-container-single .chosen-single {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #19DC88;
  background-image: none;
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
  border: none;
  border-radius: 0;
  height: auto;
  padding: 10px 15px; }
  body .chosen-container-single .chosen-single div {
    width: 30px; }
  body .chosen-container-single .chosen-single div b {
    background-image: url(../images/icon-dropdown.svg) !important;
    background-size: 14px !important;
    background-position: center right 10px; }

body .chosen-container-multi {
  width: 100% !important; }
  body .chosen-container-multi .chosen-choices {
    border: 1px;
    background: transparent;
    padding: 0; }
    body .chosen-container-multi .chosen-choices li.search-field {
      font-size: 0.8rem; }
      body .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
        color: #95A2B1;
        font-family: "Open Sans", sans-serif;
        font-weight: 600; }
    body .chosen-container-multi .chosen-choices li.search-choice {
      background-color: #19DC88;
      background-image: none;
      border-radius: 0;
      border: none;
      -webkit-box-shadow: none;
              box-shadow: none;
      color: #fff;
      font-size: 0.8rem;
      line-height: 140%;
      font-weight: 600;
      padding: 10px 40px 10px 15px; }
      body .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
        background-image: url(../images/icon-x.svg) !important;
        background-position: 0;
        background-repeat: no-repeat;
        background-size: 16px !important;
        border: none;
        width: 16px;
        height: 16px;
        top: 12px;
        right: 12px; }
        body .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
          background-position: 0;
          opacity: .8; }
  body .chosen-container-multi .chosen-drop li.result-selected {
    color: rgba(255, 255, 255, 0.6);
    padding: 10px; }
  body .chosen-container-multi.chosen-container-active .chosen-choices {
    -webkit-box-shadow: none;
            box-shadow: none; }

#activities-learn-more {
  background-color: #46C6FF; }
  #activities-learn-more p {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-weight: 600;
    text-align: center;
    color: white; }
  #activities-learn-more a {
    color: currentColor;
    text-decoration: underline; }

.media img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto !important;
  /*** TODO temp bugfix exception for "fixed image height issue" ***/
  /*** end temp bugfix exception for "fixed image height issue" ***/ }
  .header-block .media img, #block-pagetitle .media img {
    height: 100% !important; }

.media.view-mode-gizpatpa-full-width {
  margin-left: -18px;
  margin-right: -18px; }
  @media (min-width: 768px) {
    .media.view-mode-gizpatpa-full-width {
      margin-left: -1.8rem;
      margin-right: -1.8rem; } }
  .media.view-mode-gizpatpa-full-width .full-width__caption {
    font-size: 0.8rem;
    line-height: 1.1rem;
    color: #999; }
    .media.view-mode-gizpatpa-full-width .full-width__caption a:link,
    .media.view-mode-gizpatpa-full-width .full-width__caption a:visited {
      color: #999;
      text-decoration: underline; }
    .media.view-mode-gizpatpa-full-width .full-width__caption a:focus,
    .media.view-mode-gizpatpa-full-width .full-width__caption a:hover,
    .media.view-mode-gizpatpa-full-width .full-width__caption a:active {
      color: #363636;
      text-decoration: underline; }

.media.view-mode-gizpatpa-gallery {
  position: relative; }
  .media.view-mode-gizpatpa-gallery .gallery__figcaption {
    position: absolute;
    right: 8px;
    bottom: 4px; }
    .media.view-mode-gizpatpa-gallery .gallery__figcaption .field-copyright {
      color: #fff; }

.media.view-mode-gizpatpa-sidebar {
  position: relative; }
  .media.view-mode-gizpatpa-sidebar .sidebar__figcaption {
    position: absolute;
    right: 8px;
    bottom: 12px;
    color: #fff; }

.embedded-entity {
  margin-bottom: 18px; }
  @media (min-width: 768px) {
    .embedded-entity.align-left {
      float: left;
      margin-right: 1rem;
      margin-top: .4em; } }
  @media (min-width: 768px) {
    .embedded-entity.align-right {
      float: right;
      margin-left: 1rem;
      margin-top: .4em; } }
  .embedded-entity.align-center {
    text-align: center; }
    .embedded-entity.align-center img {
      display: inline-block; }
  .embedded-entity.embed--content-half {
    width: 50%; }
  .embedded-entity.embed--gallery {
    margin-left: -1.8rem;
    margin-right: -1.8rem; }
    .embedded-entity.embed--gallery figcaption {
      padding-left: 36px; }
  .embedded-entity.embed--logo .media img {
    width: auto; }

.gallery figcaption,
.gallery .gallery__figcaption {
  padding-left: 36px; }

.media .field-caption, .embedded-entity figcaption, .embedded-entity.embed--gallery figcaption, .gallery figcaption,
.gallery .gallery__figcaption {
  margin-top: 4px;
  font-size: 0.7rem;
  line-height: 140%;
  color: #999; }
  .media .field-caption a, .embedded-entity figcaption a, .embedded-entity.embed--gallery figcaption a, .gallery figcaption a, .gallery .gallery__figcaption a {
    color: currentColor;
    text-decoration: underline; }
    .media .field-caption a:hover, .embedded-entity figcaption a:hover, .gallery figcaption a:hover, .gallery .gallery__figcaption a:hover, .media .field-caption a:active, .embedded-entity figcaption a:active, .gallery figcaption a:active, .gallery .gallery__figcaption a:active, .media .field-caption a:focus, .embedded-entity figcaption a:focus, .gallery figcaption a:focus, .gallery .gallery__figcaption a:focus {
      text-decoration: none; }

.media .field-copyright {
  font-size: 0.55rem; }
  .media .field-copyright a {
    color: currentColor;
    text-decoration: underline; }
    .media .field-copyright a:hover, .media .field-copyright a:active, .media .field-copyright a:focus {
      text-decoration: none; }

@font-face {
  font-family: "patpa";
  src: url("../fonts/iconfont/patpa.eot?edec158b989fb8c83e4b1d041bce0651#iefix") format("embedded-opentype"), url("../fonts/iconfont/patpa.woff2?edec158b989fb8c83e4b1d041bce0651") format("woff2"), url("../fonts/iconfont/patpa.woff?edec158b989fb8c83e4b1d041bce0651") format("woff"); }

.gpd-icon:before {
  content: "";
  display: inline-block;
  font-family: patpa !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.gpd-icon.adaptation:before {
  content: "\f101"; }

.gpd-icon.afolu:before {
  content: "\f102"; }

.gpd-icon.africa-leds:before {
  content: "\f103"; }

.gpd-icon.asia-leds:before {
  content: "\f104"; }

.gpd-icon.assessment:before {
  content: "\f105"; }

.gpd-icon.avoid-var:before {
  content: "\f106"; }

.gpd-icon.avoid:before {
  content: "\f107"; }

.gpd-icon.bioenergy:before {
  content: "\f108"; }

.gpd-icon.capacity-building:before {
  content: "\f109"; }

.gpd-icon.challenge:before {
  content: "\f10a"; }

.gpd-icon.cities:before {
  content: "\f10b"; }

.gpd-icon.co-creation:before {
  content: "\f10c"; }

.gpd-icon.cross-cutting:before {
  content: "\f10d"; }

.gpd-icon.decarbonization-pathways:before {
  content: "\f10e"; }

.gpd-icon.disaster-risk-reduction:before {
  content: "\f10f"; }

.gpd-icon.early-movers-program:before {
  content: "\f110"; }

.gpd-icon.economic-recovery:before {
  content: "\f111"; }

.gpd-icon.education:before {
  content: "\f112"; }

.gpd-icon.electric-mobility:before {
  content: "\f113"; }

.gpd-icon.energy:before {
  content: "\f114"; }

.gpd-icon.evaluation:before {
  content: "\f115"; }

.gpd-icon.finance:before {
  content: "\f116"; }

.gpd-icon.forestry:before {
  content: "\f117"; }

.gpd-icon.gender:before {
  content: "\f118"; }

.gpd-icon.ghg-inventory:before {
  content: "\f119"; }

.gpd-icon.governance:before {
  content: "\f11a"; }

.gpd-icon.government:before {
  content: "\f11b"; }

.gpd-icon.health:before {
  content: "\f11c"; }

.gpd-icon.improve-var:before {
  content: "\f11d"; }

.gpd-icon.improve:before {
  content: "\f11e"; }

.gpd-icon.infrastructure-industry:before {
  content: "\f11f"; }

.gpd-icon.investment:before {
  content: "\f120"; }

.gpd-icon.jobs:before {
  content: "\f121"; }

.gpd-icon.knowledge-resources:before {
  content: "\f122"; }

.gpd-icon.knowledge-sharing:before {
  content: "\f123"; }

.gpd-icon.leds-lac:before {
  content: "\f124"; }

.gpd-icon.linking-with-sdg-var:before {
  content: "\f125"; }

.gpd-icon.linking-with-sdg:before {
  content: "\f126"; }

.gpd-icon.livestock:before {
  content: "\f127"; }

.gpd-icon.minigrids:before {
  content: "\f128"; }

.gpd-icon.mitigation:before {
  content: "\f129"; }

.gpd-icon.monitoring:before {
  content: "\f12a"; }

.gpd-icon.nbs-ecosystem-services:before {
  content: "\f12b"; }

.gpd-icon.networking:before {
  content: "\f12c"; }

.gpd-icon.oceans-coasts:before {
  content: "\f12d"; }

.gpd-icon.peer-learning:before {
  content: "\f12e"; }

.gpd-icon.policies:before {
  content: "\f12f"; }

.gpd-icon.poverty:before {
  content: "\f130"; }

.gpd-icon.renewable-grid:before {
  content: "\f131"; }

.gpd-icon.report:before {
  content: "\f132"; }

.gpd-icon.resource-efficiency:before {
  content: "\f133"; }

.gpd-icon.review:before {
  content: "\f134"; }

.gpd-icon.rural-development:before {
  content: "\f135"; }

.gpd-icon.shift-var:before {
  content: "\f136"; }

.gpd-icon.shift:before {
  content: "\f137"; }

.gpd-icon.soil-organic-carbon:before {
  content: "\f138"; }

.gpd-icon.subnational-integration:before {
  content: "\f139"; }

.gpd-icon.support-provided:before {
  content: "\f13a"; }

.gpd-icon.sustainable-logistics:before {
  content: "\f13b"; }

.gpd-icon.technical-assistance:before {
  content: "\f13c"; }

.gpd-icon.transport:before {
  content: "\f13d"; }

.gpd-icon.waste-management:before {
  content: "\f13e"; }

.gpd-icon.water:before {
  content: "\f13f"; }

.gpd-icon.youth:before {
  content: "\f140"; }

.site-header {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background-color: #ffffff;
  padding: 0;
  z-index: 1; }
  @media (min-width: 1200px) {
    .site-header {
      height: 120px;
      width: 100%; } }

.site-header__layout {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  position: relative;
  min-height: 120px; }

.site-header__branding {
  display: inline-block; }

.site-header__logo-img {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  max-width: 260px;
  height: auto;
  margin: 1.4rem 0 .9rem; }

@media (min-width: 1200px) {
  body:not(.user-logged-in) .site-header {
    position: fixed;
    top: 0; }
    body:not(.user-logged-in) .site-header.sticky {
      height: 60px;
      position: fixed;
      z-index: 2;
      top: 0; }
      body:not(.user-logged-in) .site-header.sticky .site-header__logo-img {
        max-width: 200px;
        margin: 0.3rem 0 0rem; }
      body:not(.user-logged-in) .site-header.sticky .site-header__layout {
        min-height: 60px; }
      body:not(.user-logged-in) .site-header.sticky #block-gizpatpa-main-menu li a.is-active {
        padding-bottom: .52em; } }

.site-bottom {
  background-color: white;
  position: relative; }

.context-what-we-do-partnership-regional .site-bottom {
  padding: 0 !important;
  background-color: unset;
  margin-top: 2rem; }

.yt-video-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px; }
  .yt-video-container .yt-video-embed {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        align-self: center;
    max-width: 35%;
    border-radius: 8px; }
    .yt-video-container .yt-video-embed iframe {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      width: 100%;
      border-radius: 8px; }
  .yt-video-container .yt-video-description {
    font-size: smaller;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 65%;
    padding: 10px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #E8F4FB; }
    .yt-video-container .yt-video-description h4 {
      font-weight: bold; }
  @media (max-width: 979px) {
    .yt-video-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .yt-video-container .yt-video-embed,
      .yt-video-container .yt-video-description {
        max-width: 100%;
        width: 100%; } }

.region-bottom-bottom,
.region-extra,
.region-bottom-top {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px; }

@media screen and (min-width: 979px) {
  .yt-wrapper {
    overflow: hidden;
    max-width: 100%; }
  .yt-frame-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    width: 300%;
    left: -100%; }
  .yt-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; } }

@media screen and (max-width: 979px) {
  .yt-frame-container iframe {
    aspect-ratio: 16/9; } }

.site-footer {
  margin-top: 3rem; }
  .site-footer nav {
    font-size: 70%; }
  .site-footer #block-gizpatpa-footer > ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.9rem; }
    @media (min-width: 1200px) {
      .site-footer #block-gizpatpa-footer > ul {
        padding: 0; } }

#block-gizpatpa-content > .node:not(article), #block-gizpatpa-content .views-row > .node,
#block-gizpatpa-content .views-row > .media,
#block-gizpatpa-content .views-row > .taxonomy-term {
  background-color: #fff;
  margin: 3rem 0; }

#block-gizpatpa-content .views-row > .node::after,
#block-gizpatpa-content .views-row > .media::after,
#block-gizpatpa-content .views-row > .taxonomy-term::after {
  clear: both;
  content: '';
  display: table; }

.stage__figcaption {
  position: absolute;
  right: 1rem;
  line-height: 140%;
  bottom: 0;
  color: #fff; }
  .stage__figcaption .field-copyright {
    color: #fff; }

#group-recent-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 980px) {
    #group-recent-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -15px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      max-width: 1240px;
      margin-right: auto;
      margin-left: auto;
      padding-right: 20px;
      padding-left: 20px;
      padding-left: 5px;
      padding-right: 5px; }
      #group-recent-content > * {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.33333%;
                flex: 0 0 33.33333%;
        max-width: 33.33333%;
        padding-right: 15px;
        padding-left: 15px; } }
  #group-recent-content > * {
    position: relative; }

.page-tools {
  color: #999;
  font-size: 0.8rem;
  width: calc(100% + 3.6rem);
  margin-top: 2rem;
  position: relative;
  bottom: -36px;
  left: -36px;
  padding: 18px 36px; }
  .context-what-we-do-partnership-regional .page-tools {
    margin-top: 0; }
  @media (max-width: 767px) {
    .page-tools {
      left: -18px;
      padding: 18px 18px 36px;
      width: calc(100% + 1.8rem); } }
  .page-tools h3 {
    display: inline;
    font-size: 1em;
    font-weight: normal;
    color: currentColor;
    margin: 0; }
  .page-tools ul, .page-tools li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0; }
  .page-tools li {
    margin-left: .5rem; }
  .page-tools .page-tools__share {
    margin: 0;
    padding: 0; }
  @media (max-width: 767px) {
    .page-tools ul {
      display: block; }
      .page-tools ul li {
        display: block;
        margin-left: 0;
        padding-left: 0; } }
  .page-tools ul.primary > li {
    padding: 0; }
  .page-tools ul.secondary {
    display: inline-block;
    margin-top: 18px !important;
    margin-left: 0;
    padding: 5px 0 !important; }
    @media (min-width: 768px) {
      .page-tools ul.secondary {
        margin-top: 0 !important;
        float: right; } }

.views-exposed-form .form-item {
  background-color: #E8F4FB;
  padding: 1rem; }
  .views-exposed-form .form-item.js-form-type-select {
    background-image: url(../images/pane-title-button.svg);
    background-repeat: no-repeat;
    background-position: top .5rem right .5rem; }
    .views-exposed-form .form-item.js-form-type-select.form-item-field-year-value, .views-exposed-form .form-item.js-form-type-select.form-item-field-date-value, .views-exposed-form .form-item.js-form-type-select.form-item-field-date-event {
      background-image: none; }
  .views-exposed-form .form-item label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #363636;
    position: relative;
    top: -.5rem; }
  .views-exposed-form .form-item .form-text {
    width: 100%; }

.views-exposed-form #edit-actions {
  margin-bottom: 1rem; }
  .views-exposed-form #edit-actions .button {
    width: 100%;
    border: 1px solid #ccc;
    color: #999; }
    .views-exposed-form #edit-actions .button:hover, .views-exposed-form #edit-actions .button:active, .views-exposed-form #edit-actions .button:focus {
      color: #363636; }

.pager {
  margin: 1.8rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 285%; }

.pager__items,
.pager__item {
  margin: 0;
  padding: 0; }

.pager__item {
  display: inline-block; }
  .pager__item.is-active a,
  .pager__item a:hover,
  .pager__item a:active,
  .pager__item a:focus {
    color: #fff;
    background-color: #2D71B3;
    border-color: #2D71B3; }
  .pager__item a {
    padding: .5rem .9rem;
    border: 1px solid rgba(66, 54, 54, 0.1);
    color: #999; }

.pager__item--ellipsis {
  padding: 0 .5rem; }

.sidebar .field-image {
  line-height: 0; }

.sidebar .sidebar__img {
  max-width: 100%; }

.sidebar .views-exposed-form {
  margin-bottom: 36px; }

#block-gizpatpa-messages > div {
  padding: 18px;
  background-color: #E8F4FB;
  margin-top: 18px; }

.taxonomy-term .body {
  background-color: #fff;
  margin: 0 auto 36px auto; }

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px; }
  .flex-container > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        align-self: center; }

.ckeditor-accordion-container > dl dd {
  display: none;
  padding: 1em 0;
  margin: 0; }

.ckeditor-accordion-container .ckeditor-accordion-toggler h2, .ckeditor-accordion-container .ckeditor-accordion-toggler h3, .ckeditor-accordion-container .ckeditor-accordion-toggler h4 {
  font-weight: 600;
  line-height: inherit;
  margin: auto; }

.ckeditor-accordion-container .ckeditor-accordion-toggler h5, .ckeditor-accordion-container .ckeditor-accordion-toggler h6 {
  line-height: inherit;
  margin: auto; }

.ckeditor-accordion-container > dl {
  border: none; }
  .ckeditor-accordion-container > dl dt > a, .ckeditor-accordion-container > dl dt > a:not(.button) {
    padding: 1em .15em;
    color: #363636;
    background-color: transparent;
    border-bottom: 1px solid #ddd; }
    .ckeditor-accordion-container > dl dt > a:focus, .ckeditor-accordion-container > dl dt > a:not(.button):focus {
      outline-color: red; }
    .ckeditor-accordion-container > dl dt > a:hover, .ckeditor-accordion-container > dl dt > a:not(.button):hover {
      background-color: transparent;
      -webkit-box-shadow: none;
              box-shadow: none;
      color: #363636;
      text-decoration: none; }
  .ckeditor-accordion-container > dl dt.active > a {
    background-color: transparent; }
  .ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle {
    color: #363636;
    left: auto;
    right: 11px; }
    .ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:before {
      left: 13px;
      background-color: #ddd; }
    .ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:after {
      background-color: #ddd;
      right: 13px;
      left: auto; }
  .ckeditor-accordion-container > dl dt.active a > .ckeditor-accordion-toggle:before,
  .ckeditor-accordion-container > dl dt.active a > .ckeditor-accordion-toggle:after {
    background-color: #363636; }
  .ckeditor-accordion-container > dl dd {
    padding: 1em 0;
    line-height: inherit;
    -webkit-transition: padding 300ms;
    -o-transition: padding 300ms;
    transition: padding 300ms;
    border-bottom: 1px solid #ddd; }

.cc_banner-wrapper {
  font-size: 0.8rem;
  padding: 18px;
  z-index: 1;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  line-height: 140%;
  border-top: 1px solid #ddd; }

a.cc_btn {
  float: right;
  margin-left: 18px;
  padding: 18px;
  width: 100px;
  text-align: center; }

.cc_btn,
.cc_btn:visited {
  background-color: #2D71B3;
  border-radius: 0;
  color: #fff;
  font-weight: 600; }
  .cc_btn:hover, .cc_btn:active, .cc_btn:focus,
  .cc_btn:visited:hover,
  .cc_btn:visited:active,
  .cc_btn:visited:focus {
    background-color: #244E90;
    color: #fff; }

.cc_logo {
  font-size: 0.55rem;
  color: #999; }

.yt-video-container {
  position: relative; }
  .yt-video-container .yt-video-embed {
    position: relative;
    opacity: 0; }
  .yt-video-container .yt-preview-image {
    border-radius: 8px;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.5; }
  .yt-video-container .play-button-container {
    width: 100%;
    height: 100%;
    background-color: #2D71B3;
    opacity: 0.7;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .yt-video-container .play-button-container .play-button {
      width: 60px;
      height: 60px;
      background-color: white;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: -1em; }
  .yt-video-container .consent-contentblock--message {
    padding: 1em;
    border-radius: 8px;
    text-align: center;
    margin: auto;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    font-weight: 600;
    font-size: medium;
    line-height: normal;
    background: #E8F4FB;
    padding-bottom: 0.5em; }
  .yt-video-container .consent-agree-yt {
    margin-top: 1em; }

nav.ankermenu {
  display: none;
  font-size: 90%; }
  nav.ankermenu.initialized {
    display: block; }
  nav.ankermenu ul {
    margin: 0;
    padding: 0; }
    nav.ankermenu ul li {
      margin: 0;
      padding: 0 0 0 20px;
      color: #3074B4;
      cursor: pointer;
      background: url(../images/icon-doubleangle-down.svg) no-repeat left center;
      background-size: 18px 18px; }
  .paragraph--type--anker-menu.style--horizontal nav.ankermenu ul li {
    display: inline-block; }
    .paragraph--type--anker-menu.style--horizontal nav.ankermenu ul li + li {
      margin-left: 1em; }

.menu-toggle {
  display: none; }

.menu-toggle:checked ~ #block-gizpatpa-main-menu {
  display: block; }

.menu-toggle:checked + .menu-toggle-label {
  background-image: url(../images/icon-close.svg); }

.menu-toggle-label {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(../images/icon-menu.svg);
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  height: 30px;
  line-height: .1em;
  position: absolute;
  right: 0;
  top: 5.5em;
  width: 30px; }

@media (max-width: 767px) {
  .menu-toggle-label {
    display: block; }
  #block-gizpatpa-main-menu {
    display: none; } }

#block-gizpatpa-main-menu {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  padding-bottom: 1rem;
  margin-left: -1rem; }
  #block-gizpatpa-main-menu > ul > li {
    position: relative; }
  #block-gizpatpa-main-menu > ul > li > a {
    color: #002C4A;
    display: block;
    font-weight: 600;
    padding: .15rem;
    padding-left: 18px;
    border-left: 4px solid rgba(255, 255, 255, 0); }
    #block-gizpatpa-main-menu > ul > li > a:hover, #block-gizpatpa-main-menu > ul > li > a:active, #block-gizpatpa-main-menu > ul > li > a:focus {
      color: #2D71B3; }
    #block-gizpatpa-main-menu > ul > li > a.is-active {
      border-left: 4px solid #2D71B3;
      color: #2D71B3; }
  #block-gizpatpa-main-menu > ul > li > ul {
    display: none;
    margin-bottom: 9px; }
    #block-gizpatpa-main-menu > ul > li > ul a {
      line-height: 170%;
      font-size: 0.8rem;
      padding: 0 0 0 36px;
      color: #002C4A;
      font-weight: 600; }
      #block-gizpatpa-main-menu > ul > li > ul a:hover {
        color: #2D71B3; }
      #block-gizpatpa-main-menu > ul > li > ul a.is-active {
        color: #2D71B3; }
  #block-gizpatpa-main-menu > ul > li.active-trail > ul {
    display: block; }
  @media (min-width: 768px) {
    #block-gizpatpa-main-menu {
      bottom: 0;
      margin-left: 0;
      padding-bottom: 0;
      position: static;
      right: 18px; }
      #block-gizpatpa-main-menu > ul > li {
        display: inline-block; }
      #block-gizpatpa-main-menu > ul > li > a {
        display: inline-block;
        padding: .5rem .5rem .25rem;
        border-left: none;
        border-bottom: 4px solid rgba(255, 255, 255, 0); }
        #block-gizpatpa-main-menu > ul > li > a.is-active {
          border-left: none;
          border-bottom: 4px solid #2D71B3;
          color: #2D71B3; }
      #block-gizpatpa-main-menu > ul > li > ul {
        display: none; }
      #block-gizpatpa-main-menu > ul > li.active-trail > ul {
        display: none; } }
  @media (min-width: 980px) {
    #block-gizpatpa-main-menu {
      position: absolute; }
      #block-gizpatpa-main-menu.sticky {
        position: fixed;
        width: 100%;
        z-index: 99;
        height: 60px; }
        #block-gizpatpa-main-menu.sticky .site-header__logo-img {
          width: 180px;
          margin-top: 8px; }
        #block-gizpatpa-main-menu.sticky #block-gizpatpa-account-menu {
          display: none; }
        #block-gizpatpa-main-menu.sticky #block-gizpatpa-main-menu {
          bottom: 15px; }
      #block-gizpatpa-main-menu > ul > li > ul {
        position: absolute;
        left: -0.4em;
        top: 2.3em;
        background-color: #fff;
        z-index: 9;
        padding: 0;
        width: 185px;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px; }
      #block-gizpatpa-main-menu > ul > li > ul > li {
        display: block; }
      #block-gizpatpa-main-menu > ul > li:hover > ul,
      #block-gizpatpa-main-menu > ul > li:focus > ul {
        display: block; }
      #block-gizpatpa-main-menu > ul > li > ul a {
        display: block;
        padding: .3em 18px;
        line-height: 135%; }
      #block-gizpatpa-main-menu > ul > li > ul > li:first-child a {
        padding-top: .5em; }
      #block-gizpatpa-main-menu > ul > li > ul > li:last-child a {
        padding-bottom: 1em; } }
  @media (min-width: 1200px) {
    #block-gizpatpa-main-menu > ul > li > a {
      padding-bottom: .75rem; }
    #block-gizpatpa-main-menu > ul > li > ul {
      top: 2.8em; } }

#block-mainnavigation {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }
  #block-mainnavigation a, #block-mainnavigation span {
    display: block;
    color: inherit;
    font: inherit; }
  #block-mainnavigation .toggle,
  #block-mainnavigation .toggle-label {
    display: none; }
  @media (min-width: 1200px) {
    #block-mainnavigation {
      position: sticky;
      z-index: 1;
      top: 60px;
      background: white;
      -webkit-transition: -webkit-box-shadow 0.4s;
      transition: -webkit-box-shadow 0.4s;
      -o-transition: box-shadow 0.4s;
      transition: box-shadow 0.4s;
      transition: box-shadow 0.4s, -webkit-box-shadow 0.4s; }
      #block-mainnavigation.stuck {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } }
  @media (max-width: 767px) {
    #block-mainnavigation {
      min-height: 30px; }
      #block-mainnavigation .toggle:checked ~ .navigation-container {
        display: block; }
      #block-mainnavigation .toggle:checked + .toggle-label {
        background-image: url(../images/icon-close.svg); }
      #block-mainnavigation .toggle-label {
        display: inline-block;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        position: absolute;
        z-index: 2;
        right: 20px;
        height: 30px;
        width: 30px;
        background: url(../images/icon-menu.svg) no-repeat center center; }
      #block-mainnavigation > .navigation-container {
        display: none;
        position: absolute;
        z-index: 1;
        width: 100%;
        padding-bottom: 10px;
        background: white;
        -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
        #block-mainnavigation > .navigation-container > ul {
          font-size: 110%; }
          #block-mainnavigation > .navigation-container > ul > li > a, #block-mainnavigation > .navigation-container > ul > li > span {
            color: #3074B4; }
          #block-mainnavigation > .navigation-container > ul > li ul {
            margin-left: 2em;
            font-size: 95%; } }
  @media (min-width: 768px) {
    #block-mainnavigation > div > ul {
      list-style-type: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-line-pack: start;
          align-content: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-size: 110%; }
      #block-mainnavigation > div > ul > li {
        display: block;
        position: relative;
        padding-bottom: 10px; }
        #block-mainnavigation > div > ul > li > a, #block-mainnavigation > div > ul > li > span {
          position: relative;
          padding-right: 30px;
          color: #3D6D99; }
          #block-mainnavigation > div > ul > li > a:after, #block-mainnavigation > div > ul > li > span:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 20px;
            background: url(../images/icon-angle-down.svg) no-repeat right center;
            background-size: 20px 20px;
            opacity: 0.4;
            -webkit-transition: opacity 0.3s;
            -o-transition: opacity 0.3s;
            transition: opacity 0.3s; }
        #block-mainnavigation > div > ul > li > ul {
          display: none;
          position: absolute;
          z-index: 1;
          top: 100%;
          left: -10px;
          min-width: 100%;
          padding: 10px 0;
          background: white;
          border: 1px solid #eee;
          border-radius: 4px;
          -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
                  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
          font-size: 95%; }
          #block-mainnavigation > div > ul > li > ul:before, #block-mainnavigation > div > ul > li > ul:after {
            content: "";
            display: block;
            position: absolute;
            z-index: 1;
            left: 30px;
            bottom: 100%;
            border: 10px solid transparent; }
          #block-mainnavigation > div > ul > li > ul:before {
            border-bottom-color: #eee;
            -webkit-transform: translate(0, -1.5px);
                -ms-transform: translate(0, -1.5px);
                    transform: translate(0, -1.5px); }
          #block-mainnavigation > div > ul > li > ul:after {
            border-bottom-color: white; }
          #block-mainnavigation > div > ul > li > ul > li {
            padding: 0; }
            #block-mainnavigation > div > ul > li > ul > li > a, #block-mainnavigation > div > ul > li > ul > li > span {
              padding: 7px 20px;
              line-height: 1.2;
              white-space: nowrap; }
              #block-mainnavigation > div > ul > li > ul > li > a:hover, #block-mainnavigation > div > ul > li > ul > li > span:hover {
                background: rgba(0, 0, 0, 0.05); }
        #block-mainnavigation > div > ul > li.active > a:after, #block-mainnavigation > div > ul > li.active > span:after, #block-mainnavigation > div > ul > li:hover > a:after, #block-mainnavigation > div > ul > li:hover > span:after {
          opacity: 0.7; }
        #block-mainnavigation > div > ul > li.active > ul, #block-mainnavigation > div > ul > li:hover > ul {
          display: block; } }

#block-main-submenu {
  margin-bottom: .9rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #E8F4FB; }
  #block-main-submenu a {
    padding: .5rem .9rem;
    display: block;
    border-bottom: 1px solid white;
    color: #2D71B3;
    opacity: 0.7; }
    #block-main-submenu a:before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-right: 0.3em;
      background: url(../images/icon-arrow-right.svg) no-repeat left top;
      background-size: 18px 18px;
      vertical-align: middle; }
    #block-main-submenu a:hover, #block-main-submenu a:active, #block-main-submenu a:focus {
      opacity: 1;
      background-color: rgba(45, 113, 179, 0.1); }
    #block-main-submenu a.is-active {
      opacity: 1;
      color: #2D71B3;
      font-weight: 700; }

#block-gizpatpa-account-menu {
  font-size: 0.7rem;
  line-height: 1rem;
  padding-bottom: .5rem;
  margin-left: -.5em; }
  @media (min-width: 768px) {
    #block-gizpatpa-account-menu {
      float: right;
      margin: 0.5rem 1rem 0 0; } }
  #block-gizpatpa-account-menu > ul li {
    display: inline-block; }
  #block-gizpatpa-account-menu > ul a {
    color: #999;
    padding: .5em; }
    #block-gizpatpa-account-menu > ul a:hover, #block-gizpatpa-account-menu > ul a:active, #block-gizpatpa-account-menu > ul a:focus {
      color: #363636; }

#block-social-media {
  font-size: 0.7rem;
  line-height: 1rem;
  color: #999;
  margin: .5rem 1rem 0 0;
  position: absolute;
  top: 0;
  right: -20px; }
  @media (min-width: 768px) {
    #block-social-media {
      position: static;
      float: right; } }
  #block-social-media .social-media {
    margin: 0;
    padding: 0;
    list-style: none; }
    #block-social-media .social-media li {
      display: inline-block; }
    #block-social-media .social-media a {
      color: currentColor;
      padding-left: 27px; }
      #block-social-media .social-media a:hover, #block-social-media .social-media a:active, #block-social-media .social-media a:focus {
        color: #363636; }
    #block-social-media .social-media li.bluesky {
      margin-right: 20px; }
      #block-social-media .social-media li.bluesky a {
        background-image: url(../images/icon-bluesky.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left 0;
        padding-left: 27px; }
    #block-social-media .social-media li.twitter {
      margin-right: 20px; }
      #block-social-media .social-media li.twitter a {
        background-image: url(../images/icon-twitter-x.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left 0;
        padding-left: 27px; }
    #block-social-media .social-media li.youtube a {
      background-image: url(../images/icon-youtube.svg);
      background-repeat: no-repeat;
      background-position: left 0;
      padding-left: 32px; }

#block-menu-bottom {
  background-color: #2D71B3;
  padding: 1.5rem 0 0.5rem; }
  #block-menu-bottom a, #block-menu-bottom span {
    color: rgba(255, 255, 255, 0.6); }
    #block-menu-bottom a:hover, #block-menu-bottom a:active, #block-menu-bottom a:focus, #block-menu-bottom span:hover, #block-menu-bottom span:active, #block-menu-bottom span:focus {
      color: #fff; }
  #block-menu-bottom > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding: 0 18px; }
    #block-menu-bottom > ul > li {
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      padding-right: 15px;
      padding-left: 15px;
      padding: 0;
      margin-bottom: 1rem;
      margin-right: 1rem;
      width: 100%; }
      @media (min-width: 450px) {
        #block-menu-bottom > ul > li {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      @media (min-width: 768px) {
        #block-menu-bottom > ul > li {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 33.33333%;
                  flex: 0 0 33.33333%; } }
      @media (min-width: 980px) {
        #block-menu-bottom > ul > li {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 16.66667%;
                  flex: 0 0 16.66667%; } }
      #block-menu-bottom > ul > li > a, #block-menu-bottom > ul > li > span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.8rem;
        line-height: 140%;
        margin-bottom: .3rem;
        display: block; }
      #block-menu-bottom > ul > li > ul {
        line-height: 180%; }

#block-gizpatpa-footer {
  background-color: #244E90;
  padding: 1rem 0;
  text-align: center; }
  #block-gizpatpa-footer > ul li {
    display: inline-block; }
    #block-gizpatpa-footer > ul li a {
      color: rgba(255, 255, 255, 0.6);
      padding: .5em; }
      #block-gizpatpa-footer > ul li a:hover, #block-gizpatpa-footer > ul li a:active, #block-gizpatpa-footer > ul li a:focus {
        color: #fff; }

#block-gizpatpa-local-tasks {
  font-size: 0.9rem; }
  #block-gizpatpa-local-tasks > ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 1rem 0; }
    #block-gizpatpa-local-tasks > ul li {
      display: inline-block;
      margin: 0;
      padding: 0; }
      #block-gizpatpa-local-tasks > ul li:first-child a {
        padding-left: 0; }
    #block-gizpatpa-local-tasks > ul a {
      padding: 1rem;
      color: #999; }
      #block-gizpatpa-local-tasks > ul a:hover {
        color: #2D71B3; }
      #block-gizpatpa-local-tasks > ul a.is-active {
        color: #2D71B3; }

.view-listpage > header {
  color: rgba(0, 44, 74, 0.4);
  margin: 0 0 36px; }

.path-taxonomy .views-element-container {
  background-color: #fff;
  max-width: 1080px;
  padding: 18px;
  margin: 0 auto 36px auto; }

.views-element-container footer {
  padding-bottom: 36px; }

.path-taxonomy #block-gizpatpa-youtubeintegrationregional .views-element-container {
  max-width: none;
  padding: 0;
  margin: 0; }

div.views-view-time-line {
  margin-bottom: 3em; }
  div.views-view-time-line ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }

.views-element-container .field-timeline-text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .views-element-container .field-timeline-text li > div:first-child {
    margin-right: 2%; }
  .views-element-container .field-timeline-text li > div:last-child:not(:first-child) {
    width: 76%; }
  .views-element-container .field-timeline-text li > div:only-child {
    margin-bottom: 1em;
    width: 100%; }
  @media (max-width: 979px) {
    .views-element-container .field-timeline-text li {
      display: block; }
      .views-element-container .field-timeline-text li > div {
        width: auto !important;
        margin-bottom: 1em; } }

.views-element-container .events-grid {
  /**
   * filter form
   */
  /**
   * filter form item
   */
  /**
   * event tile container
   */
  /**
   * event tile
   */ }
  .views-element-container .events-grid .views-exposed-form {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr; }
    @media (min-width: 768px) {
      .views-element-container .events-grid .views-exposed-form {
        grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) {
      .views-element-container .events-grid .views-exposed-form {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1rem; } }
  .views-element-container .events-grid .form-item {
    min-width: 100px;
    margin: 0; }
    .views-element-container .events-grid .form-item label {
      padding-right: 50px; }
    .views-element-container .events-grid .form-item.form-item-fulltext label:before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 22px;
      margin-right: 0.4em;
      background: url("../images/icon-search.svg") no-repeat center center;
      background-size: cover;
      vertical-align: middle; }
    .views-element-container .events-grid .form-item.form-item-countries-regions label:before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 22px;
      margin-right: 0.4em;
      background: url("../images/icon-countries.svg") no-repeat center center;
      background-size: cover;
      vertical-align: middle; }
    .views-element-container .events-grid .form-item.form-item-field-activities-target-id label:before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 22px;
      margin-right: 0.4em;
      background: url("../images/icon-activities.svg") no-repeat center center;
      background-size: cover;
      vertical-align: middle; }
    .views-element-container .events-grid .form-item.form-item-field-topics-target-id label:before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 22px;
      margin-right: 0.4em;
      background: url("../images/icon-topics.svg") no-repeat center center;
      background-size: cover;
      vertical-align: middle; }
  .views-element-container .events-grid .views-view-responsive-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr; }
    @media (min-width: 768px) {
      .views-element-container .events-grid .views-view-responsive-grid {
        grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) {
      .views-element-container .events-grid .views-view-responsive-grid {
        grid-template-columns: 1fr 1fr 1fr; } }
  .views-element-container .events-grid .views-view-responsive-grid__item {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    min-width: 100px;
    padding: 0; }
    .views-element-container .events-grid .views-view-responsive-grid__item article .field-image {
      float: none;
      width: auto;
      margin: 0;
      height: 362px;
      min-height: 362px; }
      .views-element-container .events-grid .views-view-responsive-grid__item article .field-image figure, .views-element-container .events-grid .views-view-responsive-grid__item article .field-image.image-fallback {
        background-color: #3D6D99;
        height: 100%;
        min-height: 362px;
        position: relative; }
      .views-element-container .events-grid .views-view-responsive-grid__item article .field-image.image-fallback {
        display: table;
        width: 100%;
        text-align: center; }
        .views-element-container .events-grid .views-view-responsive-grid__item article .field-image.image-fallback h2.node-title-image {
          color: white;
          vertical-align: middle;
          display: table-cell;
          font-size: 1.3rem;
          font-weight: 600;
          line-height: 1.5rem; }
      .views-element-container .events-grid .views-view-responsive-grid__item article .field-image img {
        display: block;
        width: 100%;
        max-width: 110%;
        height: 362px !important;
        -o-object-fit: cover;
           object-fit: cover;
        opacity: calc(90 / 100); }
    .views-element-container .events-grid .views-view-responsive-grid__item article .node-title {
      padding: 0.7em 0; }
      .views-element-container .events-grid .views-view-responsive-grid__item article .node-title .sub-title {
        font-size: initial;
        font-weight: bold; }
    .views-element-container .events-grid .views-view-responsive-grid__item article .field-date-event {
      padding: 0.3em 0 0.7em 0; }
    .views-element-container .events-grid .views-view-responsive-grid__item article .body {
      display: -webkit-box;
      max-width: 98%;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden; }

#block-gizpatpa-youtubeintegrationregional {
  margin-bottom: 1em; }
  #block-gizpatpa-youtubeintegrationregional h4.node-title {
    font: inherit;
    font-weight: bold;
    color: #363636; }

[id^="block-gizpatpa-youtubeintegrationregional"] > h2,
[id^="block-gizpatpa-views-block-youtube-integration"] > h2 {
  margin: 0 0 1.5rem 0;
  font: inherit;
  font-weight: bold; }
  [id^="block-gizpatpa-youtubeintegrationregional"] > h2:before,
  [id^="block-gizpatpa-views-block-youtube-integration"] > h2:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    background: url(../images/icon-youtube.svg) no-repeat center center;
    background-size: contain;
    vertical-align: middle;
    opacity: 0.5; }

.node {
  position: relative; }
  .node .pretitle div {
    display: inline-block; }
  .node .field-label {
    font-size: 0.8rem;
    line-height: 140%;
    color: #999;
    margin-top: 18px; }
  .node.view-mode--teaser:not(.node-type--ytp-video), .node.view-mode--search-result, .node.view-mode--knowledge-products-teaser {
    font-size: 0.8rem;
    line-height: 1.2rem;
    clear: both; }
    .node.view-mode--teaser:not(.node-type--ytp-video) .body, .node.view-mode--search-result .body, .node.view-mode--knowledge-products-teaser .body {
      overflow: hidden; }
    .node.view-mode--teaser:not(.node-type--ytp-video) h2, .node.view-mode--search-result h2, .node.view-mode--knowledge-products-teaser h2 {
      margin: .25rem 0;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.25rem; }
      .node.view-mode--teaser:not(.node-type--ytp-video) h2 a:link,
      .node.view-mode--teaser:not(.node-type--ytp-video) h2 a:visited, .node.view-mode--search-result h2 a:link,
      .node.view-mode--search-result h2 a:visited, .node.view-mode--knowledge-products-teaser h2 a:link,
      .node.view-mode--knowledge-products-teaser h2 a:visited {
        color: #2D71B3; }
      .node.view-mode--teaser:not(.node-type--ytp-video) h2 a:focus,
      .node.view-mode--teaser:not(.node-type--ytp-video) h2 a:hover,
      .node.view-mode--teaser:not(.node-type--ytp-video) h2 a:active, .node.view-mode--search-result h2 a:focus,
      .node.view-mode--search-result h2 a:hover,
      .node.view-mode--search-result h2 a:active, .node.view-mode--knowledge-products-teaser h2 a:focus,
      .node.view-mode--knowledge-products-teaser h2 a:hover,
      .node.view-mode--knowledge-products-teaser h2 a:active {
        color: #363636; }
    .node.view-mode--teaser:not(.node-type--ytp-video) .field-image, .node.view-mode--search-result .field-image, .node.view-mode--knowledge-products-teaser .field-image {
      margin-bottom: 9px; }
    @media (min-width: 980px) {
      .node.view-mode--teaser:not(.node-type--ytp-video) .field-image, .node.view-mode--search-result .field-image, .node.view-mode--knowledge-products-teaser .field-image {
        float: left;
        margin-right: 18px;
        margin-bottom: 0;
        width: 264px; } }
    .node.view-mode--teaser:not(.node-type--ytp-video) .teaser__figure, .node.view-mode--search-result .teaser__figure, .node.view-mode--knowledge-products-teaser .teaser__figure {
      position: relative; }
    .node.view-mode--teaser:not(.node-type--ytp-video) [class*="__figcaption"],
    .node.view-mode--teaser:not(.node-type--ytp-video) .teaser__figcaption, .node.view-mode--search-result [class*="__figcaption"],
    .node.view-mode--search-result .teaser__figcaption, .node.view-mode--knowledge-products-teaser [class*="__figcaption"],
    .node.view-mode--knowledge-products-teaser .teaser__figcaption {
      position: absolute;
      bottom: 0;
      right: 4px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: normal;
      text-shadow: 0 0 10px #000; }
      .node.view-mode--teaser:not(.node-type--ytp-video) [class*="__figcaption"] a,
      .node.view-mode--teaser:not(.node-type--ytp-video) .teaser__figcaption a, .node.view-mode--search-result [class*="__figcaption"] a,
      .node.view-mode--search-result .teaser__figcaption a, .node.view-mode--knowledge-products-teaser [class*="__figcaption"] a,
      .node.view-mode--knowledge-products-teaser .teaser__figcaption a {
        color: rgba(255, 255, 255, 0.8); }
  @media (max-width: 979px) {
    .node.view-mode--full {
      font-size: 0.8rem;
      line-height: 1.3rem; } }
  .node.view-mode--full > .field-image,
  .node.view-mode--full .node-content > .field-image {
    margin-top: -18px;
    margin-bottom: 18px; }
    @media (min-width: 768px) {
      .node.view-mode--full > .field-image,
      .node.view-mode--full .node-content > .field-image {
        margin-top: -36px; } }
    .node.view-mode--full > .field-image .full-width__figcaption,
    .node.view-mode--full .node-content > .field-image .full-width__figcaption {
      margin-bottom: 18px;
      padding-left: 36px;
      padding-right: 36px; }
      @media (max-width: 767px) {
        .node.view-mode--full > .field-image .full-width__figcaption,
        .node.view-mode--full .node-content > .field-image .full-width__figcaption {
          padding-left: 18px;
          padding-right: 18px; } }
      .node.view-mode--full > .field-image .full-width__figcaption .field-copyright,
      .node.view-mode--full .node-content > .field-image .full-width__figcaption .field-copyright {
        color: #999; }
  .node .node-link {
    display: block;
    color: #363636;
    opacity: 1; }
    .node .node-link:focus, .node .node-link:hover, .node .node-link:active {
      opacity: .8;
      color: #363636; }
  .node .node-footer ul {
    padding: 0;
    margin: 0; }
  .node .node-footer ul li {
    margin-bottom: 0;
    padding-bottom: 0; }
    @media (max-width: 767px) {
      .node .node-footer ul li {
        padding-left: 0; } }

.node .pretitle, .node.node-type--news .field-date {
  color: #999;
  font-size: 0.8rem;
  line-height: 1.3rem; }

.node.node-type--news .node-main {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  margin-top: 0; }

.node.node-type--news .node-link {
  color: #363636; }
  .node.node-type--news .node-link:focus .node-main, .node.node-type--news .node-link:hover .node-main, .node.node-type--news .node-link:active .node-main {
    opacity: .6;
    color: #363636; }

.node.node-type--news.view-mode--teaser .node-content {
  overflow: hidden; }

.node-type--tools .badge {
  display: inline-block;
  margin: 0 1em;
  padding: 0 1em;
  background-color: #3074B4;
  border-radius: 15px;
  color: white;
  font-size: 80%; }
  .node-type--tools .badge:first-child {
    margin-left: 0; }

.node-type--tools .with_preview_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .node-type--tools .with_preview_image .pdfpreview {
    width: 22%;
    margin: 0 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .node-type--tools .with_preview_image .pdfpreview img {
      display: block;
      max-width: 100%;
      height: auto !important;
      -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
              box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); }
    .node-type--tools .with_preview_image .pdfpreview .field-image {
      display: block;
      float: none;
      max-width: 100%; }

.node-type--tools .pretitle .field-published-by {
  display: inline; }

.node-type--tools .field-published-by + .field-year {
  margin-left: -.25em; }
  .node-type--tools .field-published-by + .field-year:before {
    content: ', '; }

.node-type--event .field-date-event,
.node-type--event .field-location {
  font-weight: bold; }
  .node-type--event .field-date-event + .body,
  .node-type--event .field-location + .body {
    margin-top: 18px; }

.node-type--event .field-location {
  font-size: 0.8rem; }

body.node-type--good-practice .header-block {
  min-height: 200px; }
  body.node-type--good-practice .header-block h1 {
    display: none; }
  body.node-type--good-practice .header-block .field-image figure {
    font-family: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#EFF4F9), to(#E8F4FB));
    background-image: -webkit-linear-gradient(#EFF4F9, #E8F4FB);
    background-image: -o-linear-gradient(#EFF4F9, #E8F4FB);
    background-image: linear-gradient(#EFF4F9, #E8F4FB); }
    body.node-type--good-practice .header-block .field-image figure picture img {
      opacity: 1; }

article.node-type--good-practice section {
  margin-bottom: 2rem; }
  article.node-type--good-practice section:last-child {
    margin-bottom: 0; }
  article.node-type--good-practice section.intro {
    margin-bottom: 1rem; }
  @media (min-width: 980px) {
    article.node-type--good-practice section.main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      article.node-type--good-practice section.main main {
        width: 66.66%;
        margin-right: 2rem; }
      article.node-type--good-practice section.main aside {
        width: 33.333%;
        margin-left: 2rem; } }
  @media (min-width: 980px) {
    article.node-type--good-practice section.below {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-left: -1rem;
      margin-right: -1rem; }
      article.node-type--good-practice section.below > div {
        width: 100%;
        -ms-flex-negative: 1;
            flex-shrink: 1;
        margin: 0 1rem; } }

article.node-type--good-practice ul {
  margin: 0;
  padding: 0 0 0 1.5rem; }
  article.node-type--good-practice ul li {
    padding: 0 0 0.5rem 0; }

article.node-type--good-practice .gpd-icon {
  display: inline-block;
  position: relative;
  padding-left: 2.28rem; }
  article.node-type--good-practice .gpd-icon:before {
    position: absolute;
    width: 1.9rem;
    height: 1.9rem;
    margin-top: -0.2375rem;
    margin-left: -2.28rem;
    margin-right: 0.38rem;
    background: #ffffff;
    color: #5d8ca9;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1.805rem;
    text-align: center;
    vertical-align: middle; }

article.node-type--good-practice .box {
  margin: 0 0 2rem 0;
  padding: 1.5rem;
  background: #E8F4FB;
  word-break: break-word;
  font-size: 95%;
  line-height: 140%; }

article.node-type--good-practice .date,
article.node-type--good-practice .countries {
  font-size: 80%;
  opacity: 0.75;
  padding-left: 30px;
  background: no-repeat left center;
  background-size: 25px 25px; }
  article.node-type--good-practice .date.date,
  article.node-type--good-practice .countries.date {
    background-image: url(../images/icon-calendar.svg); }
  article.node-type--good-practice .date.countries,
  article.node-type--good-practice .countries.countries {
    background-image: url(../images/icon-globe.svg); }

article.node-type--good-practice .field-label {
  margin-bottom: 1rem;
  font: inherit;
  color: inherit;
  font-weight: bold; }
  article.node-type--good-practice .field-label:first-child {
    margin-top: 0; }

article.node-type--good-practice .field-planning-implementation ul,
article.node-type--good-practice .field-sectors-themes ul {
  list-style-type: none;
  padding: 0; }

.member-stories-teasers,
#block-gizpatpa-content .member-stories-teasers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .member-stories-teasers > *,
  #block-gizpatpa-content .member-stories-teasers > * {
    width: 100%;
    margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .member-stories-teasers > *,
    #block-gizpatpa-content .member-stories-teasers > * {
      width: 48%; } }
  .member-stories-teasers .node-type--member-stories.view-mode--teaser,
  .member-stories-teasers article.node-type--member-stories.view-mode--teaser,
  #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser,
  #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser {
    height: 100%;
    margin: 0;
    background-color: #E8F4FB; }
    .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
    .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture,
    #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
    #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture {
      display: block;
      min-height: 300px;
      background: no-repeat center 5%;
      background-size: cover; }
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture .field-image,
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture figure,
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture img,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture .field-image,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture figure,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture img,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture .field-image,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture figure,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture img,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture .field-image,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture figure,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture img {
        display: block;
        width: 100%;
        height: 100% !important;
        -o-object-fit: cover;
           object-fit: cover; }
    .member-stories-teasers .node-type--member-stories.view-mode--teaser .content,
    .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content,
    #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .content,
    #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content {
      padding: 1rem 1.2rem 1.2rem; }
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .content .links.inline,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content .links.inline,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .content .links.inline,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content .links.inline {
        display: none; }
    @media (min-width: 450px) {
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture {
        min-height: 450px; } }
    @media (min-width: 768px) {
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture {
        min-height: 400px; } }
    @media (min-width: 980px) {
      .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture {
        min-height: 450px; } }
    @media (min-width: 1200px) {
      .member-stories-teasers .node-type--member-stories.view-mode--teaser,
      .member-stories-teasers article.node-type--member-stories.view-mode--teaser,
      #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser,
      #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
        .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture,
        #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .picture,
        #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .picture {
          width: 50%; }
        .member-stories-teasers .node-type--member-stories.view-mode--teaser .content,
        .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content,
        #block-gizpatpa-content .member-stories-teasers .node-type--member-stories.view-mode--teaser .content,
        #block-gizpatpa-content .member-stories-teasers article.node-type--member-stories.view-mode--teaser .content {
          width: 50%; } }

article.node-type--member-stories.view-mode--full h2.node-title {
  margin-bottom: 3rem; }

article.node-type--member-stories.view-mode--full blockquote {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto; }

article.node-type--member-stories.view-mode--full .picture {
  max-width: 420px;
  margin: 0 auto 2rem; }
  article.node-type--member-stories.view-mode--full .picture figure,
  article.node-type--member-stories.view-mode--full .picture img {
    display: block;
    max-width: 100%; }
  @media (min-width: 768px) {
    article.node-type--member-stories.view-mode--full .picture {
      float: left;
      width: 45%;
      margin: 0 2rem 2rem 0; } }

.knowledge-products.publications-tools-teasers,
#block-gizpatpa-content .knowledge-products.publications-tools-teasers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .knowledge-products.publications-tools-teasers > *,
  #block-gizpatpa-content .knowledge-products.publications-tools-teasers > * {
    width: 100%;
    margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .knowledge-products.publications-tools-teasers > *,
    #block-gizpatpa-content .knowledge-products.publications-tools-teasers > * {
      width: 48%; } }
  .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser,
  .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser,
  #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser,
  #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser {
    height: 100%;
    margin: 0;
    background-color: #E8F4FB; }
    .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
    .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
    #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
    #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview {
      max-width: 50%;
      margin: 0 0 1em 0; }
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview img,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview img,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview img,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview img {
        display: block;
        max-width: 100%;
        height: auto !important; }
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview .field-image,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview .field-image,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview .field-image,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview .field-image {
        display: block;
        float: none;
        max-width: 100%; }
    .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .content,
    .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .content,
    #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .content,
    #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .content {
      padding: 1rem 1.2rem 1.2rem; }
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .content .links.inline,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .content .links.inline,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .content .links.inline,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .content .links.inline {
        display: none; }
    @media (min-width: 450px) {
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview {
        max-width: 30%;
        float: left;
        margin: 0 1.5em 1em 0; } }
    @media (min-width: 768px) {
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview {
        max-width: 50%;
        float: none;
        margin: 0 0 1em 0; } }
    @media (min-width: 980px) {
      .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers .node-type--tools.view-mode--knowledge-products-teaser .pdfpreview,
      #block-gizpatpa-content .knowledge-products.publications-tools-teasers article.node-type--tools.view-mode--knowledge-products-teaser .pdfpreview {
        max-width: 30%;
        float: left;
        margin: 0 1.5em 1em 0; } }

.header-block,
#block-pagetitle {
  background-color: #828282;
  color: #fff;
  font-weight: 600;
  padding: 75px .9rem;
  position: relative;
  text-align: center;
  text-shadow: 2px 2px 200px #828282; }
  @media (min-width: 768px) {
    .header-block,
    #block-pagetitle {
      padding-left: 1.8rem; } }
  @media (min-width: 1200px) {
    body:not(.user-logged-in) .header-block, body:not(.user-logged-in) #block-pagetitle {
      margin-top: 120px; } }
  .header-block h1,
  #block-pagetitle h1 {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 140%; }
  .header-block a,
  #block-pagetitle a {
    color: #fff; }
  .header-block p,
  #block-pagetitle p {
    margin-bottom: 1rem; }
  .header-block .field-links,
  #block-pagetitle .field-links {
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 2.5rem;
    text-align: center; }
    .header-block .field-links ul, .header-block .field-links li,
    #block-pagetitle .field-links ul,
    #block-pagetitle .field-links li {
      list-style: none;
      margin: 0;
      padding: 0; }
    .header-block .field-links ul,
    #block-pagetitle .field-links ul {
      margin: 0 auto;
      width: 100%;
      max-width: 300px; }
      @media (min-width: 768px) {
        .header-block .field-links ul,
        #block-pagetitle .field-links ul {
          width: auto;
          max-width: 100%; } }
    .header-block .field-links li,
    #block-pagetitle .field-links li {
      display: block; }
      @media (min-width: 768px) {
        .header-block .field-links li,
        #block-pagetitle .field-links li {
          display: inline-block; } }
    .header-block .field-links a,
    #block-pagetitle .field-links a {
      background-color: rgba(70, 198, 255, 0.9);
      line-height: 1.3rem;
      margin: .25rem;
      padding: .5rem 1.5rem;
      white-space: nowrap;
      display: block;
      min-width: 240px; }
      .header-block .field-links a:hover, .header-block .field-links a:active, .header-block .field-links a:focus,
      #block-pagetitle .field-links a:hover,
      #block-pagetitle .field-links a:active,
      #block-pagetitle .field-links a:focus {
        background-color: rgba(56, 167, 217, 0.9); }
  .header-block picture,
  .header-block .media-image,
  #block-pagetitle picture,
  #block-pagetitle .media-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%; }
  .header-block .media-image,
  #block-pagetitle .media-image {
    background-color: #828282;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#828282), color-stop(80%, #000000));
    background-image: -webkit-linear-gradient(top, #828282 0%, #000000 80%);
    background-image: -o-linear-gradient(top, #828282 0%, #000000 80%);
    background-image: linear-gradient(-180deg, #828282 0%, #000000 80%); }
  .header-block .stage__img,
  #block-pagetitle .stage__img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    opacity: .4; }
  .header-block .field-image,
  #block-pagetitle .field-image {
    height: 0; }
  .header-block h1,
  .header-block .body,
  .header-block .field-links,
  #block-pagetitle h1,
  #block-pagetitle .body,
  #block-pagetitle .field-links {
    position: relative;
    max-width: 1200px;
    margin: 0 auto; }

.contextual-links .header-block a, .contextual-links #block-pagetitle a {
  color: #333; }

#block-header-front {
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: 600; }

#block-header-nodes {
  overflow: hidden; }

#block-header-terms {
  text-align: left;
  padding-top: 260px;
  background-color: #828282; }
  #block-header-terms h1 {
    font-size: 0.9rem;
    line-height: 1.8rem; }
    @media (min-width: 768px) {
      #block-header-terms h1 {
        max-width: 950px;
        margin: 0 auto; } }
    #block-header-terms h1 + div {
      margin-top: 9px; }
  #block-header-terms .body {
    font-size: 1.4rem;
    line-height: 1.9rem; }
    #block-header-terms .body p:last-child {
      margin-bottom: 0; }
    @media (min-width: 768px) {
      #block-header-terms .body {
        max-width: 950px;
        margin: 0 auto; } }
  #block-header-terms .media-image {
    background-color: #828282;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#828282), color-stop(80%, #000000));
    background-image: -webkit-linear-gradient(top, #828282 0%, #000000 80%);
    background-image: -o-linear-gradient(top, #828282 0%, #000000 80%);
    background-image: linear-gradient(-180deg, #828282 0%, #000000 80%); }

#block-front-activities, #block-views-block-term-front-activities {
  background-color: #46C6FF;
  background-image: url(../images/regions-block-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  padding: 60px 0 20px;
  position: relative; }
  #block-front-activities > h2, #block-views-block-term-front-activities > h2 {
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    top: -30px;
    text-align: center; }
  #block-front-activities > h2, #block-views-block-term-front-activities > h2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px; }
  #block-front-activities .item-list, #block-views-block-term-front-activities .item-list {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px; }
    #block-front-activities .item-list > ul, #block-views-block-term-front-activities .item-list > ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -15px;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      list-style: none;
      padding: 0; }
      #block-front-activities .item-list > ul li, #block-views-block-term-front-activities .item-list > ul li {
        padding-bottom: 20px; }
      #block-front-activities .item-list > ul .content-square__img, #block-views-block-term-front-activities .item-list > ul .content-square__img {
        -webkit-transition: all, 0.2s;
        -o-transition: all, 0.2s;
        transition: all, 0.2s;
        display: block;
        max-width: 100%;
        border-radius: 100%;
        border: 3px solid white;
        -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
                box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }
      #block-front-activities .item-list > ul > li, #block-views-block-term-front-activities .item-list > ul > li {
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        padding-right: 15px;
        padding-left: 15px;
        max-width: 186px; }
      #block-front-activities .item-list > ul .media-image, #block-views-block-term-front-activities .item-list > ul .media-image {
        border-radius: 100%;
        background-color: #828282; }
      #block-front-activities .item-list > ul .term-link, #block-views-block-term-front-activities .item-list > ul .term-link {
        display: block;
        color: #fff;
        padding: 15px; }
        #block-front-activities .item-list > ul .term-link:hover .field-short-title, #block-front-activities .item-list > ul .term-link:active .field-short-title, #block-front-activities .item-list > ul .term-link:focus .field-short-title, #block-views-block-term-front-activities .item-list > ul .term-link:hover .field-short-title, #block-views-block-term-front-activities .item-list > ul .term-link:active .field-short-title, #block-views-block-term-front-activities .item-list > ul .term-link:focus .field-short-title {
          text-decoration: underline; }
        #block-front-activities .item-list > ul .term-link:hover .content-square__img, #block-front-activities .item-list > ul .term-link:active .content-square__img, #block-front-activities .item-list > ul .term-link:focus .content-square__img, #block-views-block-term-front-activities .item-list > ul .term-link:hover .content-square__img, #block-views-block-term-front-activities .item-list > ul .term-link:active .content-square__img, #block-views-block-term-front-activities .item-list > ul .term-link:focus .content-square__img {
          opacity: .75; }
  #block-front-activities .field-short-title, #block-views-block-term-front-activities .field-short-title {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 130%;
    margin-top: 18px;
    color: #fff; }
    #block-front-activities .field-short-title a, #block-views-block-term-front-activities .field-short-title a {
      color: #fff; }
      #block-front-activities .field-short-title a:hover, #block-front-activities .field-short-title a:active, #block-front-activities .field-short-title a:focus, #block-views-block-term-front-activities .field-short-title a:hover, #block-views-block-term-front-activities .field-short-title a:active, #block-views-block-term-front-activities .field-short-title a:focus {
        color: #363636; }
  #block-front-activities .content-square__figcaption, #block-views-block-term-front-activities .content-square__figcaption {
    position: relative;
    top: 10px;
    opacity: .4; }

#block-views-block-related-documents-block-1, .block--link, #block-downloads, #block-links {
  background-color: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 0.75rem;
  line-height: 1.15rem; }
  #block-views-block-related-documents-block-1 h2, .block--link h2, #block-downloads h2, #block-links h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 600;
    margin-bottom: .5rem; }
  #block-views-block-related-documents-block-1 ul, .block--link ul, #block-downloads ul, #block-links ul, #block-views-block-related-documents-block-1 ol, .block--link ol, #block-downloads ol, #block-links ol {
    margin: 0;
    padding: 0;
    list-style: none; }
    #block-views-block-related-documents-block-1 ul li, .block--link ul li, #block-downloads ul li, #block-links ul li, #block-views-block-related-documents-block-1 ol li, .block--link ol li, #block-downloads ol li, #block-links ol li {
      margin: 0 0 .25rem;
      padding: 0; }
  #block-views-block-related-documents-block-1 a, .block--link a, #block-downloads a, #block-links a {
    color: #999; }
    #block-views-block-related-documents-block-1 a:hover, .block--link a:hover, #block-downloads a:hover, #block-links a:hover, #block-views-block-related-documents-block-1 a:active, .block--link a:active, #block-downloads a:active, #block-links a:active, #block-views-block-related-documents-block-1 a:focus, .block--link a:focus, #block-downloads a:focus, #block-links a:focus {
      color: #363636; }
  #block-views-block-related-documents-block-1 .body, .block--link .body, #block-downloads .body, #block-links .body {
    margin-bottom: .5rem; }
  .theme--green#block-views-block-related-documents-block-1, .theme--green.block--link, .theme--green#block-downloads, .theme--green#block-links {
    background-color: #19DC88;
    color: #fff; }
    .theme--green#block-views-block-related-documents-block-1 a, .theme--green.block--link a, .theme--green#block-downloads a, .theme--green#block-links a {
      color: #fff; }
      .theme--green#block-views-block-related-documents-block-1 a:hover, .theme--green.block--link a:hover, .theme--green#block-downloads a:hover, .theme--green#block-links a:hover, .theme--green#block-views-block-related-documents-block-1 a:active, .theme--green.block--link a:active, .theme--green#block-downloads a:active, .theme--green#block-links a:active, .theme--green#block-views-block-related-documents-block-1 a:focus, .theme--green.block--link a:focus, .theme--green#block-downloads a:focus, .theme--green#block-links a:focus {
        color: #363636; }
  .theme--blue#block-views-block-related-documents-block-1, .theme--blue.block--link, .theme--blue#block-downloads, .theme--blue#block-links {
    background-color: #46C6FF;
    color: #fff; }
    .theme--blue#block-views-block-related-documents-block-1 a, .theme--blue.block--link a, .theme--blue#block-downloads a, .theme--blue#block-links a {
      color: #fff; }
      .theme--blue#block-views-block-related-documents-block-1 a:hover, .theme--blue.block--link a:hover, .theme--blue#block-downloads a:hover, .theme--blue#block-links a:hover, .theme--blue#block-views-block-related-documents-block-1 a:active, .theme--blue.block--link a:active, .theme--blue#block-downloads a:active, .theme--blue#block-links a:active, .theme--blue#block-views-block-related-documents-block-1 a:focus, .theme--blue.block--link a:focus, .theme--blue#block-downloads a:focus, .theme--blue#block-links a:focus {
        color: #363636; }
  .theme--orange#block-views-block-related-documents-block-1, .theme--orange.block--link, .theme--orange#block-downloads, .theme--orange#block-links {
    background-color: #E88125;
    color: #fff; }
    .theme--orange#block-views-block-related-documents-block-1 a, .theme--orange.block--link a, .theme--orange#block-downloads a, .theme--orange#block-links a {
      color: #fff; }
      .theme--orange#block-views-block-related-documents-block-1 a:hover, .theme--orange.block--link a:hover, .theme--orange#block-downloads a:hover, .theme--orange#block-links a:hover, .theme--orange#block-views-block-related-documents-block-1 a:active, .theme--orange.block--link a:active, .theme--orange#block-downloads a:active, .theme--orange#block-links a:active, .theme--orange#block-views-block-related-documents-block-1 a:focus, .theme--orange.block--link a:focus, .theme--orange#block-downloads a:focus, .theme--orange#block-links a:focus {
        color: #363636; }
  .theme--gray#block-views-block-related-documents-block-1, .theme--gray.block--link, .theme--gray#block-downloads, .theme--gray#block-links {
    background-color: rgba(0, 44, 74, 0.4);
    color: #fff; }
    .theme--gray#block-views-block-related-documents-block-1 a, .theme--gray.block--link a, .theme--gray#block-downloads a, .theme--gray#block-links a {
      color: #fff; }
      .theme--gray#block-views-block-related-documents-block-1 a:hover, .theme--gray.block--link a:hover, .theme--gray#block-downloads a:hover, .theme--gray#block-links a:hover, .theme--gray#block-views-block-related-documents-block-1 a:active, .theme--gray.block--link a:active, .theme--gray#block-downloads a:active, .theme--gray#block-links a:active, .theme--gray#block-views-block-related-documents-block-1 a:focus, .theme--gray.block--link a:focus, .theme--gray#block-downloads a:focus, .theme--gray#block-links a:focus {
        color: #363636; }

#block-recent-news > h2, #block-recent-news-front > h2, #block-recent-tools > h2, #block-recent-tools-front > h2, #block-recent-events > h2, #block-recent-events-front > h2 {
  font-size: 1rem;
  color: #363636;
  padding: 1rem 0;
  border-bottom: 4px solid #999; }

#block-recent-news ul, #block-recent-news-front ul, #block-recent-tools ul, #block-recent-tools-front ul, #block-recent-events ul, #block-recent-events-front ul, #block-recent-news li, #block-recent-news-front li, #block-recent-tools li, #block-recent-tools-front li, #block-recent-events li, #block-recent-events-front li {
  list-style: none;
  margin: 0;
  padding: 0; }

#block-recent-news .node, #block-recent-news-front .node, #block-recent-tools .node, #block-recent-tools-front .node, #block-recent-events .node, #block-recent-events-front .node {
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(66, 54, 54, 0.1); }

#block-recent-news .node-title, #block-recent-news-front .node-title, #block-recent-tools .node-title, #block-recent-tools-front .node-title, #block-recent-events .node-title, #block-recent-events-front .node-title {
  font-size: 0.8rem;
  line-height: 1.2rem;
  margin: 0;
  padding: 0;
  font-weight: 600; }
  #block-recent-news .node-title a, #block-recent-news-front .node-title a, #block-recent-tools .node-title a, #block-recent-tools-front .node-title a, #block-recent-events .node-title a, #block-recent-events-front .node-title a {
    color: #363636;
    display: block;
    padding: .5rem 0; }
    #block-recent-news .node-title a:hover, #block-recent-news-front .node-title a:hover, #block-recent-tools .node-title a:hover, #block-recent-tools-front .node-title a:hover, #block-recent-events .node-title a:hover, #block-recent-events-front .node-title a:hover, #block-recent-news .node-title a:active, #block-recent-news-front .node-title a:active, #block-recent-tools .node-title a:active, #block-recent-tools-front .node-title a:active, #block-recent-events .node-title a:active, #block-recent-events-front .node-title a:active, #block-recent-news .node-title a:focus, #block-recent-news-front .node-title a:focus, #block-recent-tools .node-title a:focus, #block-recent-tools-front .node-title a:focus, #block-recent-events .node-title a:focus, #block-recent-events-front .node-title a:focus {
      color: #2D71B3; }

#block-recent-news .more-link, #block-recent-news-front .more-link, #block-recent-tools .more-link, #block-recent-tools-front .more-link, #block-recent-events .more-link, #block-recent-events-front .more-link {
  font-size: 0.8rem;
  line-height: 1.2rem; }
  #block-recent-news .more-link a, #block-recent-news-front .more-link a, #block-recent-tools .more-link a, #block-recent-tools-front .more-link a, #block-recent-events .more-link a, #block-recent-events-front .more-link a {
    display: block;
    color: #999;
    padding: .5rem 0 1rem;
    text-align: right; }
    #block-recent-news .more-link a:hover, #block-recent-news-front .more-link a:hover, #block-recent-tools .more-link a:hover, #block-recent-tools-front .more-link a:hover, #block-recent-events .more-link a:hover, #block-recent-events-front .more-link a:hover, #block-recent-news .more-link a:active, #block-recent-news-front .more-link a:active, #block-recent-tools .more-link a:active, #block-recent-tools-front .more-link a:active, #block-recent-events .more-link a:active, #block-recent-events-front .more-link a:active, #block-recent-news .more-link a:focus, #block-recent-news-front .more-link a:focus, #block-recent-tools .more-link a:focus, #block-recent-tools-front .more-link a:focus, #block-recent-events .more-link a:focus, #block-recent-events-front .more-link a:focus {
      color: #363636; }

.site-bottom > #group-recent-content:first-child:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(1em * 1.6 + 2rem + 4px);
  background: #EFF4F9; }

#block-recent-news > h2,
#block-recent-news-front > h2 {
  border-color: #46C6FF; }

#block-recent-tools > h2,
#block-recent-tools-front > h2 {
  border-color: #19DC88; }

#block-recent-events > h2,
#block-recent-events-front > h2 {
  border-color: #E88125; }

#block-recent-events .node-title a,
#block-recent-events-front .node-title a {
  padding-left: 3rem; }

#block-recent-events .field-date-event,
#block-recent-events-front .field-date-event {
  color: #999;
  font-weight: 400;
  position: absolute;
  top: .3rem; }

#block-recent-mailings {
  margin-bottom: 36px; }
  #block-recent-mailings ul, #block-recent-mailings li {
    list-style: none;
    padding: 0;
    margin: 0; }
  #block-recent-mailings li {
    padding: 18px;
    background-color: #fff;
    margin-bottom: 18px; }
  #block-recent-mailings .created {
    color: #999;
    font-size: 0.8rem; }

.block--link {
  position: relative;
  padding-bottom: 2rem; }
  .block--link .field-link {
    font-weight: 600;
    position: absolute;
    right: 1rem;
    bottom: .75rem; }

.site-main .block--link {
  max-width: 600px;
  margin: auto;
  margin-bottom: 1rem; }

.site-main .theme--orange h2,
.site-main .theme--gray h2,
.site-main .theme--blue h2,
.site-main .theme--green h2 {
  color: white; }

#block-downloads .field-document-file {
  background-image: url(../images/icon-document.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 22px;
  padding-left: 34px;
  padding-top: 5px;
  min-height: 33px; }

#block-cover {
  margin-bottom: .9rem; }

#block-twitter {
  background-color: white;
  padding: 2rem 0; }
  #block-twitter ul.tweets {
    list-style: none;
    padding: 0; }
    #block-twitter ul.tweets li {
      margin-bottom: 36px; }
    @media (min-width: 768px) {
      #block-twitter ul.tweets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -15px; }
        #block-twitter ul.tweets > li {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 33.33333%;
                  flex: 0 0 33.33333%;
          max-width: 33.33333%;
          padding-right: 15px;
          padding-left: 15px;
          margin-bottom: 0; } }
  #block-twitter a {
    color: currentColor; }
  #block-twitter .tweet-text {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4rem;
    color: #46C6FF;
    word-wrap: break-word; }
    #block-twitter .tweet-text a {
      text-decoration: underline; }
      #block-twitter .tweet-text a:hover {
        color: #363636;
        text-decoration: none; }
  #block-twitter .tweet-author {
    background-image: url(../images/icon-twitter-x.svg);
    background-repeat: no-repeat;
    background-position: left 0;
    background-size: 26px;
    padding-left: 33px;
    color: #999;
    font-size: 0.8rem;
    line-height: 1.2rem;
    margin-top: 18px;
    display: block; }

.site-bottom {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 3rem;
  padding: 1rem 1rem;
  background-color: #E8F4FB; }
  @media (min-width: 768px) {
    .site-bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 1.5rem 0; }
      .site-bottom > div {
        width: 100%;
        margin: 0 1rem;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; } }

#block-views-block-news-and-events-recent-news-events-front > h2:before,
[id^="block-views-block-news-and-events-"] > h2:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  background: url(../images/icon-news.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.5; }

#block-twitterfeedblock > h2:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  background: url(../images/icon-twitter2-x.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.5; }

#block-views-block-news-and-events-recent-news-events-front h2,
[id^="block-views-block-news-and-events-"] h2,
#block-twitterfeedblock h2 {
  margin: 0 0 1.5rem 0;
  font: inherit;
  font-weight: bold; }

#block-views-block-news-and-events-recent-news-events-front ul,
[id^="block-views-block-news-and-events-"] ul,
#block-twitterfeedblock ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  #block-views-block-news-and-events-recent-news-events-front ul li,
  [id^="block-views-block-news-and-events-"] ul li,
  #block-twitterfeedblock ul li {
    margin: 0 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.75rem;
    border-radius: 6px; }

#block-views-block-news-and-events-recent-news-events-front article h2,
[id^="block-views-block-news-and-events-"] article h2,
#block-twitterfeedblock article h2 {
  margin: 0;
  font-weight: normal; }

#block-views-block-news-and-events-recent-news-events-front article a[rel="bookmark"],
[id^="block-views-block-news-and-events-"] article a[rel="bookmark"],
#block-twitterfeedblock article a[rel="bookmark"] {
  font: inherit;
  color: inherit; }
  #block-views-block-news-and-events-recent-news-events-front article a[rel="bookmark"]:after,
  [id^="block-views-block-news-and-events-"] article a[rel="bookmark"]:after,
  #block-twitterfeedblock article a[rel="bookmark"]:after {
    content: "Read more...";
    display: block;
    color: #3074B4; }

#block-views-block-news-and-events-recent-news-events-front footer,
[id^="block-views-block-news-and-events-"] footer,
#block-twitterfeedblock footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #block-views-block-news-and-events-recent-news-events-front footer > div,
  [id^="block-views-block-news-and-events-"] footer > div,
  #block-twitterfeedblock footer > div {
    margin: 0 1rem; }

#block-views-block-news-and-events-recent-news-events-front .tweet,
[id^="block-views-block-news-and-events-"] .tweet,
#block-twitterfeedblock .tweet {
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%); }
  #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-info,
  [id^="block-views-block-news-and-events-"] .tweet .tweet-info,
  #block-twitterfeedblock .tweet .tweet-info {
    font-size: 80%;
    opacity: 0.5; }
  #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions,
  [id^="block-views-block-news-and-events-"] .tweet .tweet-actions,
  #block-twitterfeedblock .tweet .tweet-actions {
    margin-top: 0.75rem;
    font-size: 80%;
    opacity: 0.4; }
    #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions a,
    [id^="block-views-block-news-and-events-"] .tweet .tweet-actions a,
    #block-twitterfeedblock .tweet .tweet-actions a {
      display: inline-block;
      width: 22px;
      height: 22px;
      background: no-repeat center center;
      background-size: cover; }
      #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions a.like,
      [id^="block-views-block-news-and-events-"] .tweet .tweet-actions a.like,
      #block-twitterfeedblock .tweet .tweet-actions a.like {
        background-image: url("../images/icon-like.svg"); }
      #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions a.retweet,
      [id^="block-views-block-news-and-events-"] .tweet .tweet-actions a.retweet,
      #block-twitterfeedblock .tweet .tweet-actions a.retweet {
        background-image: url("../images/icon-retweet.svg"); }
      #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions a.reply,
      [id^="block-views-block-news-and-events-"] .tweet .tweet-actions a.reply,
      #block-twitterfeedblock .tweet .tweet-actions a.reply {
        background-image: url("../images/icon-reply.svg"); }
    #block-views-block-news-and-events-recent-news-events-front .tweet .tweet-actions a + a:before,
    [id^="block-views-block-news-and-events-"] .tweet .tweet-actions a + a:before,
    #block-twitterfeedblock .tweet .tweet-actions a + a:before {
      margin-left: 1rem; }

#block-views-block-news-and-events-recent-news-events-front time,
[id^="block-views-block-news-and-events-"] time,
#block-twitterfeedblock time {
  font-size: 80%;
  opacity: .5; }

#block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--news, #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--event .node-content, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--news, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--event .node-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--news .field-image, #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--event .node-content .field-image, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--news .field-image, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--event .node-content .field-image {
    width: 33%;
    margin-right: 1rem; }
  #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--news .node-title, #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--event .node-content .node-title, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--news .node-title, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--event .node-content .node-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--news .field-date-event, #block-views-block-news-and-events-recent-news-events-front .view-mode--list.node-type--event .node-content .field-date-event, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--news .field-date-event, [id^="block-views-block-news-and-events-block"] .view-mode--list.node-type--event .node-content .field-date-event {
    width: 100%; }

div#block-patpamap, div#block-gizpatpa-patpamap {
  text-align: center; }

#block-patpamap, #block-gizpatpa-patpamap {
  margin: 4rem 0; }
  #block-patpamap h2, #block-gizpatpa-patpamap h2 {
    margin: 4rem 0 2rem 0;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #3074B4; }
  #block-patpamap .patpa-map, #block-gizpatpa-patpamap .patpa-map {
    font-size: 75%;
    line-height: 1.3; }
    #block-patpamap .patpa-map .mapTooltip, #block-gizpatpa-patpamap .patpa-map .mapTooltip {
      font-weight: bold;
      opacity: 0.9; }
      #block-patpamap .patpa-map .mapTooltip .list-link, #block-gizpatpa-patpamap .patpa-map .mapTooltip .list-link {
        font-weight: normal; }
      #block-patpamap .patpa-map .mapTooltip .country-status, #block-gizpatpa-patpamap .patpa-map .mapTooltip .country-status {
        font-weight: normal;
        margin: 0.5em 0; }

.user-form,
.user-login-form,
.user-pass {
  padding-top: 1rem; }

.user-pass label {
  display: block;
  margin-bottom: .5rem; }

.contact-form #edit-field-privacy-policy-value--description {
  margin-left: 0; }

@media (min-width: 1200px) {
  .contact-form .js-form-type-textarea label {
    float: left; }
  .contact-form .js-form-type-textarea .form-textarea {
    width: 77%; } }

.mailing-list-subscribe-form #edit-email {
  width: 100%; }
  .mailing-list-subscribe-form #edit-email::-webkit-input-placeholder {
    text-transform: lowercase; }
  .mailing-list-subscribe-form #edit-email::-moz-placeholder {
    text-transform: lowercase; }
  .mailing-list-subscribe-form #edit-email::-ms-input-placeholder {
    text-transform: lowercase; }
  .mailing-list-subscribe-form #edit-email::placeholder {
    text-transform: lowercase; }

.mailing-list-subscribe-form .form-item-fields-9 label {
  width: calc(100% - 25px);
  margin-left: 5px; }

.mailing-list-subscribe-form #edit-fields-9--description {
  width: 100%;
  margin: 10px 0 0; }

form.webform-ui-element-type-select-form,
form.webform-submission-form {
  font-size: smaller;
  line-height: 22px; }
  form.webform-ui-element-type-select-form .webform-options-display-one-column .form-item,
  form.webform-submission-form .webform-options-display-one-column .form-item {
    margin-bottom: 0.4em; }
  form.webform-ui-element-type-select-form label,
  form.webform-submission-form label {
    margin: 20px 0 10px; }
  form.webform-ui-element-type-select-form label:not(.option),
  form.webform-submission-form label:not(.option) {
    display: block;
    font-weight: 600; }
  form.webform-ui-element-type-select-form .webform-section-wrapper > .description,
  form.webform-submission-form .webform-section-wrapper > .description {
    margin-bottom: 1rem; }
  form.webform-ui-element-type-select-form ::-webkit-input-placeholder,
  form.webform-submission-form ::-webkit-input-placeholder {
    text-transform: none;
    font-size: smaller;
    color: #363636; }
  form.webform-ui-element-type-select-form ::-moz-placeholder,
  form.webform-submission-form ::-moz-placeholder {
    text-transform: none;
    font-size: smaller;
    color: #363636; }
  form.webform-ui-element-type-select-form ::-ms-input-placeholder,
  form.webform-submission-form ::-ms-input-placeholder {
    text-transform: none;
    font-size: smaller;
    color: #363636; }
  form.webform-ui-element-type-select-form ::placeholder,
  form.webform-submission-form ::placeholder {
    text-transform: none;
    font-size: smaller;
    color: #363636; }
  form.webform-ui-element-type-select-form .form-date,
  form.webform-submission-form .form-date {
    color: #363636; }
  form.webform-ui-element-type-select-form .h2,
  form.webform-submission-form .h2 {
    font-size: 1.4rem; }
  form.webform-ui-element-type-select-form section h2,
  form.webform-submission-form section h2 {
    font-size: 1.2rem; }
  form.webform-ui-element-type-select-form section h3,
  form.webform-submission-form section h3 {
    font-size: 1.0rem; }
  form.webform-ui-element-type-select-form section h4,
  form.webform-submission-form section h4 {
    font-size: 0.9rem;
    font-style: italic; }

/**
 * In lists of paragraphs, make sure that the list structure does not show.
 */
.field-paragraphs > ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .field-paragraphs > ul > li {
    margin: 0 0 3rem 0;
    padding: 0; }
    .field-paragraphs > ul > li:last-child {
      margin-bottom: 3rem; }

.paragraph--type--anker-element.style--hidden {
  visibility: none;
  height: 0;
  overflow: hidden; }

.paragraph--type--hero-slider {
  position: relative;
  --patpa-slider-dot-size: 12px;
  --patpa-slider-playpause-size: 20px; }
  .paragraph--type--hero-slider:not(.initialized) .slide:not(:first-child) {
    display: none !important; }
  .paragraph--type--hero-slider .slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    color: transparent;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    background: no-repeat center center;
    background-size: contain; }
    .paragraph--type--hero-slider .slick-arrow.slick-prev {
      left: 10px;
      background-image: url(../images/button_slider_prev.svg); }
    .paragraph--type--hero-slider .slick-arrow.slick-next {
      right: 10px;
      background-image: url(../images/button_slider_next.svg); }
  .paragraph--type--hero-slider .slick-dots {
    margin: 0.5rem 0 0 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5em; }
    .paragraph--type--hero-slider .slick-dots li button {
      display: block;
      width: var(--patpa-slider-dot-size);
      height: var(--patpa-slider-dot-size);
      margin: 0;
      padding: 0;
      font-size: 0;
      color: transparent;
      border: none;
      background: #3074B4;
      border-radius: 50%;
      opacity: 0.3; }
    .paragraph--type--hero-slider .slick-dots li.slick-active button {
      opacity: 1; }
  .paragraph--type--hero-slider .playpause {
    display: block;
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 0;
    width: var(--patpa-slider-playpause-size);
    height: var(--patpa-slider-playpause-size);
    padding: 0;
    background: transparent url(../images/icon_play.svg) no-repeat center center;
    background-size: contain;
    border: none;
    color: transparent;
    font-size: 0; }
  .paragraph--type--hero-slider.autoplay .playpause {
    background-image: url(../images/icon_pause.svg); }
  @media (max-width: 767px) {
    .paragraph--type--hero-slider {
      --patpa-slider-dot-size: 5px;
      --patpa-slider-playpause-size: 15px; }
      .paragraph--type--hero-slider .slick-arrow.slick-prev {
        left: 0; }
      .paragraph--type--hero-slider .slick-arrow.slick-next {
        right: 0; }
      .paragraph--type--hero-slider .slick-dots {
        margin: 0.2rem; } }
  @media (max-width: 380px) {
    .paragraph--type--hero-slider .slick-arrow {
      width: 30px;
      height: 30px; }
      .paragraph--type--hero-slider .slick-arrow.slick-prev {
        left: 10%; }
      .paragraph--type--hero-slider .slick-arrow.slick-next {
        right: 10%; } }

@media (min-width: 1200px) {
  body:not(.user-logged-in) .paragraph--type--hero-slider {
    margin-top: 120px; } }

.paragraph--type--hero-slide {
  position: relative; }
  .paragraph--type--hero-slide .image {
    background: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .paragraph--type--hero-slide .overlay-container {
    position: relative;
    z-index: 2;
    padding-top: 33.3%; }
  .paragraph--type--hero-slide .overlay {
    position: absolute;
    right: 80px;
    bottom: 20px;
    margin-top: 20px;
    margin-left: 80px;
    max-width: 50%;
    padding: 20px;
    background: rgba(61, 109, 153, 0.6);
    border-radius: 5px; }
    .paragraph--type--hero-slide .overlay,
    .paragraph--type--hero-slide .overlay * {
      color: white; }
    @media (max-width: 979px) {
      .paragraph--type--hero-slide .overlay {
        max-width: 80%; } }
    @media (max-width: 767px) {
      .paragraph--type--hero-slide .overlay {
        font-size: .8rem;
        line-height: 1.1rem;
        padding: 8px;
        max-width: calc(100% - 112px);
        bottom: 4px;
        margin: auto;
        left: 0;
        right: 0; } }
    @media (max-width: 380px) {
      .paragraph--type--hero-slide .overlay {
        font-size: .8rem;
        line-height: 1.1rem;
        padding: 8px;
        max-width: 100%;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0; } }

#block-frontpagehero {
  max-width: 1240px;
  margin: auto; }

.paragraph--type--icon-boxes .field-icon-box ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .paragraph--type--icon-boxes .field-icon-box ul li {
    margin: 0 auto 2em auto;
    padding: 0;
    max-width: 300px; }

@media (min-width: 768px) {
  .paragraph--type--icon-boxes .field-icon-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .paragraph--type--icon-boxes .field-icon-box ul li {
      width: 30%;
      max-width: none; } }

.paragraph--type--icon-box {
  /* entire container, keeps perspective */ }
  .paragraph--type--icon-box .notransition, .paragraph--type--icon-box .notransition * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important; }
  .paragraph--type--icon-box .flipcard {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 1.2em;
    text-align: center;
    border-radius: 5px; }
    .paragraph--type--icon-box .flipcard:after {
      content: "";
      position: absolute;
      bottom: 10px;
      width: 20px;
      height: 20px;
      background: no-repeat center center;
      background-size: contain;
      opacity: 0.2;
      cursor: pointer; }
    .paragraph--type--icon-box .flipcard h4 {
      font: inherit;
      font-size: 30px;
      margin: 0.25em 0 0.55em 0; }
    .paragraph--type--icon-box .flipcard.frontside {
      background: rgba(48, 116, 180, 0.05); }
      .paragraph--type--icon-box .flipcard.frontside .icon {
        display: block;
        position: relative;
        width: 60%;
        margin: 0 auto;
        background: no-repeat center center;
        background-size: contain; }
        .paragraph--type--icon-box .flipcard.frontside .icon:before {
          content: " ";
          display: block;
          padding-top: 100%; }
        .paragraph--type--icon-box .flipcard.frontside .icon .fillparent {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          background: no-repeat center center;
          background-size: cover; }
        .paragraph--type--icon-box .flipcard.frontside .icon.measure {
          background-image: url(../images/icon-measure.svg); }
        .paragraph--type--icon-box .flipcard.frontside .icon.report {
          background-image: url(../images/icon-report.svg); }
        .paragraph--type--icon-box .flipcard.frontside .icon.verify {
          background-image: url(../images/icon-verify.svg); }
      .paragraph--type--icon-box .flipcard.frontside:after {
        right: 10px;
        background-image: url(../images/icon-flip.svg); }
    .paragraph--type--icon-box .flipcard.backside {
      background: #3074B4; }
      .paragraph--type--icon-box .flipcard.backside,
      .paragraph--type--icon-box .flipcard.backside h4 {
        color: white; }
      .paragraph--type--icon-box .flipcard.backside .icon {
        display: block;
        position: relative;
        width: 20%;
        margin: 0 auto;
        background: no-repeat center center;
        background-size: contain;
        opacity: 0.2; }
        .paragraph--type--icon-box .flipcard.backside .icon:before {
          content: " ";
          display: block;
          padding-top: 100%; }
        .paragraph--type--icon-box .flipcard.backside .icon .fillparent {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          background: no-repeat center center;
          background-size: cover; }
        .paragraph--type--icon-box .flipcard.backside .icon.measure {
          background-image: url(../images/icon-measure-on.svg); }
        .paragraph--type--icon-box .flipcard.backside .icon.report {
          background-image: url(../images/icon-report-on.svg); }
        .paragraph--type--icon-box .flipcard.backside .icon.verify {
          background-image: url(../images/icon-verify-on.svg); }
      .paragraph--type--icon-box .flipcard.backside:after {
        left: 10px;
        background-image: url(../images/icon-flip-on.svg); }
  .paragraph--type--icon-box .flip-container {
    -webkit-perspective: 1000px;
            perspective: 1000px;
    /* flip speed goes here */
    /* hide back of pane during swap */
    /* front pane, placed above back */
    /* back, initially hidden pane */ }
    .paragraph--type--icon-box .flip-container.isflipping .flipper {
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }
    .paragraph--type--icon-box .flip-container.isflipped .flipper {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    .paragraph--type--icon-box .flip-container.isflipped .front {
      display: none; }
    .paragraph--type--icon-box .flip-container.isflipped .back {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    .paragraph--type--icon-box .flip-container .flipper {
      -webkit-transition: 0.6s;
      -o-transition: 0.6s;
      transition: 0.6s;
      -webkit-transform-style: preserve-3d;
              transform-style: preserve-3d;
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      display: block;
      position: relative; }
      .paragraph--type--icon-box .flip-container .flipper:before {
        content: " ";
        display: block;
        padding-top: 100%; }
      .paragraph--type--icon-box .flip-container .flipper .fillparent {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: no-repeat center center;
        background-size: cover; }
    .paragraph--type--icon-box .flip-container .front,
    .paragraph--type--icon-box .flip-container .back {
      width: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      position: absolute;
      top: 0;
      left: 0; }
    .paragraph--type--icon-box .flip-container .front {
      z-index: 2;
      /* for firefox 31 */
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg); }
    .paragraph--type--icon-box .flip-container .back {
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }

.paragraph--type--partner-logos .field-partner-logo ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0; }
  .paragraph--type--partner-logos .field-partner-logo ul li {
    width: 100%;
    padding: 0;
    margin: 0; }
    @media (min-width: 450px) {
      .paragraph--type--partner-logos .field-partner-logo ul li {
        width: 50%;
        max-width: none; } }
    @media (min-width: 768px) {
      .paragraph--type--partner-logos .field-partner-logo ul li {
        width: 33.33%;
        max-width: none; } }
    @media (min-width: 980px) {
      .paragraph--type--partner-logos .field-partner-logo ul li {
        width: 25%; } }

.paragraph--type--partner-logo {
  position: relative;
  padding: 0 10px; }
  @media (min-width: 450px) {
    .paragraph--type--partner-logo {
      padding: 0 15px; } }
  @media (min-width: 768px) {
    .paragraph--type--partner-logo {
      padding: 0 20px; } }
  @media (min-width: 980px) {
    .paragraph--type--partner-logo {
      padding: 0 25px; } }
  .paragraph--type--partner-logo .image {
    display: block;
    margin-bottom: 1em;
    background: no-repeat center center;
    background-size: contain;
    border: none;
    outline: none; }
    .paragraph--type--partner-logo .image:before {
      content: "";
      display: block;
      padding-top: 100%; }
    .paragraph--type--partner-logo .image.graywhennothovered {
      -webkit-filter: grayscale(98%);
              filter: grayscale(98%);
      -webkit-transition: -webkit-filter 0.4s;
      transition: -webkit-filter 0.4s;
      -o-transition: filter 0.4s;
      transition: filter 0.4s;
      transition: filter 0.4s, -webkit-filter 0.4s; }
      .paragraph--type--partner-logo .image.graywhennothovered:hover {
        -webkit-filter: none;
                filter: none; }
  .paragraph--type--partner-logo .tooltip {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 75%;
    width: 400px;
    max-width: 100%;
    padding: 20px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: white;
    border: 1px solid #eee;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2); }
    .paragraph--type--partner-logo .tooltip:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      border: 10px solid transparent;
      border-top-color: white; }
  .paragraph--type--partner-logo:hover .tooltip {
    display: block; }

.paragraph--type--team-members .field-team-member ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px; }
  .paragraph--type--team-members .field-team-member ul li {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 250px;
    margin-bottom: 3rem; }
    @media (min-width: 450px) {
      .paragraph--type--team-members .field-team-member ul li {
        width: 50%; } }
    @media (min-width: 768px) {
      .paragraph--type--team-members .field-team-member ul li {
        width: 33.33%;
        max-width: none; } }
    @media (min-width: 980px) {
      .paragraph--type--team-members .field-team-member ul li {
        width: 25%; } }
    @media (min-width: 1200px) {
      .paragraph--type--team-members .field-team-member ul li {
        width: 20%; } }

.paragraph--type--team-member .field-group-jobtitle {
  margin-top: -0.25em;
  font-size: 80%;
  font-style: italic; }

.paragraph--type--team-member .field-group {
  margin-top: -0.25em;
  font-size: 80%; }

.paragraph--type--team-member .image {
  margin-bottom: 1em;
  background: no-repeat center center;
  background-size: cover; }
  .paragraph--type--team-member .image:before {
    content: "";
    display: block;
    padding-top: 100%; }

.paragraph--type--team-member .field-photo img {
  display: block;
  max-width: 100%;
  margin-bottom: 1em;
  height: auto !important; }

.paragraph--type--team-member a.email,
.paragraph--type--team-member .field--type-email .field__item > a {
  padding-left: 25px;
  background: url(../images/icon-mail.svg) no-repeat left center;
  background-size: 19px 19px;
  font-size: 80%; }

.paragraph--type--team-member .field-email, .paragraph--type--team-member .field--type-email div.field__item {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 200px;
  display: inline-block;
  overflow: hidden; }

.paragraph--type--timeline .field-timeline-item ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .paragraph--type--timeline .field-timeline-item ul li {
    margin: 0;
    padding: 0; }

.paragraph--type--timeline-item {
  position: relative;
  padding-left: 150px;
  padding-bottom: 64px;
  background: url(../images/bg-timeline.svg) repeat-y left top;
  background-position: 70px 3px; }
  .paragraph--type--timeline-item .field-time-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    color: #3074B4;
    background: url(../images/bg-timeline-node.svg) no-repeat left top;
    background-position: 70px 3px; }
  li:last-child .paragraph--type--timeline-item,
  div:last-child > .paragraph--type--timeline-item {
    padding-bottom: 0; }
    li:last-child .paragraph--type--timeline-item:after,
    div:last-child > .paragraph--type--timeline-item:after {
      content: "";
      position: absolute;
      left: 70px;
      top: 100%;
      width: 12px;
      height: 15px;
      background: url(../images/bg-timeline-arrow.svg) no-repeat left top; }
  .paragraph--type--timeline-item img {
    width: 200px;
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 767px) {
      .paragraph--type--timeline-item img {
        width: 400px;
        height: 300px; } }

/*unable to generate css quick fix*/
#block-views-block-events-index-past-events-block {
  margin-top: 3em; }

#block-views-block-events-index-past-events-block h2 {
  color: #363636;
  font-size: 1.4rem; }

#block-views-block-events-index-past-events-block a h2 {
  color: #2D71B3;
  font-size: 1rem; }

#block-views-block-events-index-past-events-block .more-link {
  font-size: 0.8rem;
  line-height: 1.2rem; }

#block-views-block-events-index-past-events-block .more-link a:hover {
  color: #363636; }

#block-views-block-events-index-past-events-block .more-link a {
  display: block;
  color: #999;
  padding: .5rem 0 1rem;
  text-align: right; }

/*# sourceMappingURL=base.css.map */
