/*  ==========================================================================
    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
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/* --- specified colors (should be always last, so above defined colors can be reused here!) --- */
/*  ==========================================================================
    DIMENSIONS
    List of some recurring dimensions.

    INFO:
    - don't delete any unit!
    - do unit changes with care
    - try to use prefixes (f.e. "zi" for "z-index", "hgt" for "height", "wdt" for "width" etc.)
    - if possible try to define the main z-index values here
    - don't put all dimensions in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/* --------- heights ($hgt) --------- */
/* --------- widths ($wdt) --------- */
/* --------- z-indexes ($zi) --------- */
/* --------- dimensions ($dim) --------- */
/*  ==========================================================================
    MEDIA QUERIES
    Collection of media queries.
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    Font settings concerning your project.

    INFO:
    - don't delete anything!
    - use changes in here with care
    - try to use prefixes (f.e. "ff" for "font-family", "fs" for "font-size", "fw" for "font-weight" ecc.)
    - don't put all properties in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/* --------- general --------- */
/* --------- font families ($ff) --------- */
/* --------- font weights ($fw) --------- */
/* --------- font sizes ($fs) --------- */
/* --------- line height ($lh) --------- */
/* --------- horizontal spacing --------- */
/* --------- buttons --------- */
/*  ==========================================================================
    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
 */
/*  ==========================================================================
    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
    ========================================================================== */
/*  ==========================================================================
    CONTENT
    ========================================================================== */
/*
 * HEADLINES
 */
/*
 * TABLE-WRAP
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    BUTTONS
    ========================================================================== */
/*  ==========================================================================
    ELEMENTS
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    SLIDER
    ========================================================================== */
/*  ==========================================================================
    Boxes
    ========================================================================== */
/*  ==========================================================================
    Filter
    ========================================================================== */
/*  ==========================================================================
    FILTER
    Helper to create filter
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    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); } }

/*  ==========================================================================
    LOADER
    ========================================================================== */
@-webkit-keyframes loader-spinning {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes loader-spinning {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes loader-blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes loader-blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 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("/site_package_resources/Public/Icons/Lightgallery/lg.ttf?22t19m") format("truetype"), url("/site_package_resources/Public/Icons/Lightgallery/lg.woff?22t19m") format("woff"), url("/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("/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("/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("/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("/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("/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("/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; }

.lg-backdrop,
.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.9); }

.lg-outer {
  z-index: 2147483632; }

/*
 * 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; }

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed; }

a {
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit; }
  a:visited, a:hover {
    color: inherit; }

img {
  display: block; }

input,
button,
textarea,
select {
  font: inherit; }

body {
  font-weight: normal; }

h1, h2, h3, h4, h5, h6,
p,
ul, ol,
figure, figcaption, blockquote,
dl, dd {
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: inherit; }

li {
  display: block; }

address {
  font-style: normal; }

/* 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:
   https://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; } }

/*  ==========================================================================
    RTE
     specific rules for the Rich Text Editor (ckeditor)
    ========================================================================== */
/*
 * This rules come from the Typo3's RTE textfield's.
 * You can style it as you wish.
 */
.T3-rte-align--left {
  text-align: left !important; }

.T3-rte-align--center {
  text-align: center !important; }

.T3-rte-align--right {
  text-align: right !important; }

.T3-rte-align--justify {
  text-align: justify !important; }

@media screen {
  /*  ==========================================================================
    GLOBAL
    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!
    ========================================================================== */
  /*
 * VIEW TRANSITION
 */
  @view-transition {
    navigation: auto; }
  /*
 * SELECTION
 */
  ::-moz-selection {
    background: #6b6b6b;
    color: #FFFFFF; }
  ::selection {
    background: #6b6b6b;
    color: #FFFFFF; }
  /*
 * SCROLLBAR
 */
  ::-webkit-scrollbar {
    height: 1em;
    width: 0.3em; }
    ::-webkit-scrollbar-track {
      background-color: #D7D7D7; }
    ::-webkit-scrollbar-thumb {
      border-radius: 5em;
      background-color: #6b6b6b; }
    ::-webkit-scrollbar-button {
      display: none; }
  body *::-webkit-scrollbar {
    height: 0.5em;
    width: 0.3em; }
  /*
 * SAFE AREA
 * for further info, see here: https://developer.mozilla.org/en-US/docs/Web/CSS/env
 */
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom); }
  /*
 * TYPOGRAPHY
 */
  body {
    background-color: #FFFFFF;
    color: #6b6b6b;
    font-family: "Teachers";
    font-size: 68.8%;
    font-weight: 400;
    line-height: 1.4; }
    body.JS-no-scroll, body.JS-menu-open, body.lg-on, body[data-menu="1"] {
      height: 100%;
      overflow: hidden; } }
  @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: 60%; } }
  @media screen and (max-width: 350px) {
    body {
      font-size: 50%; } }
  @media screen and (max-width: 320px) {
    body {
      font-size: 50%; } }

@media screen {
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit;
    font-weight: 400; }
  hr {
    border-color: #000000; }
  b,
  strong,
  th {
    font-weight: 700; }
  h1, h2, h3, h4, h5, h6,
  p,
  ul, ol {
    margin: 0;
    padding: 0; }
  b,
  strong {
    font-weight: bold; }
  /*
 * LOADER
 */
  .FR-loader {
    color: #6b6b6b;
    text-align: center; }
    .FR-loader__symbol {
      display: inline-block;
      height: 3em;
      margin-bottom: 0.5em;
      width: 3em; }
      .FR-loader__symbol:before {
        -webkit-animation: loader-spinning 1.2s linear infinite;
                animation: loader-spinning 1.2s linear infinite;
        border-color: #6b6b6b transparent #6b6b6b transparent;
        border-radius: 50%;
        border-style: solid;
        border-width: 0.3em;
        content: '';
        display: block;
        height: 100%;
        margin: 1px;
        width: 100%; }
    .FR-loader__text {
      font-size: 1.6em; }
  /*
 * NO RESULT
 */
  .FR-no-result {
    color: #6b6b6b;
    font-style: italic;
    text-align: center; }
    .FR-no-result > * {
      font-size: 1.6em; } }
  @media screen and (max-width: 1024px) {
    .FR-no-result > * {
      font-size: 1.5em; } }
  @media screen and (max-width: 767px) {
    .FR-no-result > * {
      font-size: 1.4em; } }

@media screen {
  /*
 * 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; }
  /*
 * MODULES
 */
  .FR-module[data-space-bottom="large"] {
    margin-bottom: 20em; }
  .FR-module[data-space-bottom="medium"] {
    margin-bottom: 14em; }
  .FR-module[data-space-bottom="small"] {
    margin-bottom: 7em; }
  .FR-module[data-space-bottom="x-small"] {
    margin-bottom: 2.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-space-bottom="x-small"] {
      margin-bottom: 2em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-space-bottom="x-small"] {
      margin-bottom: 1.5em; } }

@media screen {
  .FR-module[data-inverted="1"] {
    padding: 14em 0;
    background-color: #6b6b6b;
    color: #FFFFFF; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-inverted="1"] {
      padding: 10em 0; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-inverted="1"] {
      padding: 8em 0; } }

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

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

@media screen {
  .FR-section[data-id="main"][data-hero-layout="full"] .FR-module:first-child {
    padding-top: 14em !important; } }

@media screen and (max-width: 1024px) {
  .FR-section[data-id="main"][data-hero-layout="full"] .FR-module:first-child {
    padding-top: 10em !important; } }

@media screen and (max-width: 767px) {
  .FR-section[data-id="main"][data-hero-layout="full"] .FR-module:first-child {
    padding-top: 9em !important; } }

@media screen {
  .FR-section[data-id="main"][data-hero-layout="none"] .FR-module:first-child {
    padding-top: 18em; } }

@media screen and (max-width: 1024px) {
  .FR-section[data-id="main"][data-hero-layout="none"] .FR-module:first-child {
    padding-top: 12em; } }

@media screen and (max-width: 767px) {
  .FR-section[data-id="main"][data-hero-layout="none"] .FR-module:first-child {
    padding-top: 11em; } }

@media screen {
  /*
 * TABLE-WRAP
 */
  .FR-table {
    font-size: 1em !important;
    position: relative;
    line-height: inherit; }
    .FR-table table {
      border-collapse: collapse;
      margin-left: auto;
      margin-right: auto;
      min-width: 100%;
      min-width: 100%; } }
    @media screen and (max-width: 1024px) {
      .FR-table table {
        min-width: 100%; } }
    @media screen and (max-width: 767px) {
      .FR-table table {
        min-width: 767px; } }

@media screen {
      .FR-table table tr > * {
        font-size: 1.9em; } }
    @media screen and (max-width: 1024px) {
      .FR-table table tr > * {
        font-size: 1.8em; } }
    @media screen and (max-width: 767px) {
      .FR-table table tr > * {
        font-size: 1.7em; } }

@media screen {
      .FR-table table tr th,
      .FR-table table tr td {
        border: 1px solid;
        padding: 0.52632em;
        text-align: left; }
    .FR-table__wrap {
      overflow-x: auto; }
    .FR-table__overlay {
      background-color: rgba(107, 107, 107, 0.25);
      display: none;
      height: 100%;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      left: 0;
      padding-top: 2.5em;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 5; }
      .FR-table__overlay img {
        max-width: 7em;
        width: 100%; }
    .FR-table:hover .FR-table__overlay {
      display: none !important; } }
  @media screen and (max-width: 767px) {
    .FR-table__overlay {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

@media screen {
  /*
 * IMAGES
 */
  .FR-image {
    display: block;
    height: auto;
    width: 100%; }
    .FR-image__title {
      padding: 0.5em 1em;
      position: absolute;
      right: 0;
      bottom: 0;
      background-color: rgba(107, 107, 107, 0.75);
      color: #FFFFFF;
      text-align: center; }
      .FR-image__title > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-image__title > * {
        font-size: 1.4em; } }
    @media screen and (max-width: 767px) {
      .FR-image__title > * {
        font-size: 1.3em; } }
    @media screen and (max-width: 1024px) {
      .FR-image__title {
        padding: 0.4em 0.7em; } }
    @media screen and (max-width: 767px) {
      .FR-image__title {
        padding: 0.3em 0.5em; } }

@media screen {
  /*
 * STANDARD CONTENT
 */
  .FR-content__text {
    margin-top: 2em; } }
  @media screen and (max-width: 1024px) {
    .FR-content__text {
      margin-top: 1.5em; } }

@media screen {
    .FR-content__text table,
    .FR-content__text ul,
    .FR-content__text ol {
      text-align: left; }
  .FR-content__button {
    margin-top: 3.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }
  @media screen and (max-width: 1024px) {
    .FR-content__button {
      margin-top: 3em; } }
  @media screen and (max-width: 767px) {
    .FR-content__button {
      margin-top: 2.5em; } }

@media screen {
  .FR-content > *:first-child {
    margin-top: 0 !important; }
  .FR-content[data-centered="1"] {
    text-align: center; }
    .FR-content[data-centered="1"] .FR-content__text table,
    .FR-content[data-centered="1"] .FR-content__text ul,
    .FR-content[data-centered="1"] .FR-content__text ol {
      width: auto;
      display: table;
      margin-left: auto;
      margin-right: auto; }
    .FR-content[data-centered="1"] .FR-content__button {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
  /*
 * WRAP
 */
  *[data-wrap-width="x-large"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 6em;
    padding-right: 6em;
    max-width: calc(192em + 6em + 6em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="x-large"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(192em + 2.5em + 2.5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="x-large"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(192em + 2.5em + 2.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: 6em;
    padding-right: 6em;
    max-width: calc(164em + 6em + 6em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="large"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(164em + 2.5em + 2.5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="large"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(164em + 2.5em + 2.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(164em + 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(164em + 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(164em + 0em + 0em); } }

@media screen {
  *[data-wrap-width="medium"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 6em;
    padding-right: 6em;
    max-width: calc(127.5em + 6em + 6em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="medium"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(127.5em + 2.5em + 2.5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="medium"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(127.5em + 2.5em + 2.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(127.5em + 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(127.5em + 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(127.5em + 0em + 0em); } }

@media screen {
  *[data-wrap-width="small"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 6em;
    padding-right: 6em;
    max-width: calc(91.5em + 6em + 6em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="small"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(91.5em + 2.5em + 2.5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="small"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(91.5em + 2.5em + 2.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(91.5em + 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(91.5em + 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(91.5em + 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: "Special Elite";
      line-height: 1.2; }
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 4em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 3.5em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 3.2em; } }

@media screen {
    .FR-headlines > *:nth-child(1) > *:nth-child(2) {
      letter-spacing: 5px;
      line-height: 1.2;
      text-transform: uppercase; }
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 3.3em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 2.9em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 2.7em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) {
        letter-spacing: 4px; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) {
        letter-spacing: 3px; } }

@media screen {
  /*
 * RICH-TEXT
 */
  .FR-rte > *[data-name="content"] > * {
    font-size: 2em; } }

@media screen and (max-width: 1024px) {
  .FR-rte > *[data-name="content"] > * {
    font-size: 1.8em; } }

@media screen and (max-width: 767px) {
  .FR-rte > *[data-name="content"] > * {
    font-size: 1.7em; } }

@media screen {
  .FR-rte > *[data-name="content"] > * {
    line-height: 1.72;
    margin-top: 1em;
    margin-bottom: 1em; }
    .FR-rte > *[data-name="content"] > *:first-child {
      margin-top: 0 !important; }
    .FR-rte > *[data-name="content"] > *:last-child {
      margin-bottom: 0 !important; }
    .FR-rte > *[data-name="content"] > *.FR-table {
      margin-top: 2.5em;
      margin-bottom: 2.5em; }
  .FR-rte > *[data-name="content"] a {
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    color: inherit;
    text-decoration: underline; } }
  @media screen and (min-width: 1025px) {
    .FR-rte > *[data-name="content"] a:hover {
      opacity: 0.7; } }

@media screen {
    .FR-rte > *[data-name="content"] a:visited {
      color: inherit; }
  .FR-rte > *[data-name="content"] ol,
  .FR-rte > *[data-name="content"] ul {
    padding-left: 1.5em; }
    .FR-rte > *[data-name="content"] ol li,
    .FR-rte > *[data-name="content"] ul li {
      display: list-item; }
  .FR-rte > *[data-name="content"] figure.table {
    font-size: 1em !important; }
  .swiper-wrapper {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .swiper-slide {
    height: auto; }
  /*
 * BUTTON
 */
  .FR-button {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    color: #6b6b6b;
    padding-bottom: 1em; }
    .FR-button span {
      font-size: 2.1em;
      letter-spacing: 2.1px;
      line-height: 1;
      position: relative; } }
    @media screen and (max-width: 1024px) {
      .FR-button span {
        font-size: 1.6em; } }
    @media screen and (max-width: 767px) {
      .FR-button span {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-button span {
        letter-spacing: 1.6px; } }

@media screen {
    .FR-button .icon {
      font-size: 1.4em;
      -webkit-transition: all 0.25s;
      -o-transition: all 0.25s;
      transition: all 0.25s; } }
    @media screen and (max-width: 1024px) {
      .FR-button .icon {
        font-size: 1.4em; } }
    @media screen and (max-width: 767px) {
      .FR-button .icon {
        font-size: 1.2em; } }

@media screen {
    .FR-button::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 100%;
      height: 1px;
      background-color: #6b6b6b;
      -webkit-transform: translateX(-50%) scaleX(1);
          -ms-transform: translateX(-50%) scaleX(1);
              transform: translateX(-50%) scaleX(1);
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      -webkit-transition: -webkit-transform 0.4s ease;
      transition: -webkit-transform 0.4s ease;
      -o-transition: transform 0.4s ease;
      transition: transform 0.4s ease;
      transition: transform 0.4s ease, -webkit-transform 0.4s ease; }
    .FR-button:visited {
      color: #6b6b6b; }
    .FR-button:hover::after {
      -webkit-transform: translateX(-50%) scaleX(0.5);
          -ms-transform: translateX(-50%) scaleX(0.5);
              transform: translateX(-50%) scaleX(0.5); }
    .FR-button:active::after {
      -webkit-transform: translateX(-50%) scaleX(0.5);
          -ms-transform: translateX(-50%) scaleX(0.5);
              transform: translateX(-50%) scaleX(0.5); }
  /*
 * WAYPOINTS
 */
  .FR-waypoint {
    position: absolute;
    height: 0 !important;
    width: 100%;
    overflow: hidden !important; }
    .FR-waypoint--1 {
      top: 50px; }
  /*
   * SLIDER: ARROWS, NAVIGATION & PAGINATION
   */
  .JS-slider-arrows[data-active="0"], .JS-slider-arrows__arrow[data-active="0"], .JS-slider-nav[data-active="0"], .JS-slider-pagination[data-active="0"] {
    display: none !important; }
  .FR-slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.5em; }
    .FR-slider-arrows__arrow {
      -webkit-transition: opacity 0.2s;
      -o-transition: opacity 0.2s;
      transition: opacity 0.2s;
      cursor: pointer; } }
    @media screen and (min-width: 1025px) {
      .FR-slider-arrows__arrow:hover {
        opacity: 0.7; } }

@media screen {
      .FR-slider-arrows__arrow > i {
        font-size: 2.9em; } }
      @media screen and (max-width: 1024px) {
        .FR-slider-arrows__arrow > i {
          font-size: 2.5em; } }
      @media screen and (max-width: 767px) {
        .FR-slider-arrows__arrow > i {
          font-size: 2.3em; } }
  @media screen and (max-width: 1024px) {
    .FR-slider-arrows {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

@media screen {
  .FR-backToTop {
    opacity: 0;
    pointer-events: none;
    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;
    position: fixed;
    bottom: 2.5em;
    right: 2.5em;
    z-index: 45;
    border: none;
    outline: none;
    background-color: #EAEAEA;
    color: #6b6b6b;
    cursor: pointer;
    padding: 1.2em 1.6em;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 5em;
    height: 5em;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .FR-backToTop > * {
      font-size: 1.8em; } }
  @media screen and (min-width: 1025px) {
    .FR-backToTop:hover {
      background-color: #60707f;
      color: #FFFFFF; } }

@media screen {
    .FR-backToTop.JS-act {
      opacity: 1;
      pointer-events: all; } }
  @media screen and (max-width: 1024px) {
    .FR-backToTop {
      width: 4em;
      height: 4em;
      bottom: 7.5em;
      padding: 0.2em 1.6em; } }

@media screen {
  /*  ==========================================================================
    HEADER
    Styling for the highest part of the website (mostly also the fixed part
    on top)
    ========================================================================== */
  .FR-section[data-id="header"] {
    position: relative;
    z-index: 50; }
    .FR-section[data-id="header"] .FR-section__bar {
      height: 11em;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      -webkit-transition: height 0.3s, background-color 0.3s, -webkit-backdrop-filter 0.3s;
      transition: height 0.3s, background-color 0.3s, -webkit-backdrop-filter 0.3s;
      -o-transition: height 0.3s, background-color 0.3s, backdrop-filter 0.3s;
      transition: height 0.3s, background-color 0.3s, backdrop-filter 0.3s;
      transition: height 0.3s, background-color 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__bar {
        height: 8em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="header"] .FR-section__bar {
        height: 7.5em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__bar__wrap {
        height: 100%;
        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;
        gap: 2em; }
      .FR-section[data-id="header"] .FR-section__bar__right {
        gap: 5em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__bar__right {
          gap: 0; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__logo-min {
      -webkit-transition: opacity 0.2s;
      -o-transition: opacity 0.2s;
      transition: opacity 0.2s;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      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;
      text-align: center; } }
    @media screen and (min-width: 1025px) {
      .FR-section[data-id="header"] .FR-section__logo-min:hover {
        opacity: 0.7; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__logo-min span {
        line-height: 1.1; }
        .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(1) {
          font-size: 2.2em;
          font-family: "Special Elite";
          color: #60707f; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(1) {
            font-size: 2em; } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(1) {
            font-size: 1.8em; } }

@media screen {
        .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(2) {
          font-size: 1.9em;
          letter-spacing: 5px;
          text-transform: uppercase; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(2) {
            font-size: 1.8em; } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(2) {
            font-size: 1.6em; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(2) {
            letter-spacing: 4px; } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="header"] .FR-section__logo-min span:nth-child(2) {
            letter-spacing: 3px; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__lang-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      list-style-type: none;
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .FR-section[data-id="header"] .FR-section__lang-menu > * {
        font-size: 1.8em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__lang-menu > * {
        font-size: 1.6em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__lang-menu__item {
        -webkit-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s;
        display: block;
        -webkit-transition: opacity 0.25s ease-in-out;
        -o-transition: opacity 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out; } }
      @media screen and (min-width: 1025px) {
        .FR-section[data-id="header"] .FR-section__lang-menu__item:hover {
          opacity: 0.7; } }

@media screen {
        .FR-section[data-id="header"] .FR-section__lang-menu__item--act {
          font-weight: 600; }
      .FR-section[data-id="header"] .FR-section__lang-menu__divider:last-child {
        display: none; }
    .FR-section[data-id="header"] .FR-section__burger {
      margin-right: -2.5em; }
      .FR-section[data-id="header"] .FR-section__burger__frame {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        -webkit-transition: -webkit-transform 400ms;
        transition: -webkit-transform 400ms;
        -o-transition: transform 400ms;
        transition: transform 400ms;
        transition: transform 400ms, -webkit-transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: auto; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__burger__frame {
          width: 8em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__burger__line {
        fill: none;
        -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke: #6b6b6b;
        stroke-width: 2;
        stroke-linecap: round; }
        .FR-section[data-id="header"] .FR-section__burger__line--1 {
          stroke-dasharray: 40 82; }
        .FR-section[data-id="header"] .FR-section__burger__line--2 {
          stroke-dasharray: 40 111; }
        .FR-section[data-id="header"] .FR-section__burger__line--3 {
          stroke-dasharray: 40 161; }
      .FR-section[data-id="header"] .FR-section__burger[data-active="1"] .FR-section__burger__frame {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .FR-section[data-id="header"] .FR-section__burger[data-active="1"] .FR-section__burger__line--1 {
        stroke-dasharray: 17 82;
        stroke-dashoffset: -62px; }
      .FR-section[data-id="header"] .FR-section__burger[data-active="1"] .FR-section__burger__line--2 {
        stroke-dashoffset: 23px; }
      .FR-section[data-id="header"] .FR-section__burger[data-active="1"] .FR-section__burger__line--3 {
        stroke-dashoffset: -83px; }
    .FR-section[data-id="header"] .FR-section__cta-links {
      position: fixed;
      bottom: 2.5em;
      left: 0;
      pointer-events: none;
      width: 100%; }
      .FR-section[data-id="header"] .FR-section__cta-links__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -ms-flex-line-pack: center;
            align-content: center;
        gap: 1em; }
      .FR-section[data-id="header"] .FR-section__cta-links__item {
        -webkit-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s;
        pointer-events: auto;
        border-radius: 50%;
        background-color: #EAEAEA;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 4em;
        height: 4em; }
        .FR-section[data-id="header"] .FR-section__cta-links__item > * {
          font-size: 2em; } }
      @media screen and (min-width: 1025px) {
        .FR-section[data-id="header"] .FR-section__cta-links__item:hover {
          opacity: 0.7; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__menu {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(234, 234, 234, 0.75);
      -webkit-backdrop-filter: blur(7px);
              backdrop-filter: blur(7px);
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.5s ease;
      -o-transition: opacity 0.5s ease;
      transition: opacity 0.5s ease; }
      .FR-section[data-id="header"] .FR-section__menu__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: 100%;
        height: 100%;
        width: 100%; }
      .FR-section[data-id="header"] .FR-section__menu__inner {
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: auto; }
      .FR-section[data-id="header"] .FR-section__menu__inner-wrap {
        height: 100%; }
      .FR-section[data-id="header"] .FR-section__menu__container {
        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-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        min-height: 100%;
        gap: 6em;
        padding: 13em 0 13em 0; }
    .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 6em; }
      .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 .FR-section__main-menu__item--cur .FR-section__main-menu__link--lvl-0 {
        font-weight: 700;
        text-decoration: underline; }
    .FR-section[data-id="header"] .FR-section__main-menu__lvl--1 {
      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; }
      .FR-section[data-id="header"] .FR-section__main-menu__lvl--1 .FR-section__main-menu__item--cur .FR-section__main-menu__link--lvl-1 {
        font-weight: 700;
        text-decoration: underline; }
    .FR-section[data-id="header"] .FR-section__main-menu__item {
      display: block; }
    .FR-section[data-id="header"] .FR-section__main-menu__item-wrap {
      position: relative; }
    .FR-section[data-id="header"] .FR-section__main-menu__link {
      -webkit-transition: opacity 0.2s;
      -o-transition: opacity 0.2s;
      transition: opacity 0.2s;
      line-height: 1.2;
      -webkit-transition: opacity 0.25s ease-in-out;
      -o-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out; } }
    @media screen and (min-width: 1025px) {
      .FR-section[data-id="header"] .FR-section__main-menu__link:hover {
        opacity: 0.7; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-0 {
        font-weight: 700;
        font-family: "Special Elite"; }
        .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-0 span {
          font-size: 2.8em; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-0 span {
            font-size: 2.5em; } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-0 span {
            font-size: 2.3em; } }

@media screen {
      .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-1 span {
        font-size: 1.9em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-1 span {
          font-size: 1.8em; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="header"] .FR-section__main-menu__link--lvl-1 span {
          font-size: 1.7em; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__main-menu__sub {
      padding-top: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"] .FR-section__main-menu__sub {
        padding-top: 1.5em; } }

@media screen {
    .FR-section[data-id="header"][data-transform="1"][data-menu="0"] .FR-section__bar {
      height: 9em;
      background-color: rgba(234, 234, 234, 0.5);
      -webkit-backdrop-filter: blur(7px);
              backdrop-filter: blur(7px); } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="header"][data-transform="1"][data-menu="0"] .FR-section__bar {
        height: 8em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="header"][data-transform="1"][data-menu="0"] .FR-section__bar {
        height: 7.5em; } }

@media screen {
    .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__lang-menu, .FR-section[data-id="header"][data-transform="1"] .FR-section__lang-menu {
      opacity: 1;
      pointer-events: auto; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="header"] .FR-section__bar {
      top: 0; }
      .FR-section[data-id="header"] .FR-section__bar__right {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
    .FR-section[data-id="header"] .FR-section__burger {
      margin-right: -2em; }
    .FR-section[data-id="header"] .FR-section__menu__container {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 13em 0 6em 0; }
    .FR-section[data-id="header"] .FR-section__main-menu__lvl--0 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 3em; }
    .FR-section[data-id="header"][data-menu="0"] .FR-section__bar {
      background-color: rgba(234, 234, 234, 0.5);
      -webkit-backdrop-filter: blur(7px);
              backdrop-filter: blur(7px); } }

@media screen {
  /*  ==========================================================================
    HERO
    Styling of the 'header-image-slider' part
    ========================================================================== */
  /* VARS
 * --------------------------------------------------------------------------- */
  .FR-section[data-id="hero"] {
    margin-top: 0;
    position: relative;
    z-index: 20; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="hero"] {
      margin-top: 7.5em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="hero"] {
      margin-top: 7em; } }

@media screen {
    .FR-section[data-id="hero"]:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5em;
      pointer-events: none;
      background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
      background: -o-linear-gradient(bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to top, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }
    .FR-section[data-id="hero"] .FR-section {
      /* RESPONSIVE
   * --------------------------------------------------------------------------- */ }
      .FR-section[data-id="hero"] .FR-section__vista {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        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: contain;
             object-fit: contain;
          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 - 7.5em); } }
    @media screen and (max-width: 767px) and (orientation: portrait) {
      .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 - 7em); } }

@media screen {
      .FR-section[data-id="hero"] .FR-section__elements {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none; }
      .FR-section[data-id="hero"] .FR-section__slogan {
        position: absolute;
        top: 50%;
        left: 50%;
        pointer-events: auto;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: 100%; }
        .FR-section[data-id="hero"] .FR-section__slogan__wrap {
          margin-left: auto;
          margin-right: auto;
          padding-left: 6em;
          padding-right: 6em;
          max-width: calc(160em + 6em + 6em);
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
        @media screen and (max-width: 1024px) {
          .FR-section[data-id="hero"] .FR-section__slogan__wrap {
            padding-left: 2.5em;
            padding-right: 2.5em;
            max-width: calc(160em + 2.5em + 2.5em); } }
        @media screen and (max-width: 767px) {
          .FR-section[data-id="hero"] .FR-section__slogan__wrap {
            padding-left: 2.5em;
            padding-right: 2.5em;
            max-width: calc(160em + 2.5em + 2.5em); } }

@media screen {
        .FR-section[data-id="hero"] .FR-section__slogan__text {
          font-size: 3.8em;
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content;
          text-align: center;
          line-height: 1;
          font-family: "Special Elite";
          background-color: #EAEAEA;
          border-radius: 0.3em;
          padding: 0.2em 0.5em 0 0.5em; }
          .FR-section[data-id="hero"] .FR-section__slogan__text > br {
            display: none; } }
          @media screen and (max-width: 1024px) {
            .FR-section[data-id="hero"] .FR-section__slogan__text > br {
              display: block; } }

@media screen {
      .FR-section[data-id="hero"] .FR-section__cta-links {
        position: absolute;
        bottom: 5em;
        left: 0;
        width: 100%;
        pointer-events: none; }
        .FR-section[data-id="hero"] .FR-section__cta-links__wrap {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
          -ms-flex-line-pack: center;
              align-content: center;
          gap: 3em; }
        .FR-section[data-id="hero"] .FR-section__cta-links__item {
          -webkit-transition: opacity 0.2s;
          -o-transition: opacity 0.2s;
          transition: opacity 0.2s;
          pointer-events: auto; }
          .FR-section[data-id="hero"] .FR-section__cta-links__item > * {
            font-size: 2em; } }
        @media screen and (min-width: 1025px) {
          .FR-section[data-id="hero"] .FR-section__cta-links__item:hover {
            opacity: 0.7; } }
  @media screen and (max-width: 1366px) {
    .FR-section[data-id="hero"] .FR-section__slogan__text {
      font-size: 3.3em; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="hero"] .FR-section__slogan__text {
      font-size: 3.1em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="hero"] .FR-section__slogan__text {
      font-size: 2.6em; } }

@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
    ========================================================================== */
  /*  ==========================================================================
    MODULES
    Collection of all modules
    ========================================================================== */
  /*  ==========================================================================
    GALLERY
    ========================================================================== */
  .gallery {
    display: block; }
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="Text"] .FR-module__button {
    margin-top: 2.5em; }
  .FR-module[data-id="Text"][data-center="1"] .FR-module__content {
    text-align: center;
    margin: 0 auto; } }

@media screen and (max-width: 1366px) {
  .FR-module[data-id="Text"] .FR-module__subheadline > * {
    font-size: 4em; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="Text"] .FR-module__subheadline > * {
    font-size: 2.7em; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="Text"] .FR-module__subheadline > * {
    font-size: 2.5em; } }

@media screen and (max-width: 480px) {
  .FR-module[data-id="Text"] .FR-module__subheadline > * {
    font-size: 2em; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item {
    border-bottom: 1px solid; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item:first-child {
      border-top: 1px solid; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item[data-open="1"] .FR-slide-boxes__icon {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item[data-image="1"][data-text="0"] .FR-slide-boxes__images {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-left: -0.5em;
      margin-top: -0.5em;
      width: calc(100% + 1em); }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item[data-image="1"][data-text="0"] .FR-slide-boxes__image {
      margin-bottom: 0;
      padding: 0.5em;
      width: 25%; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__trigger {
    padding: 2.5em 2.5em 2.5em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__trigger {
      padding: 2em 2em 2em 0; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__trigger {
      padding: 1.5em 1.5em 1.5em 0; } }

@media screen {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__trigger__content {
      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;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-right: 1.5em; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__headline {
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__headline > * {
      font-size: 2.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__headline > * {
      font-size: 1.8em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__headline > * {
      font-size: 1.7em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__headline {
      letter-spacing: 0; } }

@media screen {
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__icon {
    display: block;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__icon > * {
      font-size: 2.2em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__icon > * {
      font-size: 1.9em; } }

@media screen {
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__slide {
    height: 0;
    overflow: hidden; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__content {
    padding-top: 1em;
    padding-bottom: 4em; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__content > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__text {
    width: 100%; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images {
    width: 15%; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images + .FR-slide-boxes__text {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      padding-left: 5em;
      width: 85%; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__image {
    overflow: hidden;
    margin-bottom: 1em; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__image > div {
      aspect-ratio: 4 / 5;
      position: relative; }
      .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__image > div a {
        display: block;
        height: 100%;
        left: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        width: 100%; }
        .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__image > div a img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          left: 0;
          position: absolute;
          top: 0; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__image:last-child {
      margin-bottom: 0; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5em; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images {
    width: 25%; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images + .FR-slide-boxes__text {
      width: 75%;
      padding-left: 2.5em; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__content {
    padding-top: 1em;
    padding-bottom: 2em; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item[data-image="1"][data-text="0"] .FR-slide-boxes__images {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__item[data-image="1"][data-text="0"] .FR-slide-boxes__image {
    width: 100%; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images + .FR-slide-boxes__text {
      margin-bottom: 2em;
      padding-left: 0;
      width: 100%; }
    .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__images ~ .FR-slide-boxes__button {
      margin-bottom: 2em; }
  .FR-module[data-id="SlideBoxes"] .FR-slide-boxes__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="TextPic"] {
    /* RESPONSIVE
   * --------------------------------------------------------------------------- */ }
    .FR-module[data-id="TextPic"] .FR-module__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 4em; }
    .FR-module[data-id="TextPic"] .FR-module__image {
      width: 40.5%; }
    .FR-module[data-id="TextPic"] .FR-module__content {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: left;
      margin-right: 8.5%;
      margin-left: auto;
      max-width: 69.5em; }
    .FR-module[data-id="TextPic"][data-mirror="1"] .FR-module__container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .FR-module[data-id="TextPic"][data-mirror="1"] .FR-module__content {
      margin-right: auto;
      margin-left: 8.5%; } }
  @media screen and (max-width: 1366px) {
    .FR-module[data-id="TextPic"] .FR-module__container {
      gap: 4em; }
    .FR-module[data-id="TextPic"] .FR-module__content {
      margin-right: auto; }
    .FR-module[data-id="TextPic"][data-mirror="1"] .FR-module__content {
      margin-left: auto; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="TextPic"] .FR-module__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 3em; }
    .FR-module[data-id="TextPic"] .FR-module__image {
      width: 100%; }
    .FR-module[data-id="TextPic"] .FR-module__content {
      max-width: 100%; }
    .FR-module[data-id="TextPic"][data-mirror="1"] .FR-module__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="TextPic"] .FR-module__container {
      gap: 2em; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="Impressions"] {
    overflow: hidden; }
    .FR-module[data-id="Impressions"] .FR-module__slider {
      margin: 0 -1em; }
    .FR-module[data-id="Impressions"] .FR-module__list {
      overflow: visible; }
    .FR-module[data-id="Impressions"] .FR-module__item__wrap {
      padding: 0 1em; }
    .FR-module[data-id="Impressions"] .FR-module__arrows {
      margin-top: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="Impressions"] .FR-module__arrows {
        margin-top: 2em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="Impressions"] .FR-module__arrows {
        margin-top: 1.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="Impressions"] .FR-module__slider {
      margin: 0 -0.5em; }
    .FR-module[data-id="Impressions"] .FR-module__list {
      max-width: 80%;
      margin-left: 0; }
    .FR-module[data-id="Impressions"] .FR-module__item__wrap {
      padding: 0 0.5em; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="LinkBoxes"] {
    overflow: hidden; }
    .FR-module[data-id="LinkBoxes"] .FR-module__slider {
      margin: 0 -2em; }
    .FR-module[data-id="LinkBoxes"] .FR-module__list {
      overflow: visible; }
      .FR-module[data-id="LinkBoxes"] .FR-module__list__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .FR-module[data-id="LinkBoxes"] .FR-module__item {
      width: 100%;
      max-width: calc(100% / 3);
      padding: 0 2em;
      aspect-ratio: 1 / 1; }
      .FR-module[data-id="LinkBoxes"] .FR-module__item__wrap {
        position: relative;
        display: block;
        height: 100%; } }
      @media screen and (min-width: 1025px) {
        .FR-module[data-id="LinkBoxes"] .FR-module__item__wrap:hover .FR-module__item__image img {
          -webkit-transform: scale(1.05) rotate(0.001deg);
              -ms-transform: scale(1.05) rotate(0.001deg);
                  transform: scale(1.05) rotate(0.001deg); }
        .FR-module[data-id="LinkBoxes"] .FR-module__item__wrap:hover .FR-module__item__content {
          background-color: rgba(0, 0, 0, 0.6); } }

@media screen {
      .FR-module[data-id="LinkBoxes"] .FR-module__item__content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        -webkit-transition: background-color 0.75s ease-out;
        -o-transition: background-color 0.75s ease-out;
        transition: background-color 0.75s ease-out;
        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;
        z-index: 1; }
      .FR-module[data-id="LinkBoxes"] .FR-module__item__title {
        letter-spacing: 1.5px;
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.2;
        text-transform: uppercase; }
        .FR-module[data-id="LinkBoxes"] .FR-module__item__title > * {
          font-size: 2.5em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="LinkBoxes"] .FR-module__item__title > * {
          font-size: 1.8em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="LinkBoxes"] .FR-module__item__title > * {
          font-size: 1.7em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="LinkBoxes"] .FR-module__item__title {
          letter-spacing: 0; } }

@media screen {
      .FR-module[data-id="LinkBoxes"] .FR-module__item__image {
        overflow: hidden;
        height: 100%; }
        .FR-module[data-id="LinkBoxes"] .FR-module__item__image img {
          -webkit-transform: scale(1) rotate(0.001deg);
              -ms-transform: scale(1) rotate(0.001deg);
                  transform: scale(1) rotate(0.001deg);
          -webkit-transition: -webkit-transform 0.75s ease-out;
          transition: -webkit-transform 0.75s ease-out;
          -o-transition: transform 0.75s ease-out;
          transition: transform 0.75s ease-out;
          transition: transform 0.75s ease-out, -webkit-transform 0.75s ease-out;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }
    .FR-module[data-id="LinkBoxes"] .FR-module__arrows {
      margin-top: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="LinkBoxes"] .FR-module__arrows {
        margin-top: 2em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="LinkBoxes"] .FR-module__arrows {
        margin-top: 1.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="LinkBoxes"] .FR-module__slider {
      margin: 0 -0.5em; }
    .FR-module[data-id="LinkBoxes"] .FR-module__list {
      max-width: 80%;
      margin-left: 0; }
    .FR-module[data-id="LinkBoxes"] .FR-module__item {
      max-width: calc(100% / 2);
      padding: 0 0.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="LinkBoxes"] .FR-module__item {
      max-width: 100%; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="HorizontalTextSlider"] .FR-module__slider {
    height: 100%;
    overflow: hidden;
    padding: 2em 0; }
  .FR-module[data-id="HorizontalTextSlider"] .FR-module__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .FR-module[data-id="HorizontalTextSlider"] .FR-module__item {
    font-family: "Special Elite";
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    text-align: center; }
    .FR-module[data-id="HorizontalTextSlider"] .FR-module__item > * {
      font-size: clamp(1rem, 7.8vw, 22.9em); }
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="BlogDetail"] {
    padding-top: 11em !important; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogDetail"] {
      padding-top: 8em !important; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="BlogDetail"] {
      padding-top: 7.5em !important; } }

@media screen {
    .FR-module[data-id="BlogDetail"] .FR-module__back {
      margin-bottom: 6em;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogDetail"] .FR-module__back {
        margin-bottom: 5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogDetail"] .FR-module__back {
        margin-bottom: 4em; } }

@media screen {
    .FR-module[data-id="BlogDetail"] .FR-module__categories {
      font-weight: 700;
      margin-bottom: 1em; }
      .FR-module[data-id="BlogDetail"] .FR-module__categories > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogDetail"] .FR-module__categories > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogDetail"] .FR-module__categories > * {
        font-size: 1.4em; } }

@media screen {
    .FR-module[data-id="BlogDetail"] .FR-module__date {
      margin-bottom: 1em; }
      .FR-module[data-id="BlogDetail"] .FR-module__date > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogDetail"] .FR-module__date > * {
        font-size: 1.8em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogDetail"] .FR-module__date > * {
        font-size: 1.7em; } }

@media screen {
    .FR-module[data-id="BlogDetail"] .FR-module__headlines {
      margin-bottom: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogDetail"] .FR-module__headlines {
        margin-bottom: 1.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogDetail"] .FR-module__headlines {
        margin-bottom: 1em; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="BlogList"] .FR-module__tabs {
    color: #6b6b6b;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3em; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__wrap {
      position: relative; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__select__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 2em;
      padding: 1em 2em;
      cursor: pointer;
      border: 1px solid;
      min-width: 20em;
      -webkit-transition: border-bottom-width 0.1s;
      -o-transition: border-bottom-width 0.1s;
      transition: border-bottom-width 0.1s; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__list {
      border: 0.1rem solid;
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      z-index: 40;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 55vh;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-top: 1em;
      background-color: #FFFFFF;
      display: none; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      border-bottom: 1px solid;
      cursor: pointer;
      background-color: #FFFFFF;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      position: relative;
      width: 100%;
      padding: 1em 2em; }
      .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__item:last-child {
        border-bottom: none; }
      .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__item span {
        -webkit-transition: opacity 0.25s ease-in-out;
        -o-transition: opacity 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out; }
      .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__item:hover span {
        opacity: 0.75; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__state {
      pointer-events: none;
      z-index: 10;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__state .icon {
        font-size: 1.5em;
        display: inline-block;
        -webkit-transition: -webkit-transform 0.25s ease-in-out;
        transition: -webkit-transform 0.25s ease-in-out;
        -o-transition: transform 0.25s ease-in-out;
        transition: transform 0.25s ease-in-out;
        transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out; }
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__label {
      display: block;
      line-height: 1;
      font-size: 1.6em;
      text-transform: uppercase;
      -webkit-transition: opacity 0.25s ease-in-out;
      -o-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out; }
    .FR-module[data-id="BlogList"] .FR-module__tabs[data-open="1"] .FR-filter__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .FR-module[data-id="BlogList"] .FR-module__tabs[data-open="1"] .FR-filter__state .icon {
      -webkit-transform: scaleY(-1);
          -ms-transform: scaleY(-1);
              transform: scaleY(-1); } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogList"] .FR-module__tabs .FR-filter__wrap {
      max-width: 30em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogList"] .FR-module__tabs {
      margin-bottom: 2.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="BlogList"] .FR-module__tabs {
      margin-bottom: 2em; } }

@media screen {
  .FR-module[data-id="BlogList"] .FR-module__articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8em 2em; }
  .FR-module[data-id="BlogList"] .FR-module__article {
    width: calc((100% / 3) - (2em * calc(3 - 1) / 3)); }
    .FR-module[data-id="BlogList"] .FR-module__article__wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%;
      gap: 2em; }
      .FR-module[data-id="BlogList"] .FR-module__article__wrap:hover .FR-module__article__image img {
        -webkit-transform: scale(1.05) rotate(0.001deg);
            -ms-transform: scale(1.05) rotate(0.001deg);
                transform: scale(1.05) rotate(0.001deg); }
    .FR-module[data-id="BlogList"] .FR-module__article__image {
      aspect-ratio: 16 / 9;
      border: 1px solid; }
      .FR-module[data-id="BlogList"] .FR-module__article__image__wrap {
        overflow: hidden; }
      .FR-module[data-id="BlogList"] .FR-module__article__image img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        width: 100%;
        -webkit-transform: scale(1) rotate(0.001deg);
            -ms-transform: scale(1) rotate(0.001deg);
                transform: scale(1) rotate(0.001deg);
        -webkit-transition: -webkit-transform 0.75s ease-out;
        transition: -webkit-transform 0.75s ease-out;
        -o-transition: transform 0.75s ease-out;
        transition: transform 0.75s ease-out;
        transition: transform 0.75s ease-out, -webkit-transform 0.75s ease-out; }
    .FR-module[data-id="BlogList"] .FR-module__article__content {
      height: 100%;
      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-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .FR-module[data-id="BlogList"] .FR-module__article__categories {
      font-weight: 700; }
      .FR-module[data-id="BlogList"] .FR-module__article__categories > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogList"] .FR-module__article__categories > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogList"] .FR-module__article__categories > * {
        font-size: 1.4em; } }

@media screen {
    .FR-module[data-id="BlogList"] .FR-module__article__date {
      margin-bottom: 1em; }
      .FR-module[data-id="BlogList"] .FR-module__article__date > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogList"] .FR-module__article__date > * {
        font-size: 1.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogList"] .FR-module__article__date > * {
        font-size: 1.4em; } }

@media screen {
    .FR-module[data-id="BlogList"] .FR-module__article__title {
      font-family: "Special Elite"; }
      .FR-module[data-id="BlogList"] .FR-module__article__title > * {
        font-size: 3em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogList"] .FR-module__article__title > * {
        font-size: 2.5em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogList"] .FR-module__article__title > * {
        font-size: 2em; } }

@media screen {
    .FR-module[data-id="BlogList"] .FR-module__article__description > * {
      font-size: 2em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogList"] .FR-module__article__description > * {
      font-size: 1.8em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="BlogList"] .FR-module__article__description > * {
      font-size: 1.6em; } }

@media screen {
    .FR-module[data-id="BlogList"] .FR-module__article__button {
      margin-top: 2em; }
  .FR-module[data-id="BlogList"] .FR-module__pagination {
    margin-top: 5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogList"] .FR-module__pagination {
      margin-top: 4em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="BlogList"] .FR-module__pagination {
      margin-top: 3em; } }

@media screen {
    .FR-module[data-id="BlogList"] .FR-module__pagination__item {
      padding: 0.5em 0;
      width: 3.5em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background-color: rgba(107, 107, 107, 0.5);
      color: #FFFFFF;
      line-height: 1;
      cursor: pointer;
      -webkit-transition: background-color 0.25s, color 0.25s;
      -o-transition: background-color 0.25s, color 0.25s;
      transition: background-color 0.25s, color 0.25s; }
      .FR-module[data-id="BlogList"] .FR-module__pagination__item > * {
        font-size: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogList"] .FR-module__pagination__item > * {
        font-size: 2.3em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogList"] .FR-module__pagination__item > * {
        font-size: 2em; } }

@media screen {
      .FR-module[data-id="BlogList"] .FR-module__pagination__item[data-active="1"] {
        background-color: #6b6b6b;
        pointer-events: none;
        cursor: not-allowed; }
      .FR-module[data-id="BlogList"] .FR-module__pagination__item:hover {
        background-color: #60707f; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="BlogList"] .FR-module__articles {
    gap: 6em 2em; }
  .FR-module[data-id="BlogList"] .FR-module__article {
    width: calc((100% / 2) - (2em * calc(2 - 1) / 2)); } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="BlogList"] .FR-module__articles {
    gap: 4em 2em; }
  .FR-module[data-id="BlogList"] .FR-module__article {
    width: 100%; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="BlogTeaser"] {
    overflow: hidden; }
    .FR-module[data-id="BlogTeaser"] .FR-module__headlines {
      margin-bottom: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogTeaser"] .FR-module__headlines {
        margin-bottom: 2em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogTeaser"] .FR-module__headlines {
        margin-bottom: 1.5em; } }

@media screen {
    .FR-module[data-id="BlogTeaser"] .FR-module__slider {
      margin: 0 -1em; }
    .FR-module[data-id="BlogTeaser"] .FR-module__list__wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .FR-module[data-id="BlogTeaser"] .FR-module__article {
      max-width: calc(100% / 3);
      padding: 0 1em;
      height: auto; }
      .FR-module[data-id="BlogTeaser"] .FR-module__article__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 100%;
        gap: 2em; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__wrap:hover .FR-module__article__image img {
          -webkit-transform: scale(1.05) rotate(0.001deg);
              -ms-transform: scale(1.05) rotate(0.001deg);
                  transform: scale(1.05) rotate(0.001deg); }
      .FR-module[data-id="BlogTeaser"] .FR-module__article__image {
        aspect-ratio: 16 / 9;
        border: 1px solid; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__image__wrap {
          overflow: hidden; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__image img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%;
          -webkit-transform: scale(1) rotate(0.001deg);
              -ms-transform: scale(1) rotate(0.001deg);
                  transform: scale(1) rotate(0.001deg);
          -webkit-transition: -webkit-transform 0.75s ease-out;
          transition: -webkit-transform 0.75s ease-out;
          -o-transition: transform 0.75s ease-out;
          transition: transform 0.75s ease-out;
          transition: transform 0.75s ease-out, -webkit-transform 0.75s ease-out; }
      .FR-module[data-id="BlogTeaser"] .FR-module__article__content {
        height: 100%;
        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-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }
      .FR-module[data-id="BlogTeaser"] .FR-module__article__categories {
        font-weight: 700; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__categories > * {
          font-size: 1.6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__categories > * {
          font-size: 1.5em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__categories > * {
          font-size: 1.4em; } }

@media screen {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__date {
        margin-bottom: 1em; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__date > * {
          font-size: 1.6em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__date > * {
          font-size: 1.5em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__date > * {
          font-size: 1.4em; } }

@media screen {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__title {
        font-family: "Special Elite"; }
        .FR-module[data-id="BlogTeaser"] .FR-module__article__title > * {
          font-size: 3em; } }
      @media screen and (max-width: 1024px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__title > * {
          font-size: 2.5em; } }
      @media screen and (max-width: 767px) {
        .FR-module[data-id="BlogTeaser"] .FR-module__article__title > * {
          font-size: 2em; } }

@media screen {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__description > * {
        font-size: 2em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__description > * {
        font-size: 1.8em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__description > * {
        font-size: 1.6em; } }

@media screen {
      .FR-module[data-id="BlogTeaser"] .FR-module__article__button {
        margin-top: 2em; }
    .FR-module[data-id="BlogTeaser"] .FR-module__arrows {
      margin-top: 3em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="BlogTeaser"] .FR-module__article {
      max-width: 50%; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="BlogTeaser"] .FR-module__list {
      max-width: 85%;
      overflow: visible;
      margin-left: 0; }
    .FR-module[data-id="BlogTeaser"] .FR-module__article {
      max-width: 100%; } }

@media screen {
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="Collage"] .FR-module__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -0.5em; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="4"] .FR-module__image:nth-child(4n - 3), .FR-module[data-id="Collage"] .FR-module__container[data-length="4"] .FR-module__image:nth-child(4n) {
      width: 65%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="4"] .FR-module__image:nth-child(4n - 2), .FR-module[data-id="Collage"] .FR-module__container[data-length="4"] .FR-module__image:nth-child(4n - 1) {
      width: 35%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="3"] .FR-module__image:nth-child(3n) {
      width: 100%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="3"] .FR-module__image:nth-child(3n - 1) {
      width: 35%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="3"] .FR-module__image:nth-child(3n - 2) {
      width: 65%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="2"] .FR-module__image:nth-child(2n) {
      width: 35%; }
    .FR-module[data-id="Collage"] .FR-module__container[data-length="2"] .FR-module__image:nth-child(2n - 1) {
      width: 65%; }
  .FR-module[data-id="Collage"] .FR-module__image {
    width: 100%;
    padding: 0.5em; }
    .FR-module[data-id="Collage"] .FR-module__image__wrap {
      height: 100%;
      position: relative; }
      .FR-module[data-id="Collage"] .FR-module__image__wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
  /*  ==========================================================================
    MODULE
    ========================================================================== */
  .FR-module[data-id="WhatsappButton"] .FR-module__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .FR-module[data-id="WhatsappButton"] .FR-module__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #3EA021;
    color: #FFFFFF;
    padding: 1.5em 2em;
    border-radius: 2em;
    max-width: 42em; }
    .FR-module[data-id="WhatsappButton"] .FR-module__button__icon > * {
      font-size: 3em; }
    .FR-module[data-id="WhatsappButton"] .FR-module__button__label > * {
      font-size: 1.8em; }
  /*  ==========================================================================
    FOOTER
    Styling for the lowest part of the website
    ========================================================================== */
  .FR-section[data-id="footer"] {
    padding-top: 8em;
    padding-bottom: 8em;
    background-color: #EAEAEA;
    position: relative;
    z-index: 30;
    text-align: center; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="footer"] {
      padding-top: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="footer"] {
      padding-top: 6em; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="footer"] {
      padding-bottom: 7em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="footer"] {
      padding-bottom: 6em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__image {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: -1;
      width: 30%;
      width: 50%;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .FR-section[data-id="footer"] .FR-section__logo {
      width: 38em;
      display: block;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__logo {
        width: 32em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__logo {
        width: 27em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__address {
      margin-top: 5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__address {
        margin-top: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__address {
        margin-top: 3.5em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__socials {
      margin-top: 5em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__socials {
        margin-top: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__socials {
        margin-top: 3.5em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__socials__item {
        -webkit-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s; }
        .FR-section[data-id="footer"] .FR-section__socials__item > * {
          font-size: 2.4em; } }
      @media screen and (min-width: 1025px) {
        .FR-section[data-id="footer"] .FR-section__socials__item:hover {
          opacity: 0.7; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__links {
      margin-top: 5em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__links {
        margin-top: 4em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__links {
        margin-top: 3.5em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__links__item {
        -webkit-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s; }
        .FR-section[data-id="footer"] .FR-section__links__item > * {
          font-size: 2em; } }
      @media screen and (min-width: 1025px) {
        .FR-section[data-id="footer"] .FR-section__links__item:hover {
          opacity: 0.7; } }

@media screen {
    .FR-section[data-id="footer"][data-image="1"] {
      padding-bottom: 51em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"][data-image="1"] {
        padding-bottom: 30em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"][data-image="1"] {
        padding-bottom: 22em; } }
  @media screen and (max-width: 480px) {
    .FR-section[data-id="footer"] .FR-section__image {
      position: static;
      width: 100%; }
    .FR-section[data-id="footer"][data-image="1"] {
      padding-bottom: 0; } }

@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*/