/* -- Grid -- */
/* -- Colors -- */
/* -- Z-index -- */
/* -- make a video responsive -- */
.videoContainer {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
* Global classes
*/
.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.horz-align {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.vert-horz-align {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.lazyload-loading {
  opacity: 0;
  transition: opacity 0.5 ease;
}

.lazyload-loading.lazyload-show {
  opacity: 1;
}

/* for fullscreen video/slider
.fix-footer {
  min-height: calc(100vh - 70px);
}
*/
@font-face {
  font-family: "Futura Magazine";
  src: url("../fonts/FuturaMagazine-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Futura Magazine";
  src: url("../fonts/FuturaMagazine-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Futura Magazine";
  src: url("../fonts/FuturaMagazine-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Futura Magazine";
  src: url("../fonts/FuturaMagazine-Heavy.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 0;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 0;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 0;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 0;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 0;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 0;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 0;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 0;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 0;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 0;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 0;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 641px) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0;
  }

  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .row.start-sm {
    justify-content: flex-start;
  }

  .row.center-sm {
    justify-content: center;
  }

  .row.end-sm {
    justify-content: flex-end;
  }

  .row.top-sm {
    align-items: flex-start;
  }

  .row.middle-sm {
    align-items: center;
  }

  .row.bottom-sm {
    align-items: flex-end;
  }

  .row.around-sm {
    justify-content: space-around;
  }

  .row.between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0;
  }

  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .row.start-md {
    justify-content: flex-start;
  }

  .row.center-md {
    justify-content: center;
  }

  .row.end-md {
    justify-content: flex-end;
  }

  .row.top-md {
    align-items: flex-start;
  }

  .row.middle-md {
    align-items: center;
  }

  .row.bottom-md {
    align-items: flex-end;
  }

  .row.around-md {
    justify-content: space-around;
  }

  .row.between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0;
  }

  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .row.start-lg {
    justify-content: flex-start;
  }

  .row.center-lg {
    justify-content: center;
  }

  .row.end-lg {
    justify-content: flex-end;
  }

  .row.top-lg {
    align-items: flex-start;
  }

  .row.middle-lg {
    align-items: center;
  }

  .row.bottom-lg {
    align-items: flex-end;
  }

  .row.around-lg {
    justify-content: space-around;
  }

  .row.between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 1791px) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0;
  }

  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0;
  }

  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0;
  }

  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0;
  }

  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0;
  }

  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0;
  }

  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0;
  }

  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0;
  }

  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0;
  }

  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }

  .row.start-xl {
    justify-content: flex-start;
  }

  .row.center-xl {
    justify-content: center;
  }

  .row.end-xl {
    justify-content: flex-end;
  }

  .row.top-xl {
    align-items: flex-start;
  }

  .row.middle-xl {
    align-items: center;
  }

  .row.bottom-xl {
    align-items: flex-end;
  }

  .row.around-xl {
    justify-content: space-around;
  }

  .row.between-xl {
    justify-content: space-between;
  }

  .first-xl {
    order: -1;
  }

  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 0;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 640px) {
  .show-xs-only {
    display: block !important;
  }

  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 641px) {
  .show-sm {
    display: block !important;
  }

  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .show-sm-only {
    display: block !important;
  }

  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .show-md {
    display: block !important;
  }

  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .show-md-only {
    display: block !important;
  }

  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1440px) {
  .show-lg {
    display: block !important;
  }

  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1790px) {
  .show-lg-only {
    display: block !important;
  }

  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1791px) {
  .show-xl {
    display: block !important;
  }

  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xl {
    display: none !important;
  }
}
/*
* Base/global css style
*/
* ::-moz-selection {
  color: white;
  background: black;
}
* ::selection {
  color: white;
  background: black;
}

p, h1, h2, h3, h4, h5, h6, ul, li {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: underline;
  background-color: none;
}
a:focus {
  text-decoration: none;
}

body {
  padding: 0;
  margin: 0;
}

button:active {
  outline: none;
  border: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

html {
  font-size: 6.9vw;
}
@media only screen and (min-width: 641px) {
  html {
    font-size: 5.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  html {
    font-size: 5vw;
  }
}
@media print {
  html {
    font-size: 16px;
  }
}

* {
  font-family: "Futura Magazine", monospace;
  font-size: 1rem;
  line-height: 1.1;
}

p {
  font-weight: 400;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.small-caps {
  font-variant-caps: all-small-caps;
}

/* STYLES */
h1 {
  font-size: 1rem;
  font-weight: bold;
}
h1 b, h1 strong {
  color: white;
  background-color: black;
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-top: 0.2em;
}

h2 {
  font-size: 1rem;
  font-weight: normal;
}

h3, h3 * {
  font-size: 0.85rem;
  font-weight: bold;
}
h3 b, h3 strong {
  color: white;
  background-color: black;
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-top: 0.2em;
  font-weight: 500;
}

h4, h4 * {
  font-size: 0.85rem;
  font-weight: normal;
}

.smaller-size, body.front-page .section > .section__square p, body.front-page .section > .section__square p *, body.front-page .section > .section__square li, body.front-page .section > .section__square li *,
body.page--homepage .section > .section__square p,
body.page--homepage .section > .section__square p *,
body.page--homepage .section > .section__square li,
body.page--homepage .section > .section__square li *, .section .section__square p, .section .section__square p *, .section .section__square li, .section .section__square li *, .section li, .section li *,
.section p, .section p *,
.section h5, .section h6,
.section h5 *, .section h6 * {
  font-size: 0.6rem;
  line-height: 1.3;
}
@media only screen and (min-width: 1024px) {
  .smaller-size, body.front-page .section > .section__square p, body.front-page .section > .section__square p *, body.front-page .section > .section__square li, body.front-page .section > .section__square li *,
body.page--homepage .section > .section__square p,
body.page--homepage .section > .section__square p *,
body.page--homepage .section > .section__square li,
body.page--homepage .section > .section__square li *, .section .section__square p, .section .section__square p *, .section .section__square li, .section .section__square li *, .section li, .section li *,
.section p, .section p *,
.section h5, .section h6,
.section h5 *, .section h6 * {
    font-size: 0.5rem;
  }
}

h5 {
  padding-left: 1em;
  font-weight: bold;
  color: black;
}
h5 b, h5 strong {
  color: white;
  background-color: black;
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-top: 0.2em;
}

h6 {
  font-weight: normal;
  padding-left: 1em;
}

/* SPECIAL */
.p--homepage, body.front-page .section li, body.front-page .section p,
body.page--homepage .section li,
body.page--homepage .section p, .p--homepage *, body.front-page .section li *, body.front-page .section p *,
body.page--homepage .section li *,
body.page--homepage .section p * {
  font-size: 1rem;
  line-height: 1.1;
}

p.p--caption, p.p--caption * {
  font-size: 0.4rem;
}

/* SPACING */
h1, h2, h3, h4 {
  padding-bottom: 0.9em;
}

p + p {
  padding-top: 0.9em;
}

/* LINKS */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* LIST */
ul li {
  list-style: none;
  padding-left: 1.5em;
}

.link--underlined:not(.link--not-underlined), a span:not(.link--not-underlined) {
  border-bottom: 0.08em solid black;
}
.ua-mobile-iphone.ua-safari .link--underlined:not(.link--not-underlined), .ua-mobile-iphone.ua-safari a span:not(.link--not-underlined), a .ua-mobile-iphone.ua-safari span:not(.link--not-underlined), .ua-desktop-macintosh.ua-chrome .link--underlined:not(.link--not-underlined), .ua-desktop-macintosh.ua-chrome a span:not(.link--not-underlined), a .ua-desktop-macintosh.ua-chrome span:not(.link--not-underlined), .ua-desktop-macintosh.ua-safari .link--underlined:not(.link--not-underlined), .ua-desktop-macintosh.ua-safari a span:not(.link--not-underlined), a .ua-desktop-macintosh.ua-safari span:not(.link--not-underlined) {
  border-bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, white), color-stop(1%, black));
  background-image: linear-gradient(white 1%, black 1%);
  background-repeat: repeat-x;
  background-position: 0 1.2rem;
  background-size: 0.08em 0.08em;
}
.link--underlined:not(.link--not-underlined):hover, a span:not(.link--not-underlined):hover {
  border-color: grey;
}
.ua-mobile-iphone.ua-safari .link--underlined:not(.link--not-underlined):hover, .ua-mobile-iphone.ua-safari a span:not(.link--not-underlined):hover, a .ua-mobile-iphone.ua-safari span:not(.link--not-underlined):hover, .ua-desktop-macintosh.ua-chrome .link--underlined:not(.link--not-underlined):hover, .ua-desktop-macintosh.ua-chrome a span:not(.link--not-underlined):hover, a .ua-desktop-macintosh.ua-chrome span:not(.link--not-underlined):hover, .ua-desktop-macintosh.ua-safari .link--underlined:not(.link--not-underlined):hover, .ua-desktop-macintosh.ua-safari a span:not(.link--not-underlined):hover, a .ua-desktop-macintosh.ua-safari span:not(.link--not-underlined):hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, white), color-stop(1%, grey));
  background-image: linear-gradient(white 1%, grey 1%);
}

.link--underlined-on-hover {
  border: 0;
  text-decoration: none;
}
.link--underlined-on-hover:hover {
  text-decoration: none;
  border-bottom: 0.08em solid black;
}
.ua-mobile-iphone.ua-safari .link--underlined-on-hover, .ua-desktop-macintosh.ua-chrome .link--underlined-on-hover, .ua-desktop-macintosh.ua-safari .link--underlined-on-hover {
  border-bottom: 0;
  background-image: none;
  background-repeat: repeat-x;
  background-position: 0 1.2em;
  background-size: 0.08em 0.08em;
}
.ua-mobile-iphone.ua-safari .link--underlined-on-hover:hover, .ua-desktop-macintosh.ua-chrome .link--underlined-on-hover:hover, .ua-desktop-macintosh.ua-safari .link--underlined-on-hover:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, white), color-stop(1%, black));
  background-image: linear-gradient(white 1%, black 1%);
}
.link--underlined-on-hover.active {
  border-bottom: 0.08em solid black;
}
.ua-mobile-iphone.ua-safari .link--underlined-on-hover.active, .ua-desktop-macintosh.ua-chrome .link--underlined-on-hover.active, .ua-desktop-macintosh.ua-safari .link--underlined-on-hover.active {
  border-bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, white), color-stop(1%, black));
  background-image: linear-gradient(white 1%, black 1%);
}

main {
  margin-top: 5px;
}
@media only screen and (min-width: 641px) {
  main {
    margin-top: 0.25em;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5px;
  margin-top: 20px;
  flex-wrap: wrap;
  z-index: 200;
}
@media only screen and (min-width: 641px) {
  header {
    margin: 0 0.25em;
    margin-top: 0.25em;
    flex-wrap: nowrap;
  }
}
header a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
}
header nav ul li {
  margin: 0;
  padding: 0;
}
header nav ul li a {
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-top: 0.25em;
  line-height: 1.3;
  font-size: 0.86rem;
  margin-right: 0.25em;
  letter-spacing: 1px;
}
@media only screen and (min-width: 641px) {
  header nav ul li a {
    font-size: 0.7rem;
    font-weight: 500;
  }
}

.menu nav ul li:nth-child(1) a {
  background-color: transparent;
}
.menu nav ul li:nth-child(2) a {
  background-color: black;
}
.menu nav ul li:nth-child(3) a {
  background-color: #5f6969;
}
.menu nav ul li:nth-child(4) a {
  background-color: #737387;
}
.menu nav ul li a {
  color: white;
  background-color: black;
}
.menu nav ul li a:hover {
  background-color: #ffd500 !important;
}
.menu nav ul li [data-accessibility] {
  width: 1.25em;
  height: 1.25em;
  padding: 0;
  padding-right: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: -0.1em;
}
@media only screen and (min-width: 641px) {
  .menu nav ul li [data-accessibility] {
    margin-top: 0.15em;
  }
}
.menu nav ul li [data-accessibility]:hover {
  background-color: transparent !important;
}
.menu nav ul li [data-accessibility]:hover .acess-st0 {
  fill: #000000;
}
.menu nav ul li [data-accessibility]:hover .acess-st2 {
  fill: #FFFFFF;
}

.icons {
  padding-left: 1.3em;
}
@media only screen and (min-width: 641px) {
  .icons {
    padding-left: 0;
  }
}
.icons ul li:last-child a {
  padding-right: 0;
  margin-right: 0;
}
.icons ul li a {
  font-size: 0.7rem;
}
@media only screen and (min-width: 641px) {
  .icons ul li a {
    font-size: 0.6rem;
  }
}
.icons ul li.icons__icon--lang a {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 1.6em;
  margin-right: 0;
  padding-left: calc(5px/2);
  padding-right: calc(5px/2);
  padding-top: calc(5px/2);
  margin-left: calc(5px/2);
  margin-right: calc(5px/2);
  margin-top: calc(5px/2);
}
@media only screen and (min-width: 641px) {
  .icons ul li.icons__icon--lang a {
    width: 1.35em;
    padding-left: calc(0.25em/2 - 0.1em/2);
    padding-right: calc(0.25em/2 - 0.1em/2);
    padding-top: calc(0.25em/2);
    margin-left: calc(0.25em/2);
    margin-right: calc(0.25em/2);
    margin-top: calc(0.25em/2);
  }
}
.icons ul li.icons__icon--lang a:before {
  content: "";
  position: absolute;
  top: calc(-0.1em - 2px);
  left: -0.5px;
  width: 1.6em;
  height: 1.6em;
  background-color: white;
  border-radius: 50%;
  z-index: -1;
  border: 2px solid black;
}
@media only screen and (min-width: 641px) {
  .icons ul li.icons__icon--lang a:before {
    width: 1.5em;
    height: 1.5em;
  }
}
@media only screen and (min-width: 1024px) {
  .icons ul li.icons__icon--lang a:before {
    top: calc(-0.05em - 2px);
  }
}
@media only screen and (min-width: 1440px) {
  .icons ul li.icons__icon--lang a:before {
    border: 3px solid black;
    top: calc(-0.05em - 3px);
    left: -3px;
  }
}
.icons ul li.icons__icon--lang:nth-child(1) {
  color: #00a439;
}
.icons ul li.icons__icon--lang:nth-child(1) a:before {
  border-color: black;
}
@media only screen and (min-width: 641px) {
  .icons ul li.icons__icon--lang:nth-child(1) a:before {
    border-color: #00a439;
  }
}
.icons ul li.icons__icon--lang:nth-child(1).icons__icon--lang-active a,
.icons ul li.icons__icon--lang:nth-child(1) a:hover {
  color: white;
}
.icons ul li.icons__icon--lang:nth-child(1).icons__icon--lang-active a:before,
.icons ul li.icons__icon--lang:nth-child(1) a:hover:before {
  background-color: #00a439;
}
.icons ul li.icons__icon--lang:nth-child(2) {
  color: #009ae6;
}
.icons ul li.icons__icon--lang:nth-child(2) a:before {
  border-color: black;
}
@media only screen and (min-width: 641px) {
  .icons ul li.icons__icon--lang:nth-child(2) a:before {
    border-color: #009ae6;
  }
}
.icons ul li.icons__icon--lang:nth-child(2).icons__icon--lang-active a,
.icons ul li.icons__icon--lang:nth-child(2) a:hover {
  color: white;
}
.icons ul li.icons__icon--lang:nth-child(2).icons__icon--lang-active a:before,
.icons ul li.icons__icon--lang:nth-child(2) a:hover:before {
  background-color: #009ae6;
}
.icons ul li.icons__icon--lang:nth-child(3) {
  color: #e3061f;
}
.icons ul li.icons__icon--lang:nth-child(3) a:before {
  border-color: black;
}
@media only screen and (min-width: 641px) {
  .icons ul li.icons__icon--lang:nth-child(3) a:before {
    border-color: #e3061f;
  }
}
.icons ul li.icons__icon--lang:nth-child(3).icons__icon--lang-active a,
.icons ul li.icons__icon--lang:nth-child(3) a:hover {
  color: white;
}
.icons ul li.icons__icon--lang:nth-child(3).icons__icon--lang-active a:before,
.icons ul li.icons__icon--lang:nth-child(3) a:hover:before {
  background-color: #e3061f;
}

.icons__icon--pdf {
  padding-left: 0.3em;
}
@media only screen and (min-width: 641px) {
  .icons__icon--pdf {
    padding-right: 3px;
    padding-left: 0.2em;
  }
}
.icons__icon--pdf a {
  padding-bottom: 0.1em;
  border: 2px solid;
  background-color: white;
}
@media only screen and (min-width: 641px) {
  .icons__icon--pdf a {
    border: 0;
  }
}
.icons__icon--pdf a:hover {
  background-color: black;
  color: white;
}
.icons__icon--pdf svg {
  display: inline-block;
  height: 1em;
  font-size: 0.6rem;
  transform: translate(-0.2em, 0.2em);
}

body.accessibility-mode #section-neb,
body.accessibility-mode #section-hero-img,
body.accessibility-mode .el {
  display: none;
}

@media print {
  header,
#section-neb,
#section-hero-img,
.el {
    display: none;
  }
}
.section {
  margin: 0 5px;
  padding-top: 0.5em;
  margin-top: 4em;
}
@media only screen and (min-width: 641px) {
  .section {
    margin: 0 0.25em;
    margin-top: 1.5em;
    padding-top: 0.5em;
  }
}
.section:last-of-type {
  margin-bottom: calc(5px - 0.35em);
}
@media only screen and (min-width: 641px) {
  .section:last-of-type {
    margin-bottom: calc(0.25em - 0.35em);
  }
}
.section ul {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
.section li + li {
  padding-top: 0.5em;
}
.section a {
  text-decoration: underline;
}
.section a:hover {
  color: #ffd500;
}

.section--text {
  border-top: 0.25em solid;
}

.section .section__square {
  background-color: #e3061f;
  color: white;
  padding: 0.25em;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.section .section__square p {
  padding-left: 1.5em;
  margin-bottom: 0.2em;
}
.section .section__square h5, .section .section__square h6 {
  color: white !important;
}
.section .section__square ul {
  padding-top: 0;
  padding-bottom: 0;
}
.section .section__square li {
  padding: 0;
}
.section .section__square li:not(:last-child) {
  border-bottom: 0.05em solid;
  padding-bottom: 0.2em;
  margin-bottom: 0.2em;
}
@media print {
  .section .section__square {
    color: black;
  }
}

.section__border {
  border-top: 0.1em solid;
  padding-top: 0.5em;
  margin-top: 1em;
}
@media only screen and (min-width: 641px) {
  .section__border {
    margin-top: 1em;
    padding-top: 0.5em;
  }
}

/* COLORS */
.section--text-red {
  color: #e3061f;
}
.section--text-red .section__square {
  background-color: #e3061f;
}
@media print {
  .section--text-red p, .section--text-red p * {
    color: black;
  }
}
.section--text-red h1 b, .section--text-red h3 b, .section--text-red h1 strong, .section--text-red h3 strong {
  background-color: #e3061f;
}

.section--text-blue {
  color: #009ae6;
}
.section--text-blue .section__square {
  background-color: #009ae6;
}
@media print {
  .section--text-blue p, .section--text-blue p * {
    color: black;
  }
}
.section--text-blue h1 b, .section--text-blue h3 b, .section--text-blue h1 strong, .section--text-blue h3 strong {
  background-color: #009ae6;
}

.section--text-green {
  color: #00a439;
}
.section--text-green .section__square {
  background-color: #00a439;
}
@media print {
  .section--text-green p, .section--text-green p * {
    color: black;
  }
}
.section--text-green h1 b, .section--text-green h3 b, .section--text-green h1 strong, .section--text-green h3 strong {
  background-color: #00a439;
}

.section--text-violet {
  color: #5933b3;
}
.section--text-violet .section__square {
  background-color: #5933b3;
}
@media print {
  .section--text-violet p, .section--text-violet p * {
    color: black;
  }
}
.section--text-violet h1 b, .section--text-violet h3 b, .section--text-violet h1 strong, .section--text-violet h3 strong {
  background-color: #5933b3;
}

.section--text-orange {
  color: #e05000;
}
.section--text-orange .section__square {
  background-color: #e05000;
}
@media print {
  .section--text-orange p, .section--text-orange p * {
    color: black;
  }
}
.section--text-orange h1 b, .section--text-orange h3 b, .section--text-orange h1 strong, .section--text-orange h3 strong {
  background-color: #e05000;
}

.section--text-grey-1 {
  color: #5f6969;
}
.section--text-grey-1 .section__square {
  background-color: #5f6969;
}
@media print {
  .section--text-grey-1 p, .section--text-grey-1 p * {
    color: black;
  }
}
.section--text-grey-1 h1 b, .section--text-grey-1 h3 b, .section--text-grey-1 h1 strong, .section--text-grey-1 h3 strong {
  background-color: #5f6969;
}

.section--text-grey-2 {
  color: #737387;
}
.section--text-grey-2 .section__square {
  background-color: #737387;
}
@media print {
  .section--text-grey-2 p, .section--text-grey-2 p * {
    color: black;
  }
}
.section--text-grey-2 h1 b, .section--text-grey-2 h3 b, .section--text-grey-2 h1 strong, .section--text-grey-2 h3 strong {
  background-color: #737387;
}

.block-image {
  margin-bottom: 0.5em;
}
.block-image .p--caption {
  padding-top: 5px;
}

p + .block-image {
  margin-top: 0.5em;
}

.el {
  position: fixed;
  z-index: -200;
  pointer-events: none;
  width: 13vw;
  height: 13vw;
  top: -13vw;
  right: -13vw;
  background-color: #e3061f;
}

.el--square {
  -webkit-animation: rotating 150s linear infinite;
  animation: rotating 150s linear infinite;
}

.el--circle {
  border-radius: 100%;
}

.el--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5vw 11.258vw 6.5vw;
  border-color: transparent transparent #e3061f transparent;
  -webkit-animation: rotating 150s linear infinite;
  animation: rotating 150s linear infinite;
}

.el--red {
  background-color: #e3061f;
}
.el--red.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #e3061f transparent;
}

.el--green {
  background-color: #00a439;
}
.el--green.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #00a439 transparent;
}

.el--blue {
  background-color: #009ae6;
}
.el--blue.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #009ae6 transparent;
}

.el--violet {
  background-color: #5933b3;
}
.el--violet.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #5933b3 transparent;
}

.el--yellow {
  background-color: #ffd500;
}
.el--yellow.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #ffd500 transparent;
}

.el--orange {
  background-color: #e05000;
}
.el--orange.el--triangle {
  background-color: transparent;
  border-color: transparent transparent #e05000 transparent;
}

.el--sun {
  position: fixed;
  z-index: -1;
  background-color: #ffd500;
  border-radius: 100%;
  width: calc(100vw - 5px*2);
  height: calc(100vw - 5px*2);
  margin: 5px;
  top: -100vw;
  right: 0;
}
@media only screen and (min-width: 641px) {
  .el--sun {
    width: calc(100vw - 0.25em*2);
    height: calc(100vw - 0.25em*2);
    margin: 0.25em;
    top: -100vw;
  }
}

.el-conf {
  position: absolute;
  z-index: 2;
  left: calc(100vw/2 - 70vw/2);
  top: 100vh;
  width: 70vw;
  height: 70vw;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  background-color: white;
  pointer-events: all;
}
@media only screen and (min-width: 641px) {
  .el-conf {
    left: calc(100vw/2 - 60vw/2);
    top: calc(100vh + 60vw/2);
    width: 60vw;
    height: 60vw;
  }
}
@media only screen and (min-width: 1024px) {
  .el-conf {
    left: calc(100vw/2 - 30vw/2);
    top: calc(100vh + 30vw);
    width: 30vw;
    height: 30vw;
  }
}
.el-conf:hover {
  cursor: pointer;
  background-image: none !important;
}
.el-conf:hover .el-conf__date,
.el-conf:hover .el-conf__local,
.el-conf:hover .el-conf__hash {
  color: black;
}

.hero-img__boat {
  pointer-events: none;
}

.el-conf__text {
  width: 90%;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.el-conf__text, .el-conf__text * {
  font-size: 1.1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1024px) {
  .el-conf__text, .el-conf__text * {
    font-size: 0.73rem;
  }
}

.el-conf__date {
  color: #ffd500;
}

.el-conf__hash {
  color: white;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1024px) {
  .el-conf__hash {
    font-size: 0.9rem;
  }
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
#section-neb {
  position: absolute;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
#section-neb img {
  width: 23vw;
}
@media only screen and (min-width: 1024px) {
  #section-neb img {
    width: 13vw;
  }
}

@-webkit-keyframes marquee-european {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-200vh);
  }
  100% {
    transform: translateY(-200vh);
  }
}
@keyframes marquee-european {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-200vh);
  }
  100% {
    transform: translateY(-200vh);
  }
}
@-webkit-keyframes marquee-new {
  0% {
    transform: translateY(100vh);
  }
  50% {
    transform: translateY(-500vh);
  }
  100% {
    transform: translateY(-500vh);
  }
}
@keyframes marquee-new {
  0% {
    transform: translateY(200vh);
  }
  50% {
    transform: translateY(-200vh);
  }
  100% {
    transform: translateY(-200vh);
  }
}
@-webkit-keyframes marquee-bauhaus {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-240vh);
  }
  100% {
    transform: translateY(-240vh);
  }
}
@keyframes marquee-bauhaus {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-240vh);
  }
  100% {
    transform: translateY(-240vh);
  }
}
.neb__new {
  pointer-events: none;
  position: fixed;
  left: 0.25em;
  top: 100vh;
  z-index: 2;
  -webkit-animation: marquee-new 40s linear infinite;
  animation: marquee-new 40s linear infinite;
}

.neb__european {
  pointer-events: none;
  position: fixed;
  top: 0.25em;
  left: 0.25em;
  top: 100vh;
  -webkit-animation: marquee-european 40s linear infinite;
  animation: marquee-european 40s linear infinite;
}

.neb__bauhaus {
  pointer-events: none;
  position: fixed;
  right: 0.25em;
  bottom: 0.25em;
  top: 100vh;
  -webkit-animation: marquee-bauhaus 40s linear infinite;
  animation: marquee-bauhaus 40s linear infinite;
}

#section-hero-img {
  margin-top: 20vh;
}
@media only screen and (min-width: 1024px) {
  #section-hero-img {
    margin-top: 10vh;
  }
}

body.front-page .section li, body.front-page .section p,
body.page--homepage .section li,
body.page--homepage .section p {
  font-size: 1rem;
  line-height: 1.1;
}
.logos {
  width: 100%;
  display: flex;
  justify-content: stretch;
}

.logos__logo img {
  display: block;
}

.logos {
  position: relative;
  flex-wrap: wrap;
  margin-top: 0.5em;
  z-index: -200;
}

.logos__logo {
  position: relative;
  margin: 0.3em;
  flex-basis: calc(100% /4 - 0.3em*2);
  height: calc((100vw - 0.25em*2) /4 - 0.3em*2);
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: all;
}
@media only screen and (min-width: 1024px) {
  .logos__logo {
    flex-basis: calc(100% /6 - 0.3em*2);
    height: calc((100vw - 0.25em*2) /6 - 0.3em*2);
  }
}
@media print {
  .logos__logo {
    flex-basis: calc(100% /6 - 0.3em*2);
    height: calc((100vw - 0.25em*2) /6 - 0.3em*2);
  }
}
.logos__logo div {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-print-color-adjust: exact !important;
  /* Chrome, Safari, Edge */
  color-adjust: exact !important;
}
.logos__logo:hover {
  opacity: 0.5;
}

body.single-conference .section {
  padding-top: calc(0.5em - (0.2 * 0.85em));
}

nav.conference-menu a {
  text-decoration: none;
}
nav.conference-menu ul {
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
}
nav.conference-menu ul li {
  padding: 0.3em;
  padding-bottom: 0;
  background-color: #737387;
  color: white;
  font-size: 0.45em;
  margin-right: calc(5px - 0.35em);
  margin-bottom: calc(5px - 0.35em);
}
@media only screen and (min-width: 641px) {
  nav.conference-menu ul li {
    font-size: 0.35em;
    margin-right: calc(0.25em - 0.35em);
    margin-bottom: calc(0.25em - 0.35em);
  }
}
@media print {
  nav.conference-menu ul li {
    color: black;
    font-size: inherit;
  }
}
nav.conference-menu ul li a {
  font-size: inherit;
}
nav.conference-menu ul li:hover {
  background-color: #ffd500;
}
nav.conference-menu ul li:hover a {
  color: white;
}

.speaker {
  display: flex;
  flex-wrap: wrap;
  color: black;
  border-bottom: 0.1em solid #737387;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
@media print {
  .speaker {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 641px) {
  .speaker {
    flex-wrap: nowrap;
  }
}

.speaker__img {
  flex-basis: 100%;
  height: calc((100vw - 0.25em*2));
}
@media print {
  .speaker__img {
    flex-basis: 30%;
    height: calc((100vw - 0.25em*2) / 10 * 3);
  }
}
@media only screen and (min-width: 641px) {
  .speaker__img {
    flex-basis: 30%;
    height: calc((100vw - 0.25em*2) / 10 * 3);
  }
}
.speaker__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker__info {
  flex-basis: 100%;
  padding-top: 0.5em;
}
@media print {
  .speaker__info {
    flex-basis: 60%;
    padding-top: 0;
    padding-left: 0.5em;
  }
}
@media only screen and (min-width: 641px) {
  .speaker__info {
    flex-basis: 60%;
    padding-top: 0;
    padding-left: 0.5em;
  }
}
.speaker__info .speaker__name {
  padding-bottom: 0;
}
.speaker__info p {
  padding-top: 0.5em;
}
@media only screen and (min-width: 641px) {
  .speaker__info p, .speaker__info p * {
    font-size: 0.25rem;
  }
}

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