/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./httpdocs/src/sass/components/_header.sass ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
@keyframes h-top {
  0% {
    top: 0;
    margin-top: 0;
    transform: rotate(0deg); }
  50% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(0deg); }
  100% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg); } }

@keyframes h-bottom {
  0% {
    bottom: 0;
    margin-bottom: 0;
    transform: rotate(0deg); }
  50% {
    bottom: 50%;
    margin-bottom: -1px;
    transform: rotate(0deg); }
  100% {
    bottom: 50%;
    margin-bottom: -1px;
    transform: rotate(45deg); } }

@keyframes h-mid {
  0% {
    top: 50%;
    margin-top: -1px;
    opacity: 1; }
  50% {
    top: 50%;
    margin-top: -1px;
    opacity: 0; }
  100% {
    top: 50%;
    margin-top: -1px;
    opacity: 0; } }

@keyframes navAnimate {
  0% {
    opacity: 0;
    filter: blur(2px); }
  100% {
    opacity: 1;
    border-radius: 0; } }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  background-color: rgba(0, 0, 0, 0.2); }
  .header__container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 20px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo {
    position: relative;
    z-index: 201;
    color: #ffffff;
    text-decoration: none;
    font-family: "Fira Sans", Helvetica;
    font-weight: 700;
    font-style: italic;
    font-size: 1.4rem; }
  .header__right {
    display: flex;
    align-items: center;
    justify-content: space-around; }

.lang-switcher {
  z-index: 201;
  position: relative;
  margin-right: 15px; }
  .lang-switcher__option {
    color: #ffffff;
    text-decoration: none;
    font-family: "Fira Sans", Helvetica;
    font-weight: 600;
    font-style: italic;
    font-size: 1rem; }
    .lang-switcher__option--active {
      font-weight: 800; }

.hamburguer {
  cursor: pointer;
  width: 32px;
  height: 16px;
  position: relative;
  z-index: 201; }
  .hamburguer__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0; }
    .hamburguer__line--top {
      top: 0; }
    .hamburguer__line--center {
      top: 50%;
      margin-top: -1px; }
    .hamburguer__line--bottom {
      bottom: 0; }
  .hamburguer--animate .hamburguer__line--top {
    animation: h-top 0.3s ease-in;
    animation-fill-mode: forwards; }
  .hamburguer--animate .hamburguer__line--bottom {
    animation: h-bottom 0.3s ease-in;
    animation-fill-mode: forwards; }
  .hamburguer--animate .hamburguer__line--center {
    animation: h-mid 0.3s ease-in;
    animation-fill-mode: forwards; }

.nav {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center; }
  .nav--active {
    top: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 100vh;
    animation: navAnimate 200ms ease-in-out; }
  .nav__container {
    width: 95%;
    max-width: 380px; }
  .nav__link {
    display: block;
    color: #ffffff;
    font-style: italic;
    font-size: 1.7rem;
    font-family: "Fira Sans", Helvetica;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin: 15px auto;
    transition: all 500ms ease-in-out; }
    .nav__link:hover {
      font-size: 2rem; }

@media all and (min-width: 1025px) {
  .scroll-nav {
    position: fixed;
    top: 50%;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 14px;
    margin-top: -75px;
    z-index: 300; }
    .scroll-nav__link {
      color: transparent;
      display: block;
      text-decoration: none;
      margin: 10px 0;
      border-radius: 50%;
      background-color: rgba(164, 164, 164, 0.6);
      box-sizing: border-box;
      width: 10px;
      height: 10px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); }
      .scroll-nav__link--active {
        background-color: rgba(22, 82, 111, 0.9); }
      .scroll-nav__link:hover {
        overflow: visible;
        background-color: rgba(22, 82, 111, 0.9); }
        .scroll-nav__link:hover .scroll-nav__link--text {
          font-style: italic;
          font-family: "Fira Sans Condensed", Helvetica;
          font-size: 0.9rem;
          font-weight: 400;
          background-color: rgba(255, 255, 255, 0.4);
          color: #444444;
          display: block;
          text-align: center;
          width: auto;
          height: auto;
          padding: 4px 15px;
          border-radius: 3px;
          position: absolute;
          top: 50%;
          right: 20px;
          margin-top: -14px; } }

@media all and (max-width: 1025px) {
  .scroll-nav {
    display: none; } }

