@charset "UTF-8";
/*  ==========================================================================
    All stylings of this project

    INFO:
    - don't define scss rules here, just @import the appropriate files
    - generated file will be found here: "/Resources/Public/Css/Frontend/index.css"
    ========================================================================== */
/*
 * pre-includes for processing purpose
 */
/*  ==========================================================================
    VARIABLES
    Collection of all variables

    INFO:
    - try to use variables as much as possible, it makes life easier
    - try to use meaningful prefixes, e.g. "$clr-" for color variables
      or "$fs-" for font-sizes
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    ========================================================================== */
/*  ==========================================================================
    MEDIA QUERIES
    Collection of media queries.
    ========================================================================== */
/*  ==========================================================================
    DIMENSIONS
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    FUNCIONS
    Collection of all functions
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global functions
    ========================================================================== */
/*  ==========================================================================
    MIXINS
    Collection of all mixins (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global helpers

    INFO:
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*
 * RESPONSIVE PROPERTIES
 * creates a css-property for each media query (desktop, tablet & mobile)
 */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*  ==========================================================================
    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
    ========================================================================== */
/*
 * OVERLINE
 */
/*
 * HEADLINES
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    BUTTONS
    ========================================================================== */
/*  ==========================================================================
    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
    ========================================================================== */
/*
 * vendor files ("normalize" always first)
 */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45); }
  .lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: color 0.2s linear;
    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;
  -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;
  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;
  -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;
  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;
  transition: -webkit-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;
    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;
      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;
  transition: bottom 0.25s ease; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  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;
  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;
  transition: -webkit-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;
  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;
  -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;
  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;
  transition: opacity 0.15s ease 0s, -webkit-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;
  -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;
  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;
  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;
  -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;
  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;
  transition: -webkit-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;
  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;
    transition-duration: inherit !important;
    -webkit-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;
    transition-duration: 0s !important;
    opacity: 1; }
  .lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%; }
  .lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap; }
  .lg-outer .lg-item {
    background: url("/typo3conf/ext/site_package/Resources/Public/Images/lightgallery/loading.gif") no-repeat scroll center center transparent;
    display: none !important; }
  .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important; }
  .lg-outer.lg-css .lg-current {
    display: inline-block !important; }
  .lg-outer .lg-item, .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
    .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }
  .lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .lg-outer .lg-item.lg-complete {
    background-image: none; }
  .lg-outer .lg-item.lg-current {
    z-index: 1060; }
  .lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important; }
  .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    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;
  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;
  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;
    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;
    -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;
    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;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

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

h1,
h2,
h3 {
  font-size: inherit; }

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

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

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

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

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

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

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

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

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

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

main {
  display: block; }

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

/*
 * 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);
  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;
  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), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

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

@media screen {
  /*  ==========================================================================
    GENERAL
    Styling for general parts which affect the whole page, like:
    - Text Selection
    - Typography
    - Loaders
    - ...

    INFO:
    - adjust the preconfigured code relevant for your project (eg. colors,
        font-family ...)
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
  /*
 * ALIASES
 */
  /*
 * SELECTION
 */
  ::-moz-selection {
    background: #000000;
    color: #FFFFFF; }
  ::selection {
    background: #000000;
    color: #FFFFFF; }
  /*
 * SCROLLBAR
 */
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px; }
    ::-webkit-scrollbar-track {
      background-color: #FFFFFF; }
    ::-webkit-scrollbar-thumb {
      background-color: #000000; }
    ::-webkit-scrollbar-button {
      display: none; }
  /*
 * TYPOGRAPHY
 */
  body {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    background: #f4f5f8;
    font-size: 62.5%; }
    body.JS-no-scroll {
      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: 62.5%; } }
  @media screen and (max-width: 350px) {
    body {
      font-size: 56.3%; } }
  @media screen and (max-width: 320px) {
    body {
      font-size: 50%; } }

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

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

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

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

@media screen {
  /*
 * WRAP
 */
  *[data-wrap-width="x-large"] {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.5em;
    padding-right: 7.5em;
    max-width: calc(192em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="x-large"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(192em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="x-large"] {
      padding-left: 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: 7.5em;
    padding-right: 7.5em;
    max-width: calc(160em + 7.5em + 7.5em); } }
  @media screen and (max-width: 1024px) {
    *[data-wrap-width="large"] {
      padding-left: 5em;
      padding-right: 5em;
      max-width: calc(160em + 5em + 5em); } }
  @media screen and (max-width: 767px) {
    *[data-wrap-width="large"] {
      padding-left: 2.5em;
      padding-right: 2.5em;
      max-width: calc(160em + 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(160em + 0em + 0em); } }
    @media screen and (max-width: 1024px) {
      *[data-wrap-width="large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(160em + 0em + 0em); } }
    @media screen and (max-width: 767px) {
      *[data-wrap-width="large"][data-wrap-padding="none"] {
        padding-left: 0em;
        padding-right: 0em;
        max-width: calc(160em + 0em + 0em); } }

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

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

@media screen {
  /*
  * HEADLINES
  */
  .FR-headlines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 2em; }
    .FR-headlines > *:nth-child(1) > *:nth-child(1) {
      font-family: "Roboto Condensed", sans-serif;
      text-transform: uppercase;
      line-height: 1.1; }
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 3.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 3em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(1) > * {
        font-size: 2.4em; } }

@media screen {
    .FR-headlines > *:nth-child(1) > *:nth-child(2) {
      font-family: "Roboto Condensed", sans-serif;
      line-height: 1.1;
      padding-top: 0.5em; }
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 2em; } }
    @media screen and (max-width: 767px) {
      .FR-headlines > *:nth-child(1) > *:nth-child(2) > * {
        font-size: 1.8em; } }

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

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

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

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

@media screen {
  .FR-rte > * {
    line-height: 1.8;
    margin-top: 1em;
    margin-bottom: 1em; }
    .FR-rte > *:first-child {
      margin-top: 0 !important; }
    .FR-rte > *:last-child {
      margin-bottom: 0 !important; }
    .FR-rte > *.FR-table {
      margin-top: 2.5em;
      margin-bottom: 2.5em; }
  .FR-rte a {
    color: inherit;
    text-decoration: underline; }
    .FR-rte a:hover {
      opacity: 0.7; }
    .FR-rte a:visited {
      color: inherit; }
  .FR-rte ol,
  .FR-rte ul {
    padding-left: 1.5em; }
    .FR-rte ol li,
    .FR-rte ul li {
      display: list-item; }
  /*
 * BUTTON
 */
  .FR-button {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    text-underline-offset: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
    .FR-button > * {
      font-size: 1.6em; } }
  @media screen and (max-width: 1024px) {
    .FR-button > * {
      font-size: 1.6em; } }
  @media screen and (max-width: 767px) {
    .FR-button > * {
      font-size: 1.4em; } }

@media screen {
    .FR-button:hover {
      color: #267F00;
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px); }
  /*
 * LIGHT GALLERY
 */
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #267F00 !important; }
  /*
 * COOKIE BANNER
 */
  .cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    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: 99999; }
  /* weiße Box */
  .cookie-content {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    padding: 25px 30px;
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: center;
    -webkit-animation: fadeIn .3s ease-out;
            animation: fadeIn .3s ease-out; }
  .cookie-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600; }
  .cookie-content p {
    font-size: 15px;
    line-height: 1.45;
    color: #333;
    margin-bottom: 22px; }
  /* Buttons */
  .cookie-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px; }
  .btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s; }
  .accept-btn {
    background: #4CAF50;
    color: white; }
  .accept-btn:hover {
    background: #43a047; }
  .decline-btn {
    background: #e0e0e0;
    color: #333; }
  .decline-btn:hover {
    background: #d5d5d5; }
  /* kleiner Fade-In */
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
      -webkit-transform: translateY(10px);
              transform: translateY(10px); }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0); } }
  @keyframes fadeIn {
    from {
      opacity: 0;
      -webkit-transform: translateY(10px);
              transform: translateY(10px); }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0); } }
  /*  ==========================================================================
    HEADER
    Styling for the highest part of the website (mostly also the fixed part
    on top)
    ========================================================================== */
  .FR-section[data-id="header"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    background: #FFFFFF;
    height: 7em;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12); }
    .FR-section[data-id="header"] .FR-section__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; }
    .FR-section[data-id="header"] .FR-section__logo img {
      width: 12em;
      height: auto; }
    .FR-section[data-id="header"] .FR-section__main-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 5em; }
    .FR-section[data-id="header"] .FR-section__menu__lvl--0 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 4em;
      list-style-type: none; }
      .FR-section[data-id="header"] .FR-section__menu__lvl--0 > li > a {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none; }
        .FR-section[data-id="header"] .FR-section__menu__lvl--0 > li > a > * {
          font-size: 1.6em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="header"] .FR-section__menu__lvl--0 > li > a > * {
          font-size: 2.6em; } }

@media screen {
    .FR-section[data-id="header"] .FR-section__menu-logo {
      display: none; }
    .FR-section[data-id="header"] .FR-section__trigger {
      position: relative;
      display: none;
      gap: 1em;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .FR-section[data-id="header"] .FR-section__trigger > span {
        height: 2px;
        width: 40px;
        background: #000000; }
      .FR-section[data-id="header"] .FR-section__trigger[data-open="1"] > span:nth-child(1) {
        position: absolute;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .FR-section[data-id="header"] .FR-section__trigger[data-open="1"] > span:nth-child(2) {
        position: absolute;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
    .FR-section[data-id="header"] .FR-section__langmenu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .FR-section[data-id="header"] .FR-section__langmenu__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        list-style-type: none; }
        .FR-section[data-id="header"] .FR-section__langmenu__item > * {
          font-size: 1.6em; }
        .FR-section[data-id="header"] .FR-section__langmenu__item::after {
          content: '|';
          font-size: 1.6em;
          padding: 0 0.1875em;
          line-height: 1.2;
          font-weight: 400 !important; }
        .FR-section[data-id="header"] .FR-section__langmenu__item:last-of-type::after {
          display: none; }
        .FR-section[data-id="header"] .FR-section__langmenu__item > a {
          text-decoration: none; }
        .FR-section[data-id="header"] .FR-section__langmenu__item--act {
          font-weight: 700; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="header"] .FR-section__main-menu {
      display: none;
      position: fixed;
      top: 7em;
      bottom: 0;
      left: 0;
      right: 0;
      background: #FFFFFF;
      border-top: 1px solid rgba(0, 0, 0, 0.12);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 0; }
      .FR-section[data-id="header"] .FR-section__main-menu[data-open="1"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .FR-section[data-id="header"] .FR-section__menu {
      height: calc(100% - 6em);
      overflow: auto;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      width: 100%; }
      .FR-section[data-id="header"] .FR-section__menu__lvl--0 {
        -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;
        padding: 6em 0; }
        .FR-section[data-id="header"] .FR-section__menu__lvl--0 > li {
          position: relative;
          width: 100%;
          text-align: center; }
          .FR-section[data-id="header"] .FR-section__menu__lvl--0 > li:after {
            content: '';
            display: block;
            height: 1px;
            background: #e5e5e5;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
            left: 0;
            width: 100%;
            right: 0;
            z-index: -1; }
    .FR-section[data-id="header"] .FR-section__menu-logo {
      display: block;
      position: absolute;
      right: -72px;
      opacity: 0.04;
      -webkit-transform: scale(1.4);
          -ms-transform: scale(1.4);
              transform: scale(1.4);
      bottom: 0;
      pointer-events: none; }
      .FR-section[data-id="header"] .FR-section__menu-logo img {
        width: 100%;
        height: auto; }
    .FR-section[data-id="header"] .FR-section__trigger {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 4em;
      height: 4em;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .FR-section[data-id="header"] .FR-section__langmenu {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 2em 0; } }

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

@media screen {
      .FR-section[data-id="hero"] .FR-section__slogan__box {
        position: absolute;
        bottom: 10em;
        left: 16em;
        z-index: 1;
        color: #FFFFFF;
        max-width: 70em; }
      .FR-section[data-id="hero"] .FR-section__slogan__title {
        font-weight: 700;
        font-family: "Roboto Condensed", sans-serif;
        line-height: 1; }
        .FR-section[data-id="hero"] .FR-section__slogan__title > * {
          font-size: 4em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="hero"] .FR-section__slogan__title > * {
          font-size: 4em; } }
      @media screen and (max-width: 767px) {
        .FR-section[data-id="hero"] .FR-section__slogan__title > * {
          font-size: 3em; } }

@media screen {
      .FR-section[data-id="hero"] .FR-section__slogan__text {
        margin-top: 1em; }
      .FR-section[data-id="hero"] .FR-section__slogan__button {
        margin-top: 1em; }
      .FR-section[data-id="hero"] .FR-section__slogan__shadow {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35%;
        background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0)); }
      .FR-section[data-id="hero"] .FR-section__bioland {
        position: absolute;
        z-index: 1;
        top: 10em;
        right: 3em;
        max-width: 10em; }
        .FR-section[data-id="hero"] .FR-section__bioland img {
          width: 100%;
          height: auto; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="hero"] .FR-section__slogan__box {
      bottom: 6em;
      left: 7em; }
    .FR-section[data-id="hero"] .FR-section__bioland {
      max-width: 8em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="hero"] .FR-section__slogan__box {
      bottom: 4em;
      left: 2em; }
    .FR-section[data-id="hero"] .FR-section__bioland {
      top: 9em;
      right: 2em;
      max-width: 7em; } }

@media screen {
  /*  ==========================================================================
    MAIN
    Styling for parts (which are not defined as modules), for eg. breadcrumb

    INFO:
    - don't style modules here, use the corresponding modules scss folder
    ========================================================================== */
  .FR-section[data-id="main"] .FR-section__breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2em;
    text-align: center;
    margin-bottom: 8em; }
    .FR-section[data-id="main"] .FR-section__breadcrumb__wrap > * {
      font-size: 1.6em; }
  .FR-section[data-id="main"][data-hero-layout="none"] {
    padding-top: 10em; } }

@media screen and (max-width: 1024px) {
  .FR-section[data-id="main"] .FR-section__breadcrumb {
    margin-bottom: 6em; } }

@media screen and (max-width: 767px) {
  .FR-section[data-id="main"] .FR-section__breadcrumb {
    margin-bottom: 4em; } }

@media screen {
  /*  ==========================================================================
    MODULES
    Collection of all modules
    ========================================================================== */
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="gallery"] {
    text-align: center; }
    .FR-module[data-id="gallery"] .FR-module__content {
      margin-bottom: 8em; }
    .FR-module[data-id="gallery"] .FR-module__images__wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 2em;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .FR-module[data-id="gallery"] .FR-module__image {
      width: calc((100% / 3) - (2em * calc(3 - 1) / 3));
      border-radius: 7px;
      overflow: hidden;
      aspect-ratio: 1/1; }
      .FR-module[data-id="gallery"] .FR-module__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .FR-module[data-id="gallery"] .FR-module__button {
      margin-top: 2em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="gallery"] .FR-module__image {
      width: calc((100% / 2) - (2em * calc(2 - 1) / 2)); } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="gallery"] .FR-module__image {
      width: calc((100% / 1) - (2em * calc(1 - 1) / 1)); } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="text"] {
    text-align: center; }
    .FR-module[data-id="text"] .FR-module__button {
      margin-top: 2em; }
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="location"] {
    text-align: center; }
    .FR-module[data-id="location"] .FR-module__map iframe {
      width: 100%;
      border-radius: 7px; }
    .FR-module[data-id="location"] .FR-module__button {
      margin-top: 2em; }
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="packages"] {
    text-align: center; }
    .FR-module[data-id="packages"] .FR-module__headlines {
      margin-bottom: 4em; }
    .FR-module[data-id="packages"] .FR-module__packages {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 4em; }
    .FR-module[data-id="packages"] .FR-module__package {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2em;
      width: calc((100% / 4) - (4em * calc(4 - 1) / 4));
      background: #FFFFFF;
      padding: 4em 2em;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 7px;
      -webkit-transition: -webkit-transform 0.5s;
      transition: -webkit-transform 0.5s;
      transition: transform 0.5s;
      transition: transform 0.5s, -webkit-transform 0.5s; }
      .FR-module[data-id="packages"] .FR-module__package:hover {
        -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
                transform: translateY(-5px); }
    .FR-module[data-id="packages"] .FR-module__name__label, .FR-module[data-id="packages"] .FR-module__size__label, .FR-module[data-id="packages"] .FR-module__price__label, .FR-module[data-id="packages"] .FR-module__type__label {
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      padding-bottom: 0.5em; }
      .FR-module[data-id="packages"] .FR-module__name__label > *, .FR-module[data-id="packages"] .FR-module__size__label > *, .FR-module[data-id="packages"] .FR-module__price__label > *, .FR-module[data-id="packages"] .FR-module__type__label > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="packages"] .FR-module__name__label > *, .FR-module[data-id="packages"] .FR-module__size__label > *, .FR-module[data-id="packages"] .FR-module__price__label > *, .FR-module[data-id="packages"] .FR-module__type__label > * {
        font-size: 1.4em; } }

@media screen {
    .FR-module[data-id="packages"] .FR-module__name__data > *, .FR-module[data-id="packages"] .FR-module__size__data > *, .FR-module[data-id="packages"] .FR-module__price__data > *, .FR-module[data-id="packages"] .FR-module__type__data > * {
      font-size: 2em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="packages"] .FR-module__name__data > *, .FR-module[data-id="packages"] .FR-module__size__data > *, .FR-module[data-id="packages"] .FR-module__price__data > *, .FR-module[data-id="packages"] .FR-module__type__data > * {
      font-size: 1.8em; } }

@media screen {
    .FR-module[data-id="packages"] .FR-module__name__data {
      color: #267F00;
      font-weight: 700;
      text-transform: uppercase; }
      .FR-module[data-id="packages"] .FR-module__name__data > * {
        font-size: 2.4em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="packages"] .FR-module__name__data > * {
        font-size: 2.2em; } }

@media screen {
    .FR-module[data-id="packages"] .FR-module__spacer {
      width: 100%;
      height: 1px;
      background: #f4f5f8; }
    .FR-module[data-id="packages"] .FR-module__button {
      margin-top: 4em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="packages"] .FR-module__headlines {
      margin-bottom: 0; }
    .FR-module[data-id="packages"] .FR-module__packages {
      gap: 2em; }
    .FR-module[data-id="packages"] .FR-module__package {
      width: calc((100% / 3) - (2em * calc(3 - 1) / 3)); }
    .FR-module[data-id="packages"] .FR-module__button {
      margin-top: 2em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="packages"] .FR-module__package {
      width: 100%; } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="image-slider"] {
    text-align: center; }
    .FR-module[data-id="image-slider"] .FR-module__images {
      position: relative;
      overflow: hidden; }
      .FR-module[data-id="image-slider"] .FR-module__images__wrap {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex; }
        .FR-module[data-id="image-slider"] .FR-module__images__wrap:not(.swiper-wrapper) {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          gap: 2em; }
    .FR-module[data-id="image-slider"] .FR-module__image {
      border-radius: 7px;
      overflow: hidden; }
      .FR-module[data-id="image-slider"] .FR-module__image:not(.swiper-slide) {
        width: calc((100% / 3) - (2em * calc(3 - 1) / 3)); }
      .FR-module[data-id="image-slider"] .FR-module__image img {
        width: 100%;
        height: auto; }
    .FR-module[data-id="image-slider"] .FR-module__button {
      margin-top: 2em; }
    .FR-module[data-id="image-slider"] .FR-module__arrows__arrow {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #FFFFFF;
      width: 4em;
      height: 4em;
      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;
      border-radius: 0.6em;
      cursor: pointer;
      border: 1px solid #e5e5e5; } }
    @media screen and (min-width: 1025px) {
      .FR-module[data-id="image-slider"] .FR-module__arrows__arrow:hover .FR-module__arrows__icon {
        display: block;
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2); } }

@media screen {
      .FR-module[data-id="image-slider"] .FR-module__arrows__arrow[data-direction="prev"] {
        left: 2em; }
      .FR-module[data-id="image-slider"] .FR-module__arrows__arrow[data-direction="next"] {
        right: 2em; }
    .FR-module[data-id="image-slider"] .FR-module__arrows__icon {
      -webkit-transition: -webkit-transform 0.5s;
      transition: -webkit-transform 0.5s;
      transition: transform 0.5s;
      transition: transform 0.5s, -webkit-transform 0.5s; }
      .FR-module[data-id="image-slider"] .FR-module__arrows__icon > * {
        font-size: 1.6em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="image-slider"] .FR-module__image:not(.swiper-slide) {
      width: calc((100% / 2) - (2em * calc(2 - 1) / 2)); } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="image-slider"] .FR-module__image:not(.swiper-slide) {
      width: 100%; }
    .FR-module[data-id="image-slider"] .FR-module__arrows__arrow {
      width: 3.5em;
      height: 3.5em; }
      .FR-module[data-id="image-slider"] .FR-module__arrows__arrow[data-direction="prev"] {
        left: 1em; }
      .FR-module[data-id="image-slider"] .FR-module__arrows__arrow[data-direction="next"] {
        right: 1em; } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="text-pic"] .FR-module__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6em; }
  .FR-module[data-id="text-pic"] .FR-module__content {
    width: 65%; }
  .FR-module[data-id="text-pic"] .FR-module__image {
    width: 35%; }
    .FR-module[data-id="text-pic"] .FR-module__image img {
      border-radius: 7px;
      width: 100%;
      height: auto; }
  .FR-module[data-id="text-pic"] .FR-module__button {
    margin-top: 2em; }
  .FR-module[data-id="text-pic"][data-mirror="1"] .FR-module__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

@media screen and (max-width: 1024px) {
  .FR-module[data-id="text-pic"] .FR-module__image {
    width: 50%;
    min-width: 30em; }
  .FR-module[data-id="text-pic"] .FR-module__content {
    width: 50%; } }

@media screen and (max-width: 767px) {
  .FR-module[data-id="text-pic"] .FR-module__container {
    gap: 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .FR-module[data-id="text-pic"] .FR-module__image {
    width: 100%;
    min-width: auto; }
  .FR-module[data-id="text-pic"] .FR-module__content {
    width: 100%; }
  .FR-module[data-id="text-pic"][data-mirror="1"] .FR-module__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }

@media screen {
  /*  ==========================================================================
    TEXT
    ========================================================================== */
  .FR-module[data-id="open-hours"] {
    text-align: center; }
    .FR-module[data-id="open-hours"] .FR-module__open-hours {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 3em; }
    .FR-module[data-id="open-hours"] .FR-module__open-hour__label {
      font-weight: 700;
      font-family: "Roboto Condensed", sans-serif;
      text-transform: uppercase; }
      .FR-module[data-id="open-hours"] .FR-module__open-hour__label > * {
        font-size: 2.5em; } }
    @media screen and (max-width: 1024px) {
      .FR-module[data-id="open-hours"] .FR-module__open-hour__label > * {
        font-size: 2.2em; } }
    @media screen and (max-width: 767px) {
      .FR-module[data-id="open-hours"] .FR-module__open-hour__label > * {
        font-size: 1.8em; } }

@media screen {
    .FR-module[data-id="open-hours"] .FR-module__open-hour__time > * {
      font-size: 4em; } }
  @media screen and (max-width: 1024px) {
    .FR-module[data-id="open-hours"] .FR-module__open-hour__time > * {
      font-size: 3.5em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="open-hours"] .FR-module__open-hour__time > * {
      font-size: 2.8em; } }
  @media screen and (max-width: 767px) {
    .FR-module[data-id="open-hours"] .FR-module__open-hours {
      gap: 2em; } }

@media screen {
  /*  ==========================================================================
    FOOTER
    Styling for the lowest part of the website
    ========================================================================== */
  .FR-section[data-id="footer"] {
    margin-bottom: 5em; }
    .FR-section[data-id="footer"] .FR-section__data {
      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;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .FR-section[data-id="footer"] .FR-section__name {
      font-family: "Roboto Condensed", sans-serif;
      margin-bottom: 4em;
      font-weight: bold; }
      .FR-section[data-id="footer"] .FR-section__name > * {
        font-size: 3em; }
    .FR-section[data-id="footer"] .FR-section__other-contact, .FR-section[data-id="footer"] .FR-section__tels {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 4em;
      margin-bottom: 4em; }
    .FR-section[data-id="footer"] .FR-section__tel {
      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-decoration: none; }
      .FR-section[data-id="footer"] .FR-section__tel__icon {
        margin-bottom: 1em; }
        .FR-section[data-id="footer"] .FR-section__tel__icon > * {
          font-size: 3em; }
      .FR-section[data-id="footer"] .FR-section__tel__name {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        text-transform: uppercase; }
        .FR-section[data-id="footer"] .FR-section__tel__name > * {
          font-size: 1.6em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="footer"] .FR-section__tel__name > * {
          font-size: 1.4em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__tel__number > * {
        font-size: 2.8em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__tel__number > * {
        font-size: 1.8em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__spacer {
      display: block;
      width: 1px;
      background: rgba(0, 0, 0, 0.3); }
    .FR-section[data-id="footer"] .FR-section__insta, .FR-section[data-id="footer"] .FR-section__mail {
      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-decoration: none; }
      .FR-section[data-id="footer"] .FR-section__insta__icon, .FR-section[data-id="footer"] .FR-section__mail__icon {
        margin-bottom: 1em; }
        .FR-section[data-id="footer"] .FR-section__insta__icon > *, .FR-section[data-id="footer"] .FR-section__mail__icon > * {
          font-size: 3em; }
      .FR-section[data-id="footer"] .FR-section__insta__label, .FR-section[data-id="footer"] .FR-section__mail__label {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        text-transform: uppercase; }
        .FR-section[data-id="footer"] .FR-section__insta__label > *, .FR-section[data-id="footer"] .FR-section__mail__label > * {
          font-size: 1.6em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="footer"] .FR-section__insta__label > *, .FR-section[data-id="footer"] .FR-section__mail__label > * {
          font-size: 1.4em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__insta__address, .FR-section[data-id="footer"] .FR-section__mail__address {
        text-align: center; }
        .FR-section[data-id="footer"] .FR-section__insta__address > *, .FR-section[data-id="footer"] .FR-section__mail__address > * {
          font-size: 2.8em; } }
      @media screen and (max-width: 1024px) {
        .FR-section[data-id="footer"] .FR-section__insta__address > *, .FR-section[data-id="footer"] .FR-section__mail__address > * {
          font-size: 1.8em; } }

@media screen {
    .FR-section[data-id="footer"] .FR-section__legal {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      margin-top: 5em; }
      .FR-section[data-id="footer"] .FR-section__legal__menu > * {
        font-size: 1.6em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__legal__menu > * {
        font-size: 1.4em; } }

@media screen {
      .FR-section[data-id="footer"] .FR-section__legal__menu > * {
        display: inline-block; }
    .FR-section[data-id="footer"] .FR-section__intpages {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 3em; }
      .FR-section[data-id="footer"] .FR-section__intpages > * {
        font-size: 1.4em; } }
    @media screen and (max-width: 1024px) {
      .FR-section[data-id="footer"] .FR-section__intpages > * {
        font-size: 1.2em; } }
    @media screen and (max-width: 767px) {
      .FR-section[data-id="footer"] .FR-section__intpages > * {
        font-size: 1.2em; } }
  @media screen and (max-width: 1024px) {
    .FR-section[data-id="footer"] .FR-section__tels {
      gap: 3em; } }
  @media screen and (max-width: 767px) {
    .FR-section[data-id="footer"] .FR-section__name {
      margin-bottom: 2em; }
    .FR-section[data-id="footer"] .FR-section__other-contact, .FR-section[data-id="footer"] .FR-section__tels {
      gap: 2em;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%;
      margin-bottom: 2em; }
    .FR-section[data-id="footer"] .FR-section__tel {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; }
    .FR-section[data-id="footer"] .FR-section__spacer {
      height: 1px;
      width: 100%; }
    .FR-section[data-id="footer"] .FR-section__mail {
      margin-top: 2em; } }

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