@charset "UTF-8";
/* Links */
/*Tables */
/* Typographie */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  text-align: left;
  background-color: #f6f6f6;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #5396D3;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #5396D3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

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

table {
  border-collapse: collapse;
}

caption {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #000;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 1rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1 {
  font-size: 3rem;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.col, .col-1, .col-2 {
  padding: 0 1rem;
}

.col {
  flex-basis: 100%;
}

.col-1 {
  flex: 1;
}

/* .col-2 { flex: 2; } */
.col-1\/2 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1rem;
}

@media only screen and (max-width: 600px) {
  .col-1\/2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.centered-vh {
  justify-content: center;
  align-items: center;
}

.logo-container {
  flex: 1;
}

.logo {
  display: inline-block;
  position: relative;
  top: 0.3rem;
  height: 2.75rem;
  margin-left: 1rem;
}

.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1;
}

.black-bg {
  background-color: #333;
}

.red-bg {
  background-color: #ED1C24;
}

.yellow-bg {
  background-color: #FFD754;
}

.header-image {
  text-align: left;
}
.header-image img {
  max-width: 800px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

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

/* Archive Page */
.article-header h3 {
  margin-bottom: 0;
}

/* Navigation */
.nav-button, footer .scroll-top {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: none;
  background-color: transparent;
  text-align: center;
  font-size: 2rem;
  line-height: 3rem;
  margin: 0 0.33rem;
  cursor: pointer;
  box-shadow: none;
  transition: all 100ms ease-out;
  position: relative;
  z-index: 1;
  color: #fff;
}
.nav-button .logo, footer .scroll-top .logo {
  top: 0.3rem;
}
.nav-button.btn-menu, footer .btn-menu.scroll-top {
  top: 0.1rem;
}
.nav-button.btn-contact, footer .btn-contact.scroll-top {
  top: 0.3rem;
  overflow: hidden;
  background-color: #ED1C24;
}
.nav-button.btn-contact:hover, footer .btn-contact.scroll-top:hover {
  color: #333;
  box-shadow: 0 2px 2px #888888;
}

.header-scrolled {
  overflow: hidden;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
}

.button-bar {
  height: 1.5rem;
  text-align: center;
}

/* Slider */
.slideshow {
  position: relative;
  height: 620px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.slideshow img {
  max-width: 100%;
  height: auto;
  position: absolute;
}

.slide {
  position: relative;
  margin: 0;
}

h1, h2 {
  color: #FFF;
  background-color: #ED1C24;
  padding: 0.5rem 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

h1, h2 {
  font-size: 1.5rem;
}

h2 {
  /* max-width: 50%; */
  text-transform: uppercase;
  font-style: italic;
  display: inline-block;
  letter-spacing: 0.2rem;
}

h3.c-accordion__title {
  background-color: transparent;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-right: 3rem;
}
h3.c-accordion__title:after {
  right: 1rem;
  font-size: 1.5rem;
}
h3.c-accordion__title:focus {
  outline: 1px solid #D3D3D3;
  background-color: #fff;
}

h4 {
  font-style: italic;
  font-size: 1.25rem;
  color: #666;
}

.wp-block-group {
  margin-bottom: 2.5rem;
}

.c-accordion__content {
  margin-left: 1rem;
  margin-right: 2rem;
}

.c-accordion__item:first-child {
  margin-top: 1rem;
}

.c-accordion__item {
  margin-top: 1rem;
}

.c-accordion__item ~ .c-accordion__item {
  margin-top: 0;
}

p {
  /* padding: 0 $base-padding-left-right; */
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

p ~ h2 {
  margin-top: 2rem;
}

.main-content {
  margin-bottom: 2rem;
}

.main-article-header {
  margin-top: 1rem;
  text-align: center;
}

footer {
  min-height: 18rem;
  border-top: 2px solid #333;
  padding: 2rem;
  position: relative;
  box-shadow: inset 0px 6px 4px 0px rgba(0, 0, 0, 0.25);
}
footer span {
  color: #fff;
  display: block;
}
footer span.contact-name {
  font-size: 1.5rem;
}
footer span.contact-phone {
  font-weight: 300;
}
footer span.contact-mail {
  font-weight: 300;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #333;
}
footer .scroll-top {
  position: absolute;
  top: -2rem;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 0;
}

.footer-logo {
  height: 5rem;
  display: block;
  margin-bottom: 3rem;
  max-width: 60%;
}

/* Sidebar Widgets */
.op-table {
  margin: 0 1rem;
  width: 100%;
}

.op-table tr.op-row-day.highlighted th,
.op-table tr.op-row-day.highlighted td {
  color: #7C9D94 !important;
}

.widget {
  margin-bottom: 1.5rem;
}
.widget .panel__head h4 {
  margin-bottom: 1rem;
}
.widget.mapbox-widget .panel__head h4 {
  margin-bottom: 0;
}

/* pagination */
.pagination {
  text-align: center;
  width: 100%;
  margin: 1.5rem 0;
}
.pagination ul {
  list-style: none;
}
.pagination li {
  display: inline-block;
  margin: 0.25rem;
}
.pagination a {
  padding: 0.5rem 1rem;
  background-color: #FFD754;
  color: #fff;
}
.pagination a:hover {
  background-color: #ffc508;
  text-decoration: none;
}
.pagination li.active a {
  color: #333;
}

/* Thumb Effect */
.thumb-effect {
  position: relative;
}
.thumb-effect a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: color;
  background-color: #7C9D94;
  opacity: 0.75;
  transition: opacity 200ms ease-out;
}
.thumb-effect a:hover {
  opacity: 0;
}

h4.sponsors {
  background: transparent;
  color: #666;
}

/* Menu */
.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu li {
   margin: 0;
  padding: 0;
}
.menu a {
  padding: 0.75rem 1rem;
  display: inline-block;
  width: 100%;
}

#main-menu .menu {
  background-color: #fff5d4;
}
#main-menu .menu a {
  color: #333;
  border-bottom: 1px solid #fff;
}

#footer-menu .menu {
  margin: 0 -1rem 1rem;
}
#footer-menu .menu li {
  display: inline-block;
}
#footer-menu .menu a {
  color: #fff;
}

.frontpage-wrap {
  padding-top: 1rem;
  margin-top: -7rem;
  margin-bottom: -2rem;
  border-top: 2px solid #333;
  background-color: #fff;
  position: relative;
}

.relative {
  position: relative;
}

a, a:hover {
  color: #ED1C24;
}

.wp-block-quote {
  padding: 1rem 2rem;
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
}
.wp-block-quote cite {
  text-align: right;
  float: right;
  font-size: 0.9rem;
  font-style: normal;
}

.wp-block-image {
  text-align: center;
}

ol, ul {
  margin-top: 0.5rem;
}
ol li, ul li {
  margin-bottom: 0.5rem;
}

.wp-block-columns.mobile-thirds .wp-block-column:nth-child(2n-1) {
  flex-basis: 33.3% !important;
  padding-right: 0.5rem;
  margin-left: 0;
}
.wp-block-columns.mobile-thirds .wp-block-column:nth-child(2n) {
  flex-basis: 66.6% !important;
  padding-left: 0.5rem;
  margin-left: 0;
}

.wp-block-columns.left-zero .wp-block-column:nth-child(2n-1) {
  flex-basis: 0% !important;
  padding-right: 0;
  margin-left: 0;
}
.wp-block-columns.left-zero .wp-block-column:nth-child(2n) {
  flex-basis: 100% !important;
  padding-left: 0.5rem;
  margin-left: 0;
}

body {
  width: 100%;
  height: 100%;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}
.slideout-menu h2 {
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.slideout-menu-left {
  left: 0;
  box-shadow: 10px 0px 5px 0px rgba(0, 0, 0, 0.45);
  background-color: #FEFEFE;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  will-change: transform;
  background-color: #FFF;
  /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.eot?30987581");
  src: url("../fonts/fontello.eot?30987581#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2?30987581") format("woff2"), url("../fonts/fontello.woff?30987581") format("woff"), url("../fonts/fontello.ttf?30987581") format("truetype"), url("../fonts/fontello.svg?30987581#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?30987581#fontello') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-phone:before {
  content: "\E800";
}

/* '' */
.icon-mail:before {
  content: "\E801";
}

/* '' */
.icon-menu:before {
  content: "\F0C9";
}

/* '' */
.icon-up:before {
  content: "\F102";
}

/* '' */