/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

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

/**
 * 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
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * 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 size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * 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 iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

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

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

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

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * 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;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
@font-face {
  font-family: Klima;
  src: url('fonts/klima-regular-web.woff2');
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('fonts/klima-bold-web.woff2');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('fonts/klima-regular-italic-web.woff2');
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Klima;
  src: url('fonts/klima-bold-italic-web.woff2');
  font-style: italic;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(fonts/montserrat-regular-ext.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(fonts/montserrat-regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'), url(fonts/montserrat-bold-ext.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'), url(fonts/montserrat-bold.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --red: #eb141f;
  --anthrazit: #262626;
  --violett: #6217AD;
  --green: #3b8632;
  --orange: #FFB100;
  --white: #FFFFFF;
  --yellow: #F9C80E;
  --blue: #01BAEF;
  --olive: #A8C686;
  --teal: #00ACAB;
  --purple: #473144;
  --pink: #EE92C2;
  --brown: #352208;
  --grey: #aaa;
  --black: var(--anthrazit);

  --first-button: var(--red);
  --second-button: var(--violett);
  --third-button: var(--green);

  --primary-color: var(--red);
  --light-color: var(--white);
  --tamaro-primary-color: var(--primary-color);
  --tamaro-bg-color: var(--background-color);
  --tamaro-primary-color__hover: #d52932;

  --text-color: var(--anthrazit);
  --background-color:var(--white);
  --highlight-color: var(--primary-color);

  --footer-background-color: var(--anthrazit);
  --footer-text-color: var(--white);

  --container-width: 94vw;
  --container-outer-width: 100vw;

  --outer-padding: calc((100vw - var(--container-outer-width))/2);
  --inner-padding: calc((100vw - var(--container-width))/2);

  --navbar-height: 60px;
  --navbar-offset: 80px;

  --body-font: 'Klima', sans-serif;
  --title-font: 'Klima', sans-serif;
  --button-font: 'Klima', sans-serif;
  --menu-font: 'Klima', sans-serif;

  --menu-weight: 900;
  --button-weight: 900;

  --box-shadow: rgba(0, 0, 0, 0.4) 0 4px 8px;
  --border-radius: 3px;
}

.red {
  --primary-color: var(--red);
}

.orange {
  --primary-color: var(--orange);
}

.yellow {
  --primary-color: var(--yellow);
}

.olive {
  --primary-color: var(--olive);
}

.blue {
  --primary-color: var(--blue);
}

.green {
  --primary-color: var(--green);
}


.teal {
  --primary-color: var(--teal);
}
.violett {
  --primary-color: var(--violett);
}

.purple {
  --primary-color: var(--purple);
}

.pink {
  --primary-color: var(--pink);
}


.brown {
  --primary-color: var(--brown);
}

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

.black {
  --primary-color: var(--black);
}

@media (min-width: 1250px){
  :root {
    --container-width: 1200px;
    --container-outer-width: 1200px;
  }
}

@supports (-ms-ime-align:auto) {
  :root {
    --container-width: 94vw;
    --container-outer-width: 1200px;

    --outer-padding: 2vw;
    --inner-padding: 2vw;

  }
  main {
    max-width: 1200px !important;
    margin-right: auto;
    margin-left: auto;
  }
}
body.theme-change, body.theme-change .nav-panel {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

body.dark{
  background-color: #262626;
  color: #dedede;
  --white: #dedede;
  --grey: #4e4e4e;
  --text-color: var(--white);
  --background-color:var(--anthrazit);
  --footer-background-color: black;
  --footer-text-color: grey;
  --tamaro-bg-color: var(--anthrazit);
  --tamaro-block-header-color: var(--white);
  --tamaro-text-color: var(--white);
  --tamaro-label-checkable-color: var(--white);
}

body.dark img {
  opacity: .75;
  -webkit-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

body.dark img:hover {
  opacity: 1;
}

.toggle-theme {
  margin: 0 1em;
  font-size: 0.7em;
}

.toggle-theme.light {
  display: none;
}

body.dark .toggle-theme.light {
  display: inherit;
}

body.dark .toggle-theme.dark {
  display: none;
}
form.form {
  padding: 0.3rem;
}

form.form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr 1em 1fr
    1em 1fr 1em 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

form.form > .message {
  -ms-grid-column-span: 12;
  grid-column: span 12;
  font-size: 0.9rem;
}

form.form > button {
  -ms-grid-column-span: 12;
  grid-column: span 12;
  width: 100%;
  font-size: 1em;
}

form .field {
  position: relative;
  margin-bottom: 1em;
  padding-top: 0.5em;
  margin-top: 0.4em;
}

.field {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

@media (min-width: 420px) {
  .field.one {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }

  .field.three-fourths {
    -ms-grid-column-span: 9;
    grid-column: span 9;
  }

  .field.two-thirds {
    -ms-grid-column-span: 8;
    grid-column: span 8;
  }

  .field.one-half,
  .field.id_first_name,
  .field.id_last_name {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }

  .field.one-third {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }

  .field.one-fourth {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}

.field > label {
  position: absolute;
  top: -0.5em;
  left: 0.1rem;
  color: var(--text-color);
  display: block;
  font-size: 0.9rem;
}

.feature-content label {
  color: var(--light-color);
  top: -1rem;
  font-size: 1.2rem;
}

.feature-content form {
  padding: 0;
}

.field > input[type="checkbox"] {
  width: auto;
  display: inline;
}

.field > input[type="checkbox"] + label {
  color: var(--text-color);
  display: inline;
  font-size: 1rem;
  position: relative;
  padding-top: 0.7em;
  vertical-align: middle;
}

.field > input[type="checkbox"] + label + small {
  display: block;
  -webkit-transform: translateY(-0.5em);
  -ms-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
}

.field > small,
.field > label {
  -webkit-transition: color 100ms ease-in-out;
  -o-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
  opacity: 0.7;
}

.field > input:focus,
.field > textarea:focus {
  border-bottom-color: var(--highlight-color);
  outline: none;
}

.field > input:focus + label,
.field > input:focus ~ small {
  color: var(--highlight-color);
  opacity: 1;
}

.field > input,
.field > select,
.field > textarea {
  width: 100%;
  background: var(--background-color);
  border: none;
  color: var(--text-color);
  border-bottom: solid var(--text-color) 2px;
  margin-bottom: -0.3rem;
  font-size: 1em;
  padding: 0.3em;
  -webkit-transition: border 100ms ease-in-out;
  -o-transition: border 100ms ease-in-out;
  transition: border 100ms ease-in-out;
  font-family: var(--body-font);
}

.field > small {
  font-size: 0.6em;
  margin-top: 0em;
}

form .field.two {
  display: none;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 33%);
}

.testimonial {
  display: flex;
  flex-direction: column;
}

.image img {
  max-width: 100%;
  border-radius: 50%;
}

.testimonial .image {
  padding-top: 2em;
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 2em;
}

.person {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial .name {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 0.3rem;
}

.testimonial-title {
  margin-left: 0.3rem;
}

.quote {
  text-align: center;
  font-size: 0.9em;
}

.quote::before {
  content: "«";
  display: inline;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 0.2rem;
}

.quote::after {
  content: "»";
  display: inline;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 0.2rem;
}

.testimonial .image {
  padding-left: 25%;
  padding-right: 25%;
}

.testimonials {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--container-width), 300px), 1fr)
  );
  grid-gap: 1em;
  margin-bottom: 2em;
  margin-top: 1em;
}

#id_statement {
  height: 4em;
}
body {
  font-size: 16px;
  font-size: clamp(15px, 2vw, 22px);
  font-family: var(--body-font);
  counter-reset: glossary;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
header {
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4em;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

header > a {
  text-decoration: none;
}

h5 {
  font-style: italic;
}

h4,
h5,
h6 {
  font-weight: 400;
}

.hidden {
  display: none;
}

.remove-margin {
  margin-left: calc(-1 * var(--inner-padding));
  margin-right: calc(-1 * var(--inner-padding));
  padding-left: var(--inner-padding);
  padding-right: var(--inner-padding);
}
/*
 * Define Colors
 */

::-moz-selection {
  background-color: rgba(255, 27, 39, 0.72);
}

::selection {
  background-color: rgba(255, 27, 39, 0.72);
}

figure {
  margin: 1em 0;
}

address {
  font-style: normal;
}

/*
 * Basic styles
 */

h1::after,
h2::after {
  background-color: var(--highlight-color);
  width: min(calc(100% + 1em), calc(100vw - 2 * var(--inner-padding)));
  height: 0.4rem;
  content: "";
  display: block;
}

h1,
h2 {
  display: inline-block;
}

a:link,
a:visited {
  color: var(--text-color);
}

.text > p,
.text > ul,
.text > ol,
.wrapper > *,
figure > img,
figure > figcaption {
  max-width: 65%;
}

.meta .text > p,
.meta .text > ul,
.meta .text > ol,
.meta .wrapper > *,
figure > img,
figure > figcaption,
.feature-content > .text > p,
.feature-content > .text > ul,
.feature-content > .text > ol,
.feature-content .wrapper > * {
  max-width: 100%;
  font-weight: normal;
  text-transform: none;
  font-size: 1rem;
}

.feature-content > .text > p,
.feature-content > .text > ul,
.feature-content > .text > ol,
.feature-content .wrapper > * {
  font-size: 1.3rem;
}

.text > table {
  width: 100%;
  border: 1px solid var(--grey);
}

.text > table th {
  background-color: var(--grey);
}

.text > table caption {
  font-size: 0.8em;
}

.text > table td,
.text > table th {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--grey);
  border-right: 1px solid var(--grey);
}

.event-text > .text > p,
.event-text > .text > ul,
.event-text > .text > ol,
.event-text > .wrapper > *,
.event-text > figure > .event-text > img,
.event-text > figure > .event-text > figcaption {
  max-width: 100%;
}

figure.full {
  clear: both;
}

.wrapper > .full,
figure.full > img,
figure.full > figcaption {
  max-width: 100%;
  clear: both;
}

.cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--container-width), 400px), 1fr)
  );
  grid-gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@supports (-ms-ime-align: auto) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  nav.subsites {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #mainNavigation,
  div.top-bar,
  header.page > h1,
  nav.meta {
    width: 94vw;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.cards.events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cards.events header h4 {
  font-size: 0.8em;
  font-weight: normal;
  margin-top: 0;
}

.cards.events > .card > .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 30%;
  flex: 1 0 30%;
  min-width: 80px;
}

.cards.team > .card > .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  min-width: 80px;
}

.cards.events > .card > .image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cards.events > .card > .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 70%;
  flex: 1 0 70%;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.card {
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  --background-color: rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
}

.card.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 0.5em;
}

.card.horizontal img {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.social-media {
  margin-top: 1em;
}

.social-media > a {
  margin: 0.2em;
  font-size: 0.8em;
}

.card > .content {
  padding: 1rem 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.card > .content > p:last-child {
  margin: 0;
}

.card > .content.extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0;
  flex: 0 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.card.horizontal > .image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card.horizontal > .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.card.horizontal > .content > section {
  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-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.card.horizontal > .content > section > a {
  margin: 0 0 0.2em 0;
}

.card img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  overflow: hidden;
}

main {
  max-width: 100vw;
  overflow: hidden;
}

main > article {
  margin-bottom: 1em;
}

main > article > section {
  margin-bottom: 1em;
}

.button.center {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.button.right {
  margin-left: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-right: -100%;
}

.button.block {
  display: block;
  text-align: center;
}

.button-wrapper.break::after {
  display: block;
  content: "\A";
}

/** Page navigation **/
nav.subsites {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(40vw, 290px), 1fr));
  grid-gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

nav.subsites > a > div.info > div {
  max-width: 80%;
}

nav.subsites > a > div.info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--light-color);
  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;
}

nav.subsites > a {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  overflow: hidden;
  position: relative;
  text-align: center;
}

nav.subsites > a:hover {
  -webkit-transform: translate(0, -0.8rem);
  -ms-transform: translate(0, -0.8rem);
  transform: translate(0, -0.8rem);
}

nav.subsites > a:hover {
  opacity: 1;
}

nav.subsites > a > div.overlay {
  height: 100%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-color: var(--highlight-color);
  opacity: 0.2;
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

nav.subsites > a:hover > div.overlay {
  opacity: 0.8;
}

nav.subsites > a > div.info > span {
  background-color: var(--highlight-color);
  padding: 0.2em 0.5em;
  color: var(--light-color);
  -webkit-box-shadow: 1rem 0px 0px var(--highlight-color) -1rem 0px 0px var(--highlight-color);
  box-shadow: 1rem 0px 0px var(--highlight-color),
    -1rem 0px 0px var(--highlight-color);
  -webkit-box-decoration-break: clone;
  -moz-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2em;
  display: inline;
}

nav.subsites > a:hover > img {
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

nav.subsites > a:hover > div.info {
  -webkit-transition: 300ms ease-in-out;
  -o-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

/*
 * Buttons
 */
.button,
button,
a.button,
button.button {
  padding: 0.5em 1em;
  border: var(--primary-color) solid 3px;
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--button-font);
  font-weight: var(--button-weight);
  display: inline-block;
  line-height: 1em;
  margin: 0.5em 0;
  word-break: normal;
}

.button.secondary {
  background-color: var(--background-color);
  color: var(--text-color);
}

a.button:hover,
button:hover {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}

.button.icon {
  padding: 0.4em;
  margin: 0 0.3em;
}

nav {
  font-family: var(--menu-font);
  font-weight: var(--menu-weight);
  text-transform: uppercase;
}

nav.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

nav.top a,
nav.top span {
  margin: 0 1em;
  text-decoration: underline;
  font-size: 0.85em;
  font-weight: normal;
  text-transform: none;
  vertical-align: top;
}

div.translations a,
div.translations span {
  margin: 0 0.3em;
}

div.translations span {
  text-decoration: none;
}
/*
 * Header
 */

header.page {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: calc(-1 * calc(var(--navbar-height) + var(--navbar-offset)));
  margin-bottom: 40px;
  color: var(--light-color);
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  background-size: cover;
  min-height: 30vmax;
}

header.page.featured {
  margin: 0;
  min-height: 50vh;
}

header.page.featured h1.header {
  margin-top: 0;
}

header .feature-content {
  flex: 1 0;
  width: 50%;
  align-self: flex-end;
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header.page.no-background {
  min-height: 0;
  color: var(--text-color);
}

header.page.no-background > h1 {
  margin-top: 4em;
}

nav.main.no-background {
  color: var(--text-color);
}

nav.main.no-background .logo {
  color: var(--highlight-color);
}

main,
header.page,
footer,
nav.main {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-left: var(--inner-padding);
  padding-right: var(--inner-padding);
}

nav.main.feature-nav {
  color: var(--text-color);
  background-color: var(--background-color);
  margin-top: 0;
  margin-bottom: 2em;
  box-shadow: var(--box-shadow);
}

header.page h1::after {
  content: none;
}

header.page > h1 {
  font-size: clamp(34px, 4vw, 53px);
  margin-bottom: min(calc(var(--inner-padding) - 0.1em), 1rem);
  line-height: 1em;
  margin-top: 2em;
}

.branding {
  -webkit-box-flex: 2;
  -ms-flex: 2 0;
  flex: 2 0;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.brand > .name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  line-height: 1em;
  word-break: break-word;
  padding-left: 0.3em;
}

.branding img.logo {
  margin: auto;
}

header.page > .logo {
  display: none;
}

.logo svg {
  height: 100%;
  width: 100%;
  min-width: 30px;
  fill: currentColor;
}

.branding .logo {
  color: var(--light-color);
  height: 3em;
  padding: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0;
  flex: 0 0;
}

.sticky .logo,
.feature-nav .logo {
  color: var(--highlight-color);
}

nav.sticky.main > ul {
  margin-right: 0;
  margin-left: 0;
  justify-content: space-evenly;
}

nav#mobile-menu .menu .branding {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-top: 1em;
  margin-bottom: 1em;
}

nav#mobile-menu .logo {
  height: 3em;
  display: block;
  color: var(--text-color);
}

/*
 *  Styles for the Glossary
 */

.glossary-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.glossary-list > .entries {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20em;
  flex: 1 1 20em;
}

.glossary-entry {
  border-bottom: solid;
}

.glossary-entry:last-child {
  border-bottom: none;
}

.glossary-entry p {
  margin-top: 0;
}

.glossary-list > .navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.glossary {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
  cursor: help;
}

.glossary::after {
  counter-increment: glossary;
  content: counter(glossary);
  font-size: 0.8rem;
  vertical-align: super;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.toggle:checked + .glossary-content > dfn {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.glossary-content {
  float: right;
  clear: right;
  width: 50%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: -54%;
  font-size: 0.8em;
  line-height: 1.3;
  vertical-align: baseline;
  position: relative;
  padding-bottom: 1em;
}

.glossary + .toggle {
  display: none;
}

.glossary-content > dfn {
  font-weight: bold;
}

.glossary-content > dfn::before {
  content: counter(glossary);
  font-size: 0.7rem;
  vertical-align: super;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  padding-right: 1px;
}

.glossary-content > dfn::after {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

@media (max-width: 770px) {
  header.page > .logo {
    width: 7vw;
    margin-top: 1em;
    margin-right: 1em;
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: block;
  }

  header.page.no-background > h1 {
    margin-top: -1em;
  }

  .glossary-content {
    display: none;
  }
  .text > p,
  .text > h1,
  .text > h2,
  .text > h3,
  .text > h4,
  .text > h5,
  .text > h6,
  .text > ul,
  .text > ol,
  .wrapper > *,
  figure > img,
  figure > figcaption {
    max-width: 100%;
    clear: both;
  }

  .toggle:checked + .glossary-content {
    display: block;
    float: left;
    clear: both;
    width: 95%;
    margin: 1rem 2.5%;
    position: relative;
  }
  .cards.events > .card > .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
  }
  .cards.events > .card > .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
  }
}

@media (max-width: 420px) {
  .calendar-links > a > span {
    display: none;
  }
  .calendar-links > a > svg {
    margin-right: 0.3em;
    margin-left: 0.3em;
  }
}

img {
  max-width: 100%;
}

/** Images with overlay text **/

.text-image {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}

.text-image > img {
  width: 100%;
}

/* Centered text */
.text-image > .centered {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}

.highlight-text {
  background-color: var(--highlight-color);
  padding: 0.5em 0;
  color: var(--light-color);
  -webkit-box-shadow: 0.7em 0px 0px var(--highlight-color) -0.7em 0px 0px var(--highlight-color);
  box-shadow: 0.7em 0px 0px var(--highlight-color),
    -0.7em 0px 0px var(--highlight-color);
  -webkit-box-decoration-break: clone;
  -moz-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.4em;
  display: inline;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: clamp(12px, 26px, 3vw);
}

header .highlight-text {
  font-size: clamp(16px, 26px, 3vw);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--highlight-color);
  opacity: 0.1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card .heading:hover .overlay {
  opacity: 0.5;
}

nav > ul {
  margin: 0;
  padding: 0;
}

nav.main {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3;
  height: var(--navbar-height);
  margin-top: var(--navbar-offset);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  font-family: var(--menu-font);
  text-transform: uppercase;
  color: var(--light-color);
  font-size: min(max(15px, calc(8px + 1vw)), 23px);
}

.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 4;
}

nav.main .buttons {
  display: none;
}

nav.main .buttons > .button {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

nav.main.sticky span.name {
  display: none;
}

nav.main.sticky {
  background: var(--background-color);
  color: var(--text-color);
  font-size: 0.8em;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding-left: var(--outer-padding);
  padding-right: var(--outer-padding);
  font-size: min(max(14px, calc(6px + 1vw)), 18px);
}

nav.main.sticky > .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.buttons > .button {
  padding: 0 min(1vw, 0.5em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

nav.main > ul {
  -webkit-box-flex: 2;
  -ms-flex: 2 0 auto;
  flex: 2 0 auto;
  margin-left: 1em;
}

nav > ul > li > a,
a.brand {
  text-decoration: none;
}

nav.main > ul > li:last-child {
  padding-right: 0;
}

nav.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

nav.buttons > a.button {
  padding: 0.8em 1.2em;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.buttons > a.button {
  margin: 0;
}

.buttons > a:nth-child(1) {
  --primary-color: var(--first-button);
}

.buttons > a:nth-child(2) {
  --primary-color: var(--second-button);
}

.buttons > a:nth-child(3) {
  --primary-color: var(--third-button);
}

nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/***Footer***/

footer {
  clear: both;
  margin-top: 1em;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  --text-color: var(--footer-text-color);
  padding-bottom: 4em;
}

footer > nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.meta-menu,
div.footer {
  margin: 0em 0.5em;
}

.meta-menu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

nav.meta {
  padding-top: 1em;
  margin-bottom: 4em;
}

nav.meta h4 > a,
nav.meta h4 {
  font-weight: bold;
  margin-bottom: 0.1em;
  text-decoration: none;
}

.meta-menu > div > a {
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 0.8em;
}

nav.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: var(--background-color) solid;
  width: 75%;
  margin: auto;
  padding-top: 2em;
  margin-top: -2em;
}

nav.footer > a {
  font-family: var(--body-font);
  font-weight: normal;
  text-decoration: none;
  font-size: 0.7em;
  margin-left: 1em;
  margin-right: 1em;
}
#mobile-menu {
  display: none;
}

.pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination > a {
  background: var(--primary-color);
  padding: 0.3em 0.8em;
  color: var(--light-color);
  margin: 0 1pt;
  text-decoration: none;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.pagination > span {
  margin: 0.3em 0.8em;
  text-decoration: underline;
}

.pagination > a:first-child {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.pagination > a:last-child {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.foot > .ical {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.action {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.action > .button {
  margin: 0.1em;
}

.heading::after {
  padding-bottom: 66.66%;
  content: "";
  display: block;
}

header > .title {
  font-weight: 300;
  font-size: 0.8em;
}

.card.horizontal > .content > section {
  font-size: 0.8em;
}

header.heading > img {
  position: absolute;
  height: 100%;
  width: 100%;
}

header.heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heading > .tag > a {
  position: absolute;
  left: 1em;
  top: 1em;
  color: var(--light-color);
  text-decoration: none;
}

.rnw-widget-container {
  max-width: 726px;
  margin: 3em auto;
}

main #tamaro-widget.tamaro-widget.tamaro-widget {
  font-family: var(--body-font);
}

main #tamaro-widget.tamaro-widget span,
main
  #tamaro-widget.tamaro-widget
  .widget-content
  .widget-block
  .widget-block-header
  .title
  .position {
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
}

.card > .content > section > .description {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.event > .bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.action.small {
  font-size: 0.6em;
}

.calendar-links > a {
  text-decoration: none;
}

.calendar-links > a > span {
  margin-left: 0.3em;
  margin-right: 0.8em;
  text-decoration: underline;
}

.ical {
  position: relative;
}

.ical > input#ical_url {
  font-size: 0.6em;
  width: 30em;
  max-width: 90vw;
  display: block;
  margin-top: 1em;
}

.hidden {
  display: none;
}

.controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.controls > .filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 20em;
}

.controls > .filter button {
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 1rem;
}
#notification-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#notification-area button {
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 1rem;
}

.social-media a.button {
  margin: 0.2em;
}

.social-media h3 {
  display: block;
}

.event-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 60%;
  flex: 1 0 60%;
}

.event-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1rem 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
  margin: 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 40%;
  flex: 1 0 40%;
}

.event-buttons {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  font-size: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.event-buttons > .button {
  margin-left: 0.5em;
}

.location > h2 {
  margin-top: 0;
}
.location > h2::after {
  background-color: var(--highlight-color);
  width: 100%;
  height: 0.4rem;
  content: "";
  display: block;
}

div.datetime {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

article.event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

div.datetime > time {
  padding: 1.4em 1.5em 0.8em 1.5em;
  margin: 0;
  line-height: 1em;
}

time > .day {
  font-size: 2em;
  font-weight: 900;
}

time > .month {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  text-align: center;
  font-size: 1.2em;
  font-weight: 900;
}

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

time > .time > .hour {
  margin-right: -0.2em;
}

time > .time > .minutes {
  font-size: 0.6em;
  vertical-align: text-top;
  line-height: 1.2em;
}

.location.card {
  padding: 1rem;
}

.location.card > address {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.location.card > .button {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin: 0;
  font-size: 0.8em;
}

#fab-share {
  display: none;
}
.share-btn {
  position: fixed;
  bottom: 1rem;
  width: 50px;
  right: var(--inner-padding);
  height: 50px;
  background-color: var(--white);
  border-radius: 25px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
  z-index: 5;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.sm-button {
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
  z-index: 4;
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
  margin-top: 0.5rem;
  cursor: pointer;
}

.sm-button.facebook {
  background-color: #3b5998;
  color: white;
}

.sm-button.whatsapp {
  background-color: #25d366;
  color: white;
}

.sm-button.twitter {
  background-color: #55acee;
  color: white;
}

.sm-button.telegram {
  background-color: #0088cc;
  color: white;
}

.sm-button.share {
  background-color: var(--background-color);
  color: var(--text-color);
  display: none;
}
.sm-button.share.enabled {
  display: inherit;
}

.social-media-button {
  position: fixed;
  bottom: 5rem;
  flex-direction: column;
  right: var(--inner-padding);
  z-index: 4;
  transform: scale(0.5, 0);
  transform-origin: 50% calc(100% + 0.5rem + 25px);
  display: flex;
  -webkit-transition: -webkit-transform 400ms
    cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: -webkit-transform 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: transform 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55),
    -webkit-transform 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  width: 50px;
}

#fab-share:checked ~ .social-media-button {
  transform: scale(1);
}

@media (max-width: 770px) {
  .menu-btn {
    position: fixed;
    bottom: 4rem;
    width: 50px;
    right: var(--inner-padding);
    height: 50px;
    background-color: var(--white);
    padding-top: 13px;
    border-radius: 25px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 10px;
    z-index: 4;
  }

  header .feature-content {
    width: 100%;
  }

  .social-media-button {
    bottom: 8rem;
    bottom: calc(4.5rem + 50px);
    left: var(--inner-padding);
    flex-direction: column;
    transform-origin: 25px calc(100% + 0.5rem + 25px);
  }

  .share-btn {
    bottom: 4rem;
    left: var(--inner-padding);
  }
  #mobile-menu {
    display: inherit;
  }
  #fab {
    display: none;
  }
  nav.main,
  .top-bar {
    display: none;
  }
  header.page {
    margin-top: 0;
  }

  .menu-btn:before,
  .menu-btn:after {
    background-color: var(--anthrazit);
    content: "";
    display: block;
    height: 4px;
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -o-transition: all 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: all 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin: auto;
    width: 32px;
  }
  .menu-btn:before {
    -webkit-box-shadow: 0 10px 0 var(--anthrazit);
    box-shadow: 0 10px 0 var(--anthrazit);
    margin-bottom: 16px;
  }
  #fab:checked + .menu-btn:before {
    -webkit-box-shadow: 0 0 0 var(--anthrazit);
    box-shadow: 0 0 0 var(--anthrazit);
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }

  #fab:checked + .menu-btn:after {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }

  .nav-panel {
    z-index: 3;
    position: fixed;
    width: 100vw;
    bottom: 0;
    background-color: var(--background-color);
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
    -webkit-transition: -webkit-transform 800ms
      cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -o-transition: transform 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: transform 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: transform 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55),
      -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 -4px 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 -4px 5px;
    color: var(--text-color);
    -webkit-transform: translate(0, calc(100% - 3rem));
    -ms-transform: translate(0, calc(100% - 3rem));
    transform: translate(0, calc(100% - 3rem));
  }

  .nav-panel .buttons {
    height: 3rem;
    border-radius: 0px;
  }

  .nav-panel > .buttons > a.button {
    border-radius: 0 0 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-panel > .buttons > a.button:nth-child(1) {
    border-radius: var(--border-radius) 0 0 0;
  }
  .nav-panel > .buttons > a.button:last-child {
    border-radius: 0 var(--border-radius) 0 0;
  }

  .nav-panel .menu {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
  }

  .nav-panel .menu > a {
    text-decoration: none;
    font-size: 1.3em;
    margin-top: 0.2em;
  }

  #fab:checked ~ .nav-panel {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .logo-mobile {
    height: 80px;
  }
  .small-top-bar,
  .small-bottom-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 0.3em;
    font-size: 0.7em;
  }
  .small-top-bar {
    margin-top: 0.3em;
  }

  .small-bottom-bar {
    margin-top: 3rem;
    margin-bottom: 0.5em;
  }

  .small-top-bar > a,
  .small-bottom-bar > a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: normal;
  }
  .small-top-bar > a.current {
    text-decoration: underline;
  }
  nav.footer {
    display: none;
  }

  nav.meta h4 {
    font-size: 1.4rem;
  }

  .meta-menu > div > a {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
  }

  .event-info {
    width: auto;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  article.event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .event-info > .event-buttons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
}

@media (max-width: 320px) {
  .event-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .event-info > .event-buttons {
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .event-buttons > .button,
  .event-buttons > .button:first-child,
  .event-buttons > .button:last-child {
    margin-left: 0;
    margin-right: 0;
  }
  .event-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .event-info > .event-buttons {
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .event-buttons > .button,
  .event-buttons > .button:first-child,
  .event-buttons > .button:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}

.counter {
  text-align: center;
}

.counter > .number {
  font-size: 1.8em;
}

.counter .number {
  font-weight: 800;
  margin: 0.1em;
}

.progress {
  width: 100%;
  background-color: var(--grey);
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  margin-bottom: 0.5em;
}

.progress-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1em;
}

.progress > .bar {
  background-color: var(--highlight-color);
  height: 1em;
  border-radius: var(--border-radius);
}

.article > .info {
  font-size: 0.9em;
}

#loading-bar {
  width: 50%;
  position: fixed;
  top: 0;
  height: 1px;
  background-color: var(--primary-color);
  box-shadow: var(--primary-color) 0 4px 4px;
  z-index: 4;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

#loading-bar.complete {
  display: none;
}

a.download {
  display: block;
}

.candidature {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
  box-shadow: var(--box-shadow);
}

.candidature .name {
  font-size: 1.2em;
}

.candidature .image {
  flex: 1 1 30%;
  min-width: 120px;
}

.candidature .content {
  flex: 1 1 70%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.candidature .slogan {
  text-transform: none;
  font-size: 1.1em;
  border-left: var(--primary-color) solid 4px;
  padding-left: 0.5em;
  padding-top: 0px;
  line-height: 1.2em;
  margin-top: 0.3em;
}

.candidature div.contact {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
}

.candidature .old {
  display: flex;
  flex-wrap: wrap;
}

.candidature a.contact:first-child {
  margin-right: 0.5em;
}

.candidature a.contact {
  margin-left: 0;
  line-height: 2.2em;
}

.card.voting-recommendation {
  flex-direction: row;
  flex-wrap: wrap;
}
.card.card.voting-recommendation > header {
  flex: 1 0 80%;
  padding: 1rem;
}
.card.card.voting-recommendation > header > a {
  color: var(--primary-color);
  font-size: 0.8em;
  text-decoration: underline;
}

.card.voting-recommendation > .parole {
  flex: 1 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: bold;
  color: var(--white);
  max-width: 100%;
  min-width: 5em;
  padding: 0.5em;
  min-height: 3em;
  hyphens: auto;
  line-height: 1.1em;
}
.parole.yes {
  background-color: var(--green);
}

.parole.no {
  background-color: var(--red);
}

.parole.open {
  background-color: var(--grey);
}

.external.YouTube iframe {
  height: 100%;
  width: 100%;
  position: absolute;
}
.external.YouTube {
  padding-bottom: 65.25%;
  height: 0;
  position: relative;
}

nav.main a,
nav.top a,
nav.meta a {
  color: var(--light-color);
}

nav.main.sticky a {
  color: var(--text-color);
}

nav.main.sticky .buttons a {
  color: var(--light-color);
}
