@charset "UTF-8";
/* HTML-Boilerplate MAIN SCSS FILE */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../fonts/Montserrat-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: auto;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(../fonts/Montserrat-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: auto;
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(../fonts/Open_Sans-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: auto;
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(../fonts/Open_Sans-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(../fonts/Open_Sans-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: auto;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(../fonts/Open_Sans-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}

/* *************************************************************************** */
/* BASE STYLES */
/* *************************************************************************** */
/* ----------------------------------------------------------------------------------------------------

SCSS Form Reset Helpers - Forked from: https://gist.github.com/anthonyshort/552543

Intended usage:
- MIXINS: for very specific use cases, when you dont want to reset absolutly all the forms, very verbose output.
- PLACEHOLDER SELECTORS: use as extending classes. Less verbose, more generic overrides.

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input, label, select, button, textarea {
  display: inline-block;
  margin: 0;
  border: 0;
  padding: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio], select {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input {
  /* Make webkit render the search input like a normal text field */
  /* Turn off the recent search for webkit. It adds about 15px padding on the left */
  /* Fix IE7 display bug */
  /* These elements are usually rendered a certain way by the browser */
}

input:focus {
  outline: 0;
}

input[type=checkbox], input[type=radio] {
  width: 13px;
  height: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

::-webkit-search-decoration {
  display: none;
}

input[type=reset], input[type=button], input[type=submit] {
  overflow: visible;
}

select {
  /* Move the label to the top */
}

select[multiple] {
  vertical-align: top;
}

button {
  background: none;
  border: 0;
  outline: none;
  /* IE8 and FF freak out if this rule is within another selector */
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:hover, button:active, button:focus {
  outline: 0;
}

::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/*! start-strip-code-liferay */
/*! normalize.css v4.1.1 | MIT License | github.com--slash--necolas--slash--normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* HTML5 display definitions
   ************************************************************************** */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

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

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ************************************************************************** */
/**
 * 1. Remove the bottom border in 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;
  -moz-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;
}

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

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

/**
 * 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
   ************************************************************************** */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

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

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

/**
 * 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 {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/*! end-strip-code-liferay */
/* ************************************************************************** */
/* STRIP UNIT */
/* ************************************************************************** */
/* ************************************************************************** */
/* REM Calculation  - depends on @function strip-unit */
/* ************************************************************************** */
/* ************************************************************************** */
/* EM Calc */
/* ************************************************************************** */
/* *************************************************************************** */
/* VARIABLES & BREAKPOINTS */
/* *************************************************************************** */
/*
GLOBALS
GRID
COLORS
TEXT SELECTION AND SCROLL BAR
BREAKPOINTS
TYPOGRAPHY
*/
/* ************************************************************************** */
/* GLOBALS  */
/* ************************************************************************** */
/* ************************************************************************** */
/* GRID */
/* ************************************************************************** */
/* ************************************************************************** */
/* COLORS */
/* ************************************************************************** */
/* ************************************************************************** */
/* TEXT SELECTION AND SCROLL BAR */
/* Check _overhaul.scss for usage */
/* ************************************************************************** */
/* ************************************************************************** */
/* TYPOGRAPHY  */
/* ************************************************************************** */
/* ************************************************************************** */
/* BREAKPOINTS */
/* ************************************************************************** */
/* ************************************************************************** */
/* Susy (Version 2) */
/* ************************************************************************** */
/* *************************************************************************** */
/* HTML-Boilerplate BASE SCSS
   INCLUDING Normalize.css and basic SASS UTILITIES */
/* *************************************************************************** */
/* ************************************************************************** */
/* IMPORT ALL NEEDED BASIC SASS UTILITIES */
/* ************************************************************************** */
/* ************************************************************************** */
/* COLORS */
/* ************************************************************************** */
/* ********************************************************************** */
/* TYPOGRAPHY FUNCTIONS */
/* ********************************************************************** */
html {
  font-size: 16px;
}

/*! start-strip-code-liferay */
*, html, body {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/*! end-strip-code-liferay */
/* ************************************************************************** */
/* TODO CLASS */
/* ************************************************************************** */
/* ************************************************************************** */
/* GRID */
/* ************************************************************************** */
/* ************************************************************************** */
/* TODO HELPERS.... */
/* ************************************************************************** */
@-webkit-keyframes todoAlert {
  from {
    border-width: 6px;
    border-color: #d9ff00;
  }
  to {
    border-width: 1px;
    border-color: rgba(217, 255, 0, 0.1);
  }
}
@keyframes todoAlert {
  from {
    border-width: 6px;
    border-color: #d9ff00;
  }
  to {
    border-width: 1px;
    border-color: rgba(217, 255, 0, 0.1);
  }
}

@-webkit-keyframes todoBgc {
  from {
    background-color: #FF0000;
  }
  to {
    background-color: rgba(255, 51, 51, 0.7);
  }
}

@keyframes todoBgc {
  from {
    background-color: #FF0000;
  }
  to {
    background-color: rgba(255, 51, 51, 0.7);
  }
}

/*! start-strip-code-liferay */
/* ************************************************************************** */
/* SOME BASIC STYLE IMPROVEMENTS */
/* ************************************************************************** */
/* ************************************************************************** */
/* SCROLLBAR (webkit based browsers only) */
/* ************************************************************************** */
::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  /* Track */
  border-radius: 0.15rem;
  background-color: rgba(0, 0, 0, 0.075);
}

::-webkit-scrollbar-thumb {
  /* Handle */
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.21);
}

/* ********************************************************************** */
/* TEXT SELECTIONS */
/* ********************************************************************** */
::-moz-selection {
  color: #eee;
  background: rgba(166, 20, 24, 0.95);
  /* WebKit/Blink Browsers */
}
::selection {
  color: #eee;
  background: rgba(166, 20, 24, 0.95);
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  color: #eee;
  background: rgba(166, 20, 24, 0.95);
  /* Gecko Browsers */
}

/* ************************************************************************** */
/* OVERRIDE LINK SETTINGS */
/* ************************************************************************** */
a {
  color: #a61418;
}

a:visited {
  color: #a61418;
}

a:hover, a:focus {
  color: #780f11;
}

/*! end-strip-code-liferay */
/* ************************************************************************** */
/* CREATE A CSS CIRCLE */
/* ************************************************************************** */
/*
   1) Inherit color (from font-color)     @include circle(1em);
   2) Define size and color               @include circle(1em, color(1));
*/
/* ************************************************************************** */
/* CREATE CSS TRIANGLE */
/* ************************************************************************** */
/* VALUES:
   1) Direction: up, down, left, right, top-left, top-right, bottom-left, bottom-right
   2) Size:      One value for equal width/height; two values for width/height
   3) Color:     "inherit" by default
*/
/* EXAMPLES:
   @include triangle(down, 20px, color(1));
   @include triangle(top-right, 20px 100px, color(1));
*/
/* ************************************************************************** */
/* PSEUDO ELEMENT */
/* ************************************************************************** */
/* EXAMPLE
   .class:after {@include pseudo;}
*/
/* ************************************************************************** */
/* SET ASPECT-RATIO to ELEMENTS (DIVs with background-images for example) */
/* ************************************************************************** */
/* ************************************************************************** */
/* CENTER with -50% margin
   WILL NOT WORK IN IE8 ! */
/* ************************************************************************** */
/* USAGE:
   1) Both axis:       center-transform
   2) horizontal axis: center-transform(x)
   3) vertical axis:   center-transform(y)

*/
/* ************************************************************************** */
/* CENTER WITH POSITION: ABSOLUTE
   element which has to be centered must have known width/height for to be
   centered axis (vertical and or horizontal) */
/* ************************************************************************** */
/* ************************************************************************** */
/* VERTICAL CENTERING (inline-block method */
/* ************************************************************************** */
/* ATTENTION: WILL NEED AN CHILD HTML ELEMENT!
   EXAMPLES:
   1) Use default child class (.inner):    @include vcenter-inline-block;
   2) Define child class name:             @include vcenter-inline-block(".classname");
   3) Define multiple child class names:   @include vcenter-inline-block(".classname1", ".classname2", ".classname3");
*/
/* ************************************************************************** */
/* VERTICAL CENTERING (inline-block method */
/* ************************************************************************** */
/*
   EXAMPLE: @include vcenter-line-height(50px);
*/
/* ************************************************************************** */
/* TABLE DISPLAY CENTERING */
/* ************************************************************************** */
/* ATTENTION: WILL NEED AN CHILD HTML ELEMENT!
   EXAMPLES:
   1) Use default child class (.inner):    @include vcenter-table-display;
   2) Define child class name:             @include vcenter-table-display(".classname");
   3) Define multiple child class names:   @include vcenter-table-display(".classname1", ".classname2", ".classname3");
*/
/* ************************************************************************** */
/* JUSTIFY TEXT without relying on floating elements */
/* ************************************************************************** */
/* ************************************************************************** */
/* KEY VALUE Punctuation - for Definition Lists <dl></dl> */
/* ************************************************************************** */
/*
   EXAMPLES:
   1) With long dash:       @include key-value("\2014", 0.5em, 8em, 1em, 0.5em);

   2) Table like:

   dl.prime {
      $dt-width: 6em;
      @include key-val("", 0, $dt-width + 1em);
      & > dt {
        width: $dt-width;
        text-align: right;
        text-transform: uppercase;
      }
   }
*/
/* ************************************************************************** */
/* SIDE LINED - Put a line left & right to a centered font */
/* ************************************************************************** */
/*
   EXAMPLES:
   1) @include side-lined($double: 0.3em, $color: color(1), $v-adjust: 0.05em);
   2) @include side-lined(0.3em, 1em, color(1), $v-adjust: 0.1em);
*/
/* ************************************************************************** */
/* CUT OFF OVERFLOATING TEXT */
/* ************************************************************************** */
/*
   1) @include truncate;
   2) @include truncate(clip);
*/
/* ************************************************************************** */
/* SHORTHAND FOR CSS BORDERS */
/* ************************************************************************** */
/* VALUES:
   1) border-width
   2) border-style (dotted, dashed, solid, double, groove, ridge, inset, outset)
   -- COMMA --
   3) sides:      n or y (n = no style, y = use style)
                  2 values top/bottom and left/right
                  4 values for top, right, bottom, left
*/
/* EXAMPLES:
   -- SCSS: --
   border(0.75em solid #bada55, n y y y);

   -- GENERATED CSS: --
   border-bottom: 0.75em solid #bada55;
   border-left: 0.75em solid #bada55;
   border-right: 0.75em solid #bada55;
*/
/* ************************************************************************** */
/* Hide elements visually - Will not hide Elements for screen readers etc.*/
/* ************************************************************************** */
/* USAGE:
.example {
  @include hide-visually;
}
*/
/* ************************************************************************** */
/* CROSS BROWSER opacity */
/* ************************************************************************** */
/* USAGE
.logo {
  background-image: url("img/logo.png");
  @include retina("img/logo@2x.png", 100px, 21px);
}
*/
/* ************************************************************************** */
/* REPLACE WITH IMAGE - (helpful for screen reader optimizsation) */
/* ************************************************************************** */
/* EXAMPLE:
   .eg-image-replace {
      @include replace-with-image;
      background: url("//placehold.it/200x200") no-repeat;
      background-size: contain;
      height: 4rem;
   }
*/
/* *************************************************************************** */
/* VENDOR STYLES */
/* *************************************************************************** */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ************************************************************************** */
/* NAME */
/* Check this path to configure available variables:
   ./src/assets/scss/vendor/animate/settings/_names.scss */
/* ************************************************************************** */
/* ************************************************************************** */
/* Include Animations */
/* Check this path to configure available variables:
   ./src/assets/scss/vendor/animate/settings/_modules.scss */
/* ************************************************************************** */
/* ************************************************************************** */
/* Import animate.css with specified settings */
/* ************************************************************************** */
/**
 * Animate.scss
 * https://github.com/benhodgson87/animate.scss/
 *
 * Based on Animate.css by Dan Eden (@_dte)
 * Ported to Sass by Ben Hodgson (@benhodgson)
 */
@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.anim--fade-in-up {
  -webkit-animation-name: "fade-in-up";
  animation-name: "fade-in-up";
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* *************************************************************************** */
/* AUTHORED STYLES */
/* *************************************************************************** */
.container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container:after {
  content: " ";
  display: block;
  clear: both;
}

.content {
  margin-bottom: 5rem;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7689rem;
  font-weight: 700;
  color: #a61418;
  letter-spacing: -0.04688rem;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7689rem;
  font-weight: 700;
  color: #a61418;
  letter-spacing: -0.04688rem;
  font-size: 1.33rem;
}

@media (max-width: 767px) {
  h2 {
    margin-bottom: 0;
  }
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  margin: 1.33rem 0;
}

p.small {
  font-size: 0.75188rem;
  margin: 0;
}

p.strong {
  font-weight: bold;
}

.light {
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

strong {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-weight: 600;
}

a {
  color: #000;
  text-decoration: none;
}

ul p {
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-weight: 600;
  color: #a61418;
  text-decoration: underline;
}

ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-weight: 600;
}

ul li a {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-weight: 600;
  text-decoration: none;
}

.dash {
  width: 200px;
  height: 1px;
  background-color: black;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .dash {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.anchorlink {
  display: block;
  padding-top: 20px;
  position: relative;
  top: -65px;
  visibility: hidden;
}

@media (max-width: 767px) {
  .anchorlink {
    top: 0px;
  }
}

.logo {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
}

@media (max-width: 767px) {
  .logo {
    font-size: 1.65rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

.logo img {
  max-width: 55%;
  height: auto;
}

@media (max-width: 767px) {
  .logo img {
    max-width: 95%;
  }
}

.introduction .cite {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  line-height: 2.25rem;
  font-style: italic;
  text-align: justify;
  padding-top: 4rem;
}

@media (max-width: 767px) {
  .introduction .cite {
    font-size: 1.1rem;
    line-height: 1.75rem;
    padding-top: 1rem;
  }
}

.introduction .cite-donor {
  font-size: 0.75188rem;
  text-align: right;
  font-style: italic;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .introduction .cite-donor {
    padding-bottom: 0;
  }
}

.experience,
.working,
.thinking,
.contact {
  vertical-align: top;
  margin-bottom: 4rem;
  position: relative;
}

@media (max-width: 767px) {
  .experience,
  .working,
  .thinking,
  .contact {
    margin-bottom: 1rem;
  }
}

.experience__headline,
.working__headline,
.thinking__headline,
.contact__headline {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.7689rem;
  font-weight: 700;
  color: #a61418;
  letter-spacing: -0.04688rem;
  font-size: 1.4696rem;
  color: white;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .experience__headline,
  .working__headline,
  .thinking__headline,
  .contact__headline {
    font-size: 1.33rem;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.experience__keyvisual,
.working__keyvisual,
.thinking__keyvisual,
.contact__keyvisual {
  position: relative;
}

.experience__keyvisual img,
.working__keyvisual img,
.thinking__keyvisual img,
.contact__keyvisual img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .experience__keyvisual:after,
  .working__keyvisual:after,
  .thinking__keyvisual:after,
  .contact__keyvisual:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20.5px;
    right: 0;
    height: 15.5px;
    width: 257.5px;
    background: url("../images/logo--note.png") no-repeat center right transparent;
    background-size: contain;
  }
}

@media (min-width: 768px) and (min-width: 1280px) {
  .experience__keyvisual:after,
  .working__keyvisual:after,
  .thinking__keyvisual:after,
  .contact__keyvisual:after {
    bottom: -35.5px;
  }
}

.experience__keyvisual img,
.working__keyvisual img,
.thinking__keyvisual img,
.contact__keyvisual img {
  max-width: 100%;
  height: auto;
}

.experience__block-wrapper,
.working__block-wrapper,
.thinking__block-wrapper,
.contact__block-wrapper {
  *zoom: 1;
}

.experience__block-wrapper:before, .experience__block-wrapper:after,
.working__block-wrapper:before,
.working__block-wrapper:after,
.thinking__block-wrapper:before,
.thinking__block-wrapper:after,
.contact__block-wrapper:before,
.contact__block-wrapper:after {
  content: " ";
  display: table;
}

.experience__block-wrapper:after,
.working__block-wrapper:after,
.thinking__block-wrapper:after,
.contact__block-wrapper:after {
  clear: both;
}

@media (min-width: 768px) {
  .experience__block:first-child,
  .working__block:first-child,
  .thinking__block:first-child,
  .contact__block:first-child {
    width: 47.70642%;
    float: left;
    margin-right: 4.58716%;
  }
  .experience__block:last-child,
  .working__block:last-child,
  .thinking__block:last-child,
  .contact__block:last-child {
    width: 47.70642%;
    float: right;
    margin-right: 0;
  }
}

.randnotizen {
  vertical-align: top;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .randnotizen {
    margin-bottom: 1rem;
  }
}

.randnotizen__wrapper {
  *zoom: 1;
}

.randnotizen__wrapper:before, .randnotizen__wrapper:after {
  content: " ";
  display: table;
}

.randnotizen__wrapper:after {
  clear: both;
}

@media (min-width: 768px) {
  .randnotizen__wrapper {
    background: url("../images/randnotizen.jpg") 50% top no-repeat transparent;
    background-position: 100% 0%;
    background-size: 50%;
  }
}

.randnotizen__headline {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.7689rem;
  font-weight: 700;
  color: #a61418;
  letter-spacing: -0.04688rem;
  font-size: 1.4696rem;
  color: white;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .randnotizen__headline {
    font-size: 1.33rem;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .randnotizen__content {
    width: 47.70642%;
    float: left;
    margin-right: 4.58716%;
  }
}

.contactinformation p {
  margin-top: 5px;
  margin-bottom: 8px;
}

.contactinformation span {
  min-width: 15%;
  display: inline-block;
}

@media (max-width: 767px) {
  .contactinformation span {
    min-width: 25%;
  }
}

body.privacy-policy .keyvisual,
body.datenschutz .keyvisual,
body.imprint .keyvisual,
body.impressum .keyvisual {
  text-align: center;
  background-color: black;
}

body.privacy-policy .keyvisual img,
body.datenschutz .keyvisual img,
body.imprint .keyvisual img,
body.impressum .keyvisual img {
  max-width: 100%;
  height: auto;
}

body.privacy-policy .content,
body.datenschutz .content,
body.imprint .content,
body.impressum .content {
  margin-top: 4rem;
}

.navigation {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.navigation-wrapper {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 100 !important;
}

@media (min-width: 768px) {
  .navigation-wrapper {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .navigation-wrapper {
    min-height: 40px;
  }
}

.navigation__toggle {
  display: none;
  position: absolute;
  right: 10px;
  top: 0px;
}

@media (max-width: 767px) {
  .navigation__toggle {
    display: block;
  }
}

.navigation:after {
  content: " ";
  display: block;
  clear: both;
}

.navigation ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .navigation ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .navigation ul > li {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .navigation ul {
    display: none;
  }
}

@media (min-width: 768px) {
  .navigation ul {
    display: block !important;
  }
}

.navigation ul li {
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 924px) {
  .navigation ul li {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.navigation ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 80px;
  font-weight: 400;
  color: white;
  -webkit-text-decoration: uppercase;
  -moz-text-decoration: uppercase;
  text-decoration: uppercase;
  padding: 5px 10px;
  transition: color 250ms ease-out;
}

@media (max-width: 767px) {
  .navigation ul li a {
    line-height: 40px;
  }
}

@media (max-width: 1279px) {
  .navigation ul li a {
    padding: 0;
  }
}

.navigation ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1280px) {
  .navigation ul li.languageswitch {
    padding-left: 40px;
  }
}

.navigation ul li.languageswitch a {
  padding-left: 6px;
  padding-right: 6px;
}

.navigation ul li.languageswitch a:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .navigation ul li.languageswitch a:nth-child(1) {
    padding-left: 0;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .navigation ul li.languageswitch a {
    padding-left: 10px;
  }
}

.navigation ul li.languageswitch a.active-language {
  color: rgba(255, 255, 255, 0.5);
}

.sticky-wrapper.is-sticky {
  z-index: 100;
}

.footer {
  background-color: #4f3a30;
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.footer__content {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}

.footer__content:after {
  content: " ";
  display: block;
  clear: both;
}

.footer__content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.footer__content ul > li {
  display: inline-block;
}

.footer__content ul li, .footer__content ul li a, .footer__content ul li a:visited {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: white;
  margin-left: 1rem;
}

.slider {
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  margin-bottom: -80px;
}

@media (max-width: 767px) {
  .slider {
    margin-bottom: -40px;
  }
}

.slider .slide {
  background-color: black;
  position: relative;
}

@media (max-width: 767px) {
  .slider .slide__image--desktop {
    display: none;
  }
}

.slider .slide__image--mobile {
  display: none;
}

@media (max-width: 767px) {
  .slider .slide__image--mobile {
    display: block;
  }
}

.slider .slide img {
  max-width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

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