@charset "UTF-8";
/*!
 _________   ________   ________   _______-+-
/\* ______\ /\* ____ \ /\* ____ \ /\* ____ \
\ \ \_____/ \ \ \__/\ \\ \ \__/\ \\ \ \__/\ \
 \ \ \   ____\ \ \_\_\ \\ \ \_\_\ \\ \ \_\_\ \
  \ \ \ /\__ \\ \  __  _\\ \  __  _\\ \  __  _\
   \ \ \_/_/\ \\ \ \/\ \/_\ \ \/\ \/_\ \ \/\ \/_
    \ \________\\ \_\ \___\\ \_\ \___\\ \_\ \___\
     \/________/ \/_/\/___/ \/_/\/___/ \/_/\/___/.nl -->

      Author: Grrr.nl
*/
/* ==========================================================================
   CONTENTS
   ==========================================================================

 * Imports.............Import external stylesheets
 * Primary styles......Non module styles  (e.g. basic typography)
 * Specific styles.....Common styles used througout the site
 * Layout..............General layout stuff
 * Modules.............Modules based on SMACSS
 * Print styles........Styles for printing
 */
/* ==========================================================================
   functions
   ========================================================================== */
/**
 * For converting pixels to ems
 * Based on a 10px font-size on the html
 * Usage:
 * div { width: px-to-em(300); }
 * Returns:
 * div { width: 30em; }
 */
/**
 * Color mixins (other than lighten or darken)
 */
/**
 * z-index function
 * For dynamically determining the stacking order of elements
 *
 * Usage:
 * .module { z-index: z('module'); }
 * .module__child { z-index: z('child'); }
 *
 * See $z-index variable in _variables.scss for stacking order
 */
/* ==========================================================================
   mixins
   ========================================================================== */
/**
 * Placeholder styling
 */
/**
 * Font smoothing
 */
/**
 * Clearfix
 * Actually an @extend, but we don't want to depend on inclusion order
 *
 * Usage:
 * section { @include clearfix(); }
 */
/**
 * Bare button
 *
 * Get rid of default button styling
 */
/*
 * Bare list
 *
 * Get rid of list-style and padding
 */
/**
 * For image replacement
 */
/**
 * Media query breakpoints mixins
 *
 * Usage:
 * div { width: 60px;
 *    @include breakpoint-min($small) { width: 80px; }
 * }
 */
/**
 * For targetting high dpi screens
 * Usage:
 * div {
 *    width: 30px; height: 30px; background: url('img.jpg');
 *    @include high-dpi() {
 *        background: url('image-2x.jpg');
 *    }
 * }
 */
/* ==========================================================================
   variables
   ========================================================================== */
/**
 * Colors
 */
/**
 * General stuff
 */
/**
 * Fonts
 */
/**
 * Widths & Sizes
 */
/*
 * z-index
 * for stacking stuff
 *
 * define the stacking order for modules here
 * within a module you should define it via
 * the $module-z-index variable
 */
/**
 * Breakpoints
 * @see: https://medium.com/re-write/designing-a-responsive-grid-in-2016-58e4db6db786
 */
/* ==========================================================================
    PRIMER
    ========================================================================== */
*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }
  @media (max-width: 39.9375em) {
    body {
      font-size: 14px;
      font-size: 1.4rem; } }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em; }
  p + h1, p +
  h2, p +
  h3, p +
  h4, p +
  h5, p +
  h6 {
    margin-top: 1em; }

h4 {
  margin-bottom: 1.5rem; }

p {
  margin-bottom: 2rem; }

/**
 * Form inputs
 */
input,
select,
textarea {
  height: auto;
  line-height: normal;
  color: #000000; }

input:not([type]),
input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'],
input[type='file'],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-bottom: 1em;
  display: block;
  width: 100%;
  height: auto;
  padding: 16px 17px;
  outline: none;
  border: none;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px black;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: normal; }
  @media (min-width: 40em) {
    input:not([type]),
    input[type='text'],
    input[type='email'],
    input[type='number'],
    input[type='password'],
    input[type='file'],
    textarea {
      font-size: 18px;
      font-size: 1.8rem; } }
  input:not([type])[aria-invalid="true"],
  input[type='text'][aria-invalid="true"],
  input[type='email'][aria-invalid="true"],
  input[type='number'][aria-invalid="true"],
  input[type='password'][aria-invalid="true"],
  input[type='file'][aria-invalid="true"],
  textarea[aria-invalid="true"] {
    box-shadow: inset 0 0 0 1px #DF2935; }
  input:not([type]):focus,
  input[type='text']:focus,
  input[type='email']:focus,
  input[type='number']:focus,
  input[type='password']:focus,
  input[type='file']:focus,
  textarea:focus {
    box-shadow: inset 0 0 0 2px #000000; }
    input:not([type]):focus[aria-invalid="true"],
    input[type='text']:focus[aria-invalid="true"],
    input[type='email']:focus[aria-invalid="true"],
    input[type='number']:focus[aria-invalid="true"],
    input[type='password']:focus[aria-invalid="true"],
    input[type='file']:focus[aria-invalid="true"],
    textarea:focus[aria-invalid="true"] {
      box-shadow: inset 0 0 0 2px #DF2935; }

select {
  margin-bottom: 1em;
  height: auto;
  border: none;
  font-family: sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  background: transparent;
  box-shadow: inset 0 0 0 1px black;
  border-radius: 2px; }
  select[aria-invalid="true"] {
    box-shadow: inset 0 0 0 1px #DF2935; }
  select:focus {
    box-shadow: inset 0 0 0 2px #000000; }
    select:focus[aria-invalid="true"] {
      box-shadow: inset 0 0 0 2px #DF2935; }

input[type="radio"],
input[type="checkbox"] {
  float: left;
  margin-top: 2px;
  margin-right: 10px; }

input[type="file"] {
  line-height: 0; }

label {
  display: block;
  padding-bottom: 0;
  line-height: 1.25;
  color: #000000; }

input[type="radio"] + label,
input[type="checkbox"] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

label.is-required::after,
legend.is-required::after {
  content: '*';
  margin-left: 0;
  color: #DF2935;
  font-size: 0.8em; }

legend.is-required::after {
  margin-left: 5px; }

label.is-optional::after,
legend.is-optional::after {
  content: '(optional)';
  color: #7D7D7D;
  font-size: 0.8em;
  font-weight: normal; }

legend.is-optional::after {
  margin-right: 5px; }

fieldset {
  margin: 0;
  padding: 0;
  border: none; }

legend {
  margin-bottom: 1em; }

/* ==========================================================================
    MODULES
    ========================================================================== */
.alert {
  margin: 1em 0 2em;
  padding: 20px 25px;
  border-radius: 2px;
  background: #F7F7F7;
  border-left: 2px solid #7D7D7D; }

.alert--success {
  background: rgba(134, 186, 144, 0.1);
  border-color: #86BA90; }

.alert--error {
  background: rgba(223, 41, 53, 0.05);
  border-color: #DF2935; }

.alert--small {
  font-size: 0.9em; }

.alert p {
  margin-bottom: 0.5em; }

.alert p:last-of-type {
  margin-bottom: 0; }

.individual-signee {
  display: block;
  padding: 3px 5px;
  text-decoration: none !important; }
  @media (min-width: 40em) {
    .individual-signee {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

a.individual-signee:hover,
a.individual-signee:focus {
  background: #F7F7F7; }

.individual-signee h6 {
  margin-bottom: 0;
  margin-right: 5px;
  line-height: 1.3;
  font-size: 12px !important;
  font-size: 1.2rem !important; }
  @media (min-width: 40em) {
    .individual-signee h6 {
      font-size: 15px !important;
      font-size: 1.5rem !important; } }

.individual-signee p {
  margin: 3px 5px 0 0;
  color: #666666;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3; }

@media (min-width: 40em) {
  .individual-signee p + p::before {
    content: '–';
    margin-right: 5px; } }

.manifestos {
  position: relative; }

/**
 * Actions
 */
.manifestos__actions {
  margin: -0.25em 0 2em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 39.9375em) {
    .manifestos__actions {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

/**
 * Switch
 */
.manifestos__switch {
  z-index: 1;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px; }
  @media (min-width: 40em) {
    .manifestos__switch {
      margin-right: 15px; } }

.manifestos__switch [role="button"] {
  display: inline-block;
  padding: 11px 32px 9px 17px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #FFFFFF;
  line-height: 1.25;
  text-decoration: none; }
  @media (max-width: 39.9375em) {
    .manifestos__switch [role="button"] {
      font-size: 12px;
      font-size: 1.2rem; } }

.manifestos__switch [role="button"]:hover,
.manifestos__switch [role="button"]:focus {
  opacity: 0.8; }

.manifestos__switch [role="button"] span {
  position: relative;
  overflow: hidden;
  overflow-wrap: normal;
  display: block;
  min-width: 95px;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media (min-width: 40em) {
    .manifestos__switch [role="button"] span {
      min-width: 111px; } }

.manifestos__switch [role="button"] > svg {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -5px;
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
  -webkit-transform: rotate(0.25turn);
      -ms-transform: rotate(0.25turn);
          transform: rotate(0.25turn);
  pointer-events: none; }
  @media (min-width: 40em) {
    .manifestos__switch [role="button"] > svg {
      margin-top: -6px; } }

.manifestos__switch ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  margin-top: -1px;
  display: block;
  min-width: 100%;
  padding: 7px;
  background: #FFFFFF;
  border: 1px solid currentColor;
  font-size: 14px;
  font-size: 1.4rem; }
  .manifestos__switch ul li {
    margin: 0; }
  @media (max-width: 39.9375em) {
    .manifestos__switch ul {
      font-size: 12px;
      font-size: 1.2rem; } }

.manifestos__switch ul[aria-hidden="true"] {
  display: none; }

.manifestos__switch ul a {
  display: block;
  padding: 9px 10px 8px;
  line-height: 1.4;
  text-decoration: none; }

.manifestos__switch ul a:hover,
.manifestos__switch ul a:focus {
  background: #e6e6e6; }

.manifestos__switch ul a[aria-selected="true"] {
  opacity: 0.3;
  pointer-events: none; }

/**
 * Call to action
 */
.manifestos__cta {
  margin-bottom: 10px; }

@media (max-width: 39.9375em) {
  .manifestos__cta .typology-button {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    font-size: 1.2rem; } }

/**
 * Manifestos
 */
.manifestos__manifesto::after {
  display: table;
  clear: both;
  content: ''; }

.manifestos__manifesto[aria-hidden="true"] {
  display: none; }

/**
 * Blockquote pull
 */
@media (min-width: 64em) {
  .manifestos__manifesto .wp-block-quote.left,
  .manifestos__manifesto .wp-block-quote.right {
    margin: 8px 2.5em 2em;
    float: right;
    max-width: 400px;
    padding-top: 30px;
    padding-bottom: 30px; } }

@media (min-width: 64em) {
  .manifestos__manifesto .wp-block-quote.left {
    margin-left: -150px;
    float: left; } }

@media (min-width: 64em) {
  .manifestos__manifesto .wp-block-quote.right {
    margin-right: -150px;
    float: right; } }

@media (min-width: 64em) {
  .manifestos__manifesto .wp-block-quote::before {
    content: none; } }

.organization-signee {
  display: -ms-flexbox;
  display: flex;
  padding: 7px;
  text-decoration: none !important; }

a.organization-signee:hover,
a.organization-signee:focus {
  background: #F7F7F7; }

.organization-signee figure {
  margin: 0;
  -ms-flex: 0 0 40px;
      flex: 0 0 40px;
  width: 40px; }

.organization-signee__body {
  padding-left: 15px; }

.organization-signee__body h6 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 12px !important;
  font-size: 1.2rem !important; }
  @media (min-width: 40em) {
    .organization-signee__body h6 {
      font-size: 15px !important;
      font-size: 1.5rem !important; } }

.organization-signee__body p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3; }

.pdm-menu {
  margin-top: 10px;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%; }
  @media (max-width: 46.1875em) {
    .pdm-menu {
      margin-top: 45px;
      padding: 0 15px; } }

@media (max-width: 46.1875em) {
  .pdm-menu__main {
    width: 100%;
    padding-top: 5px; } }

.pdm-menu__aside {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-top: 3px;
  padding-right: 14px; }
  @media (max-width: 46.1875em) {
    .pdm-menu__aside {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 45px;
      padding-top: 0;
      -ms-flex-pack: end;
          justify-content: flex-end; } }

.pdm-menu__aside::before {
  content: ''; }
  @media (max-width: 46.1875em) {
    .pdm-menu__aside::before {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 45px;
      background: #000000;
      opacity: 0.6; } }

/**
 * CTA
 */
.pdm-menu__cta.pdm-menu__cta li {
  min-height: 0; }

.pdm-menu__cta.pdm-menu__cta a {
  background: #FFFFFF !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  border-radius: 2px; }
  @media (max-width: 46.1875em) {
    .pdm-menu__cta.pdm-menu__cta a {
      padding: 7px 7px 6px !important;
      font-size: 1.2rem !important; } }

.pdm-menu__cta.pdm-menu__cta a:hover {
  background: #e6e6e6 !important; }

/**
 * Language
 */
.pdm-menu__language {
  position: relative;
  margin-right: 20px;
  margin-top: 1px;
  color: #FFFFFF;
  font-size: 0.85em; }
  @media (max-width: 46.1875em) {
    .pdm-menu__language {
      margin-top: 2px;
      font-size: 11px !important;
      font-size: 1.1rem !important; } }

.pdm-menu__language [role="button"] {
  position: relative;
  display: block;
  padding-right: 18px;
  color: #FFFFFF !important; }
  .pdm-menu__language [role="button"]::after {
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    display: block;
    width: 12px;
    height: 12px;
    background: url("../images/icons/arrow--white.svg") no-repeat center;
    background-size: cover;
    -webkit-transform: rotate(0.25turn);
        -ms-transform: rotate(0.25turn);
            transform: rotate(0.25turn);
    pointer-events: none; }
    @media (max-width: 46.1875em) {
      .pdm-menu__language [role="button"]::after {
        margin-top: -7px; } }

.pdm-menu__language [role="button"]:hover,
.pdm-menu__language [role="button"]:focus {
  opacity: 0.8; }

.pdm-menu__language ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  display: block;
  padding: 5px 0;
  background: #FFFFFF;
  border-radius: 2px; }
  .pdm-menu__language ul li {
    margin: 0; }

.pdm-menu__language ul[aria-hidden="true"] {
  display: none; }

.pdm-menu__language ul a {
  display: block;
  padding: 5px 15px;
  color: #333333 !important; }

.pdm-menu__language ul a:hover,
.pdm-menu__language ul a:focus {
  background: #e6e6e6; }

.pdm-menu__language .current-lang a {
  opacity: 0.3;
  pointer-events: none; }

.share-bar {
  position: relative;
  text-align: center; }

.share-bar__inner {
  padding: 30px 25px; }
  @media (min-width: 40em) {
    .share-bar__inner {
      padding: 45px 80px; } }

.share-bar__inner h3 {
  margin-bottom: 0.25em;
  color: inherit; }

.share-bar__inner p {
  font-size: 0.85em;
  line-height: 1.7;
  opacity: 0.8; }

.share-bar__actions {
  margin-top: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }

.share-bar__actions > a {
  margin-right: 10px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 8px;
  background: transparent;
  color: inherit;
  line-height: 0 !important;
  border: 2px solid currentColor;
  border-radius: 50%; }
  @media (min-width: 25em) {
    .share-bar__actions > a {
      width: 40px;
      height: 40px; } }
  @media (min-width: 40em) {
    .share-bar__actions > a {
      margin-right: 15px;
      width: 50px;
      height: 50px;
      padding: 15px; } }

.share-bar__actions > a > svg {
  width: 100%;
  height: 100%;
  fill: currentColor; }

.share-bar__actions > a:hover,
.share-bar__actions > a:focus {
  background: rgba(125, 125, 125, 0.2);
  color: inherit; }

@media (min-width: 40em) {
  .share-bar__actions > a[data-type="whatsapp"] {
    display: none; } }

.sign-form {
  position: relative; }

/**
 * Form
 */
.sign-form form {
  width: 100%; }

.js .sign-form form [aria-hidden="true"] {
  display: none; }

.sign-form.is-submitted form {
  display: none; }

@media (min-width: 40em) {
  .sign-form__group {
    display: -ms-flexbox;
    display: flex; } }

@media (min-width: 40em) {
  .sign-form__group > div[data-type="first-name"] {
    width: 45%;
    padding-right: 10px; } }

@media (min-width: 40em) {
  .sign-form__group > div[data-type="last-name"] {
    width: 55%;
    padding-left: 10px; } }

/**
 * Message
 */
.sign-form__message {
  margin: 1em 0 2em; }

.sign-form__message[aria-hidden="true"] {
  display: none; }

/**
 * reCAPTCHA
 */
.sign-form__recaptcha {
  margin: 2em 0 1em; }

/**
 * Spinner & state
 */
.sign-form__spinner {
  display: none; }

.sign-form.is-submitting .sign-form__spinner {
  display: block; }

.sign-form.is-submitting button {
  display: none; }

/**
 * Specifics
 */
.sign-form__error {
  margin: -1em 0 1em;
  font-size: 0.9em;
  display: block;
  color: #DF2935; }

.sign-form__organization legend {
  font-family: a;
  font-size: 0;
  line-height: 0;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  border: 0 none; }

.sign-form__type {
  margin-bottom: 1em; }

.sign-form__info {
  margin: -1em 0 1em;
  display: block; }

.sign-form__mailinglist {
  margin: 0.5em 0 1.5em; }

.signee-listing ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: -7px;
  margin-bottom: 1em; }
  .signee-listing ul li {
    margin: 0; }

.signee-listing ul[data-type="individual"] {
  margin: -5px;
  margin-bottom: 1em; }

.signee-listing h3 {
  margin-top: 1em; }

.signee-listing h4 {
  margin-top: 0.5em;
  display: inline-block;
  border-bottom: 1px solid #DDDDDD; }

.spinner {
  display: inline-block;
  width: 64px;
  height: 64px; }

.spinner::after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 5px solid #412722;
  border-color: #412722 transparent;
  -webkit-animation: spinner 0.8s linear infinite;
          animation: spinner 0.8s linear infinite; }

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.styled-select {
  margin-bottom: 1em;
  position: relative;
  display: block; }

.styled-select select {
  margin: 0;
  width: 100%; }

@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) or ((-moz-appearance: none) and (mask-type: alpha)) {
  .styled-select::after {
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background: url("../images/icons/arrow.svg") no-repeat center;
    background-size: cover;
    -webkit-transform: rotate(0.25turn);
        -ms-transform: rotate(0.25turn);
            transform: rotate(0.25turn);
    pointer-events: none; }
  .styled-select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin-bottom: 1em;
    display: block;
    width: 100%;
    height: auto;
    padding: 16px 17px;
    outline: none;
    border: none;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px black;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 1em;
    padding-right: 2em;
    background: none;
    appearance: none;
    outline: none; }
    @media (min-width: 40em) {
      .styled-select select {
        font-size: 18px;
        font-size: 1.8rem; } }
    .styled-select select[aria-invalid="true"] {
      box-shadow: inset 0 0 0 1px #DF2935; }
    .styled-select select:focus {
      box-shadow: inset 0 0 0 2px #000000; }
      .styled-select select:focus[aria-invalid="true"] {
        box-shadow: inset 0 0 0 2px #DF2935; } }

.todo {
  display: block;
  padding: 5px 10px;
  background: yellow; }

.typology-actions-list {
  display: none !important; }

.typology-button,
.wp-block-button__link {
  display: inline-block;
  min-width: 0;
  height: auto;
  padding: 12px 17px 10px;
  border: none !important;
  border-radius: 2px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.25;
  text-decoration: none; }
  @media (min-width: 40em) {
    .typology-button,
    .wp-block-button__link {
      font-size: 14px;
      font-size: 1.4rem; } }
  .typology-button:hover,
  .wp-block-button__link:hover {
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.3);
    opacity: 0.9; }

.typology-button[disabled] {
  background: #7D7D7D;
  border-color: #7D7D7D;
  cursor: not-allowed; }

.wp-block-button {
  margin: 2em auto 3em; }

.typology-cover-img img {
  -o-object-position: 50%;
     object-position: 50%; }

.home .typology-cover-img img {
  height: 115%;
  -o-object-position: 20% 50%;
     object-position: 20% 50%; }
  @media (max-width: 29.9375em) {
    .home .typology-cover-img img {
      height: 120%;
      -o-object-position: 35% 20%;
         object-position: 35% 20%; } }

.page-template-template-manifesto .typology-cover-img img {
  -o-object-position: 50% 60%;
     object-position: 50% 60%; }

.page-template-template-sign .typology-cover-img img {
  -o-object-position: 50% 35%;
     object-position: 50% 35%; }

.about .typology-cover-img img {
  -o-object-position: 50% 0%;
     object-position: 50% 0%; }

.typology-cover-item {
  z-index: 1;
  height: 320px !important;
  min-height: 0 !important;
  padding: 0 !important; }
  @media (max-width: 29.9375em) {
    .typology-cover-item {
      height: 35vh !important; } }

.home .typology-cover-item {
  height: 85vh !important;
  min-height: 450px !important;
  max-height: 50vmax; }
  @media (max-width: 29.9375em) {
    .home .typology-cover-item {
      height: 45vh !important;
      min-height: 0 !important;
      padding: 0; } }

.js .typology-cover-item {
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }

.typology-cover-item .cover-item-container {
  display: none; }
  @media (max-width: 29.9375em) {
    .typology-cover-item .cover-item-container {
      max-width: 90%; } }

.home .typology-cover-item .cover-item-container {
  display: -ms-flexbox;
  display: flex;
  min-height: 0 !important; }

.home .typology-cover-item h1 {
  margin-top: -5vw;
  margin-bottom: 0;
  font-size: 5vw;
  line-height: 1.05;
  color: #333333;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.8); }
  @media (max-width: 46.1875em) {
    .home .typology-cover-item h1 {
      margin-top: 1em;
      font-size: 28px !important;
      font-size: 2.8rem !important;
      text-shadow: 0 0 30px white, 0 0 15px white; } }
  @media (max-width: 24.9375em) {
    .home .typology-cover-item h1 {
      margin-top: 2em;
      font-size: 24px !important;
      font-size: 2.4rem !important; } }

.home .typology-cover-item p {
  margin-bottom: -1vw;
  font-size: 2vw;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 15px rgba(255, 255, 255, 0.8); }
  @media (max-width: 46.1875em) {
    .home .typology-cover-item p {
      font-size: 16px;
      font-size: 1.6rem; } }

.typology-cover-overlay::after {
  display: none !important; }

.typology-cover {
  height: 320px !important;
  min-height: 0 !important; }
  @media (max-width: 29.9375em) {
    .typology-cover {
      height: 35vh !important; } }

.home .typology-cover {
  height: 85vh !important;
  min-height: 450px !important;
  max-height: 50vmax; }
  @media (max-width: 29.9375em) {
    .home .typology-cover {
      height: 45vh !important;
      min-height: 0 !important; } }

.typology-footer__share {
  margin: 0 auto 4em;
  max-width: 660px; }

.typology-footer__share .share-bar {
  border-left: none !important; }
  .typology-footer__share .share-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40px;
    display: block;
    width: 80px;
    border-bottom: 1px solid #7D7D7D; }

.typology-footer__share .share-bar__inner {
  padding-top: 3em;
  padding-bottom: 4em;
  background: transparent !important; }
  @media (min-width: 42.5em) {
    .typology-footer__share .share-bar__inner {
      padding-top: 0; } }

.typology-footer__pdm {
  margin: 0 auto;
  padding: 0 25px 40px;
  max-width: 400px;
  width: 100%;
  font-size: 0.8em;
  text-align: center; }
  @media (min-width: 40em) {
    .typology-footer__pdm {
      padding: 0 0 4em; } }

.typology-footer__pdm svg {
  margin-bottom: 15px;
  width: 50%; }

.typology-header {
  z-index: 1000 !important;
  display: block !important;
  height: auto !important;
  min-height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); }

body.admin-bar .typology-header {
  padding-top: 46px; }
  @media (min-width: 48.875em) {
    body.admin-bar .typology-header {
      padding-top: 32px; } }

.typology-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%); }
  @media (max-width: 46.1875em) {
    .typology-header::before {
      top: 45px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); } }

.typology-header .container {
  width: 100%;
  max-width: 93%; }
  @media (max-width: 46.1875em) {
    .typology-header .container {
      position: static;
      max-width: none; } }
  @media (min-width: 64em) {
    .typology-header .container {
      max-width: 1140px; } }

.typology-header .container .slot-l {
  left: 0;
  right: 0;
  display: block !important; }

.typology-main-navigation {
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1 !important; }
  @media (min-width: 46.25em) {
    .typology-main-navigation {
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-pack: justify;
          justify-content: space-between;
      opacity: 1 !important; } }

.typology-main-navigation a {
  padding: 12px 14px 11px !important;
  line-height: 1 !important;
  border: 1px solid transparent; }
  @media (max-width: 46.1875em) {
    .typology-main-navigation a {
      padding: 10px 5px 8px !important;
      font-size: 1.4rem !important; } }

.typology-main-navigation li {
  min-height: 0 !important; }

.typology-main-navigation li:hover,
.typology-main-navigation a:hover {
  background: transparent !important;
  box-shadow: none !important; }

.typology-main-navigation a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5); }

.typology-main-navigation .active a {
  border-bottom-color: #FFFFFF; }

.typology-section {
  overflow-wrap: break-word; }
  @media (min-width: 64em) {
    .typology-section {
      max-width: 1140px;
      padding-top: 12rem; } }

.typology-section__cta {
  margin: 2.5em auto 3em; }

.manifestos + .typology-section__cta {
  margin-top: 1em; }

.typology-section__share {
  margin: 3.5em auto;
  padding: 2.5em 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent; }
  @media (min-width: 40em) {
    .typology-section__share {
      margin: 4em auto;
      padding: 3em 0; } }

@media (max-width: 39.9375em) {
  .typology-section .post-letter {
    display: none; } }

@media (min-width: 46.25em) {
  .typology-sidebar-overlay {
    display: none !important; } }

.wp-block-quote.wp-block-quote {
  margin: 2em auto 3em;
  padding: 50px 20px 25px;
  color: #FFFFFF;
  font-size: 1.3rem;
  line-height: 1.85; }
  @media (min-width: 40em) {
    .wp-block-quote.wp-block-quote {
      padding: 50px 25px 25px; } }
  @media (min-width: 64em) {
    .wp-block-quote.wp-block-quote {
      padding: 60px 35px 40px;
      font-size: 1.5rem; } }

.wp-block-quote p {
  font-size: inherit; }

.wp-block-quote cite {
  font-size: 0.8em; }

.wp-block-quote a {
  color: #FFFFFF; }

/* ==========================================================================
   HELPERS
   ========================================================================== */
#__bs_notify__ {
  background: #412722 !important;
  top: auto !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  padding: 10px 15px !important;
  font-family: sans-serif;
  font-size: 14px !important;
  font-size: 1.4rem !important; }
