/*  ==========================================================================
    All stylings of this project

    INFO:
    - don't define scss rules here, just @import the appropriate files
    - generated file will be found here: "/Resources/Public/Css/Frontend/index.css"
    ========================================================================== */
/*
 * pre-includes for processing purpose
 */
/*  ==========================================================================
    VARIABLES
    Collection of all variables

    INFO:
    - try to use variables as much as possible, it makes life easier
    - try to use meaningful prefixes, e.g. "$clr-" for color variables
      or "$fs-" for font-sizes
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    ========================================================================== */
/*  ==========================================================================
    MEDIA QUERIES
    Collection of media queries.
    ========================================================================== */
/*  ==========================================================================
    DIMENSIONS
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    FUNCIONS
    Collection of all functions
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global functions
    ========================================================================== */
/*  ==========================================================================
    MIXINS
    Collection of all mixins (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global helpers

    INFO:
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*
 * OVERLINE
 */
/*
 * HEADLINES
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    BUTTONS
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    IMAGES
    Collection of all helpers for images

    INFO:
    - all mixins should start with "img" as prefix
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    LOADER
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    ========================================================================== */
@-webkit-keyframes fade-in-out {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in-out {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes animate-fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes animate-fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes animate-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes animate-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes animate-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes animate-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/*
 * vendor files ("normalize" always first)
 */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0; }

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block; }

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px; }

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit; }

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic; }

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000; }

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block; }

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none; }

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden; }

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible; }

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none; }

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto; }

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item; }

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block; }

/**
     * Add the correct display in IE.
     */
template {
  display: none; }

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none; }

@font-face {
  font-family: 'lg';
  src: url("/typo3conf/ext/site_package/Resources/Public/Icons/Lightgallery/lg.ttf?22t19m") format("truetype"), url("/typo3conf/ext/site_package/Resources/Public/Icons/Lightgallery/lg.woff?22t19m") format("woff"), url("/typo3conf/ext/site_package/Resources/Public/Icons/Lightgallery/lg.svg?22t19m#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'lg' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
  background-color: transparent; }
  .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5; }
  .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #FFF; }

.lg-actions .lg-next {
  right: 20px; }
  .lg-actions .lg-next:before {
    content: "\e095"; }

.lg-actions .lg-prev {
  left: 20px; }
  .lg-actions .lg-prev:after {
    content: "\e094"; }

@-webkit-keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-webkit-keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative; }

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45); }
  .lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear; }
    .lg-toolbar .lg-icon:hover {
      color: #FFF; }
  .lg-toolbar .lg-close:after {
    content: "\e070"; }
  .lg-toolbar .lg-download:after {
    content: "\e0f2"; }

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080; }
  .lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold; }
  .lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0; }

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle; }

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
       transition-duration: 0s !important; }

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0); }

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px; }

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px; }
  @media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
      -webkit-transition: border-color 0.25s ease;
      -o-transition: border-color 0.25s ease;
      transition: border-color 0.25s ease; } }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #a90707; }
  .lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease; }

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px; }

.lg-outer .lg-toggle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none; }
  .lg-outer .lg-toggle-thumb:after {
    content: "\e1ff"; }
  .lg-outer .lg-toggle-thumb:hover {
    color: #FFF; }

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px; }

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }
  .lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
  .lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer; }

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/vimeo-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/vimeo-play.png") no-repeat scroll 0 -58px transparent; }

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8; }

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1; }

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/youtube-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/youtube-play.png") no-repeat scroll 0 -60px transparent; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden; }

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none; }

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible; }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s; }
  .lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0; }
  .lg-progress-bar.lg-start .lg-progress {
    width: 100%; }
  .lg-show-autoplay .lg-progress-bar {
    opacity: 1; }

.lg-autoplay-button:after {
  content: "\e01d"; }
  .lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a"; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
     transition-duration: 0s; }

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

#lg-zoom-in:after {
  content: "\e311"; }

#lg-actual-size {
  font-size: 20px; }
  #lg-actual-size:after {
    content: "\e033"; }

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none; }
  #lg-zoom-out:after {
    content: "\e312"; }
  .lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto; }

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px; }
  .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible; }

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px; }
  .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    -webkit-box-shadow: 0 0 0 2px white inset;
            box-shadow: 0 0 0 2px white inset; }

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0); }
  .lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%; }

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  width: 12px; }
  .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
    -webkit-box-shadow: 0 0 0 8px white inset;
            box-shadow: 0 0 0 8px white inset; }

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0; }

.lg-fullscreen:after {
  content: "\e20c"; }
  .lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"; }

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }

.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
     transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible; }

.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF; }

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  -o-transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s; }
  .lg-outer .lg-dropdown:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #FFF;
    right: 16px;
    top: -16px; }
  .lg-outer .lg-dropdown > li:last-child {
    margin-bottom: 0px; }
  .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
    color: #333; }
  .lg-outer .lg-dropdown a {
    color: #333;
    display: block;
    white-space: pre;
    padding: 4px 12px;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px; }
    .lg-outer .lg-dropdown a:hover {
      background-color: rgba(0, 0, 0, 0.07); }
  .lg-outer .lg-dropdown .lg-dropdown-text {
    display: inline-block;
    line-height: 1;
    margin-top: -3px;
    vertical-align: middle; }
  .lg-outer .lg-dropdown .lg-icon {
    color: #333;
    display: inline-block;
    float: none;
    font-size: 20px;
    height: auto;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    vertical-align: middle;
    width: auto; }

.lg-outer #lg-share {
  position: relative; }
  .lg-outer #lg-share:after {
    content: "\e80d"; }

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998; }
  .lg-outer #lg-share-facebook .lg-icon:after {
    content: "\e904"; }

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced; }
  .lg-outer #lg-share-twitter .lg-icon:after {
    content: "\e907"; }

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39; }
  .lg-outer #lg-share-googleplus .lg-icon:after {
    content: "\e905"; }

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027; }
  .lg-outer #lg-share-pinterest .lg-icon:after {
    content: "\e906"; }

.lg-outer .lg-img-rotate {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  -o-transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s; }

.lg-rotate-left:after {
  content: "\e900"; }

.lg-rotate-right:after {
  content: "\e901"; }

.lg-icon.lg-flip-hor, .lg-icon.lg-flip-ver {
  font-size: 26px; }

.lg-flip-hor:after {
  content: "\e902"; }

.lg-flip-ver:after {
  content: "\e903"; }

.lg-group {
  *zoom: 1; }

.lg-group:before, .lg-group:after {
  display: table;
  content: "";
  line-height: 0; }

.lg-group:after {
  clear: both; }

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  outline: none;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }
  .lg-outer * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .lg-outer.lg-visible {
    opacity: 1; }
  .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
    -webkit-transition-duration: inherit !important;
    -o-transition-duration: inherit !important;
       transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    -o-transition-timing-function: inherit !important;
       transition-timing-function: inherit !important; }
  .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
       transition-duration: 0s !important;
    opacity: 1; }
  .lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%; }
  .lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap; }
  .lg-outer .lg-item {
    background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/loading.gif") no-repeat scroll center center transparent;
    display: none !important; }
  .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important; }
  .lg-outer.lg-css .lg-current {
    display: inline-block !important; }
  .lg-outer .lg-item, .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
    .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }
  .lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .lg-outer .lg-item.lg-complete {
    background-image: none; }
  .lg-outer .lg-item.lg-current {
    z-index: 1060; }
  .lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important; }
  .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s; }
  .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1; }
  .lg-outer .lg-empty-html {
    display: none; }
  .lg-outer.lg-hide-download #lg-download {
    display: none; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s; }
  .lg-backdrop.in {
    opacity: 1; }

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }
  .lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1; }
  .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
    -webkit-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

/*
 * custom files
 */
/*  ==========================================================================
    HTML5 BOILERPLATE
    HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/

    INFO:
    - custom build for kickstarter
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* Base styles: opinionated defaults
 * --------------------------------------------------------------------------- */
html {
  color: #222;
  font-size: 16px;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/*
 * Box-sizing
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/*
 * Position reset for pseudo elements
 */
*:before,
*:after {
  position: static; }

/* Browser Upgrade Prompt
 * --------------------------------------------------------------------------- */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* Custom Rules
 * --------------------------------------------------------------------------- */
*:focus {
  outline: 0; }

main {
  display: block; }

/* Helper classes
 * --------------------------------------------------------------------------- */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
  visibility: hidden !important; }

@media only screen and (min-width: 1025px) {
  .desktophidden {
    display: none !important;
    visibility: hidden !important; } }

@media only screen and (max-width: 1024px) {
  .mobilehidden {
    display: none !important;
    visibility: hidden !important; } }

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tablethidden {
    display: none !important;
    visibility: hidden !important; } }

@media only screen and (max-width: 767px) {
  .phonehidden {
    display: none !important;
    visibility: hidden !important; } }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */ }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
 * --------------------------------------------------------------------------- */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5/4), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
 * --------------------------------------------------------------------------- */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: http://www.sanbeiji.com/archives/953 */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

@media screen {
  /*  ==========================================================================
    GENERAL
    Styling for general parts which affect the whole page, like:
    - Text Selection
    - Typography
    - Loaders
    - ...

    INFO:
    - adjust the preconfigured code relevant for your project (eg. colors,
        font-family ...)
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
  /*
 * ALIASES
 */
  /*
 * SELECTION
 */
  ::-moz-selection {
    background: #707070;
    color: #FFFFFF; }
  ::selection {
    background: #707070;
    color: #FFFFFF; }
  /*
 * SCROLLBAR
 */
  ::-webkit-scrollbar {
    width: 5px;
    height: 10px; }
    ::-webkit-scrollbar-track {
      background-color: #707070; }
    ::-webkit-scrollbar-thumb {
      background-color: #B3C00E; }
    ::-webkit-scrollbar-button {
      display: none; }
  /*
 * TYPOGRAPHY
 */
  body {
    background-color: #FFFFFF;
    color: #222627;
    font-family: "Sofia Sans Semi Condensed";
    font-weight: normal;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    -o-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    font-size: 68.8%; }
    body[data-menu="1"] {
      overflow: hidden;
      height: 100%; }
    body.JS-inverted {
      background-color: #222627;
      color: #FFFFFF; } }
  @media screen and (max-width: 1920px) {
    body {
      font-size: 62.5%; } }
  @media screen and (max-width: 1600px) {
    body {
      font-size: 56.3%; } }
  @media screen and (max-width: 1366px) {
    body {
      font-size: 50%; } }
  @media screen and (max-width: 1024px) {
    body {
      font-size: 62.5%; } }
  @media screen and (max-width: 767px) {
    body {
      font-size: 62.5%; } }
  @media screen and (max-width: 480px) {
    body {
      font-size: 62.5%; } }
  @media screen and (max-width: 350px) {
    body {
      font-size: 56.3%; } }
  @media screen and (max-width: 320px) {
    body {
      font-size: 50%; } }

@media screen {
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: "Sofia Sans Semi Condensed";
    font-weight: normal; }
  a {
    color: inherit;
    text-decoration: none; }
    a:visited {
      color: inherit; }
    a:hover {
      color: inherit; }
  hr {
    border-color: #000000; }
  h1, h2, h3, h4, h5, h6,
  p,
  ul, ol {
    margin: 0;
    padding: 0; }
  b,
  strong {
    font-weight: bold; }
  /*
 * LOADER
 */
  .loader {
    color: #000000;
    font-size: 1.2em; }
  /*
 * NO RESULT
 */
  .no-result {
    color: #E8002D;
    font-size: 1.2em;
    font-style: italic;
    text-align: center; }
  /*
 * MAGNIFIC POPUP
 */
  .mfp-bg {
    background: #000000;
    opacity: 0.8; }
  .mfp-close {
    cursor: pointer !important; }
  .mfp-title {
    font-size: 16px;
    margin-top: 5px; }
  .mfp-close-btn-in .mfp-close {
    opacity: 1; }
  .mfp-arrow {
    opacity: 1; }
    .mfp-arrow:before {
      display: none; }
  .mfp-counter {
    display: none; }
  .mfp-preloader {
    font-size: 16px; }
  .mfp-iframe-holder .mfp-content {
    max-width: 1366px; }
  /*
 * SCROLLER
 */
  .scroller {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: transparent; }
    .scroller__bar {
      width: 0;
      height: 100%;
      background: #B3C00E; }
  /*
 * MODULES
 */
  .FR-module[data-space-bottom="large"] {
    margin-bottom: 15em; }
  .FR-module[data-space-bottom="medium"] {
    margin-bottom: 10em; }
  .FR-module[data-space-bottom="small"] {
    margin-bottom: 7.5em; }
  .FR-module[data-inverted="1"] {
    background-color: #222627;
    color: #FFFFFF;
    padding: 10em 0; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-inverted="1"] {
      padding: 7em 0; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-inverted="1"] {
      padding: 5.5em 0; } }

@media screen {
  .FR-module:first-child {
    padding-top: 10em; } }
  @media screen and (max-width: 1024px) {
    .FR-module:first-child {
      padding-top: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module:first-child {
      padding-top: 5.5em; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-space-bottom="large"] {
    margin-bottom: 10em; }
  .FR-module[data-space-bottom="medium"] {
    margin-bottom: 7em; }
  .FR-module[data-space-bottom="small"] {
    margin-bottom: 4.5em; } }

@media screen and (max-width: 767px) {
  .FR-module[data-space-bottom="large"] {
    margin-bottom: 8em; }
  .FR-module[data-space-bottom="medium"] {
    margin-bottom: 5.5em; }
  .FR-module[data-space-bottom="small"] {
    margin-bottom: 2.5em; } }

@media screen {
  /*
 * WRAP
 */
  *[data-wrap-width="x-large"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.5em;
    padding-right: 7.5em;
    max-width: calc(192em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="x-large"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(192em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="x-large"] {
      padding-left: 3.5em;
      padding-right: 3.5em;
      max-width: calc(192em + 3.5em + 3.5em); } }

@media screen {
    *[data-wrap-width="x-large"][data-wrap-padding="none"] {
      margin-left: auto;
      margin-right: auto;
      padding-left: 0em;
      padding-right: 0em;
      max-width: calc(192em + 0em + 0em); } }
    @media screen and (max-width: 1024px) {
      *[data-wrap-width="x-large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(192em + 0em + 0em); } }
    @media screen and (max-width: 767px) {
      *[data-wrap-width="x-large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(192em + 0em + 0em); } }

@media screen {
  *[data-wrap-width="large"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.5em;
    padding-right: 7.5em;
    max-width: calc(160em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="large"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(160em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="large"] {
      padding-left: 3.5em;
      padding-right: 3.5em;
      max-width: calc(160em + 3.5em + 3.5em); } }

@media screen {
    *[data-wrap-width="large"][data-wrap-padding="none"] {
      margin-left: auto;
      margin-right: auto;
      padding-left: 0em;
      padding-right: 0em;
      max-width: calc(160em + 0em + 0em); } }
    @media screen and (max-width: 1024px) {
      *[data-wrap-width="large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(160em + 0em + 0em); } }
    @media screen and (max-width: 767px) {
      *[data-wrap-width="large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(160em + 0em + 0em); } }

@media screen {
  *[data-wrap-width="medium"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.5em;
    padding-right: 7.5em;
    max-width: calc(135em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="medium"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(135em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="medium"] {
      padding-left: 3.5em;
      padding-right: 3.5em;
      max-width: calc(135em + 3.5em + 3.5em); } }

@media screen {
    *[data-wrap-width="medium"][data-wrap-padding="none"] {
      margin-left: auto;
      margin-right: auto;
      padding-left: 0em;
      padding-right: 0em;
      max-width: calc(135em + 0em + 0em); } }
    @media screen and (max-width: 1024px) {
      *[data-wrap-width="medium"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(135em + 0em + 0em); } }
    @media screen and (max-width: 767px) {
      *[data-wrap-width="medium"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(135em + 0em + 0em); } }

@media screen {
  *[data-wrap-width="small"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.5em;
    padding-right: 7.5em;
    max-width: calc(100em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="small"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(100em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="small"] {
      padding-left: 3.5em;
      padding-right: 3.5em;
      max-width: calc(100em + 3.5em + 3.5em); } }

@media screen {
    *[data-wrap-width="small"][data-wrap-padding="none"] {
      margin-left: auto;
      margin-right: auto;
      padding-left: 0em;
      padding-right: 0em;
      max-width: calc(100em + 0em + 0em); } }
    @media screen and (max-width: 1024px) {
      *[data-wrap-width="small"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(100em + 0em + 0em); } }
    @media screen and (max-width: 767px) {
      *[data-wrap-width="small"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(100em + 0em + 0em); } }

@media screen {
  /*
  * HEADLINES
  */
  .FR-headlines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .FR-headlines > *:nth-child(1) > *:nth-child(1) {
      font-family: "Inter";
      font-weight: 700;
      line-height: 1.2;
      font-size: inherit; }
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 6em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 4.5em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 3em; } }

@media screen {
    .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
      font-size: 3em; } }
  @media screen and (max-width: 1024px) {
    .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
      font-size: 2.5em; } }
  @media screen and (max-width: 767px) {
    .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
      font-size: 2em; } }

@media screen {
    .FR-headlines > *:nth-child(2) {
      text-transform: uppercase;
      font-size: inherit;
      letter-spacing: 1.5px; }
      .FR-headlines > *:nth-child(2) > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(2) > * {
        font-size: 1.3em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(2) > * {
        font-size: 1em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(2) {
        font-weight: 700; } }

@media screen {
  /*
 * RICH-TEXT
 */
  .FR-rte > * {
    font-size: 2em; } }

@media screen and (max-width: 1024px) {
  .FR-rte > * {
    font-size: 1.6em; } }

@media screen and (max-width: 767px) {
  .FR-rte > * {
    font-size: 1.4em; } }

@media screen {
  .FR-rte > * {
    line-height: 1.6;
    margin-top: 1em;
    margin-bottom: 1em; }
    .FR-rte > *:first-child {
      margin-top: 0 !important; }
    .FR-rte > *:last-child {
      margin-bottom: 0 !important; }
    .FR-rte > *.FR-table {
      margin-top: 2.5em;
      margin-bottom: 2.5em; }
  .FR-rte a {
    color: #B3C00E;
    text-decoration: underline; }
    .FR-rte a:hover {
      opacity: 0.7; }
    .FR-rte a:visited {
      color: #B3C00E; }
  .FR-rte ol,
  .FR-rte ul {
    padding-left: 1.5em; }
    .FR-rte ol li,
    .FR-rte ul li {
      display: list-item; }
  /*
 * BUTTON
 */
  .FR-button > a,
  .FR-button > * {
    color: #B3C00E;
    text-decoration: none;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em; }
    .FR-button > a span,
    .FR-button > * span {
      font-size: 1.4em; } }
    @media screen and (max-width: 1024px) {
      .FR-button > a span,
      .FR-button > * span {
        font-size: 1.3em; } }
    @media screen and (max-width: 767px) {
      .FR-button > a span,
      .FR-button > * span {
        font-size: 1.2em; } }

@media screen {
    .FR-button > a i,
    .FR-button > * i {
      display: inline-block;
      -webkit-transition: -webkit-transform 0.25s ease;
      transition: -webkit-transform 0.25s ease;
      -o-transition: transform 0.25s ease;
      transition: transform 0.25s ease;
      transition: transform 0.25s ease, -webkit-transform 0.25s ease;
      font-size: 1em; } }
    @media screen and (max-width: 1024px) {
      .FR-button > a i,
      .FR-button > * i {
        font-size: 0.9em; } }
    @media screen and (max-width: 767px) {
      .FR-button > a i,
      .FR-button > * i {
        font-size: 0.8em; } }

@media screen {
    .FR-button > a:hover i,
    .FR-button > *:hover i {
      -webkit-transform: translateX(5px);
          -ms-transform: translateX(5px);
              transform: translateX(5px); }
  /*
 * BLOCK TOUCH
 */
  .JS-block-touch * {
    pointer-events: none; }
  /*
 * WAYPOINTS
 */
  .FR-waypoint {
    position: absolute;
    height: 0 !important;
    width: 100%;
    overflow: hidden !important; }
    .FR-waypoint--1 {
      top: calc(100vh - 6em); } }
    @media screen and (max-width: 1024px) {
      .FR-waypoint--1 {
        top: calc(100vh - 2.5em); } }
    @media screen and (max-width: 767px) {
      .FR-waypoint--1 {
        top: calc(100vh - 1.75em); } }

@media screen {
    .FR-waypoint--2 {
      top: 5px; }
  body[data-hero-layout="none"] .FR-waypoint--1, body[data-hero-layout="none-dark"] .FR-waypoint--1 {
    top: 10px; } }
  @media screen and (max-width: 1024px) {
    body[data-hero-layout="none"] .FR-waypoint--1, body[data-hero-layout="none-dark"] .FR-waypoint--1 {
      top: 10px; } }
  @media screen and (max-width: 767px) {
    body[data-hero-layout="none"] .FR-waypoint--1, body[data-hero-layout="none-dark"] .FR-waypoint--1 {
      top: 10px; } }

@media screen {
  body[data-hero-layout="half"] .FR-waypoint--1 {
    top: calc(75vh - 6em); } }
  @media screen and (max-width: 1024px) {
    body[data-hero-layout="half"] .FR-waypoint--1 {
      top: calc(60vh - 2.5em); } }
  @media screen and (max-width: 767px) {
    body[data-hero-layout="half"] .FR-waypoint--1 {
      top: calc(60vh - 1.75em); } }

@media screen {
  /*
 * EFFECTS
 */
  .JS-effect {
    opacity: 0;
    -webkit-animation-duration: 0.75s;
            animation-duration: 0.75s;
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
    -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
    .JS-effect__up {
      -webkit-animation-name: animate-fade-up;
              animation-name: animate-fade-up;
      opacity: 1; }
    .JS-effect__left {
      -webkit-animation-name: animate-fade-left;
              animation-name: animate-fade-left;
      opacity: 1; }
    .JS-effect__right {
      -webkit-animation-name: animate-fade-right;
              animation-name: animate-fade-right;
      opacity: 1; }
  .FR-image {
    display: block;
    width: 100%;
    height: auto; }
  /*  ==========================================================================
    HEADER
    Styling for the highest part of the website (mostly also the fixed part
    on top)
    ========================================================================== */
  .FR-section[data-id="header"] {
    position: static; }
    .FR-section[data-id="header"] .FR-section__bar {
      height: 12em;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 70;
      pointer-events: none; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__bar {
        height: 5em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="header"] .FR-section__bar {
        height: 3.5em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__bar__wrap {
        padding-left: 4em;
        padding-right: 4em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__bar__wrap {
          padding-left: 2em; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="header"] .FR-section__bar__wrap {
          padding-left: 1em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__bar__wrap {
          padding-right: 2em; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="header"] .FR-section__bar__wrap {
          padding-right: 1em; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__signet-wrap {
      position: relative; }
    .FR-section[data-id="header"] .FR-section__signet {
      height: 4em;
      -webkit-transition: opacity 0.25s ease;
      -o-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease;
      position: absolute;
      left: 0;
      top: 0;
      pointer-events: auto;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__signet {
        height: 3em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="header"] .FR-section__signet {
        height: 2em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__signet--black {
        opacity: 0; }
      .FR-section[data-id="header"] .FR-section__signet--svg svg {
        height: 100%; }
      .FR-section[data-id="header"] .FR-section__signet--svg .cls-1 {
        display: none; }
      .FR-section[data-id="header"] .FR-section__signet img {
        display: block;
        height: 100%;
        width: auto; }
    .FR-section[data-id="header"] .FR-section__signet-overlay {
      position: fixed;
      left: 4em;
      top: 4em;
      height: 4em;
      z-index: 70;
      pointer-events: none; }
      .FR-section[data-id="header"] .FR-section__signet-overlay > * {
        height: 100%; }
        .FR-section[data-id="header"] .FR-section__signet-overlay > * .cls-1 {
          display: none; }
    .FR-section[data-id="header"] .FR-section__burger {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1em;
      cursor: pointer;
      pointer-events: auto;
      color: #FFFFFF; }
      .FR-section[data-id="header"] .FR-section__burger__text {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        -webkit-transition: opacity 0.25s ease, color 0.25s ease;
        -o-transition: opacity 0.25s ease, color 0.25s ease;
        transition: opacity 0.25s ease, color 0.25s ease; }
        .FR-section[data-id="header"] .FR-section__burger__text > * {
          font-size: 1.4em; }
      .FR-section[data-id="header"] .FR-section__burger__icon {
        width: 4.5em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__burger__icon {
          width: 3em; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="header"] .FR-section__burger__icon {
          width: 2.5em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__burger__line {
        background: #FFFFFF;
        height: 0.125rem;
        margin: 0.5em 0;
        -webkit-transition: background-color 0.25s ease, -webkit-transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        transition: background-color 0.25s ease, -webkit-transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        -o-transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), background-color 0.25s ease;
        transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), background-color 0.25s ease;
        transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), background-color 0.25s ease, -webkit-transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6); } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__burger__line {
          margin: 0.4em 0; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="header"] .FR-section__burger__line {
          margin: 0.3em 0; } }

@media screen {
        .FR-section[data-id="header"] .FR-section__burger__line--1 {
          width: 50%; }
        .FR-section[data-id="header"] .FR-section__burger__line--2 {
          width: 100%; }
        .FR-section[data-id="header"] .FR-section__burger__line--3 {
          width: 75%; }
    .FR-section[data-id="header"] .FR-section__menu {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(38, 43, 44, 0.95);
      color: #FFFFFF;
      opacity: 0;
      pointer-events: none;
      z-index: 70;
      -webkit-transition: opacity 0.5s ease;
      -o-transition: opacity 0.5s ease;
      transition: opacity 0.5s ease; }
    .FR-section[data-id="header"] .FR-section__main-menu {
      position: absolute;
      right: 11em;
      top: 12em; }
      .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2em;
        text-align: right; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 {
          gap: 2.5em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__main-menu__item {
        list-style-type: none;
        -webkit-transform: translateX(1em);
            -ms-transform: translateX(1em);
                transform: translateX(1em);
        opacity: 0;
        -webkit-transition: opacity 0.5s ease, -webkit-transform 0.25s ease-in-out;
        transition: opacity 0.5s ease, -webkit-transform 0.25s ease-in-out;
        -o-transition: opacity 0.5s ease, transform 0.25s ease-in-out;
        transition: opacity 0.5s ease, transform 0.25s ease-in-out;
        transition: opacity 0.5s ease, transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out; }
        .FR-section[data-id="header"] .FR-section__main-menu__item--cur .FR-section__main-menu__link {
          color: rgba(255, 255, 255, 0.5);
          padding-left: 0.5em; }
      .FR-section[data-id="header"] .FR-section__main-menu__link {
        display: inline-block;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        color: #FFFFFF;
        letter-spacing: 3px;
        -webkit-transition: color 0.25s ease, letter-spacing 1s ease;
        -o-transition: color 0.25s ease, letter-spacing 1s ease;
        transition: color 0.25s ease, letter-spacing 1s ease; }
        .FR-section[data-id="header"] .FR-section__main-menu__link > * {
          font-size: 2em; }
        .FR-section[data-id="header"] .FR-section__main-menu__link:hover {
          color: rgba(255, 255, 255, 0.5);
          letter-spacing: 4px; }
    .FR-section[data-id="header"] .FR-section__logo {
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      height: 8.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__logo {
        height: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="header"] .FR-section__logo {
        height: 3em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__logo img {
        display: block;
        height: 100%;
        width: auto; }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__menu {
      opacity: 1;
      pointer-events: auto; }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item {
      opacity: 1;
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(1n) {
        -webkit-transition-delay: 0.15s;
             -o-transition-delay: 0.15s;
                transition-delay: 0.15s; }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(2n) {
        -webkit-transition-delay: 0.3s;
             -o-transition-delay: 0.3s;
                transition-delay: 0.3s; }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(3n) {
        -webkit-transition-delay: 0.45s;
             -o-transition-delay: 0.45s;
                transition-delay: 0.45s; }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(4n) {
        -webkit-transition-delay: 0.6s;
             -o-transition-delay: 0.6s;
                transition-delay: 0.6s; }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(5n) {
        -webkit-transition-delay: 0.75s;
             -o-transition-delay: 0.75s;
                transition-delay: 0.75s; }
      .FR-section[data-id="header"][data-menu="1"] .FR-section__main-menu__item:nth-child(6n) {
        -webkit-transition-delay: 0.9s;
             -o-transition-delay: 0.9s;
                transition-delay: 0.9s; }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger__text {
      opacity: 0; }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger__line--1 {
      -webkit-transform-origin: bottom;
          -ms-transform-origin: bottom;
              transform-origin: bottom;
      -webkit-transform: rotatez(45deg) translate(0.5em, 0);
          -ms-transform: rotate(45deg) translate(0.5em, 0);
              transform: rotatez(45deg) translate(0.5em, 0); }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger__line--2 {
      -webkit-transform-origin: top;
          -ms-transform-origin: top;
              transform-origin: top;
      -webkit-transform: rotatez(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotatez(-45deg); }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger__line--3 {
      -webkit-transform-origin: bottom;
          -ms-transform-origin: bottom;
              transform-origin: bottom;
      width: 50%;
      -webkit-transform: translate(2em, -0.4em) rotatez(45deg);
          -ms-transform: translate(2em, -0.4em) rotate(45deg);
              transform: translate(2em, -0.4em) rotatez(45deg); } }
  @media screen and (min-width: 1025px) {
    .FR-section[data-id="header"][data-hero-layout="none-dark"][data-menu="0"] .FR-section__signet--black, .FR-section[data-id="header"][data-hero-layout="none"][data-menu="0"] .FR-section__signet--black, .FR-section[data-id="header"][data-transform="1"][data-menu="0"] .FR-section__signet--black {
      opacity: 1; }
    .FR-section[data-id="header"][data-hero-layout="none-dark"][data-menu="0"] .FR-section__bar:before, .FR-section[data-id="header"][data-hero-layout="none"][data-menu="0"] .FR-section__bar:before, .FR-section[data-id="header"][data-transform="1"][data-menu="0"] .FR-section__bar:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 15em;
      z-index: -1;
      background: -webkit-gradient(linear, left top, left bottom, from(#222627), to(rgba(34, 38, 39, 0)));
      background: -o-linear-gradient(top, #222627 0%, rgba(34, 38, 39, 0) 100%);
      background: linear-gradient(to bottom, #222627 0%, rgba(34, 38, 39, 0) 100%); }
    .FR-section[data-id="header"][data-hero-layout="none"] .FR-section__bar {
      border-bottom: 1px solid #707070;
      -webkit-transition: border-bottom-color 0.25s ease;
      -o-transition: border-bottom-color 0.25s ease;
      transition: border-bottom-color 0.25s ease; }
    .FR-section[data-id="header"][data-hero-layout="none"][data-transform="1"] .FR-section__bar {
      border-bottom-color: rgba(112, 112, 112, 0); } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="header"] .FR-section__bar {
      background-color: #222627; }
    .FR-section[data-id="header"] .FR-section__signet img {
      -webkit-transition: -webkit-transform 0.25s ease;
      transition: -webkit-transform 0.25s ease;
      -o-transition: transform 0.25s ease;
      transition: transform 0.25s ease;
      transition: transform 0.25s ease, -webkit-transform 0.25s ease;
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center; }
    .FR-section[data-id="header"] .FR-section__burger {
      position: relative; }
      .FR-section[data-id="header"] .FR-section__burger > * {
        font-size: 2em; } }
  @media screen and (max-width: 1024px) and (max-width: 1024px) {
    .FR-section[data-id="header"] .FR-section__burger > * {
      font-size: 2em; } }
  @media screen and (max-width: 1024px) and (max-width: 767px) {
    .FR-section[data-id="header"] .FR-section__burger > * {
      font-size: 1.5em; } }
  @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__burger > i {
        display: inline-block;
        position: absolute;
        right: 0;
        -webkit-transition: -webkit-transform 0.25s ease;
        transition: -webkit-transform 0.25s ease;
        -o-transition: transform 0.25s ease;
        transition: transform 0.25s ease;
        transition: transform 0.25s ease, -webkit-transform 0.25s ease;
        -webkit-transform-origin: center;
            -ms-transform-origin: center;
                transform-origin: center; }
        .FR-section[data-id="header"] .FR-section__burger > i.icon-close {
          -webkit-transform: scale(0);
              -ms-transform: scale(0);
                  transform: scale(0); }
        .FR-section[data-id="header"] .FR-section__burger > i.icon-menu {
          -webkit-transition-delay: 0.25s;
               -o-transition-delay: 0.25s;
                  transition-delay: 0.25s; }
      .FR-section[data-id="header"] .FR-section__burger__text, .FR-section[data-id="header"] .FR-section__burger__icon {
        display: none; }
    .FR-section[data-id="header"] .FR-section__menu {
      background-color: #222627; }
      .FR-section[data-id="header"] .FR-section__menu__wrap {
        height: 100%;
        overflow: auto; }
      .FR-section[data-id="header"] .FR-section__menu__frame {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: 100%; }
      .FR-section[data-id="header"] .FR-section__menu__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: auto;
        width: 100%; }
      .FR-section[data-id="header"] .FR-section__menu__container {
        padding: 7.5em 4.5em;
        height: 100%; }
    .FR-section[data-id="header"] .FR-section__main-menu {
      position: static;
      padding-top: 6.5em; }
      .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 {
        text-align: left; }
      .FR-section[data-id="header"] .FR-section__main-menu__link:hover {
        letter-spacing: 3px; }
    .FR-section[data-id="header"] .FR-section__logo {
      position: static;
      display: inline-block;
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); }
    .FR-section[data-id="header"] .FR-section__contact {
      border-top: 1px solid #707070;
      padding: 3.5em 4.5em; }
      .FR-section[data-id="header"] .FR-section__contact__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2em; }
      .FR-section[data-id="header"] .FR-section__contact__title {
        font-family: "Inter";
        font-weight: 700; }
        .FR-section[data-id="header"] .FR-section__contact__title > * {
          font-size: 2em; }
      .FR-section[data-id="header"] .FR-section__contact__cta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1em; }
      .FR-section[data-id="header"] .FR-section__contact__item {
        font-weight: 700;
        text-transform: uppercase;
        color: #FFFFFF; }
        .FR-section[data-id="header"] .FR-section__contact__item > * {
          font-size: 1.4em; }
        .FR-section[data-id="header"] .FR-section__contact__item:visited {
          color: #FFFFFF; }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__signet img {
      -webkit-transition-delay: 0s;
           -o-transition-delay: 0s;
              transition-delay: 0s;
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__logo {
      -webkit-transition-delay: 0.5s;
           -o-transition-delay: 0.5s;
              transition-delay: 0.5s;
      -webkit-transition: -webkit-transform 0.25s ease;
      transition: -webkit-transform 0.25s ease;
      -o-transition: transform 0.25s ease;
      transition: transform 0.25s ease;
      transition: transform 0.25s ease, -webkit-transform 0.25s ease;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger > i.icon-close {
      -webkit-transition-delay: 0.25s;
           -o-transition-delay: 0.25s;
              transition-delay: 0.25s;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
    .FR-section[data-id="header"][data-menu="1"] .FR-section__burger > i.icon-menu {
      -webkit-transition-delay: 0s;
           -o-transition-delay: 0s;
              transition-delay: 0s;
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="header"] .FR-section__contact__content {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

@media screen {
  /*  ==========================================================================
    VISTA
    Styling of the 'header-image-slider' part
    ========================================================================== */
  /* VARS
 * --------------------------------------------------------------------------- */
  .FR-section[data-id="hero"] {
    position: relative;
    z-index: 20; }
    .FR-section[data-id="hero"] .FR-section {
      /* RESPONSIVE
   * --------------------------------------------------------------------------- */ }
      .FR-section[data-id="hero"] .FR-section__vista {
        background-color: #000000;
        overflow: hidden; }
        .FR-section[data-id="hero"] .FR-section__vista__wrap {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
        .FR-section[data-id="hero"] .FR-section__vista__slide {
          width: 100%; }
        .FR-section[data-id="hero"] .FR-section__vista__item {
          overflow: hidden;
          position: relative;
          width: 100%; }
          .FR-section[data-id="hero"] .FR-section__vista__item iframe,
          .FR-section[data-id="hero"] .FR-section__vista__item video {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%; }
          .FR-section[data-id="hero"] .FR-section__vista__item iframe {
            border: 0; }
          .FR-section[data-id="hero"] .FR-section__vista__item video {
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            left: 0;
            position: absolute;
            top: 0; }
          .FR-section[data-id="hero"] .FR-section__vista__item video[autoplay] {
            pointer-events: none; }
            .FR-section[data-id="hero"] .FR-section__vista__item video[autoplay]::-webkit-media-controls {
              display: none !important; }
          .FR-section[data-id="hero"] .FR-section__vista__item--video {
            background-color: #000000; } }
    @media screen and (min-width: 1025px) and (orientation: landscape) {
      .FR-section[data-id="hero"] .FR-section__vista__item {
        position: relative;
        min-height: 650px; }
        .FR-section[data-id="hero"] .FR-section__vista__item img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          left: 0;
          position: absolute;
          top: 0; }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="half"] .FR-section__vista__item {
        height: 75vh; }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="full"] .FR-section__vista__item {
        height: 100vh; } }
    @media screen and (max-width: 1024px) and (orientation: portrait) {
      .FR-section[data-id="hero"] .FR-section__vista__item {
        position: relative; }
        .FR-section[data-id="hero"] .FR-section__vista__item img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          left: 0;
          position: absolute;
          top: 0; }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="half"] .FR-section__vista__item {
        height: calc(var(--vh, 1vh) * 60); }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="full"] .FR-section__vista__item {
        height: calc(var(--vh, 1vh) * 100); } }
    @media screen and (max-width: 767px) and (orientation: portrait) {
      .FR-section[data-id="hero"] .FR-section__vista__item {
        position: relative; }
        .FR-section[data-id="hero"] .FR-section__vista__item img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          left: 0;
          position: absolute;
          top: 0; }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="half"] .FR-section__vista__item {
        height: calc(var(--vh, 1vh) * 60); }
      .FR-section[data-id="hero"] .FR-section__vista[data-hero-layout="full"] .FR-section__vista__item {
        height: calc(var(--vh, 1vh) * 100); } }

@media screen {
      .FR-section[data-id="hero"] .FR-section__elements {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), color-stop(50%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.4)));
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%); }
      .FR-section[data-id="hero"] .FR-section__slogan {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        overflow: hidden; }
        .FR-section[data-id="hero"] .FR-section__slogan__wrap {
          width: 100%;
          margin-bottom: 6.5em; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="hero"] .FR-section__slogan__wrap {
            margin-bottom: 5em; } }

@media screen {
        .FR-section[data-id="hero"] .FR-section__slogan__text {
          line-height: 1.2;
          font-weight: 700;
          font-family: "Inter";
          color: #FFFFFF;
          letter-spacing: 0.6px;
          margin: 0; }
          .FR-section[data-id="hero"] .FR-section__slogan__text > * {
            font-size: 6em; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="hero"] .FR-section__slogan__text > * {
            font-size: 4.5em; } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="hero"] .FR-section__slogan__text > * {
            font-size: 3em; } }

@media screen {
  /*  ==========================================================================
    MAIN
    Styling for parts (which are not defined as modules), for eg. breadcrumb

    INFO:
    - don't style modules here, use the corresponding modules scss folder
    ========================================================================== */
  .FR-section[data-id="main"] {
    display: block; }
    .FR-section[data-id="main"][data-hero-layout="none"], .FR-section[data-id="main"][data-hero-layout="none-dark"] {
      padding-top: 12em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="main"][data-hero-layout="none"], .FR-section[data-id="main"][data-hero-layout="none-dark"] {
        padding-top: 5em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="main"][data-hero-layout="none"], .FR-section[data-id="main"][data-hero-layout="none-dark"] {
        padding-top: 3.5em; } }

@media screen {
  /*  ==========================================================================
    INTRO
    ========================================================================== */
  .FR-section[data-id="intro"] {
    position: relative;
    z-index: 60; }
    .FR-section[data-id="intro"] .FR-section__overlay {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: opacity 0.5s 0.5s ease;
      -o-transition: opacity 0.5s 0.5s ease;
      transition: opacity 0.5s 0.5s ease;
      background-color: rgba(38, 43, 44, 0.4);
      mix-blend-mode: multiply; }
    .FR-section[data-id="intro"] .FR-section__logo {
      position: fixed;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-transition: opacity 0.5s 0.5s ease, -webkit-transform 3s ease-out;
      transition: opacity 0.5s 0.5s ease, -webkit-transform 3s ease-out;
      -o-transition: opacity 0.5s 0.5s ease, transform 3s ease-out;
      transition: opacity 0.5s 0.5s ease, transform 3s ease-out;
      transition: opacity 0.5s 0.5s ease, transform 3s ease-out, -webkit-transform 3s ease-out;
      height: 8.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="intro"] .FR-section__logo {
        height: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="intro"] .FR-section__logo {
        height: 3em; } }

@media screen {
      .FR-section[data-id="intro"] .FR-section__logo img {
        display: block;
        height: 100%;
        width: auto; }
    .FR-section[data-id="intro"][data-end="1"] {
      pointer-events: none; }
      .FR-section[data-id="intro"][data-end="1"] .FR-section__overlay {
        opacity: 0; }
      .FR-section[data-id="intro"][data-end="1"] .FR-section__logo {
        opacity: 0;
        -webkit-transform: translate(-50%, calc(-50% - 15em));
            -ms-transform: translate(-50%, calc(-50% - 15em));
                transform: translate(-50%, calc(-50% - 15em)); }
  /*  ==========================================================================
    MODULES
    Collection of all modules
    ========================================================================== */
  /*  ==========================================================================
    GALLERY
    ========================================================================== */
  .FR-module[data-id="Gallery"] .FR-module__list:not(.slick-slider) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4em 2em; } }

@media screen and (min-width: 1025px) {
  .FR-module[data-id="Gallery"] .FR-module__list .slick-slide {
    float: left;
    width: calc((100% / 4) - (2em * calc(4 - 1) / 4)) !important; }
    .FR-module[data-id="Gallery"] .FR-module__list .slick-slide:first-child {
      width: 100% !important; }
  .FR-module[data-id="Gallery"] .FR-module__list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4em 2em;
    width: 100% !important; } }

@media screen {
  .FR-module[data-id="Gallery"] .FR-module__item {
    width: calc((100% / 4) - (2em * calc(4 - 1) / 4));
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block; }
    .FR-module[data-id="Gallery"] .FR-module__item img {
      display: block;
      height: auto;
      width: 100%; }
    .FR-module[data-id="Gallery"] .FR-module__item--first {
      width: 100%; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="Gallery"] .FR-module__slider {
    overflow: hidden; }
  .FR-module[data-id="Gallery"] .FR-module__item {
    padding: 0 0.8em; }
  .FR-module[data-id="Gallery"] .FR-module__list {
    display: block; }
    .FR-module[data-id="Gallery"] .FR-module__list.slick-slider {
      margin: 0 -0.8em; }
    .FR-module[data-id="Gallery"] .FR-module__list .slick-slide {
      float: left; }
  .FR-module[data-id="Gallery"] .FR-module__controls {
    margin-bottom: 3em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em; }
    .FR-module[data-id="Gallery"] .FR-module__controls > * {
      font-size: 2em; } }
  @media screen and (max-width: 1024px) and (max-width: 1024px) {
    .FR-module[data-id="Gallery"] .FR-module__controls > * {
      font-size: 1.6em; } }
  @media screen and (max-width: 1024px) and (max-width: 767px) {
    .FR-module[data-id="Gallery"] .FR-module__controls > * {
      font-size: 1.4em; } }

@media screen and (max-width: 1024px) {
    .FR-module[data-id="Gallery"] .FR-module__controls > * {
      cursor: pointer; }
      .FR-module[data-id="Gallery"] .FR-module__controls > *:hover {
        color: #B3C00E; } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="Text"] .FR-module__signet-wrap {
    position: relative;
    height: 6.5em;
    margin-bottom: 4em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Text"] .FR-module__signet-wrap {
      height: 4.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Text"] .FR-module__signet-wrap {
      height: 3em; } }

@media screen {
  .FR-module[data-id="Text"] .FR-module__signet {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out; }
    .FR-module[data-id="Text"] .FR-module__signet img {
      width: auto;
      height: 100%; }
  .FR-module[data-id="Text"] .FR-module__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Text"] .FR-module__bottom {
      gap: 4.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Text"] .FR-module__bottom {
      gap: 3.5em; } }

@media screen {
  .FR-module[data-id="Text"] .FR-module__headlines {
    width: 35%; }
  .FR-module[data-id="Text"] .FR-module__content {
    width: 65%; }
    .FR-module[data-id="Text"] .FR-module__content[data-space-top="1"] {
      padding-top: 1.5em; }
  .FR-module[data-id="Text"] .FR-module__link {
    margin-top: 4em; }
  .FR-module[data-id="Text"][data-layout="1"] .FR-module__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Text"][data-layout="1"] .FR-module__bottom {
      gap: 4.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Text"][data-layout="1"] .FR-module__bottom {
      gap: 3.5em; } }

@media screen {
  .FR-module[data-id="Text"][data-layout="1"] .FR-module__headlines {
    width: 100%;
    max-width: 40em; }
  .FR-module[data-id="Text"][data-layout="1"] .FR-module__content {
    width: 100%; }
    .FR-module[data-id="Text"][data-layout="1"] .FR-module__content[data-space-top="1"] {
      padding-top: 0; }
  .FR-module[data-id="Text"][data-inverted="0"].JS-inverted .FR-module__signet {
    opacity: 0; }
    .FR-module[data-id="Text"][data-inverted="0"].JS-inverted .FR-module__signet--white {
      opacity: 1; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="Text"] .FR-module__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .FR-module[data-id="Text"] .FR-module__headlines {
    width: 100%;
    max-width: 40em; }
  .FR-module[data-id="Text"] .FR-module__content {
    width: 100%; }
    .FR-module[data-id="Text"] .FR-module__content[data-space-top="1"] {
      padding-top: 0; }
  .FR-module[data-id="Text"] .FR-module__link {
    margin-top: 2em; } }

@media screen {
  /*  ==========================================================================
    TEXT TABS
    ========================================================================== */
  .FR-module[data-id="TextTabs"] .FR-module__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10em; }
  .FR-module[data-id="TextTabs"] .FR-module__header {
    width: 35%; }
  .FR-module[data-id="TextTabs"] .FR-module__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10em;
    margin-top: 7em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextTabs"] .FR-module__content {
      gap: 4.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextTabs"] .FR-module__content {
      gap: 2.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextTabs"] .FR-module__content {
      margin-top: 6em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextTabs"] .FR-module__content {
      margin-top: 5em; } }

@media screen {
  .FR-module[data-id="TextTabs"] .FR-module__tabs {
    width: 35%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextTabs"] .FR-module__tabs {
      gap: 1em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextTabs"] .FR-module__tabs {
      gap: 0.5em; } }

@media screen {
  .FR-module[data-id="TextTabs"] .FR-module__tab {
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .FR-module[data-id="TextTabs"] .FR-module__tab__title {
      font-weight: 700;
      line-height: 1.2;
      font-family: "Inter";
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .FR-module[data-id="TextTabs"] .FR-module__tab__title > * {
        font-size: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="TextTabs"] .FR-module__tab__title > * {
        font-size: 2.4em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="TextTabs"] .FR-module__tab__title > * {
        font-size: 2em; } }

@media screen {
    .FR-module[data-id="TextTabs"] .FR-module__tab:hover .FR-module__tab__title span:first-child {
      color: #B3C00E; }
    .FR-module[data-id="TextTabs"] .FR-module__tab[data-active="1"] .FR-module__tab__title span {
      color: #B3C00E; }
  .FR-module[data-id="TextTabs"] .FR-module__panels {
    position: relative;
    width: 65%; }
  .FR-module[data-id="TextTabs"] .FR-module__panel {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out; }
    .FR-module[data-id="TextTabs"] .FR-module__panel[data-active="1"] {
      opacity: 1;
      pointer-events: auto;
      position: static; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="TextTabs"] .FR-module__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .FR-module[data-id="TextTabs"] .FR-module__headlines {
    width: 100%;
    max-width: 30em; }
  .FR-module[data-id="TextTabs"] .FR-module__header, .FR-module[data-id="TextTabs"] .FR-module__panels, .FR-module[data-id="TextTabs"] .FR-module__tabs {
    width: 100%; }
  .FR-module[data-id="TextTabs"] .FR-module__link {
    margin-top: 2em; } }

@media screen {
  /*  ==========================================================================
    FACTS
    ========================================================================== */
  .FR-module[data-id="Facts"] {
    padding-top: 7.5em;
    border-top: 1px solid #707070; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Facts"] {
      padding-top: 4.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Facts"] {
      padding-top: 2.5em; } }

@media screen {
    .FR-module[data-id="Facts"] .FR-module__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 5em 2em; }
    .FR-module[data-id="Facts"] .FR-module__item {
      width: calc((100% / 4) - (2em * calc(4 - 1) / 4));
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .FR-module[data-id="Facts"] .FR-module__item__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 0.5em; }
    .FR-module[data-id="Facts"] .FR-module__number {
      font-weight: 700;
      letter-spacing: 1.2px;
      line-height: 1; }
      .FR-module[data-id="Facts"] .FR-module__number > * {
        font-size: 12em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Facts"] .FR-module__number > * {
        font-size: 10em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Facts"] .FR-module__number > * {
        font-size: 8em; } }

@media screen {
    .FR-module[data-id="Facts"] .FR-module__title {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px; }
      .FR-module[data-id="Facts"] .FR-module__title > * {
        font-size: 1.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Facts"] .FR-module__list {
      gap: 4em 2em; }
    .FR-module[data-id="Facts"] .FR-module__item {
      width: calc((100% / 3) - (2em * calc(3 - 1) / 3)); } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Facts"] .FR-module__list {
      gap: 2em; }
    .FR-module[data-id="Facts"] .FR-module__item {
      width: calc((100% / 2) - (2em * calc(2 - 1) / 2)); } }

@media screen {
  /*  ==========================================================================
    PROJECT
    ========================================================================== */
  .FR-module[data-id="Project"] {
    background: #222627;
    color: #FFFFFF; }
    .FR-module[data-id="Project"][data-layout="teaser_detail"], .FR-module[data-id="Project"][data-layout="teaser"], .FR-module[data-id="Project"][data-layout="list"] {
      padding-bottom: 30em; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__nav, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__nav, .FR-module[data-id="Project"][data-layout="list"] .FR-module__nav {
        display: none; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="list"] .FR-module__projects {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 0 14em; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project {
        color: #FFFFFF;
        width: calc((100% / 2) - (14em * calc(2 - 1) / 2)); }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(even), .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(even), .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(even) {
          margin-top: 8em; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__content__right, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__content__right, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__content__right {
          display: none; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image {
          position: relative;
          overflow: hidden;
          margin-bottom: 3em; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image img, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image img, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image img {
            width: 100%;
            height: auto; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image video {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            opacity: 0;
            -webkit-transition: opacity 0.5s;
            -o-transition: opacity 0.5s;
            transition: opacity 0.5s; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image::after {
            content: 'Wanna Watch Some?';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(38, 43, 44, 0.25) 0 0 no-repeat padding-box;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            -webkit-transition: opacity 0.5s;
            -o-transition: opacity 0.5s;
            transition: opacity 0.5s;
            font-size: 1.5em; } }
          @media screen and (max-width: 1024px) {
            .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image::after {
              font-size: 1em; } }
          @media screen and (max-width: 767px) {
            .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image::after {
              font-size: 0.8em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__title, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__title, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__title {
          font-size: inherit;
          line-height: 1;
          font-family: "Inter";
          -webkit-transition: opacity 0.5s, color 0.5s ease;
          -o-transition: opacity 0.5s, color 0.5s ease;
          transition: opacity 0.5s, color 0.5s ease; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__title > * {
            font-size: 4em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__title > * {
            font-size: 3em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__title > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__title > * {
            font-size: 2em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__subtitle, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__subtitle, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__subtitle {
          font-size: inherit;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-top: 1em;
          -webkit-transition: opacity 0.5s;
          -o-transition: opacity 0.5s;
          transition: opacity 0.5s; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__subtitle > * {
            font-size: 1.5em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__subtitle > * {
            font-size: 1.2em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__subtitle > *, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__subtitle > * {
            font-size: 1em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__slider, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__slider, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__slider {
          display: none; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project.JS-play .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project.JS-play .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project.JS-play .FR-module__project__image video {
          opacity: 1; } }
      @media screen and (min-width: 1025px) {
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:hover .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:hover .FR-module__project__image video, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:hover .FR-module__project__image video {
          opacity: 1; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:hover .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:hover .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:hover .FR-module__project__image::after {
          opacity: 1; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:hover .FR-module__project__title, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:hover .FR-module__project__title, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:hover .FR-module__project__title {
          color: #B3C00E; } }

@media screen {
    .FR-module[data-id="Project"][data-layout="teaser_detail"], .FR-module[data-id="Project"][data-layout="teaser"] {
      margin-top: 0;
      padding-top: 13em !important;
      padding-bottom: 0; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__headlines, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__headlines {
        margin-bottom: 10em; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__headlines > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__headlines > * {
          max-width: 52em;
          margin-left: 0; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__view-all, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__view-all {
        border-top: 1px solid #707070;
        padding: 4em 0;
        margin-top: 5.5em; }
    .FR-module[data-id="Project"][data-layout="teaser_detail"] {
      background: none;
      color: #262B2C;
      padding-top: 0 !important; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project {
        color: #262B2C; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after {
          color: #FFFFFF; }
    .FR-module[data-id="Project"][data-layout="teaser"] {
      background: none;
      -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
      -o-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
      transition: background 0.5s ease-in-out, color 0.5s ease-in-out; }
      .FR-module[data-id="Project"][data-layout="teaser"].JS-inverted {
        background: #222627;
        color: #FFFFFF; }
    .FR-module[data-id="Project"][data-layout="list"] {
      padding-top: 12em;
      padding-bottom: 10em;
      margin-top: -12em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        padding-top: 7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        padding-top: 5.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        padding-bottom: 7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        padding-bottom: 5.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        margin-top: -7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="list"] {
        margin-top: -5.5em; } }

@media screen {
      .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
        margin-top: 0;
        margin-bottom: 11.5em;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        text-transform: uppercase;
        overflow: auto;
        margin-left: -3.5em;
        margin-right: -3.5em;
        padding: 0 3.5em 1.5em 3.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          margin-top: 6em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          margin-top: 4em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          margin-bottom: 8em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          margin-bottom: 6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter > * {
          font-size: 2em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter > * {
          font-size: 1.7em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter > * {
          font-size: 1.5em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter::-webkit-scrollbar {
          height: 2px;
          width: calc(100% - 7em); }
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter__slash {
          padding: 0 1em; }
        .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter__item {
          white-space: nowrap;
          cursor: pointer; }
          .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter__item:hover {
            color: #B3C00E; }
          .FR-module[data-id="Project"][data-layout="list"] .FR-module__filter__item.JS-act {
            font-weight: 700; }
    .FR-module[data-id="Project"][data-layout="detail"] {
      padding-top: 12em;
      padding-bottom: 10em;
      margin-top: -12em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        padding-top: 7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        padding-top: 5.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        padding-bottom: 7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        padding-bottom: 5.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        margin-top: -7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Project"][data-layout="detail"] {
        margin-top: -5.5em; } }

@media screen {
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
        margin-top: 0;
        margin-bottom: 11.5em;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        text-transform: uppercase;
        overflow: auto;
        margin-left: -3.5em;
        margin-right: -3.5em;
        padding: 0 3.5em 1.5em 3.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-top: 6em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-top: 4em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-bottom: 8em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-bottom: 6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter > * {
          font-size: 2em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter > * {
          font-size: 1.7em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter > * {
          font-size: 1.5em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter::-webkit-scrollbar {
          height: 2px;
          width: calc(100% - 7em); }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter__slash {
          padding: 0 1em; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter__item {
          white-space: nowrap;
          cursor: pointer; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter__item:hover {
            color: #B3C00E; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter__item.JS-act {
            font-weight: 700; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
        margin-bottom: 6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-bottom: 6em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__filter {
          margin-bottom: 6em; } }

@media screen {
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 5em;
        text-transform: uppercase;
        margin-bottom: 3.5em; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__prev, .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__next {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 1em;
        cursor: pointer; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__prev__label > *, .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__next__label > * {
          font-size: 1.5em; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__prev:hover, .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__next:hover {
          color: #B3C00E; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__prev {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__title > * {
        font-size: 1.5em; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav__title:hover {
        color: #B3C00E; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project {
        color: #FFFFFF; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__image {
          margin-bottom: 8.5em; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__image img {
            width: 100%;
            height: auto; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video {
          position: relative;
          margin-bottom: 8.5em;
          background-color: #000000; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video video {
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            width: 100%;
            left: 0;
            position: absolute;
            top: 0; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video video[autoplay] {
            pointer-events: none; }
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video video[autoplay]::-webkit-media-controls {
              display: none !important; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video--2 {
            margin-top: 5em;
            margin-bottom: 0; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          gap: 5em;
          margin: 0 8%; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content__left {
            width: 30%; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content__right {
            width: 70%; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__title {
          font-size: inherit;
          line-height: 1;
          font-family: "Inter"; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__title > * {
            font-size: 6em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__title > * {
            font-size: 4em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__title > * {
            font-size: 3em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__subtitle {
          font-size: inherit;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-top: 1em; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__subtitle > * {
            font-size: 1.5em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__subtitle > * {
            font-size: 1.2em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__subtitle > * {
            font-size: 1em; } }

@media screen {
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider {
          margin-top: 16em; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__top {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: end;
                -ms-flex-align: end;
                    align-items: flex-end;
            margin: 0 8% 5em 8%; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title {
            line-height: 1;
            font-family: "Inter";
            max-width: 40em; }
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title > * {
              font-size: 6em; } }
          @media screen and (max-width: 1024px) {
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title > * {
              font-size: 4em; } }
          @media screen and (max-width: 767px) {
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title > * {
              font-size: 3em; } }

@media screen {
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: 1em; }
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls > * {
              font-size: 2em; } }
          @media screen and (max-width: 1024px) {
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls > * {
              font-size: 1.7em; } }
          @media screen and (max-width: 767px) {
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls > * {
              font-size: 1.5em; } }

@media screen {
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls > * {
              cursor: pointer; }
              .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__controls > *:hover {
                color: #B3C00E; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__bottom {
            overflow: hidden; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slides.slick-slider {
            margin: 0 -0.8em; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slides:not(.slick-slider) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            gap: 1.7em; }
          .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slide {
            width: calc((100% / 4) - (1.7em * calc(4 - 1) / 4));
            overflow: hidden; }
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slide img {
              width: 100%;
              height: auto;
              -webkit-transition: -webkit-transform 0.25s ease;
              transition: -webkit-transform 0.25s ease;
              -o-transition: transform 0.25s ease;
              transition: transform 0.25s ease;
              transition: transform 0.25s ease, -webkit-transform 0.25s ease; }
            .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slide > * {
              display: block;
              overflow: hidden; }
              .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__slide > *:hover img {
                -webkit-transform: scale(1.05);
                    -ms-transform: scale(1.05);
                        transform: scale(1.05); }
    .FR-module[data-id="Project"] .slick-slide {
      float: left; }
      .FR-module[data-id="Project"] .slick-slide > div > div {
        padding: 0 0.8em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="list"] .FR-module__projects {
      gap: 0 7em; }
    .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project {
      width: calc((100% / 2) - (7em * calc(2 - 1) / 2)); }
    .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__headlines > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__headlines > * {
      max-width: 38em; }
    .FR-module[data-id="Project"][data-layout="teaser"] {
      padding-top: 7em !important; }
    .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title {
      max-width: 32em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Project"][data-layout="teaser_detail"], .FR-module[data-id="Project"][data-layout="teaser"], .FR-module[data-id="Project"][data-layout="list"] {
      margin-top: -4em;
      padding-bottom: 9.5em; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__projects, .FR-module[data-id="Project"][data-layout="list"] .FR-module__projects {
        gap: 7em;
        margin: 0 -3.5em; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project {
        display: block;
        width: 100%; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(odd), .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(odd), .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(odd) {
          margin-right: 3.5em; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(odd) .FR-module__project__content, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(odd) .FR-module__project__content, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(odd) .FR-module__project__content {
            padding-left: 3.5em; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(odd) .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(odd) .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(odd) .FR-module__project__image::after {
            right: -3em;
            left: auto;
            top: auto;
            bottom: 2em; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(even), .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(even), .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(even) {
          margin-left: 3.5em;
          margin-top: 0; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(even) .FR-module__project__content, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(even) .FR-module__project__content, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(even) .FR-module__project__content {
            padding-right: 3.5em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: flex-end;
            text-align: right; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:nth-child(even) .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:nth-child(even) .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:nth-child(even) .FR-module__project__image::after {
            left: -3em;
            right: auto;
            top: auto;
            bottom: 2em;
            text-align: right; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image {
          overflow: visible;
          margin-bottom: 1.5em; }
          .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project__image::after {
            background: none;
            max-width: 5em; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project.JS-play .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project.JS-play .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project.JS-play .FR-module__project__image::after {
          opacity: 1; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:hover .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:hover .FR-module__project__image::after, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:hover .FR-module__project__image::after {
          color: #B3C00E; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project:hover .FR-module__project__title, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__project:hover .FR-module__project__title, .FR-module[data-id="Project"][data-layout="list"] .FR-module__project:hover .FR-module__project__title {
          color: #B3C00E; }
    .FR-module[data-id="Project"][data-layout="teaser_detail"], .FR-module[data-id="Project"][data-layout="teaser"] {
      padding-top: 6em !important;
      padding-bottom: 0;
      margin-top: 0; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__headlines, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__headlines {
        margin-bottom: 6.5em; }
        .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__headlines > *, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__headlines > * {
          max-width: 25em; }
      .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__view-all, .FR-module[data-id="Project"][data-layout="teaser"] .FR-module__view-all {
        padding: 2em 0;
        margin-top: 8em; }
    .FR-module[data-id="Project"][data-layout="teaser_detail"] .FR-module__project__image::after {
      color: #262B2C; }
    .FR-module[data-id="Project"][data-layout="detail"] .FR-module__nav {
      display: none; }
    .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project {
      overflow: hidden;
      margin-left: -3.5em;
      margin-right: -3.5em; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__image {
        margin-bottom: 3.5em; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__video {
        margin-bottom: 3.5em; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content {
        padding: 0 3.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3.5em;
        margin: 0; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content__left, .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__content__right {
          max-width: 85%;
          width: 100%; }
      .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider {
        margin-top: 8.5em;
        max-width: 80%;
        margin-left: 3.5em; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__top {
          margin: 0 0 4em 0; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__title {
          line-height: 1.3;
          max-width: 24em; }
        .FR-module[data-id="Project"][data-layout="detail"] .FR-module__project__slider__bottom {
          overflow: visible; } }

@media screen {
  /*  ==========================================================================
    LOGO LIST
    ========================================================================== */
  .FR-module[data-id="LogoList"] .FR-module__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6em;
    margin-top: 7em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="LogoList"] .FR-module__list {
      margin-top: 5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="LogoList"] .FR-module__list {
      margin-top: 4em; } }

@media screen {
    .FR-module[data-id="LogoList"] .FR-module__list > a img {
      -webkit-transition: opacity 0.25s ease;
      -o-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
      .FR-module[data-id="LogoList"] .FR-module__list > a img:hover {
        opacity: 0.5; }
    .FR-module[data-id="LogoList"] .FR-module__list__item {
      width: calc((100% / 6) - (6em * calc(6 - 1) / 6));
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .FR-module[data-id="LogoList"] .FR-module__list__item img {
        display: block;
        height: auto;
        width: 100%; }
      .FR-module[data-id="LogoList"] .FR-module__list__item img {
        -webkit-transition: -webkit-filter 0.25s ease-in-out;
        transition: -webkit-filter 0.25s ease-in-out;
        -o-transition: filter 0.25s ease-in-out;
        transition: filter 0.25s ease-in-out;
        transition: filter 0.25s ease-in-out, -webkit-filter 0.25s ease-in-out;
        -webkit-filter: grayscale(1);
                filter: grayscale(1);
        max-width: 10em;
        width: 100%;
        height: auto; }
        .FR-module[data-id="LogoList"] .FR-module__list__item img[src$=".svg"] {
          height: 5em;
          width: 100%; }
      .FR-module[data-id="LogoList"] .FR-module__list__item:hover img {
        -webkit-filter: none;
                filter: none; }
  .FR-module[data-id="LogoList"][data-inverted="1"] .FR-module__list__item img {
    -webkit-filter: brightness(0) invert(1) grayscale(1);
            filter: brightness(0) invert(1) grayscale(1); } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="LogoList"] .FR-module__list {
    gap: 4em; }
    .FR-module[data-id="LogoList"] .FR-module__list__item {
      width: calc((100% / 4) - (4em * calc(4 - 1) / 4)); }
      .FR-module[data-id="LogoList"] .FR-module__list__item img {
        display: block;
        height: auto;
        width: 100%; }
      .FR-module[data-id="LogoList"] .FR-module__list__item img {
        -webkit-filter: none;
                filter: none; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="LogoList"] .FR-module__list {
    gap: 3em; }
    .FR-module[data-id="LogoList"] .FR-module__list__item {
      width: calc((100% / 3) - (3em * calc(3 - 1) / 3)); } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="TextPic"] .FR-module__frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 9.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextPic"] .FR-module__frame {
      gap: 3.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextPic"] .FR-module__frame {
      gap: 4em; } }

@media screen {
  .FR-module[data-id="TextPic"] .FR-module__media {
    max-width: 77em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .FR-module[data-id="TextPic"] .FR-module__image img {
    display: block;
    height: auto;
    width: 100%; }
  .FR-module[data-id="TextPic"] .FR-module__container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .FR-module[data-id="TextPic"] .FR-module__headlines + .FR-module__content {
    margin-top: 5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextPic"] .FR-module__headlines + .FR-module__content {
      margin-top: 4em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextPic"] .FR-module__headlines + .FR-module__content {
      margin-top: 3em; } }

@media screen {
  .FR-module[data-id="TextPic"] .FR-module__link {
    margin-top: 4em; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="TextPic"] .FR-module__frame {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .FR-module[data-id="TextPic"] .FR-module__media {
    max-width: 60%;
    margin-left: 0;
    margin-right: auto; }
  .FR-module[data-id="TextPic"] .FR-module__link {
    margin-top: 2em; } }

@media screen and (max-width: 480px) {
  .FR-module[data-id="TextPic"] .FR-module__media {
    max-width: 80%; } }

@media screen {
  /*  ==========================================================================
    TEAM LIST
    ========================================================================== */
  .FR-module[data-id="TeamList"] .FR-module__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 25em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TeamList"] .FR-module__list {
      gap: 0 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TeamList"] .FR-module__list {
      gap: 7em; } }

@media screen {
  .FR-module[data-id="TeamList"] .FR-module__item {
    width: calc((100% / 2) - (25em * calc(2 - 1) / 2)); }
    .FR-module[data-id="TeamList"] .FR-module__item__wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="TeamList"] .FR-module__item__wrap {
        gap: 3em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="TeamList"] .FR-module__item__wrap {
        gap: 1.5em; } }

@media screen {
    .FR-module[data-id="TeamList"] .FR-module__item:nth-child(odd) {
      padding-top: 10em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="TeamList"] .FR-module__item:nth-child(odd) {
        padding-top: 7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="TeamList"] .FR-module__item:nth-child(odd) {
        padding-top: 0; } }

@media screen {
    .FR-module[data-id="TeamList"] .FR-module__item[data-open="1"] .FR-module__text:before, .FR-module[data-id="TeamList"] .FR-module__item[data-open="1"] .FR-module__text__content, .FR-module[data-id="TeamList"] .FR-module__item:hover .FR-module__text:before, .FR-module[data-id="TeamList"] .FR-module__item:hover .FR-module__text__content {
      opacity: 1; }
  .FR-module[data-id="TeamList"] .FR-module__media {
    position: relative; }
  .FR-module[data-id="TeamList"] .FR-module__text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .FR-module[data-id="TeamList"] .FR-module__text:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(38, 43, 44, 0.85);
      mix-blend-mode: multiply;
      opacity: 0;
      -webkit-transition: opacity 0.25s ease;
      -o-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
    .FR-module[data-id="TeamList"] .FR-module__text__content {
      padding: 9em;
      height: 100%;
      line-height: 1.75;
      overflow: auto;
      color: #FFFFFF;
      position: relative;
      opacity: 0;
      -webkit-transition: opacity 0.25s ease;
      -o-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
      .FR-module[data-id="TeamList"] .FR-module__text__content > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="TeamList"] .FR-module__text__content > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="TeamList"] .FR-module__text__content > * {
        font-size: 1.4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="TeamList"] .FR-module__text__content {
        padding: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="TeamList"] .FR-module__text__content {
        padding: 0; } }

@media screen {
  .FR-module[data-id="TeamList"] .FR-module__image img {
    display: block;
    height: auto;
    width: 100%; }
  .FR-module[data-id="TeamList"] .FR-module__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TeamList"] .FR-module__content {
      gap: 1.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TeamList"] .FR-module__content {
      gap: 0.5em; } }

@media screen {
  .FR-module[data-id="TeamList"] .FR-module__name {
    line-height: 1;
    font-weight: 700;
    font-family: "Inter"; }
    .FR-module[data-id="TeamList"] .FR-module__name > * {
      font-size: 4em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TeamList"] .FR-module__name > * {
      font-size: 3em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TeamList"] .FR-module__name > * {
      font-size: 2em; } }

@media screen {
  .FR-module[data-id="TeamList"] .FR-module__subtitle {
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase; }
    .FR-module[data-id="TeamList"] .FR-module__subtitle > * {
      font-size: 1.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TeamList"] .FR-module__subtitle > * {
      font-size: 1.3em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TeamList"] .FR-module__subtitle > * {
      font-size: 1em; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="TeamList"] .FR-module__item {
    width: calc((100% / 2) - (7em * calc(2 - 1) / 2)); }
  .FR-module[data-id="TeamList"] .FR-module__link > * {
    color: #222627; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="TeamList"] .FR-module__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .FR-module[data-id="TeamList"] .FR-module__item {
    width: 70%; }
    .FR-module[data-id="TeamList"] .FR-module__item__wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
    .FR-module[data-id="TeamList"] .FR-module__item:nth-child(even) {
      -ms-flex-item-align: end;
          align-self: flex-end; }
      .FR-module[data-id="TeamList"] .FR-module__item:nth-child(even) .FR-module__link {
        right: calc(100% + 2em);
        left: auto; }
    .FR-module[data-id="TeamList"] .FR-module__item[data-open="1"] .FR-module__text {
      display: block; }
  .FR-module[data-id="TeamList"] .FR-module__image {
    position: relative; }
  .FR-module[data-id="TeamList"] .FR-module__link {
    position: absolute;
    bottom: 2em;
    left: calc(100% + 2em); }
  .FR-module[data-id="TeamList"] .FR-module__text {
    position: static;
    display: none;
    margin-top: 3.5em; }
    .FR-module[data-id="TeamList"] .FR-module__text:before {
      display: none; }
    .FR-module[data-id="TeamList"] .FR-module__text__content {
      color: #222627;
      opacity: 1; } }

@media screen {
  /*  ==========================================================================
    FACTS
    ========================================================================== */
  .FR-module[data-id="Smw"] .crt-panel-next,
  .FR-module[data-id="Smw"] .crt-panel-prev {
    z-index: 1; }
  .FR-module[data-id="Smw"] .crt-post-share .crt-share-facebook,
  .FR-module[data-id="Smw"] .crt-post-share .crt-share-twitter {
    background-color: #222627; }
  .FR-module[data-id="Smw"] .FR-module__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2em;
    margin-bottom: 6em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Smw"] .FR-module__top {
      margin-bottom: 5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Smw"] .FR-module__top {
      margin-bottom: 3.5em; } }

@media screen {
  .FR-module[data-id="Smw"] .FR-module__headlines {
    width: 100%;
    max-width: 40em; }
  .FR-module[data-id="Smw"] .FR-module__social {
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease; }
    .FR-module[data-id="Smw"] .FR-module__social > * {
      font-size: 3.1em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Smw"] .FR-module__social > * {
      font-size: 2.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="Smw"] .FR-module__social > * {
      font-size: 1.9em; } }

@media screen {
    .FR-module[data-id="Smw"] .FR-module__social:hover {
      color: #B3C00E; }
  .FR-module[data-id="Smw"] .FR-module__widget .crt-logo.crt-tag {
    display: none; }
  /*  ==========================================================================
    PROJECTS DETAIL
    ========================================================================== */
  .FR-module[data-id="ProjectsDetail"] {
    background: #222627;
    color: #FFFFFF;
    padding-top: 12em;
    padding-bottom: 10em;
    margin-top: -12em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsDetail"] {
      padding-top: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsDetail"] {
      padding-top: 5.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsDetail"] {
      padding-bottom: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsDetail"] {
      padding-bottom: 5.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsDetail"] {
      margin-top: -7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsDetail"] {
      margin-top: -5.5em; } }

@media screen {
    .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
      margin-top: 0;
      margin-bottom: 11.5em;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      justify-content: center;
      text-transform: uppercase;
      overflow: auto;
      margin-left: -3.5em;
      margin-right: -3.5em;
      padding: 0 3.5em 1.5em 3.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-top: 6em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-top: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-bottom: 8em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-bottom: 6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }

@media screen {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter > * {
        font-size: 1.7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter > * {
        font-size: 1.5em; } }

@media screen {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter::-webkit-scrollbar {
        height: 2px;
        width: calc(100% - 7em); }
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter__slash {
        padding: 0 1em; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter__item {
        white-space: nowrap;
        cursor: pointer; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__filter__item:hover {
          color: #B3C00E; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__filter__item.JS-act {
          font-weight: 700; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
      margin-bottom: 6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-bottom: 6em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsDetail"] .FR-module__filter {
        margin-bottom: 6em; } }

@media screen {
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 5em;
      text-transform: uppercase;
      margin-bottom: 3.5em; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__prev, .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__next {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1em;
      cursor: pointer; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__prev__label > *, .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__next__label > * {
        font-size: 1.5em; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__prev:hover, .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__next:hover {
        color: #B3C00E; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__prev {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__title > * {
      font-size: 1.5em; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu__title:hover {
      color: #B3C00E; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__project {
      color: #FFFFFF; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__image {
        margin-bottom: 8.5em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__image img {
          width: 100%;
          height: auto; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__video {
        position: relative;
        margin-bottom: 8.5em;
        background-color: #000000; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__video video {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          left: 0;
          position: absolute;
          top: 0; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__video video[autoplay] {
          pointer-events: none; }
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__video video[autoplay]::-webkit-media-controls {
            display: none !important; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__video--2 {
          margin-top: 5em;
          margin-bottom: 0; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5em;
        margin: 0 8%; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__content__left {
          width: 30%; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__content__right {
          width: 70%; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__title {
        font-size: inherit;
        line-height: 1;
        font-family: "Inter"; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__title > * {
          font-size: 6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__title > * {
          font-size: 4em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__title > * {
          font-size: 3em; } }

@media screen {
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__subtitle {
        font-size: inherit;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__subtitle > * {
          font-size: 1.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__subtitle > * {
          font-size: 1.2em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__subtitle > * {
          font-size: 1em; } }

@media screen {
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider {
        margin-top: 16em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__top {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end;
          margin: 0 8% 5em 8%; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title {
          line-height: 1;
          font-family: "Inter";
          max-width: 40em; }
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title > * {
            font-size: 6em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title > * {
            font-size: 4em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title > * {
            font-size: 3em; } }

@media screen {
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1em; }
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls > * {
            font-size: 2em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls > * {
            font-size: 1.7em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls > * {
            font-size: 1.5em; } }

@media screen {
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls > * {
            cursor: pointer; }
            .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__controls > *:hover {
              color: #B3C00E; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__bottom {
          overflow: hidden; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slides.slick-slider {
          margin: 0 -0.8em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slides:not(.slick-slider) {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          gap: 1.7em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slide {
          width: calc((100% / 4) - (1.7em * calc(4 - 1) / 4));
          overflow: hidden; }
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slide img {
            width: 100%;
            height: auto;
            -webkit-transition: -webkit-transform 0.25s ease;
            transition: -webkit-transform 0.25s ease;
            -o-transition: transform 0.25s ease;
            transition: transform 0.25s ease;
            transition: transform 0.25s ease, -webkit-transform 0.25s ease; }
          .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slide > * {
            display: block;
            overflow: hidden; }
            .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__slide > *:hover img {
              -webkit-transform: scale(1.05);
                  -ms-transform: scale(1.05);
                      transform: scale(1.05); }
    .FR-module[data-id="ProjectsDetail"] .slick-slide {
      float: left; }
      .FR-module[data-id="ProjectsDetail"] .slick-slide > div > div {
        padding: 0 0.8em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title {
      max-width: 32em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsDetail"] .FR-module__browse-menu {
      display: none; }
    .FR-module[data-id="ProjectsDetail"] .FR-module__project {
      overflow: hidden;
      margin-left: -3.5em;
      margin-right: -3.5em; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__image {
        margin-bottom: 3.5em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__video {
        margin-bottom: 3.5em; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__content {
        padding: 0 3.5em;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3.5em;
        margin: 0; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__content__left, .FR-module[data-id="ProjectsDetail"] .FR-module__project__content__right {
          max-width: 85%;
          width: 100%; }
      .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider {
        margin-top: 8.5em;
        max-width: 80%;
        margin-left: 3.5em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__top {
          margin: 0 0 4em 0; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__title {
          line-height: 1.3;
          max-width: 24em; }
        .FR-module[data-id="ProjectsDetail"] .FR-module__project__slider__bottom {
          overflow: visible; } }

@media screen {
  /*  ==========================================================================
    PROJECTS LIST
    ========================================================================== */
  .FR-module[data-id="ProjectsList"] {
    padding-top: 12em;
    padding-bottom: 10em;
    margin-top: -12em;
    background: #222627;
    color: #FFFFFF; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsList"] {
      padding-top: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsList"] {
      padding-top: 5.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsList"] {
      padding-bottom: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsList"] {
      padding-bottom: 5.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsList"] {
      margin-top: -7em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsList"] {
      margin-top: -5.5em; } }

@media screen {
    .FR-module[data-id="ProjectsList"] .FR-module__filter {
      margin-top: 0;
      margin-bottom: 11.5em;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      justify-content: center;
      text-transform: uppercase;
      overflow: auto;
      margin-left: -3.5em;
      margin-right: -3.5em;
      padding: 0 3.5em 1.5em 3.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        margin-top: 6em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        margin-top: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        margin-bottom: 8em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        margin-bottom: 6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }

@media screen {
      .FR-module[data-id="ProjectsList"] .FR-module__filter > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter > * {
        font-size: 1.7em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsList"] .FR-module__filter > * {
        font-size: 1.5em; } }

@media screen {
      .FR-module[data-id="ProjectsList"] .FR-module__filter::-webkit-scrollbar {
        height: 2px;
        width: calc(100% - 7em); }
      .FR-module[data-id="ProjectsList"] .FR-module__filter__slash {
        padding: 0 1em; }
      .FR-module[data-id="ProjectsList"] .FR-module__filter__item {
        white-space: nowrap;
        cursor: pointer; }
        .FR-module[data-id="ProjectsList"] .FR-module__filter__item:hover {
          color: #B3C00E; }
        .FR-module[data-id="ProjectsList"] .FR-module__filter__item.JS-act {
          font-weight: 700; }
    .FR-module[data-id="ProjectsList"] .FR-module__nav {
      display: none; }
    .FR-module[data-id="ProjectsList"] .FR-module__projects {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 0 14em; }
    .FR-module[data-id="ProjectsList"] .FR-module__project {
      color: #FFFFFF;
      width: calc((100% / 2) - (14em * calc(2 - 1) / 2)); }
      .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(even) {
        margin-top: 8em; }
      .FR-module[data-id="ProjectsList"] .FR-module__project__content__right {
        display: none; }
      .FR-module[data-id="ProjectsList"] .FR-module__project__image {
        position: relative;
        overflow: hidden;
        margin-bottom: 3em; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__image img {
          width: 100%;
          height: auto; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__image video {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          opacity: 0;
          -webkit-transition: opacity 0.5s;
          -o-transition: opacity 0.5s;
          transition: opacity 0.5s; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__image::after {
          content: 'Wanna Watch Some?';
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background: rgba(38, 43, 44, 0.25) 0 0 no-repeat padding-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          text-transform: uppercase;
          letter-spacing: 1px;
          opacity: 0;
          -webkit-transition: opacity 0.5s;
          -o-transition: opacity 0.5s;
          transition: opacity 0.5s;
          font-size: 1.5em; } }
        @media screen and (max-width: 1024px) {
          .FR-module[data-id="ProjectsList"] .FR-module__project__image::after {
            font-size: 1em; } }
        @media screen and (max-width: 767px) {
          .FR-module[data-id="ProjectsList"] .FR-module__project__image::after {
            font-size: 0.8em; } }

@media screen {
      .FR-module[data-id="ProjectsList"] .FR-module__project__title {
        font-size: inherit;
        line-height: 1;
        font-family: "Inter";
        -webkit-transition: opacity 0.5s, color 0.5s ease;
        -o-transition: opacity 0.5s, color 0.5s ease;
        transition: opacity 0.5s, color 0.5s ease; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__title > * {
          font-size: 4em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="ProjectsList"] .FR-module__project__title > * {
          font-size: 3em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="ProjectsList"] .FR-module__project__title > * {
          font-size: 2em; } }

@media screen {
      .FR-module[data-id="ProjectsList"] .FR-module__project__subtitle {
        font-size: inherit;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1em;
        -webkit-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__subtitle > * {
          font-size: 1.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="ProjectsList"] .FR-module__project__subtitle > * {
          font-size: 1.2em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="ProjectsList"] .FR-module__project__subtitle > * {
          font-size: 1em; } }

@media screen {
      .FR-module[data-id="ProjectsList"] .FR-module__project__slider {
        display: none; }
      .FR-module[data-id="ProjectsList"] .FR-module__project.JS-play .FR-module__project__image video {
        opacity: 1; } }
    @media screen and (min-width: 1025px) {
      .FR-module[data-id="ProjectsList"] .FR-module__project:hover .FR-module__project__image video {
        opacity: 1; }
      .FR-module[data-id="ProjectsList"] .FR-module__project:hover .FR-module__project__image::after {
        opacity: 1; }
      .FR-module[data-id="ProjectsList"] .FR-module__project:hover .FR-module__project__title {
        color: #B3C00E; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="ProjectsList"] .FR-module__projects {
      gap: 0 7em; }
    .FR-module[data-id="ProjectsList"] .FR-module__project {
      width: calc((100% / 2) - (7em * calc(2 - 1) / 2)); } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="ProjectsList"] {
      margin-top: -4em;
      padding-bottom: 9.5em; }
      .FR-module[data-id="ProjectsList"] .FR-module__projects {
        gap: 7em;
        margin: 0 -3.5em; }
      .FR-module[data-id="ProjectsList"] .FR-module__project {
        display: block;
        width: 100%; }
        .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(odd) {
          margin-right: 3.5em; }
          .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(odd) .FR-module__project__content {
            padding-left: 3.5em; }
          .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(odd) .FR-module__project__image::after {
            right: -3em;
            left: auto;
            top: auto;
            bottom: 2em; }
        .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(even) {
          margin-left: 3.5em;
          margin-top: 0; }
          .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(even) .FR-module__project__content {
            padding-right: 3.5em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: flex-end;
            text-align: right; }
          .FR-module[data-id="ProjectsList"] .FR-module__project:nth-child(even) .FR-module__project__image::after {
            left: -3em;
            right: auto;
            top: auto;
            bottom: 2em;
            text-align: right; }
        .FR-module[data-id="ProjectsList"] .FR-module__project__image {
          overflow: visible;
          margin-bottom: 1.5em; }
          .FR-module[data-id="ProjectsList"] .FR-module__project__image::after {
            background: none;
            max-width: 5em; }
        .FR-module[data-id="ProjectsList"] .FR-module__project.JS-play .FR-module__project__image::after {
          opacity: 1; }
        .FR-module[data-id="ProjectsList"] .FR-module__project:hover .FR-module__project__image::after {
          color: #B3C00E; }
        .FR-module[data-id="ProjectsList"] .FR-module__project:hover .FR-module__project__title {
          color: #B3C00E; } }

@media screen {
  /*  ==========================================================================
    PROJECTS TEASER
    ========================================================================== */
  .FR-module[data-id="ProjectsTeaser"] .FR-module__nav {
    display: none; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 14em; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__project {
    width: calc((100% / 2) - (14em * calc(2 - 1) / 2)); }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(even) {
      margin-top: 8em; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__content__right {
      display: none; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image {
      position: relative;
      overflow: hidden;
      margin-bottom: 3em; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image img {
        width: 100%;
        height: auto; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image::after {
        content: 'Wanna Watch Some?';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(38, 43, 44, 0.25) 0 0 no-repeat padding-box;
        color: #FFFFFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        font-size: 1.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image::after {
          font-size: 1em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image::after {
          font-size: 0.8em; } }

@media screen {
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__title {
      font-size: inherit;
      line-height: 1;
      font-family: "Inter";
      -webkit-transition: opacity 0.5s, color 0.5s ease;
      -o-transition: opacity 0.5s, color 0.5s ease;
      transition: opacity 0.5s, color 0.5s ease; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__title > * {
        font-size: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__title > * {
        font-size: 3em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__title > * {
        font-size: 2em; } }

@media screen {
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__subtitle {
      font-size: inherit;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 1em;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__subtitle > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__subtitle > * {
        font-size: 1.2em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__subtitle > * {
        font-size: 1em; } }

@media screen {
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__slider {
      display: none; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project.JS-play .FR-module__project__image video {
      opacity: 1; } }
  @media screen and (min-width: 1025px) {
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:hover .FR-module__project__image video {
      opacity: 1; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:hover .FR-module__project__image::after {
      opacity: 1; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:hover .FR-module__project__title {
      color: #B3C00E; } }

@media screen {
  .FR-module[data-id="ProjectsTeaser"] .FR-module__headlines {
    margin-bottom: 10em; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__headlines > * {
      max-width: 52em;
      margin-left: 0; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__view-all {
    border-top: 1px solid #707070;
    padding: 4em 0;
    margin-top: 5.5em; }
  .FR-module[data-id="ProjectsTeaser"][data-background="1"] {
    padding-top: 13em;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    -o-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out; }
    .FR-module[data-id="ProjectsTeaser"][data-background="1"].JS-inverted {
      background: #222627;
      color: #FFFFFF; }
    .FR-module[data-id="ProjectsTeaser"][data-background="1"] .FR-module__project {
      color: #FFFFFF; }
  .FR-module[data-id="ProjectsTeaser"] .slick-slide {
    float: left; }
    .FR-module[data-id="ProjectsTeaser"] .slick-slide > div > div {
      padding: 0 0.8em; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="ProjectsTeaser"] .FR-module__projects {
    gap: 0 7em; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__project {
    width: calc((100% / 2) - (7em * calc(2 - 1) / 2)); }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__headlines > * {
    max-width: 38em; }
  .FR-module[data-id="ProjectsTeaser"][data-background="1"] {
    padding-top: 7em; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="ProjectsTeaser"] .FR-module__projects {
    gap: 7em;
    margin: 0 -3.5em; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__project {
    display: block;
    width: 100%; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(odd) {
      margin-right: 3.5em; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(odd) .FR-module__project__content {
        padding-left: 3.5em; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(odd) .FR-module__project__image::after {
        right: -3em;
        left: auto;
        top: auto;
        bottom: 2em; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(even) {
      margin-left: 3.5em;
      margin-top: 0; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(even) .FR-module__project__content {
        padding-right: 3.5em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        text-align: right; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project:nth-child(even) .FR-module__project__image::after {
        left: -3em;
        right: auto;
        top: auto;
        bottom: 2em;
        text-align: right; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image {
      overflow: visible;
      margin-bottom: 1.5em; }
      .FR-module[data-id="ProjectsTeaser"] .FR-module__project__image::after {
        background: none;
        max-width: 5em; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project.JS-play .FR-module__project__image::after {
      opacity: 1; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:hover .FR-module__project__image::after {
      color: #B3C00E; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__project:hover .FR-module__project__title {
      color: #B3C00E; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__headlines {
    margin-bottom: 6.5em; }
    .FR-module[data-id="ProjectsTeaser"] .FR-module__headlines > * {
      max-width: 25em; }
  .FR-module[data-id="ProjectsTeaser"] .FR-module__view-all {
    padding: 2em 0;
    margin-top: 8em; }
  .FR-module[data-id="ProjectsTeaser"][data-background="1"] {
    padding-top: 6em; } }

@media screen {
  /*  ==========================================================================
    FOOTER
    Styling for the lowest part of the website
    ========================================================================== */
  .FR-section[data-id="footer"] {
    display: block;
    border-top: 1px solid #707070;
    padding: 6em 0; }
    .FR-section[data-id="footer"] .FR-section__wrap {
      position: relative; }
    .FR-section[data-id="footer"] .FR-section__top {
      padding-bottom: 8em; }
    .FR-section[data-id="footer"] .FR-section__signet {
      display: block;
      max-width: 16.5em; }
      .FR-section[data-id="footer"] .FR-section__signet img {
        width: 100%;
        height: auto; }
    .FR-section[data-id="footer"] .FR-section__center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .FR-section[data-id="footer"] .FR-section__slogan {
      padding-left: 2em;
      text-decoration: underline;
      font-weight: 700;
      line-height: 1;
      font-family: "Inter";
      text-decoration-thickness: 3px;
      max-width: 45em; }
      .FR-section[data-id="footer"] .FR-section__slogan > * {
        font-size: 6em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__slogan > * {
        font-size: 4.5em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__slogan > * {
        font-size: 3em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__items {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 12em;
      position: absolute;
      right: 0;
      left: 0;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .FR-section[data-id="footer"] .FR-section__item__header {
      font-family: "Inter";
      line-height: 1;
      font-weight: 700;
      text-decoration: none;
      margin-bottom: 1.5em; }
      .FR-section[data-id="footer"] .FR-section__item__header > * {
        font-size: 3em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__item__header > * {
        font-size: 2.5em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__item__header > * {
        font-size: 2em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__item > a:hover {
      opacity: 0.5; }
    .FR-section[data-id="footer"] .FR-section__item__links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1em; }
    .FR-section[data-id="footer"] .FR-section__item__link {
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 2px; }
      .FR-section[data-id="footer"] .FR-section__item__link > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__item__link > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__item__link > * {
        font-size: 1.4em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__item__link > a {
        text-decoration: none; }
        .FR-section[data-id="footer"] .FR-section__item__link > a:hover {
          opacity: 0.5; }
    .FR-section[data-id="footer"] .FR-section__bottom {
      padding-top: 13em; }
    .FR-section[data-id="footer"] .FR-section__legalmenu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .FR-section[data-id="footer"] .FR-section__legalmenu > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__legalmenu > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__legalmenu > * {
        font-size: 1.2em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__legalmenu__links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
      .FR-section[data-id="footer"] .FR-section__legalmenu__link > a {
        text-decoration: none; }
        .FR-section[data-id="footer"] .FR-section__legalmenu__link > a:hover {
          opacity: 0.5; } }
  @media screen and (max-width: 1366px) {
    .FR-section[data-id="footer"] .FR-section__items {
      gap: 6em; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="footer"] .FR-section__top {
      padding-bottom: 5em; }
    .FR-section[data-id="footer"] .FR-section__slogan {
      padding-left: 0; }
    .FR-section[data-id="footer"] .FR-section__center {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 5em; }
    .FR-section[data-id="footer"] .FR-section__items {
      position: static;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      max-width: none;
      margin-left: 0;
      padding: 0;
      margin-right: 0; }
    .FR-section[data-id="footer"] .FR-section__bottom {
      padding-top: 5em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="footer"] {
      padding: 5em 0; }
      .FR-section[data-id="footer"] .FR-section__top {
        padding-bottom: 3em; }
      .FR-section[data-id="footer"] .FR-section__signet {
        max-width: 9.5em; }
      .FR-section[data-id="footer"] .FR-section__slogan {
        line-height: 1.3;
        text-decoration-thickness: 1px;
        text-underline-offset: 2px; }
      .FR-section[data-id="footer"] .FR-section__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3em; }
      .FR-section[data-id="footer"] .FR-section__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .FR-section[data-id="footer"] .FR-section__item:nth-child(2) {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; }
        .FR-section[data-id="footer"] .FR-section__item:nth-child(1), .FR-section[data-id="footer"] .FR-section__item:nth-child(3) {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; }
        .FR-section[data-id="footer"] .FR-section__item__header {
          min-width: 12em; }
      .FR-section[data-id="footer"] .FR-section__legalmenu__pipe {
        display: none; }
      .FR-section[data-id="footer"] .FR-section__legalmenu__link > a > span:nth-child(2) {
        padding: 0 0.5em; } }

@media print {
  /*  ==========================================================================
    PRINT STYLES
    Styling for the printed version of the page

    INFO:
    - try not to modify the defaults
    - append your custom rules at the end after 'OWN RULES'
    - contributions for the kickstarter are welcome!
    ========================================================================== */
  * {
    -webkit-print-color-adjust: exact;
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
 * Don't show links for images, or javascript/internal links
 */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  video {
    display: none; }
  /* Own Rules
 * --------------------------------------------------------------------------- */ }


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