/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*
 * Swiper 2.6.1
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2014, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: May 6, 2014
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  -webkit-transition-property: -webkit-transform, left, top;
  -o-transition-property: -o-transform, left, top;
  transition-property: transform, left, top;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  float: left;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
  /* Specify Swiper's Size: */
  /*width:200px;
  height: 100px;*/
}

.swiper-slide {
  /* Specify Slides's Size: */
  /*width: 100%;
  height: 100%;*/
}

.swiper-slide-active {
  /* Specific active slide styling: */
}

.swiper-slide-visible {
  /* Specific visible slide styling: */
}

/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
  /* Stylize pagination button: */
}

.swiper-active-switch {
  /* Specific active button style: */
}

.swiper-visible-switch {
  /* Specific visible button style: */
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

::-moz-selection {
  color: inherit;
  background: transparent;
}

::selection {
  color: inherit;
  background: transparent;
}

html, body {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

body {
  font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  overflow: auto;
  background: black;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  opacity: 1;
}

h1, h2, h3, h4, h5, p, span, label, input, textarea {
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-weight: 100;
  line-height: 1.5em;
  position: relative;
  color: white;
  padding: 0;
  margin: 0.1em 0 0.4em 0;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1em;
}

h2 {
  font-size: 1.8em;
  line-height: 1.3em;
}

p {
  font-weight: 500;
  font-size: 0.8em;
  line-height: 1.55em;
}
@media all and (min-width: 768px) {
  p {
    font-size: .9em;
  }
}

.hfa-logo, .hfa-menu__next, .hfa-menu__previous, .hfa-menu__toggle, .hfa-description__summary, .hfa-language__item, .hfa-sidebar__content {
  display: inline-block;
  background: black;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  font-size: 12px;
}
.hfa-logo:hover, .hfa-menu__next:hover, .hfa-menu__previous:hover, .hfa-menu__toggle:hover, .hfa-description__summary:hover, .hfa-language__item:hover, .hfa-sidebar__content:hover {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
  background: black;
}

.hfa-logo, .hfa-menu__next, .hfa-menu__previous, .hfa-menu__toggle, .hfa-description__summary, .hfa-language__item {
  width: auto;
  min-width: 44px;
  height: 44px;
  line-height: 44px;
}

.hfa-button {
  display: inline-block;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  background: black;
  color: white;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 1;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media all and (min-width: 768px) {
  .hfa-button {
    height: 30px;
    line-height: 30px;
  }
}
.loading .hfa-button {
  opacity: 0;
}
.no-touch .hfa-button:hover {
  -webkit-box-shadow: inset 0px -2px 0px 0px white;
  box-shadow: inset 0px -2px 0px 0px white;
}

.hfa-enter-button {
  position: fixed;
  display: block;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  z-index: 200;
}
@media all and (min-width: 768px) {
  .hfa-enter-button {
    position: relative;
  }
}
.hfa-enter-button .hfa-button {
  width: 50%;
  text-align: center;
  float: left;
}
@media all and (min-width: 768px) {
  .hfa-enter-button .hfa-button {
    width: auto;
    float: none;
  }
}

.hfa-enter-msg {
  display: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 10px;
  opacity: 1;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.loading .hfa-enter-msg {
  opacity: 0;
}
@media all and (min-width: 768px) {
  .hfa-enter-msg {
    display: block;
  }
}

.hfa-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: pointer;
}
.homepage--active .hfa-logo {
  opacity: 0;
}
@media all and (min-width: 768px) {
  .hfa-logo {
    -webkit-transition: -webkit-transform 0.8s ease;
    -o-transition: -o-transform 0.8s ease;
    transition: transform 0.8s ease;
  }
  .homepage--active .hfa-logo {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media all and (min-width: 1025px) {
  .hfa-logo {
    top: 40px;
    left: 40px;
  }
}
.hfa-logo img {
  display: block;
  height: 18px;
  margin-left: 22px;
  margin-right: 22px;
  margin-top: 12.9411764706px;
  width: auto;
  z-index: 200;
}
.hfa-logo__subline {
  font-family: Open Sans;
  font-weight: 700;
  position: absolute;
  top: 100%;
  width: 100%;
  font-size:10px;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  margin-top: 8px;
  z-index: 100;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.hfa-static__head .hfa-logo__subline {
  font-size: 15.5px;
}
.no-touch .hfa-logo:hover .hfa-logo__subline {
  letter-spacing: 2px;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.hfa-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hfa-section {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: center;
}
.hfa-section__note {
  display: block;
  position: absolute;
  bottom: 2em;
  color: white;
}
.hfa-section__note--left {
  left: 6em;
  right: auto;
}
.hfa-section__note--right {
  right: 6em;
  left: auto;
}
.hfa-section__note--right span, .hfa-section__note--right a {
  margin-left: 1em;
}

.hfa-swiper {
  position: absolute;
  top: 44px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: opacity 0.4s 0.1s ease;
  -o-transition: opacity 0.4s 0.1s ease;
  transition: opacity 0.4s 0.1s ease;
}
@media all and (min-width: 768px) {
  .hfa-swiper {
    bottom: 0px;
    top: 0px;
  }
}
.loading .hfa-swiper {
  opacity: 0;
}
.loading .hfa-swiper img {
  display: none;
}
.hfa-swiper__slide {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hfa-image {
  position: absolute;
  padding: 0;
  top: -350%;
  left: 0;
  width: 100%;
  height: 800%;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.hfa-image img {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.hfa-image.too-narrow {
  top: 0;
  left: -350%;
  width: 800%;
  height: 100%;
}
.hfa-image.too-narrow img {
  height: 100%;
  width: auto;
}
.hfa-image__wrap {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}
.too-narrow .hfa-image__wrap {
  display: block;
}

.hfa-picturefill {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  height: auto;
}
.hfa-picturefill span {
  display: inline;
  width: 100%;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.too-narrow .hfa-picturefill {
  display: block;
  height: 100%;
  width: 100%;
}
.too-narrow .hfa-picturefill span {
  height: 100%;
  width: auto;
}

.hfa-burger {
  height: 18px;
  width: 18px;
  display: block;
  display: inline-block;
  overflow: visible;
  position: absolute;
  margin-top: -9px;
  top: 50%;
  right: 15px;
}
@media all and (min-width: 768px) {
  .hfa-burger {
    position: absolute;
    left: 0px;
    top: 50%;
    height: 14px;
    width: 14px;
    margin-top: -7px;
    left: 22px;
  }
}
@media all and (min-width: 768px) {
  .hfa-burger--plus {
    margin-top: -9px;
  }
}
.no-text .hfa-burger {
  display: none;
}
.hfa-burger__line {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  height: 6px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.675, 0.085, 0.23, 1.28);
  -o-transition-timing-function: cubic-bezier(0.675, 0.085, 0.23, 1.28);
  transition-timing-function: cubic-bezier(0.675, 0.085, 0.23, 1.28);
  -webkit-transform: translateY(0) rotateZ(0deg) scale(1);
  -o-transform: translateY(0) rotateZ(0deg) scale(1);
  transform: translateY(0) rotateZ(0deg) scale(1);
}
@media all and (min-width: 768px) {
  .hfa-burger__line {
    height: 5px;
  }
}
@media all and (min-width: 768px) {
  .hfa-burger--plus .hfa-burger__line {
    height: 6px;
  }
}
.hfa-burger--plus .hfa-burger__line:nth-child(2) span {
  visibility: hidden;
  opacity: 0;
}
.hfa-burger--plus .hfa-burger__line:first-child {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.hfa-burger--plus .hfa-burger__line:last-child {
  -webkit-transform: translateY(-100%) rotateZ(-90deg);
  -o-transform: translateY(-100%) rotateZ(-90deg);
  transform: translateY(-100%) rotateZ(-90deg);
}
.hfa-active .hfa-burger__line:first-child {
  -webkit-transform: translateY(100%) rotateZ(-45deg) scale(1.4);
  -o-transform: translateY(100%) rotateZ(-45deg) scale(1.4);
  transform: translateY(100%) rotateZ(-45deg) scale(1.4);
}
.hfa-active .hfa-burger__line:last-child {
  -webkit-transform: translateY(-100%) rotateZ(45deg) scale(1.4);
  -o-transform: translateY(-100%) rotateZ(45deg) scale(1.4);
  transform: translateY(-100%) rotateZ(45deg) scale(1.4);
}
.hfa-active .hfa-burger__line:nth-child(2) {
  -webkit-transform: translateY(0) rotateZ(45deg) scale(1.4);
  -o-transform: translateY(0) rotateZ(45deg) scale(1.4);
  transform: translateY(0) rotateZ(45deg) scale(1.4);
}
.hfa-active .hfa-burger__line:nth-child(2) span {
  opacity: 0;
}
.hfa-burger__line span {
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  background: white;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  outline: transparent;
  -webkit-transform: translateY(0) rotateZ(0deg);
  -o-transform: translateY(0) rotateZ(0deg);
  transform: translateY(0) rotateZ(0deg);
}

.hfa-menu {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 0px;
  overflow: visible;
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .hfa-menu {
    top: auto;
    bottom: 0px;
    -webkit-transition: -webkit-transform 0.8s .3s ease;
    -o-transition: -o-transform 0.8s .3s ease;
    transition: transform 0.8s .3s ease;
  }
  .homepage--active .hfa-menu {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media all and (min-width: 1025px) {
  .hfa-menu {
    bottom: 40px;
    left: 40px;
  }
}
.hfa-menu__wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  text-align: right;
  background: black;
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .hfa-menu__wrap {
    background: transparent;
    top: auto;
    right: auto;
    bottom: 0px;
    text-align: left;
  }
}
.hfa-menu__buttons {
  position: relative;
  overflow: hidden;
  font-size: 0.01px;
  pointer-events: none;
}
.hfa-menu__next, .hfa-menu__previous, .hfa-menu__toggle {
  cursor: pointer;
  margin-left: 3px;
  pointer-events: auto;
}
@media all and (min-width: 768px) {
  .hfa-menu__next, .hfa-menu__previous, .hfa-menu__toggle {
    margin-left: 0;
    margin-right: 3px;
  }
}
.hfa-menu__next:last-child, .hfa-menu__previous:last-child, .hfa-menu__toggle:last-child {
  margin-right: 0px;
}
.hfa-menu__next, .hfa-menu__previous {
  display: none;
  text-align: center;
  -webkit-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  opacity: 1;
}
@media all and (min-width: 768px) {
  .hfa-menu__next, .hfa-menu__previous {
    display: inline-block;
  }
}
.static--active .hfa-menu__next, .static--active .hfa-menu__previous {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition-delay: 0.18s;
  -o-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.hfa-menu__next:before, .hfa-menu__previous:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.hfa-menu__previous:before {
  -webkit-transform: rotate(135deg) translateX(-1px) translateY(-1px);
  -ms-transform: rotate(135deg) translateX(-1px) translateY(-1px);
  -o-transform: rotate(135deg) translateX(-1px) translateY(-1px);
  transform: rotate(135deg) translateX(-1px) translateY(-1px);
}
.hfa-menu__previous:hover:before {
  -webkit-transform: rotate(135deg) translateX(0px) translateY(0px);
  -ms-transform: rotate(135deg) translateX(0px) translateY(0px);
  -o-transform: rotate(135deg) translateX(0px) translateY(0px);
  transform: rotate(135deg) translateX(0px) translateY(0px);
}
.hfa-menu__next:before {
  -webkit-transform: rotate(-45deg) translateX(-1px) translateY(-1px);
  -ms-transform: rotate(-45deg) translateX(-1px) translateY(-1px);
  -o-transform: rotate(-45deg) translateX(-1px) translateY(-1px);
  transform: rotate(-45deg) translateX(-1px) translateY(-1px);
}
.hfa-menu__next:hover:before {
  -webkit-transform: rotate(-45deg) translateX(0px) translateY(0px);
  -ms-transform: rotate(-45deg) translateX(0px) translateY(0px);
  -o-transform: rotate(-45deg) translateX(0px) translateY(0px);
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
.hfa-menu__toggle {
  cursor: pointer;
  min-width: 66px;
  padding: 0 20px;
}
.no-touch .hfa-menu__toggle.hfa-inactive:hover .hfa-burger__line:first-child {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.no-touch .hfa-menu__toggle.hfa-inactive:hover .hfa-burger__line:last-child {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}
@media all and (min-width: 768px) {
  .hfa-menu__toggle {
    min-width: 120px;
  }
}
.hfa-menu__toggle-txt {
  display: none;
}
@media all and (min-width: 768px) {
  .hfa-menu__toggle-txt {
    display: inline-block;
    padding-left: 28px;
  }
}

.hfa-description {
  position: absolute;
  z-index: 100;
  bottom: 0px;
  right: 0px;
  left: 0px;
}
@media all and (min-width: 768px) {
  .hfa-description {
    left: auto;
    -webkit-transition: -webkit-transform 0.8s .6s ease;
    -o-transition: -o-transform 0.8s .6s ease;
    transition: transform 0.8s .6s ease;
  }
  .homepage--active .hfa-description {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media all and (min-width: 1025px) {
  .hfa-description {
    bottom: 40px;
    right: 40px;
  }
}
.hfa-description__summary {
  cursor: pointer;
  padding: 0 19px;
  text-transform: uppercase;
  font-size: 11px;
  min-width: 240px;
  text-align: left;
  width: 100%;
}
@media all and (min-width: 768px) {
  .hfa-description__summary {
    width: auto;
  }
}
.hfa-description__title {
  font-weight: 700;
  padding-left: 28px;
}
.no-text .hfa-description__title {
  padding-left: 0;
}
.hfa-description__year, .hfa-description__place, .hfa-description__content {
  font-weight: 400;
}
.hfa-description__year, .hfa-description__place {
  text-transform: capitalize;
  padding-left: 5px;
}
.hfa-description__wrap {
  position: absolute;
  bottom: 47px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  height: 0px;
}
.hfa-visible .hfa-description__wrap {
  height: auto;
  height: -webkit-calc(100vh - 88px - 6px);
  height: calc(100vh - 88px - 6px);
}
.hfa-description__content {
  font-weight: 400;
  cursor: pointer;
}
.hfa-description__content p {
  padding-bottom: 0.45em;
  font-size: 1.1em;
}
.hfa-description__content p:last-child {
  padding-bottom: 0;
}

.hfa-sidebar {
  opacity: 0;
  pointer-events: none;
  -webkit-transition-property: -webkit-transform opacity;
  -o-transition-property: -o-transform opacity;
  transition-property: transform opacity;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-delay: 0.18s;
  -o-transition-delay: 0.18s;
  transition-delay: 0.18s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
@media all and (min-width: 768px) {
  .hfa-sidebar {
    -webkit-transform: translateY(-10px) scale(1);
    -ms-transform: translateY(-10px) scale(1);
    -o-transform: translateY(-10px) scale(1);
    transform: translateY(-10px) scale(1);
  }
}
.hfa-visible .hfa-sidebar {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  opacity: 1;
  pointer-events: auto;
}
@media all and (min-width: 768px) {
  .hfa-sidebar {
    position: absolute;
    bottom: 100%;
    left: 0px;
    padding: 0;
    background: none;
    width: 100%;
  }
}
.hfa-sidebar__wrap {
  width: 100%;
  text-align: left;
}
.hfa-sidebar__content {
  width: 100%;
  padding: 20px;
}

.hfa-nav-box {
  position: absolute;
  top: 47px;
  z-index: 201;
  left: 0px;
  right: 0px;
  overflow: hidden;
  height: 0px;
  -webkit-transition-property: height;
  -o-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.43s;
  -o-transition-delay: 0.43s;
  transition-delay: 0.43s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.hfa-description .hfa-nav-box {
  top: auto;
  bottom: 47px;
  z-index: 200;
}
.hfa-nav-box.hfa-visible {
  height: auto;
  height: -webkit-calc(100vh - 88px - 6px);
  height: calc(100vh - 88px - 6px);
  pointer-events: auto;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.hfa-description .hfa-nav-box.hfa-visible {
  top: auto;
  bottom: 47px;
  z-index: 200;
  height: auto;
  max-height: -webkit-calc(100vh - 88px - 6px);
  max-height: calc(100vh - 88px - 6px);
}
@media all and (min-width: 768px) {
  .hfa-nav-box {
    top: -3px;
    position: absolute;
    overflow: visible;
  }
  .hfa-nav-box.hfa-visible {
    height: auto;
    overflow: visible;
  }
}

a {
  cursor: pointer;
}

.hfa-nav {
  padding: 8px 0 0 0;
  overflow: hidden;
  pointer-events: auto;
}

.hfa-nav__category {
  padding-bottom: 12px;
  position: relative;
}
.hfa-nav__category:last-child {
  padding-bottom: 6px;
}
.hfa-nav__lang {
  position: absolute;
  right: 0px;
  top: 0px;
  padding-right: 5px;
}
.hfa-nav__level {
  padding-left: 5px;
}
.hfa-nav__category-title {
  display: block;
  margin: 0 0px 4px 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.45em;
  font-size: 10px;
  opacity: 0.6;
}
@media all and (min-width: 768px) {
  .hfa-nav__category-title {
    font-size: 12px;
    opacity: 1;
    font-weight: 700;
  }
}
.hfa-nav__static-item {
  position: relative;
  display: inline-block;
  width: auto;
  line-height: 1.5em;
  opacity: .6;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .hfa-nav__static-item {
    font-size: 12px;
    opacity: 1;
    font-weight: 700;
  }
}
.hfa-nav__item {
  position: relative;
  display: block;
  width: auto;
  line-height: 1.5em;
  opacity: .6;
  font-weight: 600;
  font-size: 16px;
  margin: 1px 0px;
  cursor: pointer;
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .hfa-nav__item {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.6;
  }
}
.hfa-nav__item--active {
  opacity: 1;
}

.hfa-language {
  position: relative;
  margin-top: 3px;
}
@media all and (min-width: 768px) {
  .hfa-language {
    position: absolute;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 3px;
  }
}
.hfa-language__item {
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}
.hfa-language__item.hfa-active:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 30%;
  width: 40%;
  height: 2px;
  background: white;
}

@-webkit-keyframes loading-dash {
  0% {
    stroke-dashoffset: 90;
  }
  100% {
    stroke-dashoffset: 270;
  }
}

@-o-keyframes loading-dash {
  0% {
    stroke-dashoffset: 90;
  }
  100% {
    stroke-dashoffset: 270;
  }
}

@keyframes loading-dash {
  0% {
    stroke-dashoffset: 90;
  }
  100% {
    stroke-dashoffset: 270;
  }
}
.hfa-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  pointer-events: none;
  z-index: 200;
}
@media all and (min-width: 768px) {
  .hfa-loader {
    left: auto;
    margin: 0;
    top: 0px;
    right: 0px;
  }
}
@media all and (min-width: 1025px) {
  .hfa-loader {
    top: 40px;
    right: 40px;
  }
}
.hfa-loader__indicator {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  -webkit-transition: all .4s .3s ease;
  -o-transition: all .4s .3s ease;
  transition: all .4s .3s ease;
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .hfa-loader__indicator {
    -webkit-transition: all .4s .4s ease-in;
    -o-transition: all .4s .4s ease-in;
    transition: all .4s .4s ease-in;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
}
.loading .hfa-loader__indicator {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
@media all and (min-width: 768px) {
  .loading .hfa-loader__indicator {
    opacity: 1;
  }
}
.hfa-loader__indicator--path {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  fill: none;
  stroke: white;
  stroke-opacity: 1;
  stroke-width: 1.6;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  -webkit-animation: loading-dash 3s linear infinite;
  -o-animation: loading-dash 3s linear infinite;
  animation: loading-dash 3s linear infinite;
}

.hfa-static {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.loading .hfa-static {
  opacity: 0;
}
.hfa-static p {
  max-width: 600px;
}
.hfa-static__wrap {
  text-align: left;
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 22px;
}
.hfa-static__wrap--full {
  max-width: none;
  width: 100% !important;
  margin: 0 !important;
}
@media all and (min-width: 768px) {
  .hfa-static__wrap {
    width: 80%;
    margin-left: 20%;
    padding: 120px 22px;
  }
}
@media all and (min-width: 1025px) {
  .hfa-static__wrap {
    width: 66%;
    margin-left: 33%;
    padding: 130px 22px;
  }
}
@media all and (min-width: 1441px) {
  .hfa-static__wrap {
    padding: 180px 22px;
  }
}
.hfa-static__head {
  position: relative;
}
.hfa-static__logo {
  width: 60%;
  height: auto;
  max-width: 160px;
  margin: 80px auto 0 auto;
  position: relative;
  display: block;
}
