@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, src/assets/sass/_lib/reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
/* line 27, src/assets/sass/_lib/reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

/* line 31, src/assets/sass/_lib/reset.scss */
body {
  line-height: 1; }

/* line 35, src/assets/sass/_lib/reset.scss */
blockquote, q {
  quotes: none; }

/* line 38, src/assets/sass/_lib/reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

/* line 43, src/assets/sass/_lib/reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*
 * Colors & variables
 */
/* line 1, src/assets/sass/_lib/grid.sass */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  /* line 6, src/assets/sass/_lib/grid.sass */
  .row .col {
    -ms-flex-direction: column;
        flex-direction: column; }
    /* line 9, src/assets/sass/_lib/grid.sass */
    .row .col--50 {
      -ms-flex: 1;
          flex: 1;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; }

@font-face {
  font-family: "Freight Sans W03 Medium";
  src: url("..fonts/Freight_Sans_W03_Medium.woff2") format("woff2");
  src: url("fonts/Freight_Sans_W03_Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Freight Sans W03 Bold';
  src: url("..fonts/Freight_Sans_W03_Bold.woff2") format("woff2");
  src: url("fonts/Freight_Sans_W03_Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

/* line 1, src/assets/sass/_lib/debug.sass */
.debug__module {
  border: 1px solid black;
  margin-bottom: 50px;
  padding: 30px; }

/* line 6, src/assets/sass/_lib/debug.sass */
.debug__template {
  text-transform: uppercase;
  font-weight: bold;
  background: pink;
  padding: 10px 15px;
  margin-bottom: 10px; }

/* line 1, src/assets/sass/_lib/padding.sass */
.padding {
  padding: 40px 0; }

/* line 19, src/assets/sass/_lib/padding.sass */
section:last-of-type {
  padding-bottom: 75px; }

/* line 1, src/assets/sass/_lib/base.sass */
* {
  box-sizing: border-box;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* line 7, src/assets/sass/_lib/base.sass */
a[href^="tel"] {
  color: inherit;
  text-decoration: none; }

/* line 11, src/assets/sass/_lib/base.sass */
body {
  min-width: 320px;
  font-family: "Freight Sans W03 Medium", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3C3C3C; }

/* line 20, src/assets/sass/_lib/base.sass */
.base__content {
  max-width: 1140px;
  margin: auto; }

/* line 37, src/assets/sass/_lib/base.sass */
ul, ol {
  margin-left: 25px; }

/* line 40, src/assets/sass/_lib/base.sass */
li:last-child {
  margin-bottom: 20px; }

/* line 1, src/assets/sass/_lib/text.sass */
h1 {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 1rem; }

/* line 11, src/assets/sass/_lib/text.sass */
h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 600;
  font-family: "Freight Sans W03 Bold";
  margin-bottom: 36px; }

/* line 24, src/assets/sass/_lib/text.sass */
h3, blockquote p, .overlay__content p {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.24px;
  font-weight: 600;
  font-family: "Freight Sans W03 Bold";
  margin-bottom: 1rem; }

/* line 37, src/assets/sass/_lib/text.sass */
h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Freight Sans W03 Bold";
  line-height: 28px;
  letter-spacing: 0.4px; }

/* line 48, src/assets/sass/_lib/text.sass */
p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
  margin-bottom: 1rem; }

/* line 54, src/assets/sass/_lib/text.sass */
.bold, strong {
  font-weight: bold; }

/* line 57, src/assets/sass/_lib/text.sass */
.text__item {
  width: 100%;
  display: -ms-flexbox;
  display: flex; }
  /* line 61, src/assets/sass/_lib/text.sass */
  .text__item__centered {
    max-width: 100%; }
    /* line 64, src/assets/sass/_lib/text.sass */
    .text__item__centered a {
      color: #3C3C3C; }

/* line 1, src/assets/sass/_component/button.sass */
.btn-image {
  background: #3C3C3C;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  font-weight: 600;
  overflow: hidden;
  padding: 30px 20px;
  margin-bottom: 40px;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  width: 400px; }
  /* line 29, src/assets/sass/_component/button.sass */
  .btn-image .img-fluid {
    -ms-flex-item-align: center;
        align-self: center;
    height: 60px;
    width: auto; }
  /* line 34, src/assets/sass/_component/button.sass */
  .btn-image:hover, .btn-image:focus {
    background: #C70018;
    border-color: #C70018;
    color: #fff; }

/* line 41, src/assets/sass/_component/button.sass */
.btn__text {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center; }

/* line 1, src/assets/sass/_component/footer.sass */
.footer {
  background: #C70018;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px; }

  .footer__headline {
    font-size: 24px; }
  /* line 7, src/assets/sass/_component/footer.sass */
  .footer__text:first-of-type {
    margin-bottom: 20px; }
  /* line 14, src/assets/sass/_component/footer.sass */
  .footer .bold {
    font-family: "Freight Sans W03 Bold"; }
  /* line 17, src/assets/sass/_component/footer.sass */
  .footer a {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none; }
    /* line 23, src/assets/sass/_component/footer.sass */
    .footer a:hover {
      color: #3C3C3C; }
  /* line 25, src/assets/sass/_component/footer.sass */
  .footer p {
    margin-bottom: 0;
    font-size: 18px; }
  /* line 29, src/assets/sass/_component/footer.sass */
  .footer__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    /* line 41, src/assets/sass/_component/footer.sass */
    .footer__top__row {
      margin-bottom: 40px; }
      /* line 58, src/assets/sass/_component/footer.sass */
      .footer__top__row:nth-child(4) a {
        text-decoration: underline; }
      /* line 61, src/assets/sass/_component/footer.sass */
      .footer__top__row img {
        height: 62px;
        margin-bottom: 15px; }
  /* line 65, src/assets/sass/_component/footer.sass */
  .footer ul {
    list-style: none;
    margin-left: 0; }

/* line 1, src/assets/sass/_component/fixed-logo.sass */
.fixed-logo {
  position: fixed;
  bottom: 10%;
  right: -17px;
  text-decoration: none; }
  /* line 7, src/assets/sass/_component/fixed-logo.sass */
  .fixed-logo__bottom {
    margin-bottom: 100px; }
  /* line 15, src/assets/sass/_component/fixed-logo.sass */
  .fixed-logo svg {
    height: 111px; }
  /* line 25, src/assets/sass/_component/fixed-logo.sass */
  .fixed-logo:hover svg path,
  .fixed-logo:hover svg rect.rect_bottom {
    fill: #3C3C3C; }

/* line 30, src/assets/sass/_component/fixed-logo.sass */
.menu-open .fixed-logo {
  z-index: 30; }
  /* line 32, src/assets/sass/_component/fixed-logo.sass */
  .menu-open .fixed-logo svg path,
  .menu-open .fixed-logo svg rect.rect_bottom {
    fill: #fff; }
  /* line 37, src/assets/sass/_component/fixed-logo.sass */
  .menu-open .fixed-logo:hover svg path,
  .menu-open .fixed-logo:hover svg rect.rect_bottom {
    fill: #3C3C3C; }

/* line 1, src/assets/sass/_component/image.sass */
.img-fluid {
  width: 100%;
  height: auto; }

/* line 5, src/assets/sass/_component/image.sass */
.image {
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex; }
  /* line 17, src/assets/sass/_component/image.sass */
  .image .img-fluid {
    font-family: "object-fit:cover";
    object-fit: cover;
    transition: transform .2s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
        align-self: flex-start;
    transform: scale(1.1); }
  /* line 31, src/assets/sass/_component/image.sass */
  .image:hover .img-fluid {
    transform: scale(1.1);
    overflow: hidden;
    left: 0; }
  /* line 37, src/assets/sass/_component/image.sass */
  .image--active .img-fluid {
    transform: scale(1);
    transition: transform .5s;
    transition-delay: .5s; }
  /* line 49, src/assets/sass/_component/image.sass */
  .image--right:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1), rgba(0, 0, 0, .6));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    position: absolute; }
  /* line 66, src/assets/sass/_component/image.sass */
  .image__text {
    position: absolute;
    z-index: 1;
    color: #fff;
    left: 15px;
    bottom: 20px; }
  /* line 87, src/assets/sass/_component/image.sass */
  .image a {
    color: #fff;
    text-decoration: none; }
  /* line 91, src/assets/sass/_component/image.sass */
  .image h1 {
    position: relative; }
  /* line 99, src/assets/sass/_component/image.sass */
  .image h1:hover:after {
    content: "";
    opacity: 1;
    width: 40px;
    height: 10px;
    display: inline-block;
    color: #fff;
    background: #fff;
    position: absolute;
    top: 44px;
    left: 0; }

/* line 1, src/assets/sass/_component/image-text.sass */
.imagetextvisible--active {
  animation-delay: 2s;
  animation: imageShow 1s forwards; }

@keyframes imageShow {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0px); } }

/* line 15, src/assets/sass/_component/image-text.sass */
.image-text__image {
  position: relative; }
  /* line 22, src/assets/sass/_component/image-text.sass */
  .image-text__image .map__desktop {
    display: none; }
  /* line 28, src/assets/sass/_component/image-text.sass */
  .image-text__image .icon__map {
    position: absolute; }

@keyframes mapRevealXl {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; }
  70% {
    height: 98%;
    opacity: 1; }
  85% {
    height: 95%;
    opacity: 1; }
  100% {
    height: 98%;
    opacity: 1; } }

/* line 58, src/assets/sass/_component/image-text.sass */
.image-text__text {
  margin-top: 30px;
  width: 100%; }
  /* line 62, src/assets/sass/_component/image-text.sass */
  .image-text__text img {
    height: 65px; }

/* line 72, src/assets/sass/_component/image-text.sass */
.image-text h1 {
  margin-bottom: 1rem; }

/* line 75, src/assets/sass/_component/image-text.sass */
.image-text h2 {
  margin-bottom: 1rem; }

/* line 83, src/assets/sass/_component/image-text.sass */
.image-text--reversed .image-text__text {
  margin-left: 0; }

/* line 1, src/assets/sass/_component/overlay.sass */
.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  background-color: rgba(60, 60, 60, .9);
  overflow-x: hidden;
  transition: 0.5s;
  display: none;
  -ms-flex-pack: center;
      justify-content: center; }
  /* line 14, src/assets/sass/_component/overlay.sass */
  .overlay--show {
    display: -ms-flexbox;
    display: flex; }
  /* line 17, src/assets/sass/_component/overlay.sass */
  .overlay__close {
    right: 10%;
    position: absolute;
    top: 14%;
    z-index: 101;
    cursor: pointer; }
    /* line 24, src/assets/sass/_component/overlay.sass */
    .overlay__close svg g g path {
      fill: #3C3C3C; }
  /* line 36, src/assets/sass/_component/overlay.sass */
  .overlay__logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    /* line 46, src/assets/sass/_component/overlay.sass */
    .overlay__logo img, .overlay__logo svg {
      width: 50%;
      font-family: "object-fit:contain";
      object-fit: contain; }
  /* line 50, src/assets/sass/_component/overlay.sass */
  .overlay__inner {
    width: 72%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column; }

/* line 62, src/assets/sass/_component/overlay.sass */
.overlay__content {
  position: relative;
  top: 10%;
  width: 80%;
  height: 70%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 30px;
  padding: 20px;
  background: #fff; }
  /* line 83, src/assets/sass/_component/overlay.sass */
  .overlay__content p {
    font-family: "Freight Sans W03 Medium";
    font-weight: 400; }
    /* line 90, src/assets/sass/_component/overlay.sass */
    .overlay__content p em {
      font-family: "Freight Sans W03 Bold"; }

/*
 * desktop nav (mobile styles see .is-active)
 */
/* line 4, src/assets/sass/_component/menu.sass */
ul.menu__items {
  display: -ms-flexbox;
  display: flex; }
  /* line 11, src/assets/sass/_component/menu.sass */
  ul.menu__items > li.menu__item {
    padding: 5px 0; }
    /* line 22, src/assets/sass/_component/menu.sass */
    ul.menu__items > li.menu__item:hover > a {
      color: #fff; }
    /* line 24, src/assets/sass/_component/menu.sass */
    ul.menu__items > li.menu__item a {
      display: block;
      width: auto;
      text-decoration: none;
      color: #fff; }
  /* line 31, src/assets/sass/_component/menu.sass */
  ul.menu__items li {
    font-size: 16px; }
    /* line 33, src/assets/sass/_component/menu.sass */
    ul.menu__items li a {
      transition: transform 0.3s;
      position: relative; }

/*
 * Mobile nav (.is-active)
 */
/* line 56, src/assets/sass/_component/menu.sass */
nav.header__menu.is-active {
  margin-left: -15px;
  top: 0; }
  /* line 63, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item {
    color: #fff; }

@keyframes menu_item_reveal {
  0% {
    opacity: 0;
    margin-left: -20px; }
  100% {
    opacity: 1;
    margin-left: 0; } }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(1) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(2) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(3) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(4) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(5) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(6) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(7) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(8) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(9) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 0.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(10) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(11) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(12) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(13) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(14) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(15) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(16) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(17) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(18) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(19) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 1.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(20) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(21) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(22) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(23) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(24) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(25) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(26) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(27) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(28) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(29) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 2.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(30) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(31) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(32) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(33) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(34) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(35) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(36) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(37) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(38) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(39) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 3.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(40) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(41) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(42) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(43) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(44) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(45) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(46) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(47) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(48) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(49) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 4.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(50) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(51) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(52) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(53) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(54) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(55) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(56) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(57) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(58) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(59) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 5.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(60) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(61) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(62) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(63) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(64) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(65) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(66) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(67) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(68) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(69) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 6.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(70) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(71) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(72) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(73) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(74) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(75) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(76) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(77) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(78) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(79) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 7.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(80) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(81) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(82) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(83) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(84) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(85) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(86) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(87) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(88) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(89) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 8.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(90) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(91) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.1s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(92) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.2s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(93) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.3s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(94) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.4s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(95) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.5s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(96) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.6s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(97) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.7s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(98) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.8s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(99) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 9.9s; }
  /* line 87, src/assets/sass/_component/menu.sass */
  nav.header__menu.is-active .menu__item:nth-child(100) {
    animation: menu_item_reveal 0.6s forwards;
    animation-delay: 10s; }

/* Slider */
/* line 3, src/assets/sass/_lib/slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

/* line 17, src/assets/sass/_lib/slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  /* line 24, src/assets/sass/_lib/slick.scss */
  .slick-list:focus {
    outline: none; }
  /* line 28, src/assets/sass/_lib/slick.scss */
  .slick-list.dragging {
    cursor: pointer; }

/* line 32, src/assets/sass/_lib/slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

/* line 41, src/assets/sass/_lib/slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  /* line 49, src/assets/sass/_lib/slick.scss */
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  /* line 55, src/assets/sass/_lib/slick.scss */
  .slick-track:after {
    clear: both; }
  /* line 59, src/assets/sass/_lib/slick.scss */
  .slick-loading .slick-track {
    visibility: hidden; }

/* line 63, src/assets/sass/_lib/slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  /* line 67, src/assets/sass/_lib/slick.scss */
  [dir="rtl"] .slick-slide {
    float: right; }
  /* line 70, src/assets/sass/_lib/slick.scss */
  .slick-slide img {
    display: block; }
  /* line 73, src/assets/sass/_lib/slick.scss */
  .slick-slide.slick-loading img {
    display: none; }
  /* line 79, src/assets/sass/_lib/slick.scss */
  .slick-slide.dragging img {
    pointer-events: none; }
  /* line 83, src/assets/sass/_lib/slick.scss */
  .slick-initialized .slick-slide {
    display: block; }
  /* line 87, src/assets/sass/_lib/slick.scss */
  .slick-loading .slick-slide {
    visibility: hidden; }
  /* line 91, src/assets/sass/_lib/slick.scss */
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* line 97, src/assets/sass/_lib/slick.scss */
.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
/* line 45, src/assets/sass/_lib/slick-theme.scss */
.slick-loading .slick-list {
  background: #fff url("./img/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
/* line 63, src/assets/sass/_lib/slick-theme.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  /* line 81, src/assets/sass/_lib/slick-theme.scss */
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    /* line 85, src/assets/sass/_lib/slick-theme.scss */
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  /* line 89, src/assets/sass/_lib/slick-theme.scss */
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  /* line 92, src/assets/sass/_lib/slick-theme.scss */
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

/* line 103, src/assets/sass/_lib/slick-theme.scss */
.slick-prev {
  left: -25px; }
  /* line 105, src/assets/sass/_lib/slick-theme.scss */
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  /* line 109, src/assets/sass/_lib/slick-theme.scss */
  .slick-prev:before {
    content: "←"; }
    /* line 111, src/assets/sass/_lib/slick-theme.scss */
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

/* line 117, src/assets/sass/_lib/slick-theme.scss */
.slick-next {
  right: -25px; }
  /* line 119, src/assets/sass/_lib/slick-theme.scss */
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  /* line 123, src/assets/sass/_lib/slick-theme.scss */
  .slick-next:before {
    content: "→"; }
    /* line 125, src/assets/sass/_lib/slick-theme.scss */
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
/* line 133, src/assets/sass/_lib/slick-theme.scss */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

/* line 137, src/assets/sass/_lib/slick-theme.scss */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  /* line 146, src/assets/sass/_lib/slick-theme.scss */
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    /* line 154, src/assets/sass/_lib/slick-theme.scss */
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      /* line 166, src/assets/sass/_lib/slick-theme.scss */
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        /* line 168, src/assets/sass/_lib/slick-theme.scss */
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      /* line 172, src/assets/sass/_lib/slick-theme.scss */
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    /* line 189, src/assets/sass/_lib/slick-theme.scss */
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/* line 9, src/assets/sass/_component/slider.sass */
.slick-dots {
  bottom: 30px; }

/* line 12, src/assets/sass/_component/slider.sass */
.slick-dots li {
  margin-right: 30px; }

/* line 15, src/assets/sass/_component/slider.sass */
.slick-dots li button {
  width: 30px;
  height: 10px; }

/* line 19, src/assets/sass/_component/slider.sass */
.slick-dots li button::before {
  opacity: 1;
  width: 30px;
  height: 10px;
  border: 1px solid #fff;
  color: transparent; }

/* line 26, src/assets/sass/_component/slider.sass */
.slick-dots li button:hover::before {
  opacity: .8; }

/* line 29, src/assets/sass/_component/slider.sass */
.slick-dots li.slick-active button:before {
  background: #fff;
  color: transparent; }

/* line 1, src/assets/sass/_component/header.sass */
.header {
  width: 100%;
  min-width: 320px;
  height: 146px;
  z-index: 50;
  top: -150px;
  transition: all 0.6s ease-in-out; }
  /* line 9, src/assets/sass/_component/header.sass */
  .header.is-visible {
    top: 0; }
  /* line 12, src/assets/sass/_component/header.sass */
  .header.is-active {
    background-color: #C70018; }
    /* line 15, src/assets/sass/_component/header.sass */
    .header.is-active .header__container, .header.is-active .header__wrapper {
      background-color: #C70018;
      padding-bottom: 0; }
    /* line 19, src/assets/sass/_component/header.sass */
    .header.is-active .header__menu {
      opacity: 1;
      position: relative; }
    /* line 25, src/assets/sass/_component/header.sass */
    .header.is-active .header__logo svg path, .header.is-active .header__logo svg rect.logo__rect, .header.is-active .header__logo svg .logo__1-2 > * {
      fill: #fff; }
    /* line 28, src/assets/sass/_component/header.sass */
    .header.is-active .header__menu__trigger {
      float: right;
      top: 0; }
    /* line 32, src/assets/sass/_component/header.sass */
    .header.is-active .header__menu__trigger svg path {
      fill: #fff;
      margin-right: 12px; }
  /* line 41, src/assets/sass/_component/header.sass */
  .header.hide-logo .header__wrapper {
    background: transparent; }
  /* line 44, src/assets/sass/_component/header.sass */
  .header.hide-logo .header__logo {
    display: none; }
  /* line 48, src/assets/sass/_component/header.sass */
  .header.hide-logo.is-active .header__logo {
    display: -ms-flexbox;
    display: flex; }
  /* line 51, src/assets/sass/_component/header.sass */
  .header.hide-logo.is-active .header__wrapper {
    background: #C70018; }
  /* line 54, src/assets/sass/_component/header.sass */
  .header__wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 30;
    background: #fff; }
  /* line 64, src/assets/sass/_component/header.sass */
  .header__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 0 15px;
    position: relative;
    max-width: 1140px;
    margin: auto;
    margin-top: 9px;
    z-index: 31; }
  /* line 82, src/assets/sass/_component/header.sass */
  .header__logo svg {
    height: 111px;
    width: 145px;
    margin-left: -15px; }
  /* line 91, src/assets/sass/_component/header.sass */
  .header__menu {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    height: 100vh;
    width: 110%;
    transition: top 0.5s;
    background-color: #C70018;
    top: -100vh;
    z-index: 30;
    padding-left: 72px; }
    /* line 106, src/assets/sass/_component/header.sass */
    .header__menu .menu__items {
      -ms-flex-direction: column;
          flex-direction: column;
      max-height: 70vh;
      overflow: auto; }
    /* line 114, src/assets/sass/_component/header.sass */
    .header__menu .menu__item {
      font-size: 60px;
      line-height: 68px; }
  /* line 123, src/assets/sass/_component/header.sass */
  .header__menu__trigger {
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    cursor: pointer;
    transition: all .3s; }
    /* line 132, src/assets/sass/_component/header.sass */
    .header__menu__trigger--open {
      display: block; }
    /* line 135, src/assets/sass/_component/header.sass */
    .header__menu__trigger--close {
      display: none; }
    /* line 140, src/assets/sass/_component/header.sass */
    .header__menu__trigger.is-active .header__menu__trigger--close {
      display: block; }
      /* line 144, src/assets/sass/_component/header.sass */
      .header__menu__trigger.is-active .header__menu__trigger--close:hover svg path {
        fill: #3C3C3C; }
    /* line 147, src/assets/sass/_component/header.sass */
    .header__menu__trigger.is-active .header__menu__trigger--open {
      display: none; }

/* line 157, src/assets/sass/_component/header.sass */
.header .header__logo.header__logo--animated svg .logo__2, .header .header__logo.header__logo--animated svg .logo__3, .header .header__logo.header__logo--animated svg .logo__4, .header .header__logo.header__logo--animated svg .logo__5 {
  opacity: 0;
  animation: opacity .2s; }

/* line 162, src/assets/sass/_component/header.sass */
.header .header__logo.header__logo--animated svg .logo__2 {
  animation: header__logo 0.2s forwards;
  animation-delay: 0.2s; }

/* line 165, src/assets/sass/_component/header.sass */
.header .header__logo.header__logo--animated svg .logo__3 {
  animation: header__logo 0.2s forwards;
  animation-delay: 0.4s; }

/* line 168, src/assets/sass/_component/header.sass */
.header .header__logo.header__logo--animated svg .logo__4 {
  animation: header__logo 0.2s forwards;
  animation-delay: 0.6s; }

/* line 171, src/assets/sass/_component/header.sass */
.header .header__logo.header__logo--animated svg .logo__5 {
  animation: header__logo 0.2s forwards;
  animation-delay: 0.8s; }

@keyframes header__logo {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/* line 1, src/assets/sass/_component/column-with-image.sass */
.column_with_image {
  padding-top: 30px;
  padding-bottom: 40px; }
  /* line 9, src/assets/sass/_component/column-with-image.sass */
  .column_with_image__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
  /* line 19, src/assets/sass/_component/column-with-image.sass */
  .column_with_image p {
    margin-bottom: 0; }
  /* line 22, src/assets/sass/_component/column-with-image.sass */
  .column_with_image__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-right: 20px;
    margin-bottom: 40px;
    opacity: 0; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(1) {
      animation: imageReveal 1s forwards;
      animation-delay: 0.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(2) {
      animation: imageReveal 1s forwards;
      animation-delay: 0.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(3) {
      animation: imageReveal 1s forwards;
      animation-delay: 0.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(4) {
      animation: imageReveal 1s forwards;
      animation-delay: 0.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(5) {
      animation: imageReveal 1s forwards;
      animation-delay: 1s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(6) {
      animation: imageReveal 1s forwards;
      animation-delay: 1.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(7) {
      animation: imageReveal 1s forwards;
      animation-delay: 1.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(8) {
      animation: imageReveal 1s forwards;
      animation-delay: 1.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(9) {
      animation: imageReveal 1s forwards;
      animation-delay: 1.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(10) {
      animation: imageReveal 1s forwards;
      animation-delay: 2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(11) {
      animation: imageReveal 1s forwards;
      animation-delay: 2.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(12) {
      animation: imageReveal 1s forwards;
      animation-delay: 2.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(13) {
      animation: imageReveal 1s forwards;
      animation-delay: 2.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(14) {
      animation: imageReveal 1s forwards;
      animation-delay: 2.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(15) {
      animation: imageReveal 1s forwards;
      animation-delay: 3s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(16) {
      animation: imageReveal 1s forwards;
      animation-delay: 3.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(17) {
      animation: imageReveal 1s forwards;
      animation-delay: 3.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(18) {
      animation: imageReveal 1s forwards;
      animation-delay: 3.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(19) {
      animation: imageReveal 1s forwards;
      animation-delay: 3.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(20) {
      animation: imageReveal 1s forwards;
      animation-delay: 4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(21) {
      animation: imageReveal 1s forwards;
      animation-delay: 4.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(22) {
      animation: imageReveal 1s forwards;
      animation-delay: 4.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(23) {
      animation: imageReveal 1s forwards;
      animation-delay: 4.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(24) {
      animation: imageReveal 1s forwards;
      animation-delay: 4.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(25) {
      animation: imageReveal 1s forwards;
      animation-delay: 5s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(26) {
      animation: imageReveal 1s forwards;
      animation-delay: 5.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(27) {
      animation: imageReveal 1s forwards;
      animation-delay: 5.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(28) {
      animation: imageReveal 1s forwards;
      animation-delay: 5.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(29) {
      animation: imageReveal 1s forwards;
      animation-delay: 5.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(30) {
      animation: imageReveal 1s forwards;
      animation-delay: 6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(31) {
      animation: imageReveal 1s forwards;
      animation-delay: 6.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(32) {
      animation: imageReveal 1s forwards;
      animation-delay: 6.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(33) {
      animation: imageReveal 1s forwards;
      animation-delay: 6.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(34) {
      animation: imageReveal 1s forwards;
      animation-delay: 6.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(35) {
      animation: imageReveal 1s forwards;
      animation-delay: 7s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(36) {
      animation: imageReveal 1s forwards;
      animation-delay: 7.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(37) {
      animation: imageReveal 1s forwards;
      animation-delay: 7.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(38) {
      animation: imageReveal 1s forwards;
      animation-delay: 7.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(39) {
      animation: imageReveal 1s forwards;
      animation-delay: 7.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(40) {
      animation: imageReveal 1s forwards;
      animation-delay: 8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(41) {
      animation: imageReveal 1s forwards;
      animation-delay: 8.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(42) {
      animation: imageReveal 1s forwards;
      animation-delay: 8.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(43) {
      animation: imageReveal 1s forwards;
      animation-delay: 8.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(44) {
      animation: imageReveal 1s forwards;
      animation-delay: 8.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(45) {
      animation: imageReveal 1s forwards;
      animation-delay: 9s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(46) {
      animation: imageReveal 1s forwards;
      animation-delay: 9.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(47) {
      animation: imageReveal 1s forwards;
      animation-delay: 9.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(48) {
      animation: imageReveal 1s forwards;
      animation-delay: 9.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(49) {
      animation: imageReveal 1s forwards;
      animation-delay: 9.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(50) {
      animation: imageReveal 1s forwards;
      animation-delay: 10s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(51) {
      animation: imageReveal 1s forwards;
      animation-delay: 10.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(52) {
      animation: imageReveal 1s forwards;
      animation-delay: 10.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(53) {
      animation: imageReveal 1s forwards;
      animation-delay: 10.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(54) {
      animation: imageReveal 1s forwards;
      animation-delay: 10.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(55) {
      animation: imageReveal 1s forwards;
      animation-delay: 11s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(56) {
      animation: imageReveal 1s forwards;
      animation-delay: 11.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(57) {
      animation: imageReveal 1s forwards;
      animation-delay: 11.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(58) {
      animation: imageReveal 1s forwards;
      animation-delay: 11.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(59) {
      animation: imageReveal 1s forwards;
      animation-delay: 11.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(60) {
      animation: imageReveal 1s forwards;
      animation-delay: 12s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(61) {
      animation: imageReveal 1s forwards;
      animation-delay: 12.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(62) {
      animation: imageReveal 1s forwards;
      animation-delay: 12.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(63) {
      animation: imageReveal 1s forwards;
      animation-delay: 12.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(64) {
      animation: imageReveal 1s forwards;
      animation-delay: 12.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(65) {
      animation: imageReveal 1s forwards;
      animation-delay: 13s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(66) {
      animation: imageReveal 1s forwards;
      animation-delay: 13.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(67) {
      animation: imageReveal 1s forwards;
      animation-delay: 13.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(68) {
      animation: imageReveal 1s forwards;
      animation-delay: 13.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(69) {
      animation: imageReveal 1s forwards;
      animation-delay: 13.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(70) {
      animation: imageReveal 1s forwards;
      animation-delay: 14s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(71) {
      animation: imageReveal 1s forwards;
      animation-delay: 14.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(72) {
      animation: imageReveal 1s forwards;
      animation-delay: 14.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(73) {
      animation: imageReveal 1s forwards;
      animation-delay: 14.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(74) {
      animation: imageReveal 1s forwards;
      animation-delay: 14.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(75) {
      animation: imageReveal 1s forwards;
      animation-delay: 15s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(76) {
      animation: imageReveal 1s forwards;
      animation-delay: 15.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(77) {
      animation: imageReveal 1s forwards;
      animation-delay: 15.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(78) {
      animation: imageReveal 1s forwards;
      animation-delay: 15.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(79) {
      animation: imageReveal 1s forwards;
      animation-delay: 15.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(80) {
      animation: imageReveal 1s forwards;
      animation-delay: 16s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(81) {
      animation: imageReveal 1s forwards;
      animation-delay: 16.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(82) {
      animation: imageReveal 1s forwards;
      animation-delay: 16.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(83) {
      animation: imageReveal 1s forwards;
      animation-delay: 16.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(84) {
      animation: imageReveal 1s forwards;
      animation-delay: 16.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(85) {
      animation: imageReveal 1s forwards;
      animation-delay: 17s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(86) {
      animation: imageReveal 1s forwards;
      animation-delay: 17.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(87) {
      animation: imageReveal 1s forwards;
      animation-delay: 17.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(88) {
      animation: imageReveal 1s forwards;
      animation-delay: 17.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(89) {
      animation: imageReveal 1s forwards;
      animation-delay: 17.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(90) {
      animation: imageReveal 1s forwards;
      animation-delay: 18s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(91) {
      animation: imageReveal 1s forwards;
      animation-delay: 18.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(92) {
      animation: imageReveal 1s forwards;
      animation-delay: 18.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(93) {
      animation: imageReveal 1s forwards;
      animation-delay: 18.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(94) {
      animation: imageReveal 1s forwards;
      animation-delay: 18.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(95) {
      animation: imageReveal 1s forwards;
      animation-delay: 19s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(96) {
      animation: imageReveal 1s forwards;
      animation-delay: 19.2s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(97) {
      animation: imageReveal 1s forwards;
      animation-delay: 19.4s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(98) {
      animation: imageReveal 1s forwards;
      animation-delay: 19.6s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(99) {
      animation: imageReveal 1s forwards;
      animation-delay: 19.8s; }
    /* line 30, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item:nth-child(100) {
      animation: imageReveal 1s forwards;
      animation-delay: 20s; }
    /* line 43, src/assets/sass/_component/column-with-image.sass */
    .column_with_image__item .img-fluid {
      margin-bottom: 20px;
      width: 210px; }

@keyframes imageReveal {
  0% {
    opacity: 0;
    margin-left: -20px; }
  100% {
    opacity: 1;
    margin-left: 0; } }

/* line 1, src/assets/sass/_component/text-bold.sass */
.text-bold {
  display: block; }
  /* line 8, src/assets/sass/_component/text-bold.sass */
  .text-bold .text-center {
    width: 100%; }
  /* line 16, src/assets/sass/_component/text-bold.sass */
  .text-bold__headline {
    margin-bottom: 1rem; }
  /* line 22, src/assets/sass/_component/text-bold.sass */
  .text-bold h3 {
    margin-bottom: 0; }

/* line 1, src/assets/sass/_component/three-columns.sass */
.bg-red {
  background: #C70018;
  transition: background 0.3s; }
  /* line 5, src/assets/sass/_component/three-columns.sass */
  .bg-red:hover {
    background: #3C3C3C; }

/* line 9, src/assets/sass/_component/three-columns.sass */
.three_columns {
  color: #fff;
  padding: 40px 20px;
  width: 100%;
  font-family: "Freight Sans W03 Bold"; }
  /* line 20, src/assets/sass/_component/three-columns.sass */
  .three_columns__section .base__content {
    padding-left: 0; }
  /* line 23, src/assets/sass/_component/three-columns.sass */
  .three_columns__section a {
    color: #fff;
    text-decoration: none; }
  /* line 26, src/assets/sass/_component/three-columns.sass */
  .three_columns h1 {
    margin-bottom: 36px;
    font-family: "Freight Sans W03 Medium";
    position: relative; }
  /* line 31, src/assets/sass/_component/three-columns.sass */
  .three_columns h1:hover:after {
    content: "";
    opacity: 1;
    width: 40px;
    height: 10px;
    display: inline-block;
    color: #fff;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0; }
  /* line 43, src/assets/sass/_component/three-columns.sass */
  .three_columns .col--50 {
    margin-bottom: 40px; }

/* line 3, src/assets/sass/_component/cookie-banner.sass */
.cookie-modal__button {
  border-color: #585858 !important;
  color: #585858 !important; }
  /* line 7, src/assets/sass/_component/cookie-banner.sass */
  .cookie-modal__button:hover {
    background-color: #585858 !important;
    border-color: #585858 !important;
    color: #fff !important; }
  /* line 13, src/assets/sass/_component/cookie-banner.sass */
  .cookie-modal__button.primary {
    border-color: #C70018 !important;
    color: #fff !important;
    background-color: #C70018 !important; }
    /* line 18, src/assets/sass/_component/cookie-banner.sass */
    .cookie-modal__button.primary:hover {
      background-color: #C70018 !important;
      border-color: #C70018 !important;
      color: #fff !important; }

/* line 23, src/assets/sass/_component/cookie-banner.sass */
.cookie-modal__check {
  left: 4px !important; }

/* line 26, src/assets/sass/_component/cookie-banner.sass */
.cookie-modal__text a {
  color: #000 !important; }
  /* line 29, src/assets/sass/_component/cookie-banner.sass */
  .cookie-modal__text a:visited {
    color: #000 !important; }
  @media (max-width: 87.49em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; } }
  @media (max-width: 74.99em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; }
    /* line 20, src/assets/sass/_lib/base.sass */
    .base__content {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (max-width: 59.99em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; }
    /* line 20, src/assets/sass/_lib/base.sass */
    .base__content {
      padding-left: 15px;
      padding-right: 11%; }
    /* line 74, src/assets/sass/_component/menu.sass */
    nav.header__menu.is-active .menu__item {
      opacity: 0; }
      /* line 12, src/assets/sass/_component/header.sass */
      .header.is-active {
        top: 0; } }
  @media (max-width: 47.99em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; }
    /* line 20, src/assets/sass/_lib/base.sass */
    .base__content {
      padding-left: 35px;
      padding-right: 16%; }
    /* line 11, src/assets/sass/_lib/text.sass */
    h2 {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 1rem; }
    /* line 24, src/assets/sass/_lib/text.sass */
    h3, blockquote p, .overlay__content p {
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.18px; }
    /* line 37, src/assets/sass/_lib/text.sass */
    h4 {
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.18px; }
    /* line 12, src/assets/sass/_component/image.sass */
    .image__wrap.base__content {
      padding-right: 0;
      padding-left: 0; }
      /* line 66, src/assets/sass/_component/image.sass */
      .image__text {
        width: 80%; }
  /* line 35, src/assets/sass/_component/slider.sass */
  .slider__wrap.base__content {
    padding-right: 0;
    padding-left: 0; }
        /* line 118, src/assets/sass/_component/header.sass */
        .header__menu .menu__item a {
          font-size: 32px;
          line-height: 36px; } }
  @media (max-width: 34.99em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; }
    /* line 5, src/assets/sass/_component/image.sass */
    .image {
      height: 465px; }
      /* line 17, src/assets/sass/_component/image.sass */
      .image .img-fluid {
        height: 100%;
        left: -50%;
        position: relative;
        width: auto; } }
  @media (max-width: 28.115em) {
  /* line 8, src/assets/sass/_lib/mq.sass */
  html {
    margin: 0; } }
  @media (min-width: 60em) {
        /* line 9, src/assets/sass/_lib/grid.sass */
        .row .col--50 {
          -ms-flex: 1;
              flex: 1; }
    /* line 1, src/assets/sass/_lib/padding.sass */
    .padding {
      padding: 75px 0; }
  /* line 10, src/assets/sass/_lib/padding.sass */
  section:first-of-type {
    margin-top: 90px; }
    /* line 19, src/assets/sass/_lib/padding.sass */
    section:last-of-type {
      padding-bottom: 300px; }
      /* line 61, src/assets/sass/_lib/text.sass */
      .text__item__centered {
        width: 70%;
        margin-right: auto;
        margin-left: auto; }
    /* line 1, src/assets/sass/_component/button.sass */
    .btn-image {
      margin-bottom: 0;
      margin-left: 0 !important;
      width: 280px; }
  /* line 45, src/assets/sass/_component/button.sass */
  .buttons__row {
    width: 70%;
    margin-right: auto;
    margin-left: auto; }
  /* line 51, src/assets/sass/_component/button.sass */
  .arrow {
    display: none; }
      /* line 29, src/assets/sass/_component/footer.sass */
      .footer__top {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
        /* line 41, src/assets/sass/_component/footer.sass */
        .footer__top__row {
          -ms-flex-preferred-size: auto !important;
              flex-basis: auto !important;
          margin-bottom: 0; }
          /* line 53, src/assets/sass/_component/footer.sass */
          .footer__top__row:nth-child(5) {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
                flex-direction: column; }
    /* line 1, src/assets/sass/_component/fixed-logo.sass */
    .fixed-logo {
      right: 0; }
      /* line 15, src/assets/sass/_component/fixed-logo.sass */
      .fixed-logo svg {
        height: 393px !important; }
    /* line 59, src/assets/sass/_component/image.sass */
    .image--left {
      width: 90% !important; }
      /* line 66, src/assets/sass/_component/image.sass */
      .image__text {
        width: 44%; }
      /* line 83, src/assets/sass/_component/image.sass */
      .image__text h1 {
        margin-bottom: 30px; }
    /* line 58, src/assets/sass/_component/image-text.sass */
    .image-text__text {
      margin-left: 8%;
      max-width: 45%;
      padding-right: 63px; }
  /* line 79, src/assets/sass/_component/image-text.sass */
  .image-text--reversed .row {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; }
    /* line 83, src/assets/sass/_component/image-text.sass */
    .image-text--reversed .image-text__text {
      margin-right: 0; }
  /* line 89, src/assets/sass/_component/image-text.sass */
  .image-text--reversed .image-text__image {
    margin-right: 10%; }
  /* line 99, src/assets/sass/_component/image-text.sass */
  .image-text--reduced .image-text__text {
    padding-right: 0;
    margin-right: 8%; }
  /* line 104, src/assets/sass/_component/image-text.sass */
  .image-text--reduced .row {
    width: 92%;
    margin-left: auto;
    margin-right: auto; }
      /* line 17, src/assets/sass/_component/overlay.sass */
      .overlay__close {
        right: 10%; }
      /* line 50, src/assets/sass/_component/overlay.sass */
      .overlay__inner {
        width: 632px !important; }
    /* line 62, src/assets/sass/_component/overlay.sass */
    .overlay__content {
      width: 80%; }
      /* line 83, src/assets/sass/_component/overlay.sass */
      .overlay__content p {
        margin-bottom: 30px; }
    /* line 4, src/assets/sass/_component/menu.sass */
    ul.menu__items {
      margin-top: -30px; }
      /* line 11, src/assets/sass/_component/menu.sass */
      ul.menu__items > li.menu__item {
        padding: 30px 20px; }
        /* line 37, src/assets/sass/_component/menu.sass */
        ul.menu__items li a:hover:after {
          content: "";
          opacity: 1;
          width: 40px;
          height: 10px;
          display: inline-block;
          color: #fff;
          background: #fff;
          position: absolute;
          top: 44px;
          left: 0; }
  /* line 4, src/assets/sass/_component/slider.sass */
  .slick-slider {
    margin-right: 8%; }
      /* line 54, src/assets/sass/_component/header.sass */
      .header__wrapper {
        margin-bottom: 1rem; }
      /* line 64, src/assets/sass/_component/header.sass */
      .header__container {
        margin-top: 0;
        padding: 40px 20px; }
      /* line 91, src/assets/sass/_component/header.sass */
      .header__menu {
        padding-left: 0; }
        /* line 106, src/assets/sass/_component/header.sass */
        .header__menu .menu__items {
          margin-left: 40%; }
      /* line 123, src/assets/sass/_component/header.sass */
      .header__menu__trigger {
        margin-right: 0; }
      /* line 9, src/assets/sass/_component/column-with-image.sass */
      .column_with_image__wrap {
        margin-left: 7%; }
        /* line 43, src/assets/sass/_component/column-with-image.sass */
        .column_with_image__item .img-fluid {
          width: 260px; }
    /* line 1, src/assets/sass/_component/text-bold.sass */
    .text-bold {
      display: -ms-flexbox;
      display: flex;
      width: 100%; }
      /* line 8, src/assets/sass/_component/text-bold.sass */
      .text-bold .text-center {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-direction: column;
            flex-direction: column; }
    /* line 19, src/assets/sass/_component/text-bold.sass */
    .text-bold__text {
      width: 52%; }
    /* line 25, src/assets/sass/_component/text-bold.sass */
    .text-bold h2 {
      margin-bottom: 36px; }
    /* line 9, src/assets/sass/_component/three-columns.sass */
    .three_columns {
      padding: 380px 10% 80px 20%;
      margin-left: -15%; }
      /* line 46, src/assets/sass/_component/three-columns.sass */
      .three_columns .col--50:not(:last-of-type) {
        margin-right: 30px; }
      /* line 43, src/assets/sass/_component/three-columns.sass */
      .three_columns .col--50 {
        margin-bottom: 0; } }
  @media (min-width: 48em) {
    /* line 1, src/assets/sass/_lib/padding.sass */
    .padding {
      padding: 60px 0; }
  /* line 10, src/assets/sass/_lib/padding.sass */
  section:first-of-type {
    padding-top: 0;
    margin-top: 65px; }
    /* line 19, src/assets/sass/_lib/padding.sass */
    section:last-of-type {
      padding-bottom: 150px; }
    /* line 1, src/assets/sass/_lib/text.sass */
    h1 {
      font-size: 60px;
      line-height: 68px;
      margin-bottom: 36px; }
    /* line 1, src/assets/sass/_component/button.sass */
    .btn-image {
      margin-right: auto;
      margin-left: auto; }
      /* line 29, src/assets/sass/_component/footer.sass */
      .footer__top {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-direction: row;
            flex-direction: row; }
        /* line 41, src/assets/sass/_component/footer.sass */
        .footer__top__row {
          -ms-flex: 1 0 50%;
              flex: 1 0 50%; }
          /* line 46, src/assets/sass/_component/footer.sass */
          .footer__top__row:nth-child(5) {
            display: -ms-flexbox;
            display: flex; }
      /* line 15, src/assets/sass/_component/fixed-logo.sass */
      .fixed-logo svg {
        height: 140px; }
    /* line 42, src/assets/sass/_component/image.sass */
    .image--right {
      margin-left: auto; }
    /* line 59, src/assets/sass/_component/image.sass */
    .image--left {
      margin-right: auto; }
      /* line 66, src/assets/sass/_component/image.sass */
      .image__text {
        left: 65px;
        bottom: 75px; }
      /* line 91, src/assets/sass/_component/image.sass */
      .image h1 {
        font-size: 60px;
        line-height: 68px;
        margin-bottom: 1rem; }
      /* line 99, src/assets/sass/_component/image.sass */
      .image h1:hover:after {
        top: 70px; }
      /* line 17, src/assets/sass/_component/overlay.sass */
      .overlay__close {
        top: 13%; }
      /* line 36, src/assets/sass/_component/overlay.sass */
      .overlay__logo {
        margin-top: 50px; }
    /* line 62, src/assets/sass/_component/overlay.sass */
    .overlay__content {
      height: 50%; }
        /* line 90, src/assets/sass/_component/overlay.sass */
        .overlay__content p em {
          white-space: nowrap; }
      /* line 11, src/assets/sass/_component/menu.sass */
      ul.menu__items > li.menu__item {
        padding: 23px 20px 14px 0;
        position: relative; }
    /* line 56, src/assets/sass/_component/menu.sass */
    nav.header__menu.is-active {
      margin-top: 0; }
      /* line 63, src/assets/sass/_component/menu.sass */
      nav.header__menu.is-active .menu__item {
        font-size: 40px;
        line-height: 40px; }
      /* line 82, src/assets/sass/_component/header.sass */
      .header__logo svg {
        width: 180px;
        height: 140px; }
    /* line 1, src/assets/sass/_component/column-with-image.sass */
    .column_with_image {
      padding-top: 0;
      padding-bottom: 35px; }
      /* line 9, src/assets/sass/_component/column-with-image.sass */
      .column_with_image__wrap {
        -ms-flex-direction: row;
            flex-direction: row; }
      /* line 22, src/assets/sass/_component/column-with-image.sass */
      .column_with_image__item {
        margin-bottom: 0; }
        /* line 37, src/assets/sass/_component/column-with-image.sass */
        .column_with_image__item:nth-child(2) {
          margin-top: 50px; }
        /* line 40, src/assets/sass/_component/column-with-image.sass */
        .column_with_image__item:nth-child(3) {
          margin-top: -50px; } }
  @media (min-width: 75em) {
    /* line 1, src/assets/sass/_component/button.sass */
    .btn-image {
      width: 370px; }
    /* line 1, src/assets/sass/_component/fixed-logo.sass */
    .fixed-logo {
      padding-right: calc(50vw - 600px); }
    /* line 18, src/assets/sass/_component/image-text.sass */
    .image-text__image .map__mobile {
      display: none; }
      /* line 22, src/assets/sass/_component/image-text.sass */
      .image-text__image .map__desktop {
        display: block; }
      /* line 28, src/assets/sass/_component/image-text.sass */
      .image-text__image .icon__map {
        opacity: 0;
        width: 48px;
        height: 48px;
        top: -10%;
        left: 48%;
        animation: mapRevealXl 1s forwards; }
      .image-text__image .icon__map--2{
        top: 15%;
        left: 42%;
      }
  /* line 54, src/assets/sass/_component/image-text.sass */
  .image-text .img-fluid {
    width: 540px; }
    /* line 58, src/assets/sass/_component/image-text.sass */
    .image-text__text {
      margin-top: 70px; }
  /* line 95, src/assets/sass/_component/image-text.sass */
  .image-text--reduced .img-fluid {
    width: 480px; }
      /* line 17, src/assets/sass/_component/overlay.sass */
      .overlay__close {
        right: 16.5%; }
      /* line 36, src/assets/sass/_component/overlay.sass */
      .overlay__logo {
        -ms-flex-pack: start;
            justify-content: flex-start; }
    /* line 62, src/assets/sass/_component/overlay.sass */
    .overlay__content {
      width: 67%;
      height: 642px; }
        /* line 37, src/assets/sass/_component/menu.sass */
        ul.menu__items li a:hover:after {
          top: 74px; }
      /* line 63, src/assets/sass/_component/menu.sass */
      nav.header__menu.is-active .menu__item {
        font-size: 60px;
        line-height: 68px; }
      /* line 64, src/assets/sass/_component/header.sass */
      .header__container {
        padding: 40px 0 0 0; } }
  @media (min-width: 87.5em) {
    /* line 10, src/assets/sass/_component/footer.sass */
    .footer .base__content {
      max-width: 1300px; }
    /* line 42, src/assets/sass/_component/image.sass */
    .image--right {
      margin-right: -10%; }
      /* line 50, src/assets/sass/_component/overlay.sass */
      .overlay__inner {
        width: 80% !important; } }
  @media only screen and (min-device-width: 560px) and (max-device-width: 812px) and (orientation: landscape) {
  /* line 151, src/assets/sass/_component/header.sass */
  nav.header__menu.is-active .menu__items {
    max-height: 64vh; } }
