.checkbox {
  background-color: #fff;
  padding: 1em;
}

@font-face {
  font-family: "Akkurat";
  src: url("../bootstrap/fonts/lineto-akkurat-regular-c.eot") format("eot"), url("../bootstrap/fonts/lineto-akkurat-regular-c.woff") format("woff"), url("../bootstrap/fonts/lineto-akkurat-regular-c.svg") format("svg");
}
@font-face {
  font-family: "Akkurat-Light";
  src: url("../bootstrap/fonts/lineto-akkurat-light-c.eot") format("eot"), url("../bootstrap/fonts/lineto-akkurat-light-c.woff") format("woff"), url("../bootstrap/fonts/lineto-akkurat-light-c.svg") format("svg");
}
@font-face {
  font-family: "Akkurat-Bold";
  src: url("../bootstrap/fonts/lineto-akkurat-bold-c.eot") format("eot"), url("../bootstrap/fonts/lineto-akkurat-bold-c.woff") format("woff"), url("../bootstrap/fonts/lineto-akkurat-bold-c.svg") format("svg");
}
body {
  font-family: "Akkurat", "Arial", sans-serif;
  color: white;
  text-decoration: none;
}

/*
* PATHs
*/
/*
* COLORS
*/
/* -----
Responsive Font
----- */
/* -----
Size
----- */
/* -----
Cursor
----- */
/*
    Returns a vw value, can be used with anything.
*/
/* -----
Placeholder style
----- */
/* -----
Selection style
----- */
/* -----
Responsive hover
----- */
/* -----
Mirrored link
----- */
/* -----
Unmirrored link
----- */
.static-svg svg, .animation-svg svg {
  overflow: visible;
}
.static-svg svg path, .animation-svg svg path {
  fill: none;
  stroke-width: 3.5;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*
* Grid Constants
*/
/*
* Grid mixin
*/
/*
* Column mixin
*/
.grid-container {
  max-width: 1500px;
  flex-basis: auto;
  flex-grow: 1;
}

.grid-content {
  margin-right: -4vw;
}

.grid {
  margin-left: -2vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: start;
}
.grid > * {
  flex: 0 0 auto;
}

.grid-6 {
  padding: 2vw 2vw 2vw 2vw;
  width: 25%;
}

.grid-8 {
  width: 33.3333333333%;
}

.grid-16 {
  width: 66.6666666667%;
}

.grid-12 {
  padding: 0 6vw;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .grid-12 {
    width: 100%;
  }
}

.grid-24 {
  width: 100%;
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  border: none;
  color: #333;
}

.flickity-button-icon {
  background: transparent;
}

.flickity-button:hover {
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon:hover {
  stroke: #CCC;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 100px;
  height: 100px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8px;
  /* vertically center */
  transform: translateY(-50%);
  background: transparent;
}

.flickity-prev-next-button.previous {
  left: 10px;
  opacity: 0;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* -----
Easings
----- */
a,
a:visited,
a:active,
a:hover {
  color: #fff;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.75em;
  font-family: "Akkurat-Bold", "Arial", sans-serif;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  color: #fff;
}

body {
  background: #231f20;
}

.original-title.break-word {
  word-break: break-all;
  hyphens: auto;
}
.original-title.break-word + span > span {
  word-break: break-all;
  hyphens: auto;
}
.original-title.break-word + span + span > span {
  word-break: break-all;
  hyphens: auto;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid #000;
  height: 2px;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}
body.has-modal-open, body.lock-scroll {
  overflow: hidden;
}
body.is-secondary-transitioning {
  overflow: hidden;
}
body.is-loading {
  opacity: 0;
}

.page-view {
  position: relative;
}
.page-view:before {
  content: "";
  position: fixed;
  z-index: 181;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(35, 31, 32, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s opacity ease, 0.5s visibility;
}
.menu-is-open .page-view:before {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  .menu-is-open .page-view:before {
    top: 5.8vw;
  }
}

.js-transition-element {
  z-index: -1;
  position: relative;
}

.content-wrapper {
  padding: 4vw 4vw 4vw 4vw;
}

.page__inner.prevent-transition {
  transition: none;
}
.page__inner.show {
  opacity: 1;
  visibility: visible;
}

.page-transition-element {
  width: 100vw;
  height: 50vh;
  position: fixed;
  left: 0;
}
.show .page-transition-element {
  transform: none !important;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.25s ease;
}
.page-transition-element.horizontal {
  height: 100vh;
  width: 50vw;
  transform: scaleX(0);
}
.page-transition-element.vertical {
  transform: scaleY(0);
}
.page-transition-element--first {
  top: 0;
  transform-origin: top;
}
.page-transition-element--first.from-center {
  transform-origin: bottom;
}
.page-transition-element--first.horizontal {
  transform-origin: left;
}
.page-transition-element--first.horizontal.from-center {
  transform-origin: right;
}
.page-transition-element--second {
  top: 50vh;
  transform-origin: bottom;
}
.page-transition-element--second.from-center {
  transform-origin: top;
}
.page-transition-element--second.horizontal {
  top: 0;
  left: 50vw;
  transform-origin: right;
}
.page-transition-element--second.horizontal.from-center {
  transform-origin: left;
}

.page-transition-curtains {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  color: #231f20;
  z-index: 200;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .page-transition-curtains {
    width: 96%;
  }
}
.page-transition-curtains .page-transition-curtain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: currentColor;
  transform: scaleY(0);
}
.page-transition-curtains .page-transition-curtain--top {
  top: 0;
  transform-origin: top;
}
.page-transition-curtains .page-transition-curtain--bottom {
  bottom: 0;
  transform-origin: bottom;
}
.page-transition-curtains.is-closed .page-transition-curtain {
  transform: none;
  transition: 0.5s transform cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.page {
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .page {
    width: 100%;
    padding-left: 4%;
  }
}

.sub-view__page .static-content {
  text-align: center;
}
.sub-view__page .static-content .js-animate-in-view:not(.js-extra-sidebar):not(.flexible-image) {
  opacity: 0;
  transform: translateY(2em);
  transition: 0.55s opacity ease, 0.55s transform cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sub-view__page .static-content .js-animate-in-view:not(.js-extra-sidebar):not(.flexible-image).is-in-view:not(.js-extra-sidebar):not(.flexible-image) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

p {
  margin: 0;
  padding: 0 0 10px;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* legacy properties */
  -webkit-hyphenate-limit-before: 8;
  -webkit-hyphenate-limit-after: 4;
  /* current proposal */
  -moz-hyphenate-limit-chars: 10 3 2;
  /* not yet supported */
  -webkit-hyphenate-limit-chars: 10 3 2;
  /* not yet supported */
  -ms-hyphenate-limit-chars: 10 3 2;
  hyphenate-limit-chars: 10 3 2;
}

p a {
  text-decoration: underline;
}

a.pimcore_glossary {
  text-decoration: underline;
}

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

a:hover {
  text-decoration: underline;
}

a:hover .lightbox-icon,
a:hover div.image-holder {
  transform: scale(1.05) translateY(-50%) translateX(-50%);
  opacity: 0.8;
  transition: 0.55s opacity ease, 0.55s transform cubic-bezier(0.215, 0.61, 0.355, 1);
}

form {
  width: 100%;
}

table {
  width: 100%;
}

table.single-line tr {
  border-bottom: 2px solid #000;
}
table.single-line td {
  padding: 0.8vw 0.4vw 0.8vw 0.4vw;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

.button-reset {
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

:focus:not(.focus-ring) {
  outline-width: 0;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down a, .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down a:active, .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down a:hover {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
}

#svg-defs {
  display: none;
}

.is-animating-out, .is-animating-in {
  position: absolute;
  left: 0;
}
.is-animating-out:not(.single-art), .is-animating-in:not(.single-art) {
  top: 0;
}

.secondary-region {
  position: relative;
  width: 100%;
}
.secondary-region__inner {
  width: 100%;
}
.secondary-region__inner.is-animating-out {
  position: relative;
}

.is-secondary-transitioning-end .secondary-region__inner.is-animating-out {
  position: absolute;
}
.is-secondary-transitioning-end .secondary-region__inner.is-animating-in {
  position: relative;
}

.old-browser-message {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #f53232;
  color: #fff;
}

.select2-search--dropdown .select2-search__field {
  border-bottom: 1px solid #231f20;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.no-content {
  margin: 60px auto 80px;
  color: rgba(35, 31, 32, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

.button {
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  text-align: left;
  padding: 0.4em 2.5em 0.2em 0.5em !important;
  height: auto;
  width: 100%;
}
.button.full-width {
  width: 100%;
  display: block;
}
.button:after {
  stroke-width: 20px;
  width: 15px;
  float: right;
  position: absolute;
  right: 5%;
  top: 9%;
}
@media only screen and (max-width: 1023px) {
  .button:after {
    width: 15px;
  }
}
.button.black {
  background-color: #231f20;
}
.button.red {
  background-color: #FF0000;
}
.button.white {
  background-color: #fff;
  color: #231f20;
}
.button.clear-font {
  color: transparent;
}
.button:hover {
  opacity: 0.7;
  text-decoration: none;
}

.center_navigation {
  position: absolute;
  height: 100vh;
  display: flex;
  align-items: top;
  flex-direction: row;
  top: -1.2em;
}
@media only screen and (min-width: 1024px) {
  .center_navigation {
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .center_navigation {
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .center_navigation {
    justify-content: center;
    flex-direction: column;
    top: 1em;
    display: flex;
    width: 100%;
  }
}

.bottom_navigation {
  position: absolute;
  display: flex;
  align-items: bottom;
  flex-direction: row;
  height: 20vh;
  bottom: 1em;
  top: auto;
}
@media only screen and (min-width: 1024px) {
  .bottom_navigation {
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .bottom_navigation {
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .bottom_navigation {
    justify-content: center;
    flex-direction: column;
    top: 1em;
    display: flex;
    width: 100%;
  }
}

.navigation-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 200;
  top: 2vw;
}
.navigation-menu > * {
  flex: 0 0 auto;
}
.navigation-menu__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 1000;
}
@media only screen and (min-width: 1024px) {
  .navigation-menu__inner {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-menu__inner {
    height: 100%;
    background-color: #FF0000;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-menu {
    top: auto;
  }
}
.navigation-menu.has-sidebar-open .close-sidebar {
  opacity: 0.9;
  visibility: visible;
}
.navigation-menu .close-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #231f20;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.has-zoom-open .navigation-menu {
  transform: translateX(-100%);
}
.navigation-menu svg.nav-icon,
.navigation-menu svg.nav-icon path,
.navigation-menu svg.nav-icon circle,
.navigation-menu svg.nav-icon polyline,
.navigation-menu svg.nav-icon line {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 10px;
}
.navigation-menu #search .nav-icon,
.navigation-menu #search .nav-icon path {
  stroke-miterlimit: 0;
  stroke-width: 2px;
}
.navigation-menu svg.close-icon {
  display: none;
}
.navigation-menu svg.close-icon,
.navigation-menu svg.close-icon line {
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 15px;
}
@media only screen and (max-width: 1023px) {
  .navigation-menu {
    transition: 0.3s transform cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  body:not(.menu-is-open) .navigation-menu.is-mobile-hidden {
    transform: translateY(100%);
  }
  body:not(.menu-is-open) .navigation-menu.is-mobile-hidden #hamburger {
    transform: translateY(-15%);
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .navigation-menu {
    display: flex;
    height: 10vw;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-menu {
    height: 12vw;
  }
}
@media only screen and (max-width: 1023px) and (max-height: 770px) {
  .navigation-menu {
    height: 8vw;
  }
}
@media only screen and (orientation: portrait) and (max-width: 767px) {
  .navigation-menu {
    height: 12vw;
  }
}
@media only screen and (min-width: 1024px) {
  .navigation-menu {
    width: 4vw;
    height: 100%;
    padding: 0;
    transition: transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
.navigation-menu__item {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.navigation-menu a.svg-link {
  display: block;
  height: 100%;
  width: 12vw;
  padding: 2.8vw 3.2vw;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .navigation-menu a.svg-link {
    padding: 0 3vw;
    align-items: center;
    display: flex;
  }
}
@media only screen and (max-width: 1023px) and (max-height: 770px) {
  .navigation-menu a.svg-link {
    padding: 0 2vw;
    width: 8vw;
    align-items: center;
    display: flex;
  }
}
@media only screen and (orientation: portrait) and (max-width: 767px) {
  .navigation-menu a.svg-link {
    padding: 0 2vw;
    align-items: center;
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .navigation-menu a.svg-link {
    width: 12vw;
    padding: 2vw;
  }
}
@media only screen and (min-width: 1024px) {
  .navigation-menu a.svg-link {
    width: 100%;
    padding: 0;
    height: auto;
    transform: translateY(-50%);
    transition: 0.3s transform cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .has-trip .navigation-menu a.svg-link {
    transform: none;
  }
}
.navigation-menu a.svg-link .animation-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.navigation-menu a.svg-link svg {
  stroke: #fff;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .navigation-menu a.svg-link svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.1vw;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-menu a.svg-link .animation-svg,
.navigation-menu a.svg-link .static-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.is-desktop .navigation-menu a.svg-link:hover .static-svg svg.nav-icon {
  opacity: 0;
  transition: 0.25s opacity ease;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path,
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line,
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon,
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text,
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle {
  stroke-dashoffset: 0 !important;
  transition: 0.75s stroke-dashoffset cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(1),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(1),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(1),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(1),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(1) {
  transition-delay: 0.1s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(2),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(2),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(2),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(2),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(2) {
  transition-delay: 0.2s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(3),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(3),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(3),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(3),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(3) {
  transition-delay: 0.3s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(4),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(4),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(4),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(4),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(4) {
  transition-delay: 0.4s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(5),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(5),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(5),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(5),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(5) {
  transition-delay: 0.5s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(6),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(6),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(6),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(6),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(6) {
  transition-delay: 0.6s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(7),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(7),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(7),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(7),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(7) {
  transition-delay: 0.7s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(8),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(8),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(8),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(8),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(8) {
  transition-delay: 0.8s;
}
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg path:nth-child(9),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg line:nth-child(9),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg polygon:nth-child(9),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg text:nth-child(9),
.is-desktop .navigation-menu a.svg-link:hover .animation-svg svg circle:nth-child(9) {
  transition-delay: 0.9s;
}
.navigation-menu a.svg-link:active .static-svg svg.nav-icon {
  opacity: 0;
  transition: 0.25s opacity ease;
}
.navigation-menu a.svg-link:active .animation-svg svg path,
.navigation-menu a.svg-link:active .animation-svg svg line,
.navigation-menu a.svg-link:active .animation-svg svg polygon,
.navigation-menu a.svg-link:active .animation-svg svg text,
.navigation-menu a.svg-link:active .animation-svg svg circle {
  stroke-dashoffset: 0 !important;
  transition: 0.75s stroke-dashoffset cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(1),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(1),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(1),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(1),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(1) {
  transition-delay: 0.1s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(2),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(2),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(2),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(2),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(2) {
  transition-delay: 0.2s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(3),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(3),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(3),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(3),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(3) {
  transition-delay: 0.3s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(4),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(4),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(4),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(4),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(4) {
  transition-delay: 0.4s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(5),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(5),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(5),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(5),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(5) {
  transition-delay: 0.5s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(6),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(6),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(6),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(6),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(6) {
  transition-delay: 0.6s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(7),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(7),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(7),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(7),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(7) {
  transition-delay: 0.7s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(8),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(8),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(8),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(8),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(8) {
  transition-delay: 0.8s;
}
.navigation-menu a.svg-link:active .animation-svg svg path:nth-child(9),
.navigation-menu a.svg-link:active .animation-svg svg line:nth-child(9),
.navigation-menu a.svg-link:active .animation-svg svg polygon:nth-child(9),
.navigation-menu a.svg-link:active .animation-svg svg text:nth-child(9),
.navigation-menu a.svg-link:active .animation-svg svg circle:nth-child(9) {
  transition-delay: 0.9s;
}

.navigation-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  z-index: 1;
  transform: translateY(100%) translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
  font-size: 1vw;
  /*line-height: ($responsive * 1vw); */
}
@media (max-width: 1300px) {
  .navigation-sidebar {
    font-size: 13px;
  }
}
@media (min-width: 2200px) {
  .navigation-sidebar {
    font-size: 22px;
  }
}
.navigation-sidebar__content {
  position: relative;
  height: 100%;
  padding: 2.8vw 0 0 7.6vw;
}
.navigation-sidebar__content a,
.navigation-sidebar__content li.title h3 {
  color: #FFF;
}
@media only screen and (max-width: 1023px) {
  .navigation-sidebar__content a,
.navigation-sidebar__content li.title h3 {
    font-size: 1.2vw;
    /*line-height: ($responsive * 1vw); */
  }
}
@media only screen and (max-width: 1023px) and (max-width: 1500px) {
  .navigation-sidebar__content a,
.navigation-sidebar__content li.title h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1500px) {
  .navigation-sidebar__content a,
.navigation-sidebar__content li.title h3 {
    font-size: 18px;
  }
}
.navigation-sidebar__content svg {
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  .navigation-sidebar__content svg {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-sidebar__content {
    padding: 0;
  }
}
.navigation-sidebar.left-align {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .navigation-sidebar.left-align {
    padding: 12vw;
    text-align: left;
  }
}
.navigation-sidebar h3 {
  text-transform: uppercase;
}
.navigation-sidebar .grid {
  margin-left: 0;
}
@media only screen and (min-width: 400px) {
  .navigation-sidebar {
    bottom: 2vw;
  }
}
@media only screen and (max-width: 1023px) {
  .navigation-sidebar {
    bottom: 12vw;
    top: auto;
    background-color: #FF0000;
    height: auto;
    transform: translateY(100%) translateX(0%);
    padding: 8vw;
  }
}
@media only screen and (max-width: 1023px) and (max-height: 770px) {
  .navigation-sidebar {
    bottom: 12vw;
  }
}
@media only screen and (min-width: 1024px) {
  .navigation-sidebar {
    top: 0;
    right: 0;
    bottom: auto;
    width: 22vw;
    transform: translateX(116%) translateY(-16%);
  }
}
.has-sidebar-open .navigation-sidebar {
  transform: none;
  opacity: 0;
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), 0.6s opacity cubic-bezier(0.77, 0, 0.175, 1);
}
.navigation-sidebar.is-active {
  z-index: 99;
  opacity: 1;
  transition-delay: 0s;
}

.animation-icon {
  display: inline-block;
  position: relative;
  height: 1em;
  width: 1em;
}
.animation-icon > span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: inline-block;
}
.animation-icon > span svg {
  height: 100% !important;
  width: 100% !important;
  display: block;
  stroke: #fff;
}

.gif {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 60%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

@media only screen and (max-width: 1023px) {
  .comingsoon .logo_left {
    display: block;
  }
}

div.box-logos {
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 4;
}
@media only screen and (max-width: 1023px) {
  div.box-logos .container {
    display: none;
  }
}
div.box-logos .bottom {
  display: block;
  position: fixed;
  margin: 0 auto;
  padding: 0;
  left: 0;
  bottom: 140px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  div.box-logos .bottom {
    bottom: 16vw;
  }
}
div.box-logos a.continue_btn {
  display: block;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  text-align: center;
}

.box-logos svg {
  min-height: 3em;
  max-height: 4em;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .box-logos svg {
    min-height: 1.3em;
    max-height: 2.1em;
    margin-bottom: 1em;
  }
}

div.box-logos div.container-fluid div.row div.col {
  size: 50%;
  margin-right: 10em;
  margin-left: 10em;
}

div.coming {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  margin-left: -9em;
  margin-top: -3em;
}

a:hover {
  text-decoration: none !important;
}

html {
  height: 100%;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-right: 35px;
    padding-left: 35px;
    margin-right: auto;
    margin-left: auto;
  }
}

div.submenu-grid-container {
  margin: 0 auto;
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  justify-items: center;
  align-items: center;
}
@media only screen and (min-width: 1500px) {
  div.submenu-grid-container {
    width: 70%;
  }
}
@media only screen and (max-width: 1023px) {
  div.submenu-grid-container {
    display: none;
  }
}
div.submenu-grid-container .submenu-grid-item {
  height: calc(100vw * 0.7 * 0.5 / 3);
}
@media only screen and (min-width: 1500px) {
  div.submenu-grid-container .submenu-grid-item {
    height: calc(100vw * 0.6 * 0.5 / 3);
  }
}
div.submenu-grid-container .submenu-grid-item video {
  width: 100%;
}
div.submenu-grid-container .submenu-grid-item.text-bottom {
  display: grid;
  align-items: end;
}
div.submenu-grid-container .submenu-grid-item.text-right {
  padding: 0 !important;
  justify-self: end;
}
div.submenu-grid-container .submenu-grid-item.text-middle {
  padding-left: 15%;
  padding-right: 15%;
  display: grid;
  align-items: center;
}
div.submenu-grid-container .submenu-grid-item.text-top {
  display: grid;
  align-items: center;
}
div.submenu-grid-container .submenu-grid-item .content-middle {
  font-size: 1.6666666667vw;
  /*line-height: ($responsive * 1vw); */
  font-weight: 500;
}
@media (max-width: 960px) {
  div.submenu-grid-container .submenu-grid-item .content-middle {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  div.submenu-grid-container .submenu-grid-item .content-middle {
    font-size: 25px;
  }
}
div.submenu-grid-container .submenu-grid-item.text-left {
  padding: 0 !important;
  justify-self: start;
}

@media only screen and (min-width: 1024px) {
  div.submenu-mobile {
    display: none;
  }
}
div.submenu-mobile {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

table.submenu {
  position: absolute;
  width: 80%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
table.submenu td, table.submenu tr {
  text-overflow: ellipsis;
  overflow: visible;
}
table.submenu img {
  width: 100%;
  overflow: visible;
}
table.submenu a {
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
table.submenu .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  font-size: 1.6666666667vw;
  /*line-height: ($responsive * 1vw); */
  font-weight: 500;
  padding: 1em !important;
}
@media (max-width: 960px) {
  table.submenu .content {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  table.submenu .content {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1500px) {
  table.submenu {
    width: 70%;
  }
}
@media only screen and (max-width: 1023px) {
  table.submenu {
    display: none;
  }
}

div.submenu {
  display: none;
}
div.submenu .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  font-size: 1.6666666667vw;
  /*line-height: ($responsive * 1vw); */
  font-weight: 500;
}
@media (max-width: 960px) {
  div.submenu .content {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  div.submenu .content {
    font-size: 25px;
  }
}
div.submenu ul {
  display: none;
  position: absolute;
  width: 60%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
div.submenu img {
  position: absolute;
  width: 80%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
div.submenu li {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  div.submenu {
    display: block;
  }
}
div.submenu .bottom {
  display: block;
  position: fixed;
  margin: 0 auto;
  padding: 0;
  left: 0;
  bottom: 16vw;
  width: 100%;
  z-index: 98;
}
div.submenu a.skip_btn {
  display: block;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  text-align: center;
}

.parallax-bg {
  /* Full height */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  position: fixed;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo_left {
  position: fixed;
  z-index: 101;
  top: 0;
}
.logo_left svg {
  /*height: 180px;*/
  width: 250px;
}
@media only screen and (max-width: 1199px) {
  .logo_left svg {
    height: 140px;
    width: 140px;
  }
}
@media only screen and (max-width: 1023px) {
  .logo_left {
    display: none;
  }
  .logo_left.mobile_on {
    display: block;
    height: auto;
    width: auto;
  }
  .logo_left.mobile_on svg {
    height: 100px;
    width: 100px;
    margin-left: 0;
    margin-top: 0;
  }
}

.logo_bar {
  height: 50px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
  position: fixed;
  text-align: center;
  background-color: #FF0000;
}
.logo_bar.mobile_on {
  display: none;
}
.logo_bar span {
  line-height: 50px;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .logo_bar {
    display: block;
  }
  .logo_bar.mobile_on {
    display: none;
  }
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 12vw;
  right: 0;
  z-index: -1;
  object-fit: cover;
}

button.mute {
  background: none;
  border: none;
  position: absolute;
  right: 80px;
  bottom: 25px;
  z-index: 1000;
}
@media only screen and (max-width: 1023px) {
  button.mute {
    bottom: 16vw;
    right: 0px;
  }
}
button.mute svg.v_on {
  display: none;
  height: 20px;
}
button.mute svg.v_off {
  display: block;
  height: 20px;
}

@media only screen and (max-width: 1023px) {
  .info,
.area-wysiwyg {
    text-align: center;
  }
}

/* LIGHTBOX */
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/static/img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/static/img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/static/img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.text-black {
  color: black;
}
.text-black a {
  color: black;
}

.full-height-scroll {
  height: auto;
}
.full-height-scroll .video-page {
  position: relative;
  height: 100vh;
}
.full-height-scroll .video-page button.play {
  position: relative;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  border: none;
  color: white;
  font-size: 30px;
}
.full-height-scroll .video-page button.play:hover {
  color: #ccc;
}
.full-height-scroll .video-page .scroll-btn-video {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.full-height-scroll .video-page .background-video-page {
  object-fit: cover;
}
.full-height-scroll .info-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  background-image: url("/static/img/HXGN_Homepage_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.full-height-scroll .info-page .info-page-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-self: stretch;
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .full-height-scroll .info-page .info-page-container {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .full-height-scroll .info-page .info-page-container {
    width: 90%;
  }
  .full-height-scroll .info-page .info-page-container h3 {
    font-size: 1.2rem;
  }
}
.full-height-scroll .info-page .scroll-btn-info {
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .full-height-scroll .info-page .scroll-btn-info {
    margin-bottom: 6rem;
  }
}
.full-height-scroll .blog-page {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}
.full-height-scroll .blog-page h1 {
  margin: 4rem auto;
}
.full-height-scroll .blog-page span {
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
.full-height-scroll .blog-page .item {
  position: relative;
}
.full-height-scroll .blog-page .item h3 {
  font-weight: bold;
  font-size: 60px;
  position: absolute;
  left: -200px;
}
.full-height-scroll .blog-page .more a,
.full-height-scroll .blog-page .more a:visited {
  color: #000;
}
.full-height-scroll .blog-page .moreBtn {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.full-height-scroll .blog-page .moreBtn:visited, .full-height-scroll .blog-page .moreBtn:active {
  color: black;
}
.full-height-scroll .blog-page .share {
  margin-top: 1em;
}
.full-height-scroll .blog-page .share li {
  float: left;
}
.full-height-scroll .blog-page .share li a {
  padding: 10px 7px 0 0;
}
.full-height-scroll .blog-page .item_card {
  background-color: #FFF;
}
.full-height-scroll .blog-page .item_card .body {
  padding: 3em;
}

.history {
  color: #231f20;
  position: relative;
  top: 0;
  width: 100%;
}
.history #history-scroll {
  scrollbar-width: none;
}
.history #history-scroll::-webkit-scrollbar {
  display: none;
}
.history .container {
  width: 730px;
}
@media only screen and (max-width: 1023px) {
  .history .container {
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .history {
    margin-top: 90px;
  }
}
.history .title_head {
  position: fixed;
  top: 30px;
  width: 100%;
}
.history .title_head h1 {
  margin: auto;
  display: block;
  color: #FFF;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .history .title_head {
    top: 60px;
    font-size: 1em;
  }
}
.history .container_wrap {
  margin-top: 190px;
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .history .container_wrap {
    margin-top: 0;
  }
}
.history .scroll {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  height: 100%;
  width: 100%;
}
.history .header {
  position: fixed;
  width: 100%;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  z-index: 100;
  top: 130px;
}
@media only screen and (max-width: 1023px) {
  .history .header {
    top: 130px;
  }
}
@media only screen and (max-width: 1023px) {
  .history .header {
    position: relative;
  }
}
@media only screen and (max-width: 1023px) {
  .history .header {
    display: none;
  }
}
.history .header h3 {
  text-align: center;
}
.history h3 {
  margin: auto;
  display: block;
  color: #FFF;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
.history .item {
  position: relative;
}
.history .item h3 {
  font-weight: bold;
  font-size: 60px;
  position: absolute;
  left: -180px;
  line-height: 0.6em;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1499px) {
  .history .item h3 {
    left: -130px;
    font-size: 50px;
  }
}
@media only screen and (max-width: 1399px) {
  .history .item h3 {
    left: -70px;
    font-size: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .history .item h3 {
    display: none;
  }
}
.history .item_card {
  background-color: #FFF;
  position: relative;
  margin-bottom: 1.5em;
}
.history .item_card img {
  width: 100%;
  max-width: none;
}
.history .item_card .lightbox-icon {
  position: absolute;
  margin: 0 auto;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 60px;
  height: 60px;
}
.history .item_card .lightbox-icon .st0 {
  fill: none;
  stroke: #E30E13;
  stroke-width: 2;
}
@media only screen and (max-width: 1023px) {
  .history .item_card .lightbox-icon {
    transform: none;
    opacity: 1;
    left: auto;
    right: 0px;
    top: 70px;
  }
}
.history .item_card:hover .lightbox-icon {
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .history .item_card:hover .lightbox-icon {
    transform: none;
  }
}
.history .item_card:hover img {
  transform: scale(1.05);
  transition: 0.5s transform ease;
}
.history .item_card .body {
  padding: 1em;
}
.history .item_card .top {
  width: 100%;
  color: #FF0000;
  text-align: center;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  display: none;
  padding: 0.8em;
}
@media only screen and (max-width: 1023px) {
  .history .item_card .top {
    display: block;
  }
}
.history .item_card .top h4 {
  font-size: 1.2em;
  margin: 0;
}
.history .item_card .top h5 {
  margin: 0;
}

section.blog {
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  section.blog {
    margin-top: 90px;
  }
}
section.blog .header {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  section.blog .header {
    position: relative;
  }
}
section.blog section {
  margin-bottom: 12vw;
}
section.blog section.area-wysiwyg {
  margin-bottom: 2rem;
}
section.blog h1 {
  margin: auto;
  display: block;
  color: #FFF;
}
section.blog span {
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
section.blog .item {
  position: relative;
}
section.blog .item h3 {
  font-weight: bold;
  font-size: 60px;
  position: absolute;
  left: -200px;
}
section.blog .more a,
section.blog .more a:visited {
  color: #000;
}
section.blog .moreBtn {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
section.blog .share {
  margin-top: 1em;
}
section.blog .share li {
  float: left;
}
section.blog .share li a {
  padding: 10px 7px 0 0;
}
section.blog .item_card {
  background-color: #FFF;
}
section.blog .item_card .body {
  padding: 3em;
}

.linkedin-svg {
  width: 22px !important;
  height: 22px !important;
}

.modal {
  font-family: "Akkurat", "Futura", "Helvetica", "Arial", sans-serif !important;
}
.modal img {
  margin: 0 auto;
  width: 100% !important;
}
.modal .modal-content {
  padding-bottom: 1rem;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
}
.modal .modal-content .modal-header {
  align-items: center;
}
.modal .modal-content .modal-header button.close {
  opacity: 1 !important;
}
.modal .modal-content .modal-header svg.modal-close-icon {
  display: block;
  width: 1.5rem;
}
.modal .modal-content .modal-header svg.modal-close-icon, .modal .modal-content .modal-header svg.modal-close-icon line {
  stroke: #231f20;
  stroke-miterlimit: 10;
  stroke-width: 15px;
}
.modal .modal-content .modal-title {
  color: #FF0000;
  font-weight: bold;
  font-family: "Akkurat-Bold", sans-serif;
}
.modal .modal-content .modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  -ms-overflow-style: none;
  /* Hide Scrollbar IE and Edge */
  scrollbar-width: none;
  /* Hide Scrollbar Firefox */
}
.modal .modal-content .modal-body::-webkit-scrollbar {
  display: none;
  /* Hide Scrollbar Chrome, Safari and Opera  */
}

.blog-detail-modal .modal-content .modal-body ul {
  list-style: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}

.agenda {
  width: 100%;
  height: 100%;
  color: #231f20;
  position: absolute;
  top: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  .agenda {
    margin-top: 90px;
  }
}
.agenda .gif {
  margin: auto;
  z-index: -1;
  position: fixed;
  top: 3em;
  left: 0;
  right: 0;
  bottom: 3em;
  width: 100%;
  height: 90%;
  object-fit: contain;
  transform: none;
}
.agenda .background {
  background: #e7f1f5;
  background: linear-gradient(120deg, #e7f1f5 0%, #99b9c6 100%);
  z-index: -2;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.agenda .toggle_agenda {
  cursor: pointer;
}
.agenda .header {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .agenda .header {
    position: relative;
  }
}
.agenda h1 {
  margin: auto;
  display: block;
  color: #231f20;
}
.agenda .dateLarge {
  font-size: 6em;
  line-height: 1em;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  color: #FF0000;
  display: block;
  text-align: center;
}
.agenda .item {
  width: 20vw;
  margin: 0 auto;
  text-align: center;
}
.agenda .item .more {
  color: #FF0000;
  text-align: left;
  margin-top: 1em;
  margin-left: -20vw;
  margin-right: -20vw;
}
.agenda .item a {
  color: #000 !important;
}
.agenda .item h3 {
  font-size: 1.3em;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
.agenda .item .date {
  font-size: 1.4em;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  margin-top: -1em;
}
.agenda .toggle_agenda_past {
  color: grey;
}
.agenda .toggle_agenda_past span {
  color: grey !important;
}
.agenda .more-past {
  color: grey !important;
}
@media only screen and (max-width: 1023px) {
  .agenda .item {
    width: 48vw;
  }
  .agenda .dateLarge {
    font-size: 4.5em;
  }
}
@media only screen and (max-width: 767px) {
  .agenda .dateLarge {
    font-size: 3em;
  }
}

.innovation {
  width: 100%;
  min-height: 100%;
  color: #231f20;
  position: absolute;
  top: 0;
  margin-top: 40px;
  color: white;
}
.innovation .background {
  background: #e3e3e3;
  background: linear-gradient(120deg, #e3e3e3 0%, #66666e 100%);
  z-index: -2;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.innovation .innovation-title {
  color: white;
  width: 20vw;
  margin: 0 auto;
  text-align: center;
}
.innovation .item {
  color: white;
  width: 20vw;
  margin: 0 auto;
  text-align: center;
}
.innovation .item > * {
  margin-top: 1rem;
}
.innovation .item #teaser_video .video-poster {
  position: relative;
}
.innovation .item #teaser_video .video-poster button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
}
.innovation .item #teaser_video .video-poster img {
  width: 100%;
  height: auto;
}
.innovation #image_gallery_innovation img {
  width: 100%;
  height: auto;
}
.innovation .content_wrapper {
  position: relative;
  height: 100%;
  margin: auto;
  overflow: auto;
}
.innovation .content_wrapper img {
  width: 100%;
  height: auto;
}
.innovation .center-content {
  margin: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.innovation .center-content svg.playBtn {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.innovation .center-content svg.close {
  opacity: 1;
  display: none;
}
.innovation .center-content .pimcore_tag_video {
  display: none;
  margin-top: 0.5em;
}
.innovation .center-content .pimcore_tag_video iframe {
  height: 22vw;
}
@media only screen and (max-width: 1023px) {
  .innovation .center-content .pimcore_tag_video iframe {
    height: 28vw;
  }
}
.innovation .area-wysiwyg p iframe {
  max-width: 100%;
}
@media only screen and (max-width: 1199px) {
  .innovation .item {
    width: 40vw;
  }
  .innovation .dateLarge {
    font-size: 4.5em;
  }
}
@media only screen and (max-width: 1023px) {
  .innovation .item {
    width: 60vw;
  }
  .innovation .dateLarge {
    font-size: 4.5em;
  }
}

.innovation-default {
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 40px;
  color: #231f20;
}
.innovation-default .background {
  background: #e3e3e3;
  background: linear-gradient(120deg, #e3e3e3 0%, #66666e 100%);
  z-index: -2;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.innovation-default .header h1 {
  margin: auto;
  display: block;
}

.masonry-layout__panel,
.masonry-layout .grid-sizer {
  width: 30.5%;
}
@media only screen and (max-width: 1023px) {
  .masonry-layout__panel,
.masonry-layout .grid-sizer {
    width: 46%;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-layout__panel,
.masonry-layout .grid-sizer {
    width: 100%;
  }
}
.masonry-layout .gutter-sizer {
  width: 4%;
}
@media only screen and (max-width: 1023px) {
  .masonry-layout .gutter-sizer {
    width: 4%;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-layout .gutter-sizer {
    width: 0%;
  }
}
.masonry-layout__panel-content .content-wrap {
  position: relative;
}
.masonry-layout .wrap {
  background-color: #fff;
  color: #231f20;
  padding: 2.3em;
  margin-bottom: 2.3em;
}
.masonry-layout img.icon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
}
.masonry-layout iframe {
  width: 100% !important;
  height: 230px !important;
}
.masonry-layout img {
  width: 100%;
  height: auto;
}
.masonry-layout h3 {
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  color: #FF0000;
  margin-top: 0.8vw;
  margin-bottom: 1.2vw;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.masonry-layout .svg-icon {
  display: inline-flex;
  align-self: center;
}
.masonry-layout .svg-icon svg {
  height: 2.5em;
  width: 2.5em;
  margin-top: -0.6em;
  stroke-width: 15px;
}
.masonry-layout .svg-icon.svg-baseline svg {
  position: relative;
}

.area-image-teaser {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  height: 60vh;
}
.area-image-teaser .header-image .background {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.area-image-teaser .header-image .wrap {
  padding: 8vw 8vw 2vw 8vw;
}
@media only screen and (max-width: 1023px) {
  .area-image-teaser .header-image .wrap {
    padding-top: 40vw;
  }
}
@media only screen and (max-width: 1023px) {
  .area-image-teaser .header-image {
    margin-bottom: 4vw;
  }
}
.area-image-teaser .parallax-container {
  overflow: hidden;
}
.area-image-teaser .mirrorContainer {
  overflow: hidden;
}
.area-image-teaser .parallax-window {
  position: relative;
  background: transparent;
}
.area-image-teaser .image-margin {
  padding: 4vw;
}
@media only screen and (max-width: 1023px) {
  .area-image-teaser .image-margin {
    padding: 8vw;
  }
}
.area-image-teaser .image-margin .parallax-window {
  flex-basis: auto;
  flex-grow: 1;
}
.area-image-teaser .image-margin .page-block {
  padding: 4vw 4vw 4vw 4vw;
}
.area-image-teaser .bottoms {
  padding: 0vw 0vw 3.2vw 0vw;
}
.area-image-teaser a.title-link:hover {
  text-decoration: none;
}
.area-image-teaser h1 {
  display: block;
  ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.area-image-teaser h1.top {
  margin-top: 0;
  margin-bottom: 24vw;
}
.area-image-teaser h1.middle {
  margin-top: 12vw;
  margin-bottom: 12vw;
}
.area-image-teaser h1.bottom {
  margin-top: 24vw;
  margin-bottom: 4vw;
}
.area-image-teaser h4 {
  line-height: 1.3em;
}
.area-image-teaser .download-icon {
  margin-top: 1em;
  width: 50px;
  stroke-width: 12px;
  stroke: #fff;
}
.area-image-teaser .download-icon:hover {
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.area-icon-teaser-row img {
  margin: 0 auto;
  display: block;
  height: 100px;
}
.area-icon-teaser-row .teaser-icon {
  margin-bottom: 4vw;
}

@media only screen and (max-width: 1023px) {
  .pimcore_area_page-block {
    margin-top: 50px;
    height: 100%;
  }
}

#fullpage {
  margin-bottom: 12vw;
}

.area-page-block {
  position: relative;
}
.area-page-block h2,
.area-page-block h5 {
  text-align: center;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
}
.area-page-block h2 {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .area-page-block h2 {
    font-size: 1.5em;
  }
}
.area-page-block h5 {
  margin-top: 2em;
  font-size: 0.8em;
}
@media only screen and (max-width: 767px) {
  .area-page-block h5 {
    margin-top: 1em;
  }
}
.area-page-block svg.close {
  cursor: pointer;
}
.area-page-block a.back_btn {
  position: absolute;
  display: block;
  bottom: 5vh;
  left: 20px;
}
.area-page-block h5.mobile,
.area-page-block svg.mobile {
  cursor: pointer;
}
.area-page-block .main-carousel {
  height: 100%;
  width: 100%;
  position: absolute;
}
.area-page-block .main-carousel .carousel-cell {
  background-color: #000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.area-page-block .main-carousel .carousel-cell .img {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .area-page-block .main-carousel .carousel-cell .img {
    display: none;
  }
}
.area-page-block .main-carousel .carousel-cell .img_mobile {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: none;
}
@media only screen and (max-width: 1023px) {
  .area-page-block .main-carousel .carousel-cell .img_mobile {
    display: block;
  }
}
.area-page-block section {
  margin: 0;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section {
    margin-bottom: 12vw;
  }
}
.area-page-block section:nth-child(1) {
  background-color: #ff1a1a;
}
.area-page-block section:nth-child(2) {
  background-color: #ff3333;
}
.area-page-block section:nth-child(3) {
  background-color: #ff4d4d;
}
.area-page-block section:nth-child(4) {
  background-color: #ff6666;
}
.area-page-block section:nth-child(5) {
  background-color: #ff8080;
}
.area-page-block section h1 {
  font-size: 38px;
  color: #fff;
  margin: 0;
  padding: 50px 0 20px;
  text-align: center;
}
.area-page-block section .content_wrapper {
  width: 50%;
  height: 100%;
  bottom: 100px;
  margin: auto;
  position: relative;
  overflow: auto;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .content_wrapper {
    width: 80%;
  }
}
.area-page-block section .desktop {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .desktop {
    display: none;
  }
}
.area-page-block section .mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .mobile {
    display: block;
  }
}
.area-page-block section .center-content {
  margin: auto;
  position: absolute;
  width: 100%;
  height: 32vw;
  top: 55vh;
  transform: translateY(-40vh);
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .center-content {
    height: 70%;
  }
}
.area-page-block section .center-content svg.playBtn {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.area-page-block section .center-content svg.close {
  opacity: 1;
  display: none;
}
.area-page-block section .center-content .pimcore_tag_video {
  display: none;
  margin-top: 0.5em;
}
.area-page-block section .center-content .pimcore_tag_video iframe {
  height: 22vw;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .center-content .pimcore_tag_video iframe {
    height: 52vw;
  }
}
.area-page-block section .footer-content-mobile {
  bottom: 0;
  width: 100%;
  position: absolute;
  z-index: 3;
  background-color: #FFF;
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1), 0.6s opacity cubic-bezier(0.77, 0, 0.175, 1);
}
.area-page-block section .footer-content-mobile.page-open {
  transform: translateY(0%);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1), 0.6s opacity cubic-bezier(0.77, 0, 0.175, 1);
}
.area-page-block section .footer-content-mobile a {
  display: block;
  position: absolute;
  top: 1em;
}
@media screen and (max-device-width: 768px) {
  .area-page-block section .footer-content-mobile a {
    right: 0;
  }
}
@media not screen and (max-device-width: 768px) {
  .area-page-block section .footer-content-mobile a {
    right: 1em;
  }
}
.area-page-block section .footer-content-mobile .content {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  font-family: "Akkurat-Bold", "Futura", "Helvetica", "Arial", sans-serif;
  color: #FF0000;
  max-height: 70vh;
}
@media screen and (max-device-width: 768px) {
  .area-page-block section .footer-content-mobile .content {
    margin: 1em 1em 1em 0;
  }
}
@media not screen and (max-device-width: 768px) {
  .area-page-block section .footer-content-mobile .content {
    margin: 2.5em 0 2em 0;
  }
}
.area-page-block section .footer-content-mobile .content p {
  display: block;
  ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.area-page-block section .footer-content-mobile svg {
  margin: 0 auto;
  display: block;
}
.area-page-block section .footer-content {
  bottom: 50px;
  width: 100%;
  position: absolute;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .footer-content {
    bottom: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .footer-content .content {
    display: none;
  }
}
.area-page-block section .footer-content svg {
  margin: 0 auto;
}
.area-page-block section .footer-content svg.arrow_down {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .area-page-block section .footer-content svg.arrow_down {
    display: none;
  }
}

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