@charset "UTF-8";
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/* center mixin
 usage: Y axis : @include centre(y);
X axis : @include centre(x);
Both axis : @include centre; */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

header, footer, nav, section, article, hgroup, figure {
  display: block; }

/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * settings/_colors.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
/**
 * settings/_fonts.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
@font-face {
  font-family: 'museo_sans100';
  src: url("../fonts/webfont/museosans_100-webfont.eot");
  src: url("../fonts/webfont/museosans_100-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/webfont/museosans_100-webfont.woff2") format("woff2"), url("../fonts/webfont/museosans_100-webfont.woff") format("woff"), url("../fonts/webfont/museosans_100-webfont.ttf") format("truetype"), url("../fonts/webfont/museosans_100-webfont.svg#museo_sans100") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'museo_sans300';
  src: url("../fonts/webfont/museosans_300-webfont.eot");
  src: url("../fonts/webfont/museosans_300-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/webfont/museosans_300-webfont.woff2") format("woff2"), url("../fonts/webfont/museosans_300-webfont.woff") format("woff"), url("../fonts/webfont/museosans_300-webfont.ttf") format("truetype"), url("../fonts/webfont/museosans_300-webfont.svg#museo_sans300") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'museo_sans500';
  src: url("../fonts/webfont/museosans_500-webfont.eot");
  src: url("../fonts/webfont/museosans_500-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/webfont/museosans_500-webfont.woff2") format("woff2"), url("../fonts/webfont/museosans_500-webfont.woff") format("woff"), url("../fonts/webfont/museosans_500-webfont.ttf") format("truetype"), url("../fonts/webfont/museosans_500-webfont.svg#museo_sans500") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'museo_sans700';
  src: url("../fonts/webfont/museosans_700-webfont.eot");
  src: url("../fonts/webfont/museosans_700-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/webfont/museosans_700-webfont.woff2") format("woff2"), url("../fonts/webfont/museosans_700-webfont.woff") format("woff"), url("../fonts/webfont/museosans_700-webfont.ttf") format("truetype"), url("../fonts/webfont/museosans_700-webfont.svg#museo_sans700") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'museo_sans900';
  src: url("../fonts/webfont/museosans_900-webfont.eot");
  src: url("../fonts/webfont/museosans_900-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/webfont/museosans_900-webfont.woff2") format("woff2"), url("../fonts/webfont/museosans_900-webfont.woff") format("woff"), url("../fonts/webfont/museosans_900-webfont.ttf") format("truetype"), url("../fonts/webfont/museosans_900-webfont.svg#museo_sans900") format("svg");
  font-weight: normal;
  font-style: normal; }
/**
 * settings/_size.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
/**
 * tools/_tools.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
/**
 * tools/_animations.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
.animate-fade {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  .animate-fade:hover {
    opacity: 0; }

.animate-move > .demo-shape {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out; }

/**
 * tools/_helper.scss
 */
/* ==========================================================================
   Helper
   ========================================================================== */
/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -50px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: -10px;
  right: auto; }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%231C222E'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: -10px;
  left: auto; }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%231C222E'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #1C222E; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px; }

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
.blue-color {
  color: #3F94C8; }

/* Clearfix */
.cf, .l-two-col, [role=main] {
  *zoom: 1; }

.cf:before, .l-two-col:before, [role=main]:before, .cf:after, .l-two-col:after, [role=main]:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after, .l-two-col:after, [role=main]:after {
  clear: both; }

/* Completely remove from the flow and screen readers. */
.is-hidden, .first-name-h {
  display: none !important;
  visibility: hidden !important; }

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/* Floats */
.right {
  float: right; }

.left {
  float: left; }

/* Text-Align */
.align-right {
  text-align: right; }

.align-center {
  text-align: center; }

.align-left {
  text-align: left; }

/* Display Classes */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none; } }

@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none; } }

@media all and (min-width: 50em) {
  .hide-large {
    display: none; } }

.valid {
  color: #089e00; }

.error {
  color: #f00; }

.warning {
  color: #fff664; }

.information {
  color: #000db5; }

.font-secondary {
  font-family: Georgia, Times, "Times New Roman", serif; }

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.half-width {
  width: 50%;
  height: 100%;
  float: left; }

.table {
  display: block; }
  @media (min-width: 767px) {
    .table {
      display: table; } }

.table-cell {
  display: block; }
  @media (min-width: 767px) {
    .table-cell {
      display: table-cell;
      vertical-align: middle; } }

.inline-block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */ }

.centered {
  display: inline-block;
  vertical-align: middle; }

.flex, #kontakt-header .headline-wrapper, #kontakt-header .inner-content, #kontakt-header .inner-content .wrapper {
  display: flex;
  display: -webkit-flex; }

.flex-center {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }

.center-text {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.orange, .cta-transparent.orange {
  color: #f9a11b;
  border-color: #f9a11b; }

.dark-gray, .dark-bg {
  background-color: #595959;
  color: #fff; }

.gray-bg, section.gray-bg {
  background-color: #ededed; }

._25-grid {
  width: 100%;
  float: none; }
  @media (min-width: 767px) {
    ._25-grid {
      width: 25%;
      float: left; } }

._40-grid {
  width: 100%;
  float: none; }
  @media (min-width: 767px) {
    ._40-grid {
      width: 40%;
      float: left; } }

._50-grid {
  width: 100%;
  float: none; }
  @media (min-width: 767px) {
    ._50-grid {
      width: 50%;
      float: left; } }

._60-grid {
  width: 100%;
  float: none; }
  @media (min-width: 767px) {
    ._60-grid {
      width: 60%;
      float: left; } }

._70-grid {
  width: 100%;
  float: none; }
  @media (min-width: 767px) {
    ._70-grid {
      width: 70%;
      float: left; } }

.img-fit, .big-image-slider .swiper-container .swiper-wrapper .swiper-slide > img {
  backface-visibility: hidden;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
  -o-object-position: center center;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  right: -9999px;
  top: -9999px; }

.img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; }

.hyphenate, h1, .alpha, h2, .beta, h3, .gamma, h4, .delta {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

.raquo, .breadcumb ul li {
  position: relative;
  display: inline-block; }
  .raquo:before, .breadcumb ul li:before {
    content: "\00BB";
    position: relative;
    top: -1px;
    right: 12px; }

html {
  height: 100%; }

body {
  height: 100%;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  color: #808080; }

.social-icons {
  margin: 20px 0; }
  .social-icons a {
    color: #808080;
    font-size: 28px;
    margin-right: 15px; }
    .social-icons a:hover {
      color: #595959; }

.breadcumb {
  padding: 20px 0 0; }
  .breadcumb .inner {
    margin: 0 auto 0;
    text-transform: uppercase; }
  .breadcumb ul {
    margin: 10px 0 20px; }
    .breadcumb ul li {
      display: inline;
      margin-right: 20px; }
      .breadcumb ul li:first-of-type:before {
        display: none; }
      .breadcumb ul li a {
        color: #808080; }

.contact-info span {
  margin-right: 20px;
  width: 10px;
  display: inline-block; }

.referenzen .grid.grid--70 p {
  margin-bottom: 0;
  line-height: 1; }
.referenzen ul {
  display: inline-block;
  vertical-align: top;
  padding-right: 50px; }
  .referenzen ul li {
    list-style: circle;
    font-size: 15px !important; }

/* Links */
a {
  text-decoration: none;
  outline: 0; }

/* Headings */
h1, .alpha {
  font-size: 45px;
  line-height: 0.95;
  letter-spacing: 2.8px;
  margin-bottom: 30px;
  text-transform: uppercase;
  padding: 0 20px; }
  @media (min-width: 460px) {
    h1, .alpha {
      font-size: 66px;
      padding: 0;
      line-height: 0.85; } }
  @media (min-width: 1280px) {
    h1, .alpha {
      font-size: 70px;
      line-height: 70px; } }

h2, .beta {
  text-transform: uppercase;
  padding: 0 20px; }
  @media (min-width: 460px) {
    h2, .beta {
      padding: 0; } }
  @media (min-width: 767px) {
    h2, .beta {
      padding: 0; } }

h3, .gamma {
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 2.1px;
  padding: 0;
  color: #409f36; }

h4, .delta {
  font-size: 20px;
  text-transform: uppercase;
  padding: 0; }

h5, .epsilon {
  padding: 0; }

h6, .zeta {
  padding: 0; }

/* Subheadings */
/* Text-Related Elements */
p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.2px;
  padding: 0; }
  p:last-child {
    margin-bottom: 30px; }
    @media (min-width: 767px) {
      p:last-child {
        margin-bottom: 0; } }

/* Blockquote */
blockquote {
  font-style: italic;
  color: #808080;
  padding: 0 10px;
  font-size: 18px; }
  @media (min-width: 460px) {
    blockquote {
      padding: 0; } }

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 2em 0;
  padding: 0 10px; }
  @media (min-width: 460px) {
    hr {
      padding: 0; } }

abbr {
  border-bottom: 1px dotted #808080;
  cursor: help; }

.intro {
  font-size: 1.0625em;
  font-weight: bold; }

.pullquote {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 1.4375em; }

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

/* Definition Lists */
dl {
  overflow: hidden; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
img, video, object {
  max-width: 100%;
  height: auto;
  min-width: 100%; }

iframe {
  margin-bottom: 1em; }

figure {
  margin-bottom: 1em; }
  figure img {
    margin-bottom: 0.5em; }

figcaption {
  font-style: italic; }

.video-holder {
  position: relative; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
  height: 45px;
  background-color: #fff;
  padding: 5px 10px;
  border: 0 none;
  margin: 5px 0;
  color: #595959;
  font-size: 16px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  line-height: 20px;
  border-radius: 3px; }
  input[type="text"].parsley-error, input[type="email"].parsley-error, input[type="password"].parsley-error {
    border: 1px solid #f00; }

input[type="submit"], input[type="button"] {
  -webkit-appearance: none; }

textarea {
  width: 100%;
  font-size: 16px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  min-height: 160px;
  height: auto;
  border-radius: 3px;
  border: 0 none; }
  textarea.parsley-error {
    border: 1px solid #f00; }

.kontakt-hinweis {
  font-size: 13px;
  padding: 0 10px; }

.kontakt .kontakt-hinweis {
  padding: 0 10px 50px; }

input[disabled] {
  cursor: not-allowed;
  color: #a9a7a4; }
  input[disabled]:hover {
    cursor: not-allowed;
    color: #a9a7a4; }

label {
  text-align: left;
  color: #808080;
  padding-left: 5px; }

.checkbox {
  padding: 10px 0; }

.required {
  font-size: 10px;
  color: #a9a7a4;
  text-align: right;
  width: 100%; }

.parsley-errors-list {
  color: #f9a11b;
  margin: 0 0 10px !important; }
  .parsley-errors-list li {
    list-style: none !important; }

#kontakt-form {
  margin: 0 auto;
  padding: 5px;
  width: 100%; }
  #kontakt-form input[type="text"], #kontakt-form input[type="email"], #kontakt-form input[type="password"], #kontakt-form textarea {
    border: 1px solid #a9a7a4; }
  #kontakt-form li {
    margin: 0; }
  #kontakt-form label {
    display: none; }
  #kontakt-form .cta-btn-holder {
    padding: 0; }
  #kontakt-form textarea {
    padding: 5px 10px;
    margin: 5px 0; }

/*------------------------------------*\
    $Table
\*------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0 none;
  width: 100%; }

th {
  text-align: left;
  border: 0 none;
  padding: 0.2em; }

td {
  border: 0 none;
  padding: 0.2em; }

.table {
  display: table;
  width: 100%;
  margin: 0; }

.table-caption {
  width: 100%;
  display: table-caption;
  margin-top: 20px;
  padding: 10px 10px 10px 0;
  font-weight: bold;
  color: #409f36; }

.table-row {
  display: table-row; }
  .table-row.highlighted {
    background-color: #f8f8f8; }

.table-cell {
  display: table-cell;
  padding: 10px 10px 10px 2px;
  vertical-align: top; }
  .table-cell.left-cell {
    width: 40%; }
  .table-cell.middle-cell {
    width: 30%; }
  .table-cell.right-cell {
    width: 30%; }
  .table-cell.sub-cell {
    padding: 10px 10px 10px 30px; }

.week {
  display: table; }
  @media (min-width: 1150px) {
    .week {
      display: table; } }
  .week .table-row:first-child .table-cell {
    background-color: #409f36;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    display: none; }
    @media (min-width: 1150px) {
      .week .table-row:first-child .table-cell {
        display: table-cell; } }
  .week .table-row .table-cell {
    background-color: #f8f8f8;
    border: 1px solid #fff;
    padding: 10px;
    width: 100%;
    display: none; }
    @media (min-width: 1150px) {
      .week .table-row .table-cell {
        display: table-cell;
        width: 14.2857%; } }
    .week .table-row .table-cell.hidden-field__for-responsive {
      display: block;
      background-color: #409f36;
      color: #fff;
      text-align: center;
      text-transform: uppercase;
      padding: 10px; }
      @media (min-width: 1150px) {
        .week .table-row .table-cell.hidden-field__for-responsive {
          display: none; } }
    .week .table-row .table-cell.no-mobile {
      display: none; }
      @media (min-width: 1150px) {
        .week .table-row .table-cell.no-mobile {
          display: table-cell; } }
    .week .table-row .table-cell.show-mobile {
      display: block; }
      @media (min-width: 1150px) {
        .week .table-row .table-cell.show-mobile {
          display: table-cell; } }

/* Cards */
.grid-wrapper {
  width: 100%;
  display: block; }
  @media (min-width: 767px) {
    .grid-wrapper {
      display: table; } }
  .grid-wrapper .grid {
    display: block; }
    @media (min-width: 767px) {
      .grid-wrapper .grid {
        display: table-cell;
        vertical-align: top;
        padding: 10px 30px 0 0; } }
  .grid-wrapper .grid--30 {
    width: 100%; }
    @media (min-width: 767px) {
      .grid-wrapper .grid--30 {
        width: 30%; } }
  .grid-wrapper .grid--70 {
    width: 100%;
    padding-right: 0; }
    @media (min-width: 767px) {
      .grid-wrapper .grid--70 {
        width: 70%;
        padding-right: 100px; } }
    .grid-wrapper .grid--70 p strong {
      text-align: center;
      display: block;
      font-size: 22px;
      margin-top: 20px;
      margin-bottom: -20px; }
      @media (min-width: 767px) {
        .grid-wrapper .grid--70 p strong {
          text-align: left;
          display: inline-block;
          font-size: initial;
          margin-top: 0;
          margin-bottom: 0; } }

.grid-container {
  width: 100%;
  display: block;
  margin-bottom: 80px; }
  @media (min-width: 767px) {
    .grid-container {
      display: table; } }
  .grid-container .grid {
    display: block;
    width: 100%;
    padding: 10px 0;
    vertical-align: top;
    margin: 0 auto; }
    @media (min-width: 767px) {
      .grid-container .grid {
        width: 33.3333%;
        display: table-cell;
        padding: 20px 20px 20px 0; } }
    .grid-container .grid:nth-child(1) {
      padding: 10px 0; }
      @media (min-width: 767px) {
        .grid-container .grid:nth-child(1) {
          padding: 10px 20px 10px 0; } }
    .grid-container .grid:nth-child(2) {
      padding: 10px 0; }
      @media (min-width: 767px) {
        .grid-container .grid:nth-child(2) {
          padding: 10px; } }
    .grid-container .grid:nth-child(3) {
      padding: 10px 0; }
      @media (min-width: 767px) {
        .grid-container .grid:nth-child(3) {
          padding: 10px 0 10px 20px; } }
    .grid-container .grid .inner--grid {
      background-color: #fff;
      margin: 0;
      border: 1px solid #ededed; }
      .grid-container .grid .inner--grid .teaser-content {
        padding: 20px 20px 60px; }
        .grid-container .grid .inner--grid .teaser-content h4 {
          text-align: left;
          margin: 0;
          font-size: 18px;
          border: 0 none; }
          @media (min-width: 767px) {
            .grid-container .grid .inner--grid .teaser-content h4 {
              margin: .5em 0 0; } }
        .grid-container .grid .inner--grid .teaser-content hr {
          margin: 1em 0; }
          @media (min-width: 767px) {
            .grid-container .grid .inner--grid .teaser-content hr {
              margin: 1.5em 0; } }

.accordion {
  margin-bottom: 1em; }

.acc-handle {
  background: #131313;
  color: #fff;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.5em;
  border-bottom: 1px solid #ddd; }
  .acc-handle:after {
    content: "+";
    float: right; }
  .acc-handle:hover {
    color: #fff;
    background: #5A5A5A; }
  .acc-handle.active {
    background: #5A5A5A; }
    .acc-handle.active:after {
      content: "-"; }

/*------------------------------------*\
    $LOGO
\*------------------------------------*/
.logo {
  position: relative;
  float: left;
  left: 20px;
  width: 165px;
  height: 55px;
  margin: 0;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-image: url("../img/website/feuchtefinder_logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px; }
  @media (min-width: 260px) {
    .logo {
      width: 122px;
      height: 41px;
      margin-top: 5px; } }
  @media (min-width: 767px) {
    .logo {
      margin-top: 60px;
      width: 115px;
      height: 39px; } }
  @media (min-width: 850px) {
    .logo {
      margin-top: 50px; } }
  @media (min-width: 960px) {
    .logo {
      margin-top: 45px;
      width: 170px;
      height: 58px; } }
  @media (min-width: 1820px) {
    .logo {
      margin-top: 70px;
      width: 195px;
      height: 65px; } }
  .logo a {
    display: block;
    height: 100%;
    color: #409f36;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    @media (min-width: 1480px) {
      .logo a {
        font-size: 1.3vw; } }
    @media (min-width: 1820px) {
      .logo a {
        font-size: 30px; } }
    .logo a .logo--white {
      color: #808080;
      font-size: 18px;
      letter-spacing: 0.3px;
      text-transform: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      @media (min-width: 1480px) {
        .logo a .logo--white {
          font-size: 1.3vw; } }
      @media (min-width: 1820px) {
        .logo a .logo--white {
          font-size: 30px; } }

.hamburger {
  width: 40px;
  height: 45px;
  position: absolute;
  margin: 0;
  top: 12px;
  right: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: block; }
  @media (min-width: 767px) {
    .hamburger {
      display: none;
      top: 46px; } }
  .hamburger span {
    display: block;
    position: absolute;
    height: 6px;
    width: 50%;
    background: #3F94C8;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .hamburger span:nth-child(even) {
      left: 50%;
      border-radius: 0 5px 5px 0; }
    .hamburger span:nth-child(odd) {
      left: 0;
      border-radius: 5px 0 0 5px; }
    .hamburger span:nth-child(1), .hamburger span:nth-child(2) {
      top: 0; }
    .hamburger span:nth-child(3), .hamburger span:nth-child(4) {
      top: 10px; }
    .hamburger span:nth-child(5), .hamburger span:nth-child(6) {
      top: 20px; }
  .hamburger.open span:nth-child(1), .hamburger.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .hamburger.open span:nth-child(2), .hamburger.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .hamburger.open span:nth-child(1) {
    left: 5px;
    top: 6px; }
  .hamburger.open span:nth-child(2) {
    left: calc(50% - 0);
    top: 6px; }
  .hamburger.open span:nth-child(3) {
    left: -50%;
    opacity: 0; }
  .hamburger.open span:nth-child(4) {
    left: 100%;
    opacity: 0; }
  .hamburger.open span:nth-child(5) {
    left: 5px;
    top: 19px; }
  .hamburger.open span:nth-child(6) {
    left: calc(50% - 0);
    top: 19px; }

.article-header h1 {
  font-size: 2.5em; }

.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5em; }

.social-share {
  overflow: hidden;
  margin-bottom: 1em; }
  .social-share li {
    float: left;
    margin-right: 0.5em; }
  .social-share a {
    background: #5A5A5A;
    color: #fff;
    display: block;
    padding: 0.5em; }
    .social-share a:hover {
      background: #808080; }

/* Generic Placeholder Brick: REMOVE FOR PRODUCTION */
.brick {
  background: #dcdddc;
  padding: 2em;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #eee; }

/* Block */
.block {
  overflow: hidden; }
  .block p:last-child {
    margin-bottom: 0; }

.headline {
  line-height: 1.2; }

/* Hero Block */
.block-hero {
  margin-bottom: 0.5em; }
  .block-hero .b-thumb img {
    display: block; }
  @media all and (min-width: 50em) {
    .block-hero {
      position: relative; }
      .block-hero .b-text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 1.5em; } }

/* Block Thumbnail with Headline */
.block-thumb {
  display: table;
  width: 100%;
  border-collapse: collapse; }
  .block-thumb .b-inner {
    display: table-row;
    vertical-align: top;
    overflow: hidden; }
  @media all and (min-width: 29.75em) {
    .block-thumb .b-thumb {
      display: table-cell;
      vertical-align: top;
      width: 30%;
      max-width: 10em; }
      .block-thumb .b-thumb img {
        display: block;
        width: 100%;
        height: auto; } }
  @media all and (min-width: 29.75em) {
    .block-thumb .b-text {
      display: table-cell;
      width: 70%;
      padding: 0 1em; } }

/* Block Headline Summary */
.block-headline-summary a {
  display: block;
  padding: 0.5em; }

/* Block Inset */
.block-inset {
  position: relative; }
  .block-inset .b-thumb {
    position: relative;
    z-index: 0; }
    .block-inset .b-thumb img {
      display: block; }

/* Hero Block */
.block-inset {
  margin-bottom: 0.5em;
  position: relative; }
  .block-inset .headline {
    font-size: 1.1em; }
  .block-inset .b-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5em; }

/* Block Thumb with Summary */
.block-thumb-summary .b-thumb {
  float: left;
  width: 50%; }
.block-thumb-summary .b-text {
  margin-left: 50%;
  padding: 0.5em; }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
.cta-btn-holder {
  text-align: center;
  padding: 20px 0 0;
  margin: 40px 0 0; }
  @media (min-width: 767px) {
    .cta-btn-holder {
      margin: 40px 0;
      padding: 20px 0; } }
  .cta-btn-holder.center {
    text-align: center;
    padding: 0 20px; }
    .cta-btn-holder.center .cta-transparent, .cta-btn-holder.center .cta-full {
      margin: 0 auto; }

.btn {
  display: inline-block;
  background: #5A5A5A;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 1em;
  border: 0;
  text-align: center; }
  .btn:hover, .btn:focus {
    background: #808080;
    color: #fff; }
  .btn.disabled {
    background: #eee;
    color: #808080; }

.btn-small {
  padding: 0.5em; }

.btn-large {
  padding: 0.5em;
  text-transform: uppercase;
  background: #808080;
  font-size: 1.4rem;
  font-weight: normal; }

.text-btn {
  font-style: italic; }

.cta-transparent {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 12px 25px;
  margin: 0 auto 10px;
  display: block;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media (min-width: 460px) {
    .cta-transparent {
      max-width: 300px; } }
  @media (min-width: 767px) {
    .cta-transparent {
      display: inline-block;
      min-width: 300px;
      margin: 0 20px 10px; } }
  .cta-transparent:hover {
    background-color: #fff;
    color: #595959;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer; }
  .cta-transparent.orange:hover {
    background-color: #f9a11b;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .cta-transparent.dark {
    border: 1px solid #595959;
    color: #595959;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .cta-transparent.dark:hover {
      background-color: #595959;
      color: #fff;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
  .cta-transparent.btn-small {
    display: block;
    font-size: 80%;
    margin: 20px auto 0;
    max-width: 180px;
    padding: 5px 10px;
    min-width: 100px; }
  .cta-transparent.btn-medium {
    font-size: 80%;
    margin: 20px auto 0;
    max-width: 180px;
    padding: 10px 10px;
    min-width: 100px; }

.cta-full {
  color: #595959;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 12px 25px;
  margin: 0 auto 10px;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  max-width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media (min-width: 460px) {
    .cta-full {
      max-width: 350px; } }
  @media (min-width: 767px) {
    .cta-full {
      display: inline-block;
      min-width: 300px;
      width: auto; } }
  .cta-full:hover {
    background-color: transparent;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer; }
  .cta-full.orange {
    background-color: #3F94C8;
    border-color: #3F94C8;
    color: #fff !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .cta-full.orange:hover {
      background-color: rgba(255, 255, 255, 0.9);
      color: #3F94C8 !important;
      border-color: #fff;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
  .cta-full.blue {
    background-color: #3F94C8;
    border-color: #3F94C8;
    color: #fff !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .cta-full.blue:hover {
      background-color: transparent;
      color: #3F94C8 !important;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
  .cta-full.btn-small {
    display: block;
    font-size: 80%;
    margin: 20px auto 0;
    max-width: 180px;
    padding: 5px 10px;
    min-width: 100px; }
  .cta-full.btn-medium {
    font-size: 80%;
    margin: 20px auto 0;
    max-width: 180px;
    padding: 10px 10px;
    min-width: 100px; }

.apple-store {
  display: inline-block;
  width: 200px;
  height: 70px;
  margin: 0 20px 0 0;
  background-image: url("../img/apple_store.png");
  background-repeat: no-repeat;
  background-size: 200px 70px;
  background-position: center center; }

.play-store {
  display: inline-block;
  width: 200px;
  height: 70px;
  background-image: url("../img/play_store.png");
  background-repeat: no-repeat;
  background-size: 200px 70px;
  background-position: center center; }

.play-btn-holder {
  border: 1px solid #fff;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.5;
  position: absolute;
  right: 0;
  width: 200px;
  height: 200px;
  top: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media (min-width: 1280px) {
    .play-btn-holder {
      width: 200px;
      height: 200px; } }
  .play-btn-holder:hover {
    cursor: pointer;
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .play-btn-holder .play-btn {
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    bottom: 0;
    margin: auto;
    overflow: visible;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-width: 50px 0 50px 70px;
    left: 25px; }
    @media (min-width: 1280px) {
      .play-btn-holder .play-btn {
        width: 80px;
        height: 80px;
        border-width: 50px 0 50px 70px;
        left: 25px; } }
  .play-btn-holder p {
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
    white-space: nowrap; }
    @media (min-width: 767px) {
      .play-btn-holder p {
        font-size: 20px; } }

a.full-size-link {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2; }

/* Horizontal Carousel */
.big-image-slider {
  position: relative;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
  min-height: 460px;
  max-height: 460px;
  min-width: 330px; }
  @media (min-width: 600px) {
    .big-image-slider {
      min-height: 460px;
      max-height: 460px; } }
  @media (min-width: 767px) {
    .big-image-slider {
      min-height: 550px;
      max-height: 550px; } }
  @media (min-width: 1480px) {
    .big-image-slider {
      min-height: 650px;
      max-height: 650px; } }
  .big-image-slider .swiper-container {
    min-height: 460px;
    max-height: 460px; }
    @media (min-width: 600px) {
      .big-image-slider .swiper-container {
        min-height: 460px;
        max-height: 460px; } }
    @media (min-width: 767px) {
      .big-image-slider .swiper-container {
        min-height: 550px;
        max-height: 550px; } }
    @media (min-width: 1480px) {
      .big-image-slider .swiper-container {
        min-height: 650px;
        max-height: 650px; } }
    .big-image-slider .swiper-container .swiper-wrapper {
      min-height: 460px;
      max-height: 460px;
      height: 460px; }
      @media (min-width: 600px) {
        .big-image-slider .swiper-container .swiper-wrapper {
          min-height: 460px;
          max-height: 460px; } }
      @media (min-width: 767px) {
        .big-image-slider .swiper-container .swiper-wrapper {
          min-height: 550px;
          max-height: 550px; } }
      @media (min-width: 1480px) {
        .big-image-slider .swiper-container .swiper-wrapper {
          min-height: 650px;
          max-height: 650px; } }
      .big-image-slider .swiper-container .swiper-wrapper .swiper-slide {
        min-height: 460px; }
        @media (min-width: 600px) {
          .big-image-slider .swiper-container .swiper-wrapper .swiper-slide {
            min-height: 460px;
            max-height: 460px; } }
        @media (min-width: 767px) {
          .big-image-slider .swiper-container .swiper-wrapper .swiper-slide {
            min-height: 550px; } }
        @media (min-width: 1480px) {
          .big-image-slider .swiper-container .swiper-wrapper .swiper-slide {
            min-height: 650px;
            max-height: 650px; } }
    .big-image-slider .swiper-container .swiper-button-prev,
    .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-next {
      left: 10px;
      top: 53%; }
      @media (min-width: 1150px) {
        .big-image-slider .swiper-container .swiper-button-prev,
        .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-next {
          left: 3%;
          width: 70px;
          height: 70px;
          border: 2px solid #fff;
          border-radius: 50%;
          -webkit-transition: all 0.3s ease-out;
          -moz-transition: all 0.3s ease-out;
          -ms-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out; }
          .big-image-slider .swiper-container .swiper-button-prev:hover,
          .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-next:hover {
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            background-color: rgba(255, 255, 255, 0.2); } }
    .big-image-slider .swiper-container .swiper-button-next,
    .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-prev {
      right: 10px;
      top: 53%; }
      @media (min-width: 1150px) {
        .big-image-slider .swiper-container .swiper-button-next,
        .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-prev {
          right: 3%;
          width: 70px;
          height: 70px;
          border: 2px solid #fff;
          border-radius: 50%;
          -webkit-transition: all 0.3s ease-out;
          -moz-transition: all 0.3s ease-out;
          -ms-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out; }
          .big-image-slider .swiper-container .swiper-button-next:hover,
          .big-image-slider .swiper-container .swiper-container-rtl .swiper-button-prev:hover {
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            background-color: rgba(255, 255, 255, 0.2); } }
    .big-image-slider .swiper-container .swiper-pagination-bullets {
      bottom: 30px; }
    .big-image-slider .swiper-container .content-aligner {
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 50px 0; }
      @media (min-width: 600px) {
        .big-image-slider .swiper-container .content-aligner {
          min-height: 460px;
          max-height: 460px;
          height: 460px; } }
      @media (min-width: 767px) {
        .big-image-slider .swiper-container .content-aligner {
          min-height: 550px;
          height: 550px;
          padding: 0 50px; } }
      @media (min-width: 1150px) {
        .big-image-slider .swiper-container .content-aligner {
          padding: 0 90px; } }
      @media (min-width: 1480px) {
        .big-image-slider .swiper-container .content-aligner {
          min-height: 650px;
          max-height: 650px;
          height: 650px; } }
      .big-image-slider .swiper-container .content-aligner .img-content-wrapper {
        width: 0;
        float: none;
        position: relative; }
        @media (min-width: 1150px) {
          .big-image-slider .swiper-container .content-aligner .img-content-wrapper {
            width: 300px;
            float: left; } }
        .big-image-slider .swiper-container .content-aligner .img-content-wrapper img {
          width: 100%;
          height: auto;
          display: block; }
      .big-image-slider .swiper-container .content-aligner .text-wrapper {
        align-self: center;
        position: relative;
        text-align: center;
        color: #fff;
        width: 100%; }
        @media (min-width: 767px) {
          .big-image-slider .swiper-container .content-aligner .text-wrapper {
            width: 94%;
            max-width: 820px;
            top: 10px; } }
        .big-image-slider .swiper-container .content-aligner .text-wrapper h3, .big-image-slider .swiper-container .content-aligner .text-wrapper .headline {
          letter-spacing: 2.6px;
          color: #fff;
          display: block;
          padding: 0 5px;
          text-align: center;
          font-size: 9vmin;
          max-width: 6em;
          margin: 0 auto;
          text-shadow: 0 0 16px black; }
        .big-image-slider .swiper-container .content-aligner .text-wrapper p {
          font-size: 18px;
          font-weight: 600;
          letter-spacing: -0.4px;
          margin: 20px 0;
          text-transform: none;
          padding: 10px;
          text-align: left; }
          @media (min-width: 460px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper p {
              font-size: 16px; } }
          @media (min-width: 767px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper p {
              font-size: 16px; } }
          @media (min-width: 1150px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper p {
              font-size: 18px; } }
          @media (min-width: 960px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper p {
              font-size: 18px; } }
        .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-full, .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-transparent {
          max-width: 220px;
          min-width: 220px;
          font-size: 16px; }
          @media (min-width: 460px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-full, .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-transparent {
              max-width: 220px;
              min-width: 220px;
              font-size: 16px; } }
          @media (min-width: 767px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-full, .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-transparent {
              max-width: 250px;
              min-width: 250px;
              font-size: 16px; } }
          @media (min-width: 960px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-full, .big-image-slider .swiper-container .content-aligner .text-wrapper .cta-transparent {
              max-width: 300px;
              min-width: 300px;
              font-size: 20px; } }
        .big-image-slider .swiper-container .content-aligner .text-wrapper.right-text-wrapper {
          width: 100%;
          padding: 0; }
          @media (min-width: 1150px) {
            .big-image-slider .swiper-container .content-aligner .text-wrapper.right-text-wrapper {
              width: 74%;
              padding: 100px; } }
      @media (min-width: 1150px) {
        .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper {
          padding: 10px; } }
      @media (min-width: 1280px) {
        .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper {
          padding: 20px 50px; } }
      .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper .headline {
        font-size: 24px; }
        @media (min-width: 767px) {
          .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper .headline {
            font-size: 28px; } }
        @media (min-width: 960px) {
          .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper .headline {
            font-size: 40px; } }
        @media (min-width: 1150px) {
          .big-image-slider .swiper-container .content-aligner.floating-content .right-text-wrapper .headline {
            font-size: 28px; } }
    @media (min-width: 767px) {
      .big-image-slider .swiper-container.swiper-content .text-wrapper {
        top: 30px; } }
    .big-image-slider .swiper-container.swiper-content .text-wrapper h3, .big-image-slider .swiper-container.swiper-content .text-wrapper .headline {
      margin-bottom: 15px; }
    .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt {
      background-color: #fff;
      color: #595959;
      margin: 0 auto;
      padding: 15px 20px 10px;
      width: 100%; }
      @media (min-width: 767px) {
        .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt {
          width: 57%; } }
      @media (min-width: 1150px) {
        .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt {
          width: 100%;
          padding: 25px 25px 20px; } }
      .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt h4, .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt .sub-headline {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
        letter-spacing: 0.4px; }
        @media (min-width: 1150px) {
          .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt h4, .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt .sub-headline {
            font-size: 22px; } }
      .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt p {
        font-size: 14px;
        font-weight: 100;
        letter-spacing: -0.5px;
        line-height: 1.4;
        margin-bottom: 10px;
        text-transform: none; }
        @media (min-width: 1150px) {
          .big-image-slider .swiper-container.swiper-content .text-wrapper .content-txt p {
            font-size: 20px;
            margin-bottom: 20px; } }
  .big-image-slider .slider-wrapper-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 40px;
    position: absolute;
    z-index: 10; }
    .big-image-slider .slider-wrapper-overlay p {
      text-align: center;
      padding: 10px 20px;
      color: #3F94C8;
      text-transform: uppercase; }
      @media (min-width: 767px) {
        .big-image-slider .slider-wrapper-overlay p {
          text-align: right; } }
      .big-image-slider .slider-wrapper-overlay p span {
        margin-left: 15px;
        color: #fff; }
  .big-image-slider .swiper-pagination-bullet {
    background-color: #fff; }

.comments li {
  margin-bottom: 1em; }

.comment-container {
  overflow: hidden;
  margin-bottom: 1em;
  list-style: none; }

.comment-meta {
  float: left;
  width: 6.5em; }
  .comment-meta img {
    display: block;
    border: 1px solid #eee;
    margin-bottom: 0.5em; }

.comment-name {
  font-size: 0.75em; }

.comment-text {
  margin-left: 9em; }

/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("../fonts/icon-fonts//ionicons.eot?v=2.0.0");
  src: url("../fonts/icon-fonts//ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/icon-fonts//ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/icon-fonts//ionicons.woff?v=2.0.0") format("woff"), url("../fonts/icon-fonts//ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal; }
.ion, .ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.checkmark-list li:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ion-alert:before {
  content: ""; }

.ion-alert-circled:before {
  content: ""; }

.ion-android-add:before {
  content: ""; }

.ion-android-add-circle:before {
  content: ""; }

.ion-android-alarm-clock:before {
  content: ""; }

.ion-android-alert:before {
  content: ""; }

.ion-android-apps:before {
  content: ""; }

.ion-android-archive:before {
  content: ""; }

.ion-android-arrow-back:before {
  content: ""; }

.ion-android-arrow-down:before {
  content: ""; }

.ion-android-arrow-dropdown:before {
  content: ""; }

.ion-android-arrow-dropdown-circle:before {
  content: ""; }

.ion-android-arrow-dropleft:before {
  content: ""; }

.ion-android-arrow-dropleft-circle:before {
  content: ""; }

.ion-android-arrow-dropright:before {
  content: ""; }

.ion-android-arrow-dropright-circle:before {
  content: ""; }

.ion-android-arrow-dropup:before {
  content: ""; }

.ion-android-arrow-dropup-circle:before {
  content: ""; }

.ion-android-arrow-forward:before {
  content: ""; }

.ion-android-arrow-up:before {
  content: ""; }

.ion-android-attach:before {
  content: ""; }

.ion-android-bar:before {
  content: ""; }

.ion-android-bicycle:before {
  content: ""; }

.ion-android-boat:before {
  content: ""; }

.ion-android-bookmark:before {
  content: ""; }

.ion-android-bulb:before {
  content: ""; }

.ion-android-bus:before {
  content: ""; }

.ion-android-calendar:before {
  content: ""; }

.ion-android-call:before {
  content: ""; }

.ion-android-camera:before {
  content: ""; }

.ion-android-cancel:before {
  content: ""; }

.ion-android-car:before {
  content: ""; }

.ion-android-cart:before {
  content: ""; }

.ion-android-chat:before {
  content: ""; }

.ion-android-checkbox:before {
  content: ""; }

.ion-android-checkbox-blank:before {
  content: ""; }

.ion-android-checkbox-outline:before {
  content: ""; }

.ion-android-checkbox-outline-blank:before {
  content: ""; }

.ion-android-checkmark-circle:before {
  content: ""; }

.ion-android-clipboard:before {
  content: ""; }

.ion-android-close:before {
  content: ""; }

.ion-android-cloud:before {
  content: ""; }

.ion-android-cloud-circle:before {
  content: ""; }

.ion-android-cloud-done:before {
  content: ""; }

.ion-android-cloud-outline:before {
  content: ""; }

.ion-android-color-palette:before {
  content: ""; }

.ion-android-compass:before {
  content: ""; }

.ion-android-contact:before {
  content: ""; }

.ion-android-contacts:before {
  content: ""; }

.ion-android-contract:before {
  content: ""; }

.ion-android-create:before {
  content: ""; }

.ion-android-delete:before {
  content: ""; }

.ion-android-desktop:before {
  content: ""; }

.ion-android-document:before {
  content: ""; }

.ion-android-done:before {
  content: ""; }

.ion-android-done-all:before {
  content: ""; }

.ion-android-download:before {
  content: ""; }

.ion-android-drafts:before {
  content: ""; }

.ion-android-exit:before {
  content: ""; }

.ion-android-expand:before {
  content: ""; }

.ion-android-favorite:before {
  content: ""; }

.ion-android-favorite-outline:before {
  content: ""; }

.ion-android-film:before {
  content: ""; }

.ion-android-folder:before {
  content: ""; }

.ion-android-folder-open:before {
  content: ""; }

.ion-android-funnel:before {
  content: ""; }

.ion-android-globe:before {
  content: ""; }

.ion-android-hand:before {
  content: ""; }

.ion-android-hangout:before {
  content: ""; }

.ion-android-happy:before {
  content: ""; }

.ion-android-home:before {
  content: ""; }

.ion-android-image:before {
  content: ""; }

.ion-android-laptop:before {
  content: ""; }

.ion-android-list:before {
  content: ""; }

.ion-android-locate:before {
  content: ""; }

.ion-android-lock:before {
  content: ""; }

.ion-android-mail:before {
  content: ""; }

.ion-android-map:before {
  content: ""; }

.ion-android-menu:before {
  content: ""; }

.ion-android-microphone:before {
  content: ""; }

.ion-android-microphone-off:before {
  content: ""; }

.ion-android-more-horizontal:before {
  content: ""; }

.ion-android-more-vertical:before {
  content: ""; }

.ion-android-navigate:before {
  content: ""; }

.ion-android-notifications:before {
  content: ""; }

.ion-android-notifications-none:before {
  content: ""; }

.ion-android-notifications-off:before {
  content: ""; }

.ion-android-open:before {
  content: ""; }

.ion-android-options:before {
  content: ""; }

.ion-android-people:before {
  content: ""; }

.ion-android-person:before {
  content: ""; }

.ion-android-person-add:before {
  content: ""; }

.ion-android-phone-landscape:before {
  content: ""; }

.ion-android-phone-portrait:before {
  content: ""; }

.ion-android-pin:before {
  content: ""; }

.ion-android-plane:before {
  content: ""; }

.ion-android-playstore:before {
  content: ""; }

.ion-android-print:before {
  content: ""; }

.ion-android-radio-button-off:before {
  content: ""; }

.ion-android-radio-button-on:before {
  content: ""; }

.ion-android-refresh:before {
  content: ""; }

.ion-android-remove:before {
  content: ""; }

.ion-android-remove-circle:before {
  content: ""; }

.ion-android-restaurant:before {
  content: ""; }

.ion-android-sad:before {
  content: ""; }

.ion-android-search:before {
  content: ""; }

.ion-android-send:before {
  content: ""; }

.ion-android-settings:before {
  content: ""; }

.ion-android-share:before {
  content: ""; }

.ion-android-share-alt:before {
  content: ""; }

.ion-android-star:before {
  content: ""; }

.ion-android-star-half:before {
  content: ""; }

.ion-android-star-outline:before {
  content: ""; }

.ion-android-stopwatch:before {
  content: ""; }

.ion-android-subway:before {
  content: ""; }

.ion-android-sunny:before {
  content: ""; }

.ion-android-sync:before {
  content: ""; }

.ion-android-textsms:before {
  content: ""; }

.ion-android-time:before {
  content: ""; }

.ion-android-train:before {
  content: ""; }

.ion-android-unlock:before {
  content: ""; }

.ion-android-upload:before {
  content: ""; }

.ion-android-volume-down:before {
  content: ""; }

.ion-android-volume-mute:before {
  content: ""; }

.ion-android-volume-off:before {
  content: ""; }

.ion-android-volume-up:before {
  content: ""; }

.ion-android-walk:before {
  content: ""; }

.ion-android-warning:before {
  content: ""; }

.ion-android-watch:before {
  content: ""; }

.ion-android-wifi:before {
  content: ""; }

.ion-aperture:before {
  content: ""; }

.ion-archive:before {
  content: ""; }

.ion-arrow-down-a:before {
  content: ""; }

.ion-arrow-down-b:before {
  content: ""; }

.ion-arrow-down-c:before {
  content: ""; }

.ion-arrow-expand:before {
  content: ""; }

.ion-arrow-graph-down-left:before {
  content: ""; }

.ion-arrow-graph-down-right:before {
  content: ""; }

.ion-arrow-graph-up-left:before {
  content: ""; }

.ion-arrow-graph-up-right:before {
  content: ""; }

.ion-arrow-left-a:before {
  content: ""; }

.ion-arrow-left-b:before {
  content: ""; }

.ion-arrow-left-c:before {
  content: ""; }

.ion-arrow-move:before {
  content: ""; }

.ion-arrow-resize:before {
  content: ""; }

.ion-arrow-return-left:before {
  content: ""; }

.ion-arrow-return-right:before {
  content: ""; }

.ion-arrow-right-a:before {
  content: ""; }

.ion-arrow-right-b:before {
  content: ""; }

.ion-arrow-right-c:before {
  content: ""; }

.ion-arrow-shrink:before {
  content: ""; }

.ion-arrow-swap:before {
  content: ""; }

.ion-arrow-up-a:before {
  content: ""; }

.ion-arrow-up-b:before {
  content: ""; }

.ion-arrow-up-c:before {
  content: ""; }

.ion-asterisk:before {
  content: ""; }

.ion-at:before {
  content: ""; }

.ion-backspace:before {
  content: ""; }

.ion-backspace-outline:before {
  content: ""; }

.ion-bag:before {
  content: ""; }

.ion-battery-charging:before {
  content: ""; }

.ion-battery-empty:before {
  content: ""; }

.ion-battery-full:before {
  content: ""; }

.ion-battery-half:before {
  content: ""; }

.ion-battery-low:before {
  content: ""; }

.ion-beaker:before {
  content: ""; }

.ion-beer:before {
  content: ""; }

.ion-bluetooth:before {
  content: ""; }

.ion-bonfire:before {
  content: ""; }

.ion-bookmark:before {
  content: ""; }

.ion-bowtie:before {
  content: ""; }

.ion-briefcase:before {
  content: ""; }

.ion-bug:before {
  content: ""; }

.ion-calculator:before {
  content: ""; }

.ion-calendar:before {
  content: ""; }

.ion-camera:before {
  content: ""; }

.ion-card:before {
  content: ""; }

.ion-cash:before {
  content: ""; }

.ion-chatbox:before {
  content: ""; }

.ion-chatbox-working:before {
  content: ""; }

.ion-chatboxes:before {
  content: ""; }

.ion-chatbubble:before {
  content: ""; }

.ion-chatbubble-working:before {
  content: ""; }

.ion-chatbubbles:before {
  content: ""; }

.ion-checkmark:before, .checkmark-list li:before {
  content: ""; }

.ion-checkmark-circled:before {
  content: ""; }

.ion-checkmark-round:before {
  content: ""; }

.ion-chevron-down:before {
  content: ""; }

.ion-chevron-left:before {
  content: ""; }

.ion-chevron-right:before {
  content: ""; }

.ion-chevron-up:before {
  content: ""; }

.ion-clipboard:before {
  content: ""; }

.ion-clock:before {
  content: ""; }

.ion-close:before {
  content: ""; }

.ion-close-circled:before {
  content: ""; }

.ion-close-round:before {
  content: ""; }

.ion-closed-captioning:before {
  content: ""; }

.ion-cloud:before {
  content: ""; }

.ion-code:before {
  content: ""; }

.ion-code-download:before {
  content: ""; }

.ion-code-working:before {
  content: ""; }

.ion-coffee:before {
  content: ""; }

.ion-compass:before {
  content: ""; }

.ion-compose:before {
  content: ""; }

.ion-connection-bars:before {
  content: ""; }

.ion-contrast:before {
  content: ""; }

.ion-crop:before {
  content: ""; }

.ion-cube:before {
  content: ""; }

.ion-disc:before {
  content: ""; }

.ion-document:before {
  content: ""; }

.ion-document-text:before {
  content: ""; }

.ion-drag:before {
  content: ""; }

.ion-earth:before {
  content: ""; }

.ion-easel:before {
  content: ""; }

.ion-edit:before {
  content: ""; }

.ion-egg:before {
  content: ""; }

.ion-eject:before {
  content: ""; }

.ion-email:before {
  content: ""; }

.ion-email-unread:before {
  content: ""; }

.ion-erlenmeyer-flask:before {
  content: ""; }

.ion-erlenmeyer-flask-bubbles:before {
  content: ""; }

.ion-eye:before {
  content: ""; }

.ion-eye-disabled:before {
  content: ""; }

.ion-female:before {
  content: ""; }

.ion-filing:before {
  content: ""; }

.ion-film-marker:before {
  content: ""; }

.ion-fireball:before {
  content: ""; }

.ion-flag:before {
  content: ""; }

.ion-flame:before {
  content: ""; }

.ion-flash:before {
  content: ""; }

.ion-flash-off:before {
  content: ""; }

.ion-folder:before {
  content: ""; }

.ion-fork:before {
  content: ""; }

.ion-fork-repo:before {
  content: ""; }

.ion-forward:before {
  content: ""; }

.ion-funnel:before {
  content: ""; }

.ion-gear-a:before {
  content: ""; }

.ion-gear-b:before {
  content: ""; }

.ion-grid:before {
  content: ""; }

.ion-hammer:before {
  content: ""; }

.ion-happy:before {
  content: ""; }

.ion-happy-outline:before {
  content: ""; }

.ion-headphone:before {
  content: ""; }

.ion-heart:before {
  content: ""; }

.ion-heart-broken:before {
  content: ""; }

.ion-help:before {
  content: ""; }

.ion-help-buoy:before {
  content: ""; }

.ion-help-circled:before {
  content: ""; }

.ion-home:before {
  content: ""; }

.ion-icecream:before {
  content: ""; }

.ion-image:before {
  content: ""; }

.ion-images:before {
  content: ""; }

.ion-information:before {
  content: ""; }

.ion-information-circled:before {
  content: ""; }

.ion-ionic:before {
  content: ""; }

.ion-ios-alarm:before {
  content: ""; }

.ion-ios-alarm-outline:before {
  content: ""; }

.ion-ios-albums:before {
  content: ""; }

.ion-ios-albums-outline:before {
  content: ""; }

.ion-ios-americanfootball:before {
  content: ""; }

.ion-ios-americanfootball-outline:before {
  content: ""; }

.ion-ios-analytics:before {
  content: ""; }

.ion-ios-analytics-outline:before {
  content: ""; }

.ion-ios-arrow-back:before {
  content: ""; }

.ion-ios-arrow-down:before {
  content: ""; }

.ion-ios-arrow-forward:before {
  content: ""; }

.ion-ios-arrow-left:before {
  content: ""; }

.ion-ios-arrow-right:before {
  content: ""; }

.ion-ios-arrow-thin-down:before {
  content: ""; }

.ion-ios-arrow-thin-left:before {
  content: ""; }

.ion-ios-arrow-thin-right:before {
  content: ""; }

.ion-ios-arrow-thin-up:before {
  content: ""; }

.ion-ios-arrow-up:before {
  content: ""; }

.ion-ios-at:before {
  content: ""; }

.ion-ios-at-outline:before {
  content: ""; }

.ion-ios-barcode:before {
  content: ""; }

.ion-ios-barcode-outline:before {
  content: ""; }

.ion-ios-baseball:before {
  content: ""; }

.ion-ios-baseball-outline:before {
  content: ""; }

.ion-ios-basketball:before {
  content: ""; }

.ion-ios-basketball-outline:before {
  content: ""; }

.ion-ios-bell:before {
  content: ""; }

.ion-ios-bell-outline:before {
  content: ""; }

.ion-ios-body:before {
  content: ""; }

.ion-ios-body-outline:before {
  content: ""; }

.ion-ios-bolt:before {
  content: ""; }

.ion-ios-bolt-outline:before {
  content: ""; }

.ion-ios-book:before {
  content: ""; }

.ion-ios-book-outline:before {
  content: ""; }

.ion-ios-bookmarks:before {
  content: ""; }

.ion-ios-bookmarks-outline:before {
  content: ""; }

.ion-ios-box:before {
  content: ""; }

.ion-ios-box-outline:before {
  content: ""; }

.ion-ios-briefcase:before {
  content: ""; }

.ion-ios-briefcase-outline:before {
  content: ""; }

.ion-ios-browsers:before {
  content: ""; }

.ion-ios-browsers-outline:before {
  content: ""; }

.ion-ios-calculator:before {
  content: ""; }

.ion-ios-calculator-outline:before {
  content: ""; }

.ion-ios-calendar:before {
  content: ""; }

.ion-ios-calendar-outline:before {
  content: ""; }

.ion-ios-camera:before {
  content: ""; }

.ion-ios-camera-outline:before {
  content: ""; }

.ion-ios-cart:before {
  content: ""; }

.ion-ios-cart-outline:before {
  content: ""; }

.ion-ios-chatboxes:before {
  content: ""; }

.ion-ios-chatboxes-outline:before {
  content: ""; }

.ion-ios-chatbubble:before {
  content: ""; }

.ion-ios-chatbubble-outline:before {
  content: ""; }

.ion-ios-checkmark:before {
  content: ""; }

.ion-ios-checkmark-empty:before {
  content: ""; }

.ion-ios-checkmark-outline:before {
  content: ""; }

.ion-ios-circle-filled:before {
  content: ""; }

.ion-ios-circle-outline:before {
  content: ""; }

.ion-ios-clock:before {
  content: ""; }

.ion-ios-clock-outline:before {
  content: ""; }

.ion-ios-close:before {
  content: ""; }

.ion-ios-close-empty:before {
  content: ""; }

.ion-ios-close-outline:before {
  content: ""; }

.ion-ios-cloud:before {
  content: ""; }

.ion-ios-cloud-download:before {
  content: ""; }

.ion-ios-cloud-download-outline:before {
  content: ""; }

.ion-ios-cloud-outline:before {
  content: ""; }

.ion-ios-cloud-upload:before {
  content: ""; }

.ion-ios-cloud-upload-outline:before {
  content: ""; }

.ion-ios-cloudy:before {
  content: ""; }

.ion-ios-cloudy-night:before {
  content: ""; }

.ion-ios-cloudy-night-outline:before {
  content: ""; }

.ion-ios-cloudy-outline:before {
  content: ""; }

.ion-ios-cog:before {
  content: ""; }

.ion-ios-cog-outline:before {
  content: ""; }

.ion-ios-color-filter:before {
  content: ""; }

.ion-ios-color-filter-outline:before {
  content: ""; }

.ion-ios-color-wand:before {
  content: ""; }

.ion-ios-color-wand-outline:before {
  content: ""; }

.ion-ios-compose:before {
  content: ""; }

.ion-ios-compose-outline:before {
  content: ""; }

.ion-ios-contact:before {
  content: ""; }

.ion-ios-contact-outline:before {
  content: ""; }

.ion-ios-copy:before {
  content: ""; }

.ion-ios-copy-outline:before {
  content: ""; }

.ion-ios-crop:before {
  content: ""; }

.ion-ios-crop-strong:before {
  content: ""; }

.ion-ios-download:before {
  content: ""; }

.ion-ios-download-outline:before {
  content: ""; }

.ion-ios-drag:before {
  content: ""; }

.ion-ios-email:before {
  content: ""; }

.ion-ios-email-outline:before {
  content: ""; }

.ion-ios-eye:before {
  content: ""; }

.ion-ios-eye-outline:before {
  content: ""; }

.ion-ios-fastforward:before {
  content: ""; }

.ion-ios-fastforward-outline:before {
  content: ""; }

.ion-ios-filing:before {
  content: ""; }

.ion-ios-filing-outline:before {
  content: ""; }

.ion-ios-film:before {
  content: ""; }

.ion-ios-film-outline:before {
  content: ""; }

.ion-ios-flag:before {
  content: ""; }

.ion-ios-flag-outline:before {
  content: ""; }

.ion-ios-flame:before {
  content: ""; }

.ion-ios-flame-outline:before {
  content: ""; }

.ion-ios-flask:before {
  content: ""; }

.ion-ios-flask-outline:before {
  content: ""; }

.ion-ios-flower:before {
  content: ""; }

.ion-ios-flower-outline:before {
  content: ""; }

.ion-ios-folder:before {
  content: ""; }

.ion-ios-folder-outline:before {
  content: ""; }

.ion-ios-football:before {
  content: ""; }

.ion-ios-football-outline:before {
  content: ""; }

.ion-ios-game-controller-a:before {
  content: ""; }

.ion-ios-game-controller-a-outline:before {
  content: ""; }

.ion-ios-game-controller-b:before {
  content: ""; }

.ion-ios-game-controller-b-outline:before {
  content: ""; }

.ion-ios-gear:before {
  content: ""; }

.ion-ios-gear-outline:before {
  content: ""; }

.ion-ios-glasses:before {
  content: ""; }

.ion-ios-glasses-outline:before {
  content: ""; }

.ion-ios-grid-view:before {
  content: ""; }

.ion-ios-grid-view-outline:before {
  content: ""; }

.ion-ios-heart:before {
  content: ""; }

.ion-ios-heart-outline:before {
  content: ""; }

.ion-ios-help:before {
  content: ""; }

.ion-ios-help-empty:before {
  content: ""; }

.ion-ios-help-outline:before {
  content: ""; }

.ion-ios-home:before {
  content: ""; }

.ion-ios-home-outline:before {
  content: ""; }

.ion-ios-infinite:before {
  content: ""; }

.ion-ios-infinite-outline:before {
  content: ""; }

.ion-ios-information:before {
  content: ""; }

.ion-ios-information-empty:before {
  content: ""; }

.ion-ios-information-outline:before {
  content: ""; }

.ion-ios-ionic-outline:before {
  content: ""; }

.ion-ios-keypad:before {
  content: ""; }

.ion-ios-keypad-outline:before {
  content: ""; }

.ion-ios-lightbulb:before {
  content: ""; }

.ion-ios-lightbulb-outline:before {
  content: ""; }

.ion-ios-list:before {
  content: ""; }

.ion-ios-list-outline:before {
  content: ""; }

.ion-ios-location:before {
  content: ""; }

.ion-ios-location-outline:before {
  content: ""; }

.ion-ios-locked:before {
  content: ""; }

.ion-ios-locked-outline:before {
  content: ""; }

.ion-ios-loop:before {
  content: ""; }

.ion-ios-loop-strong:before {
  content: ""; }

.ion-ios-medical:before {
  content: ""; }

.ion-ios-medical-outline:before {
  content: ""; }

.ion-ios-medkit:before {
  content: ""; }

.ion-ios-medkit-outline:before {
  content: ""; }

.ion-ios-mic:before {
  content: ""; }

.ion-ios-mic-off:before {
  content: ""; }

.ion-ios-mic-outline:before {
  content: ""; }

.ion-ios-minus:before {
  content: ""; }

.ion-ios-minus-empty:before {
  content: ""; }

.ion-ios-minus-outline:before {
  content: ""; }

.ion-ios-monitor:before {
  content: ""; }

.ion-ios-monitor-outline:before {
  content: ""; }

.ion-ios-moon:before {
  content: ""; }

.ion-ios-moon-outline:before {
  content: ""; }

.ion-ios-more:before {
  content: ""; }

.ion-ios-more-outline:before {
  content: ""; }

.ion-ios-musical-note:before {
  content: ""; }

.ion-ios-musical-notes:before {
  content: ""; }

.ion-ios-navigate:before {
  content: ""; }

.ion-ios-navigate-outline:before {
  content: ""; }

.ion-ios-nutrition:before {
  content: ""; }

.ion-ios-nutrition-outline:before {
  content: ""; }

.ion-ios-paper:before {
  content: ""; }

.ion-ios-paper-outline:before {
  content: ""; }

.ion-ios-paperplane:before {
  content: ""; }

.ion-ios-paperplane-outline:before {
  content: ""; }

.ion-ios-partlysunny:before {
  content: ""; }

.ion-ios-partlysunny-outline:before {
  content: ""; }

.ion-ios-pause:before {
  content: ""; }

.ion-ios-pause-outline:before {
  content: ""; }

.ion-ios-paw:before {
  content: ""; }

.ion-ios-paw-outline:before {
  content: ""; }

.ion-ios-people:before {
  content: ""; }

.ion-ios-people-outline:before {
  content: ""; }

.ion-ios-person:before {
  content: ""; }

.ion-ios-person-outline:before {
  content: ""; }

.ion-ios-personadd:before {
  content: ""; }

.ion-ios-personadd-outline:before {
  content: ""; }

.ion-ios-photos:before {
  content: ""; }

.ion-ios-photos-outline:before {
  content: ""; }

.ion-ios-pie:before {
  content: ""; }

.ion-ios-pie-outline:before {
  content: ""; }

.ion-ios-pint:before {
  content: ""; }

.ion-ios-pint-outline:before {
  content: ""; }

.ion-ios-play:before {
  content: ""; }

.ion-ios-play-outline:before {
  content: ""; }

.ion-ios-plus:before {
  content: ""; }

.ion-ios-plus-empty:before {
  content: ""; }

.ion-ios-plus-outline:before {
  content: ""; }

.ion-ios-pricetag:before {
  content: ""; }

.ion-ios-pricetag-outline:before {
  content: ""; }

.ion-ios-pricetags:before {
  content: ""; }

.ion-ios-pricetags-outline:before {
  content: ""; }

.ion-ios-printer:before {
  content: ""; }

.ion-ios-printer-outline:before {
  content: ""; }

.ion-ios-pulse:before {
  content: ""; }

.ion-ios-pulse-strong:before {
  content: ""; }

.ion-ios-rainy:before {
  content: ""; }

.ion-ios-rainy-outline:before {
  content: ""; }

.ion-ios-recording:before {
  content: ""; }

.ion-ios-recording-outline:before {
  content: ""; }

.ion-ios-redo:before {
  content: ""; }

.ion-ios-redo-outline:before {
  content: ""; }

.ion-ios-refresh:before {
  content: ""; }

.ion-ios-refresh-empty:before {
  content: ""; }

.ion-ios-refresh-outline:before {
  content: ""; }

.ion-ios-reload:before {
  content: ""; }

.ion-ios-reverse-camera:before {
  content: ""; }

.ion-ios-reverse-camera-outline:before {
  content: ""; }

.ion-ios-rewind:before {
  content: ""; }

.ion-ios-rewind-outline:before {
  content: ""; }

.ion-ios-rose:before {
  content: ""; }

.ion-ios-rose-outline:before {
  content: ""; }

.ion-ios-search:before {
  content: ""; }

.ion-ios-search-strong:before {
  content: ""; }

.ion-ios-settings:before {
  content: ""; }

.ion-ios-settings-strong:before {
  content: ""; }

.ion-ios-shuffle:before {
  content: ""; }

.ion-ios-shuffle-strong:before {
  content: ""; }

.ion-ios-skipbackward:before {
  content: ""; }

.ion-ios-skipbackward-outline:before {
  content: ""; }

.ion-ios-skipforward:before {
  content: ""; }

.ion-ios-skipforward-outline:before {
  content: ""; }

.ion-ios-snowy:before {
  content: ""; }

.ion-ios-speedometer:before {
  content: ""; }

.ion-ios-speedometer-outline:before {
  content: ""; }

.ion-ios-star:before {
  content: ""; }

.ion-ios-star-half:before {
  content: ""; }

.ion-ios-star-outline:before {
  content: ""; }

.ion-ios-stopwatch:before {
  content: ""; }

.ion-ios-stopwatch-outline:before {
  content: ""; }

.ion-ios-sunny:before {
  content: ""; }

.ion-ios-sunny-outline:before {
  content: ""; }

.ion-ios-telephone:before {
  content: ""; }

.ion-ios-telephone-outline:before {
  content: ""; }

.ion-ios-tennisball:before {
  content: ""; }

.ion-ios-tennisball-outline:before {
  content: ""; }

.ion-ios-thunderstorm:before {
  content: ""; }

.ion-ios-thunderstorm-outline:before {
  content: ""; }

.ion-ios-time:before {
  content: ""; }

.ion-ios-time-outline:before {
  content: ""; }

.ion-ios-timer:before {
  content: ""; }

.ion-ios-timer-outline:before {
  content: ""; }

.ion-ios-toggle:before {
  content: ""; }

.ion-ios-toggle-outline:before {
  content: ""; }

.ion-ios-trash:before {
  content: ""; }

.ion-ios-trash-outline:before {
  content: ""; }

.ion-ios-undo:before {
  content: ""; }

.ion-ios-undo-outline:before {
  content: ""; }

.ion-ios-unlocked:before {
  content: ""; }

.ion-ios-unlocked-outline:before {
  content: ""; }

.ion-ios-upload:before {
  content: ""; }

.ion-ios-upload-outline:before {
  content: ""; }

.ion-ios-videocam:before {
  content: ""; }

.ion-ios-videocam-outline:before {
  content: ""; }

.ion-ios-volume-high:before {
  content: ""; }

.ion-ios-volume-low:before {
  content: ""; }

.ion-ios-wineglass:before {
  content: ""; }

.ion-ios-wineglass-outline:before {
  content: ""; }

.ion-ios-world:before {
  content: ""; }

.ion-ios-world-outline:before {
  content: ""; }

.ion-ipad:before {
  content: ""; }

.ion-iphone:before {
  content: ""; }

.ion-ipod:before {
  content: ""; }

.ion-jet:before {
  content: ""; }

.ion-key:before {
  content: ""; }

.ion-knife:before {
  content: ""; }

.ion-laptop:before {
  content: ""; }

.ion-leaf:before {
  content: ""; }

.ion-levels:before {
  content: ""; }

.ion-lightbulb:before {
  content: ""; }

.ion-link:before {
  content: ""; }

.ion-load-a:before {
  content: ""; }

.ion-load-b:before {
  content: ""; }

.ion-load-c:before {
  content: ""; }

.ion-load-d:before {
  content: ""; }

.ion-location:before {
  content: ""; }

.ion-lock-combination:before {
  content: ""; }

.ion-locked:before {
  content: ""; }

.ion-log-in:before {
  content: ""; }

.ion-log-out:before {
  content: ""; }

.ion-loop:before {
  content: ""; }

.ion-magnet:before {
  content: ""; }

.ion-male:before {
  content: ""; }

.ion-man:before {
  content: ""; }

.ion-map:before {
  content: ""; }

.ion-medkit:before {
  content: ""; }

.ion-merge:before {
  content: ""; }

.ion-mic-a:before {
  content: ""; }

.ion-mic-b:before {
  content: ""; }

.ion-mic-c:before {
  content: ""; }

.ion-minus:before {
  content: ""; }

.ion-minus-circled:before {
  content: ""; }

.ion-minus-round:before {
  content: ""; }

.ion-model-s:before {
  content: ""; }

.ion-monitor:before {
  content: ""; }

.ion-more:before {
  content: ""; }

.ion-mouse:before {
  content: ""; }

.ion-music-note:before {
  content: ""; }

.ion-navicon:before {
  content: ""; }

.ion-navicon-round:before {
  content: ""; }

.ion-navigate:before {
  content: ""; }

.ion-network:before {
  content: ""; }

.ion-no-smoking:before {
  content: ""; }

.ion-nuclear:before {
  content: ""; }

.ion-outlet:before {
  content: ""; }

.ion-paintbrush:before {
  content: ""; }

.ion-paintbucket:before {
  content: ""; }

.ion-paper-airplane:before {
  content: ""; }

.ion-paperclip:before {
  content: ""; }

.ion-pause:before {
  content: ""; }

.ion-person:before {
  content: ""; }

.ion-person-add:before {
  content: ""; }

.ion-person-stalker:before {
  content: ""; }

.ion-pie-graph:before {
  content: ""; }

.ion-pin:before {
  content: ""; }

.ion-pinpoint:before {
  content: ""; }

.ion-pizza:before {
  content: ""; }

.ion-plane:before {
  content: ""; }

.ion-planet:before {
  content: ""; }

.ion-play:before {
  content: ""; }

.ion-playstation:before {
  content: ""; }

.ion-plus:before {
  content: ""; }

.ion-plus-circled:before {
  content: ""; }

.ion-plus-round:before {
  content: ""; }

.ion-podium:before {
  content: ""; }

.ion-pound:before {
  content: ""; }

.ion-power:before {
  content: ""; }

.ion-pricetag:before {
  content: ""; }

.ion-pricetags:before {
  content: ""; }

.ion-printer:before {
  content: ""; }

.ion-pull-request:before {
  content: ""; }

.ion-qr-scanner:before {
  content: ""; }

.ion-quote:before {
  content: ""; }

.ion-radio-waves:before {
  content: ""; }

.ion-record:before {
  content: ""; }

.ion-refresh:before {
  content: ""; }

.ion-reply:before {
  content: ""; }

.ion-reply-all:before {
  content: ""; }

.ion-ribbon-a:before {
  content: ""; }

.ion-ribbon-b:before {
  content: ""; }

.ion-sad:before {
  content: ""; }

.ion-sad-outline:before {
  content: ""; }

.ion-scissors:before {
  content: ""; }

.ion-search:before {
  content: ""; }

.ion-settings:before {
  content: ""; }

.ion-share:before {
  content: ""; }

.ion-shuffle:before {
  content: ""; }

.ion-skip-backward:before {
  content: ""; }

.ion-skip-forward:before {
  content: ""; }

.ion-social-android:before {
  content: ""; }

.ion-social-android-outline:before {
  content: ""; }

.ion-social-angular:before {
  content: ""; }

.ion-social-angular-outline:before {
  content: ""; }

.ion-social-apple:before {
  content: ""; }

.ion-social-apple-outline:before {
  content: ""; }

.ion-social-bitcoin:before {
  content: ""; }

.ion-social-bitcoin-outline:before {
  content: ""; }

.ion-social-buffer:before {
  content: ""; }

.ion-social-buffer-outline:before {
  content: ""; }

.ion-social-chrome:before {
  content: ""; }

.ion-social-chrome-outline:before {
  content: ""; }

.ion-social-codepen:before {
  content: ""; }

.ion-social-codepen-outline:before {
  content: ""; }

.ion-social-css3:before {
  content: ""; }

.ion-social-css3-outline:before {
  content: ""; }

.ion-social-designernews:before {
  content: ""; }

.ion-social-designernews-outline:before {
  content: ""; }

.ion-social-dribbble:before {
  content: ""; }

.ion-social-dribbble-outline:before {
  content: ""; }

.ion-social-dropbox:before {
  content: ""; }

.ion-social-dropbox-outline:before {
  content: ""; }

.ion-social-euro:before {
  content: ""; }

.ion-social-euro-outline:before {
  content: ""; }

.ion-social-facebook:before {
  content: ""; }

.ion-social-facebook-outline:before {
  content: ""; }

.ion-social-foursquare:before {
  content: ""; }

.ion-social-foursquare-outline:before {
  content: ""; }

.ion-social-freebsd-devil:before {
  content: ""; }

.ion-social-github:before {
  content: ""; }

.ion-social-github-outline:before {
  content: ""; }

.ion-social-google:before {
  content: ""; }

.ion-social-google-outline:before {
  content: ""; }

.ion-social-googleplus:before {
  content: ""; }

.ion-social-googleplus-outline:before {
  content: ""; }

.ion-social-hackernews:before {
  content: ""; }

.ion-social-hackernews-outline:before {
  content: ""; }

.ion-social-html5:before {
  content: ""; }

.ion-social-html5-outline:before {
  content: ""; }

.ion-social-instagram:before {
  content: ""; }

.ion-social-instagram-outline:before {
  content: ""; }

.ion-social-javascript:before {
  content: ""; }

.ion-social-javascript-outline:before {
  content: ""; }

.ion-social-linkedin:before {
  content: ""; }

.ion-social-linkedin-outline:before {
  content: ""; }

.ion-social-markdown:before {
  content: ""; }

.ion-social-nodejs:before {
  content: ""; }

.ion-social-octocat:before {
  content: ""; }

.ion-social-pinterest:before {
  content: ""; }

.ion-social-pinterest-outline:before {
  content: ""; }

.ion-social-python:before {
  content: ""; }

.ion-social-reddit:before {
  content: ""; }

.ion-social-reddit-outline:before {
  content: ""; }

.ion-social-rss:before {
  content: ""; }

.ion-social-rss-outline:before {
  content: ""; }

.ion-social-sass:before {
  content: ""; }

.ion-social-skype:before {
  content: ""; }

.ion-social-skype-outline:before {
  content: ""; }

.ion-social-snapchat:before {
  content: ""; }

.ion-social-snapchat-outline:before {
  content: ""; }

.ion-social-tumblr:before {
  content: ""; }

.ion-social-tumblr-outline:before {
  content: ""; }

.ion-social-tux:before {
  content: ""; }

.ion-social-twitch:before {
  content: ""; }

.ion-social-twitch-outline:before {
  content: ""; }

.ion-social-twitter:before {
  content: ""; }

.ion-social-twitter-outline:before {
  content: ""; }

.ion-social-usd:before {
  content: ""; }

.ion-social-usd-outline:before {
  content: ""; }

.ion-social-vimeo:before {
  content: ""; }

.ion-social-vimeo-outline:before {
  content: ""; }

.ion-social-whatsapp:before {
  content: ""; }

.ion-social-whatsapp-outline:before {
  content: ""; }

.ion-social-windows:before {
  content: ""; }

.ion-social-windows-outline:before {
  content: ""; }

.ion-social-wordpress:before {
  content: ""; }

.ion-social-wordpress-outline:before {
  content: ""; }

.ion-social-yahoo:before {
  content: ""; }

.ion-social-yahoo-outline:before {
  content: ""; }

.ion-social-yen:before {
  content: ""; }

.ion-social-yen-outline:before {
  content: ""; }

.ion-social-youtube:before {
  content: ""; }

.ion-social-youtube-outline:before {
  content: ""; }

.ion-soup-can:before {
  content: ""; }

.ion-soup-can-outline:before {
  content: ""; }

.ion-speakerphone:before {
  content: ""; }

.ion-speedometer:before {
  content: ""; }

.ion-spoon:before {
  content: ""; }

.ion-star:before {
  content: ""; }

.ion-stats-bars:before {
  content: ""; }

.ion-steam:before {
  content: ""; }

.ion-stop:before {
  content: ""; }

.ion-thermometer:before {
  content: ""; }

.ion-thumbsdown:before {
  content: ""; }

.ion-thumbsup:before {
  content: ""; }

.ion-toggle:before {
  content: ""; }

.ion-toggle-filled:before {
  content: ""; }

.ion-transgender:before {
  content: ""; }

.ion-trash-a:before {
  content: ""; }

.ion-trash-b:before {
  content: ""; }

.ion-trophy:before {
  content: ""; }

.ion-tshirt:before {
  content: ""; }

.ion-tshirt-outline:before {
  content: ""; }

.ion-umbrella:before {
  content: ""; }

.ion-university:before {
  content: ""; }

.ion-unlocked:before {
  content: ""; }

.ion-upload:before {
  content: ""; }

.ion-usb:before {
  content: ""; }

.ion-videocamera:before {
  content: ""; }

.ion-volume-high:before {
  content: ""; }

.ion-volume-low:before {
  content: ""; }

.ion-volume-medium:before {
  content: ""; }

.ion-volume-mute:before {
  content: ""; }

.ion-wand:before {
  content: ""; }

.ion-waterdrop:before {
  content: ""; }

.ion-wifi:before {
  content: ""; }

.ion-wineglass:before {
  content: ""; }

.ion-woman:before {
  content: ""; }

.ion-wrench:before {
  content: ""; }

.ion-xbox:before {
  content: ""; }

/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* Layout Container */
.lc, [role=main] {
  max-width: 72em;
  margin: 0 auto;
  padding: 0.5em; }

/*------------------------------------*\
    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
@media all and (min-width: 50em) {
  .l-two-col .l-main {
    float: left;
    width: 70%;
    padding-right: 1em; } }
@media all and (max-width: 50em) {
  .l-two-col .l-sidebar {
    clear: both; } }
@media all and (min-width: 50em) {
  .l-two-col .l-sidebar {
    float: left;
    width: 30%;
    padding: 0 0 0 1em; } }

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/* Grid Container */
.g {
  overflow: hidden;
  margin: 0 -0.5em; }

/* Grid Item */
.gi {
  padding: 0.5em; }
  .gi img {
    display: block; }
  @media all and (min-width: 46.8em) {
    .gi {
      float: left; } }

/* Grid 1up */
.g-1up .gi {
  width: 100%; }

/* Grid 2up */
@media all and (min-width: 46.8em) {
  .g-2up > .gi {
    float: left;
    width: 50%; }
    .g-2up > .gi:nth-of-type(odd) {
      clear: left; } }

/* Grid Half (Always displayed side by side) */
.g-half > .gi {
  float: left;
  width: 50%; }
  .g-half > .gi:nth-of-type(odd) {
    clear: left; }

/* Grid 3up */
@media all and (min-width: 46.8em) {
  .g-3up > .gi {
    float: left;
    width: 50%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: left; } }
@media all and (min-width: 50em) {
  .g-3up > .gi {
    width: 33.3333333%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-3up > .gi:nth-of-type(3n+1) {
      clear: left; } }

/* Grid 4up */
@media all and (min-width: 46.8em) {
  .g-4up > .gi {
    float: left;
    width: 50%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: both; } }
@media all and (min-width: 50em) {
  .g-4up > .gi {
    width: 25%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-4up > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid Quarter (Always displayed side by side) */
.g-quarter > .gi {
  float: left;
  width: 24%; }
  .g-quarter > .gi:nth-of-type(4n+1) {
    clear: left; }

@media all and (min-width: 29.75em) {
  .g-max4 > .gi {
    float: left;
    width: 50%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: both; } }
@media all and (min-width: 39.8em) {
  .g-max4 > .gi {
    width: 33.3333333%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: left; } }
@media all and (min-width: 50em) {
  .g-max4 > .gi {
    width: 25%; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid 5up */
.g-max5 > .gi {
  float: left;
  width: 50%; }
  .g-max5 > .gi:nth-of-type(2n+1) {
    clear: both; }
@media all and (min-width: 39.8em) {
  .g-max5 > .gi {
    width: 33.3333333%; }
    .g-max5 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: left; } }
@media all and (min-width: 46.8em) {
  .g-max5 > .gi {
    width: 25%; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: left; } }
@media all and (min-width: 48em) {
  .g-max5 > .gi {
    width: 20%; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(5n+1) {
      clear: left; } }

/* Grid 2/3 */
@media all and (min-width: 46.8em) {
  .gi-2-3 {
    float: left;
    width: 66.666666%; } }

@media all and (min-width: 46.8em) {
  .gi-1-3 {
    float: left;
    width: 33.333333%; } }

/* Grid 4up block */
.g-opposites .gi {
  float: left; }
  .g-opposites .gi:last-child {
    float: right;
    text-align: right; }

.inline-list li {
  display: inline-block; }

/* Social List */
.social-list li {
  margin: 0 0.4rem 1em 0; }
.social-list a {
  font-size: 1.6em; }

/* Headline List */
.headline-list {
  margin-bottom: 1em; }
  .headline-list.flush {
    margin: 0; }
  .headline-list h4 {
    font-weight: normal; }
  .headline-list li {
    padding: 0.25em 0;
    border-top: 1px solid #ddd; }

/* Post List */
.post-list li {
  margin-bottom: 1em; }

/* Bullet List */
.bullet-list {
  list-style: square;
  margin: 0 0 1em 1.2em;
  line-height: 1.3; }
  .bullet-list li {
    margin-bottom: 1em; }

/* Text List */
.text-list {
  margin: 0 0 1em;
  line-height: 1.3; }
  .text-list li {
    margin-bottom: 1em; }

.checkmark-list li {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 39px;
  position: relative;
  letter-spacing: 0.6px; }
  @media (min-width: 460px) {
    .checkmark-list li {
      font-size: 22px; } }
  .checkmark-list li:before {
    position: absolute;
    left: -70px;
    width: 50px;
    height: 50px;
    color: #f9a11b;
    font-size: 50px;
    margin-right: 10px;
    display: table-cell; }

/*------------------------------------*\
    $MESSAGING
\*------------------------------------*/
.alert {
  text-align: center;
  padding: 1em;
  margin-bottom: 0.5em;
  border: 1px solid #808080;
  background: #ededed; }

.alert-error {
  color: #f00;
  border-color: #f00;
  background: #ffbebe;
  border-radius: 3px;
  display: block;
  margin: 0 0 10px;
  padding: 5px 10px; }

/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
nav {
  float: none;
  position: relative;
  margin-top: 0;
  max-height: 0;
  top: 30px;
  text-align: center;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media (min-width: 767px) {
    nav {
      display: block;
      margin-top: 0;
      height: auto;
      max-height: none;
      float: right;
      width: auto;
      background-color: transparent;
      padding: 0;
      border-radius: 0;
      top: 55px;
      text-align: left; } }
  nav ul {
    width: 100%;
    margin-top: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    @media (min-width: 767px) {
      nav ul {
        width: auto; } }
    nav ul li {
      display: block;
      color: #d1d1d1;
      padding: 0 5px;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.8px;
      outline: 0 none;
      text-decoration: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      @media (min-width: 767px) {
        nav ul li {
          display: inline-block;
          height: 50px;
          padding: 10px 10px;
          border-left: 1px solid #5A5A5A;
          border-right: 1px solid #383838; }
          nav ul li:first-child {
            border-left: 0 none; }
          nav ul li:last-child {
            border-right: 0 none; } }
      @media (min-width: 850px) {
        nav ul li {
          padding: 0 10px;
          font-size: 14px; } }
      @media (min-width: 960px) {
        nav ul li {
          padding: 0 15px;
          font-size: 16px; } }
      @media (min-width: 1280px) {
        nav ul li {
          font-size: 18px; } }
      nav ul li a {
        padding: 0;
        color: rgba(255, 255, 255, 0.5);
        display: inline-block;
        outline: 0 none;
        text-decoration: none;
        text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
        font-weight: bold;
        position: relative;
        letter-spacing: 1px;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out; }
        @media (min-width: 1150px) {
          nav ul li a {
            letter-spacing: 2px; } }
        nav ul li a:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 1px;
          bottom: -3px;
          left: 0;
          background-color: #3F94C8;
          visibility: hidden;
          -moz-transform: scaleX(0);
          -o-transform: scaleX(0);
          -ms-transform: scaleX(0);
          -webkit-transform: scaleX(0);
          transform: scaleX(0);
          -webkit-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -ms-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
        nav ul li a.nav-active, nav ul li a.nav-highlight, nav ul li a:hover {
          color: #3F94C8; }
          nav ul li a.nav-active:before, nav ul li a.nav-highlight:before, nav ul li a:hover:before {
            visibility: visible;
            -moz-transform: scaleX(1);
            -o-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -webkit-transform: scaleX(1);
            transform: scaleX(1); }
        nav ul li a:hover {
          color: #fff; }
          nav ul li a:hover:before {
            background-color: #fff !important;
            visibility: visible;
            -moz-transform: scaleX(1);
            -o-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -webkit-transform: scaleX(1);
            transform: scaleX(1); }
        nav ul li a .small {
          font-size: 13px;
          text-transform: none;
          font-weight: 100;
          letter-spacing: 1px; }
          @media (min-width: 850px) {
            nav ul li a .small {
              letter-spacing: 2px; } }
      nav ul li.cursiv a {
        font-style: italic; }
      nav ul li.nav-active a, nav ul li.nav-highlight a {
        color: #f9a11b; }

nav.open {
  max-height: 500px;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  nav.open ul li {
    display: block;
    padding: 10px 0; }
    nav.open ul li a {
      text-align: center;
      padding: 10px 0; }

.tabs {
  overflow: hidden; }
  .tabs ul {
    display: table;
    width: 100%; }
  .tabs li {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #ddd; }
    .tabs li:last-child {
      border-right: 0; }
  .tabs a {
    display: block;
    padding: 0.5em;
    background: #808080; }
    .tabs a:hover, .tabs a:focus {
      background: #ddd; }
    .tabs a.active {
      background: #5A5A5A;
      color: #fff; }

.tooltip-container {
  display: inline-block;
  position: relative; }
  .tooltip-container:hover .tooltip {
    display: block; }

.tooltip-link {
  background: #ededed; }

.tooltip {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 18em;
  padding: 1em;
  background: #fff;
  border: 1px solid #808080;
  box-shadow: 0.3em 0.3em 1em 0 rgba(0, 0, 0, 0.2); }
  .tooltip h2 {
    margin-top: 0; }
  @media all and (min-width: 24em) {
    .tooltip {
      width: 22em; } }
  @media all and (min-width: 29.75em) {
    .tooltip {
      width: 27em; } }
  @media all and (min-width: 39.8em) {
    .tooltip {
      width: 30em; } }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
.sidebar {
  width: 100%;
  display: none;
  float: none;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out; }
  @media (min-width: 767px) {
    .sidebar {
      width: auto;
      display: block;
      position: fixed;
      top: 300px;
      left: 0;
      z-index: 10;
      display: none; } }
  .sidebar ul li {
    margin: 0 10px 0 0;
    background-color: #fff;
    padding: 10px 0 10px 10px;
    box-shadow: 0 0 20px #fff; }
    .sidebar ul li a {
      color: #808080;
      padding: 0;
      text-decoration: none;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 13px; }
      .sidebar ul li a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -3px;
        left: 0;
        background-color: #409f36;
        visibility: hidden;
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .sidebar ul li a.nav-active, .sidebar ul li a.nav-highlight, .sidebar ul li a:hover {
        color: #409f36; }
        .sidebar ul li a.nav-active:before, .sidebar ul li a.nav-highlight:before, .sidebar ul li a:hover:before {
          visibility: visible;
          -moz-transform: scaleX(1);
          -o-transform: scaleX(1);
          -ms-transform: scaleX(1);
          -webkit-transform: scaleX(1);
          transform: scaleX(1); }

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0;
  height: 0; }
  .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%; }

.instagram-wrapper {
  width: auto;
  margin: 0 auto 40px;
  position: relative; }
  .instagram-wrapper iframe {
    margin: 0 auto !important; }

#news-container {
  background-color: #409f36;
  position: relative;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: none; }
  #news-container:before {
    content: "Aktuelles:";
    width: 100%;
    height: 30px;
    line-height: 30px;
    background-color: #ededed;
    color: #808080;
    display: block;
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase; }
  #news-container:empty {
    display: none; }
  #news-container .text-wrapper {
    padding: 10px 25px 20px;
    box-shadow: inset  0  8px 8px -8px #696868; }
    #news-container .text-wrapper .inner-header {
      text-align: center; }
      @media (min-width: 767px) {
        #news-container .text-wrapper .inner-header {
          text-align: right; } }
      #news-container .text-wrapper .inner-header p {
        font-size: 12px; }
    #news-container .text-wrapper .headline {
      max-width: 100%;
      margin: 10px 0 10px;
      color: #FFF;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase; }
      @media (min-width: 1050px) {
        #news-container .text-wrapper .headline {
          max-width: 80%;
          width: -moz-calc(100% - 250px);
          width: -webkit-calc(100% - 250px);
          width: calc(100% - 250px);
          margin: -10px 0 10px; } }
    #news-container .text-wrapper hr {
      background-color: transparent;
      border-bottom: 1px dashed #ededed; }
  #news-container .read-more-btn, #news-container .close-more-btn {
    padding: 5px 10px;
    background-color: #f9a11b;
    color: #FFF;
    border: 1px solid transparent;
    font-size: 14px;
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    #news-container .read-more-btn:hover, #news-container .close-more-btn:hover {
      cursor: pointer;
      background-color: transparent;
      color: #f9a11b !important;
      border: 1px solid #f9a11b;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }

.disclaimer {
  width: 100%;
  background-color: rgba(8, 158, 0, 0.5);
  color: #FFF;
  padding: 10px;
  margin: 30px auto; }
  .disclaimer p, .disclaimer h4 {
    color: #FFF; }

.modal-wrapper {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  top: 0;
  display: none; }
  .modal-wrapper.open {
    display: block; }

/* Modal Header */
.modal-header {
  padding: 17px;
  background-color: #409F47;
  color: white;
  text-align: center;
  position: relative; }
  .modal-header .close {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 50px;
    height: 50px;
    line-height: 55px;
    font-size: 40px; }
    .modal-header .close:hover {
      cursor: pointer;
      color: #f9a11b; }

/* Modal Body */
.modal-body {
  padding: 25px; }
  .modal-body input {
    border: 1px solid #d1d1d1; }
  .modal-body label {
    display: none; }
  .modal-body .info-box {
    display: none; }
    .modal-body .info-box.show {
      display: block; }

/* Modal Footer */
.modal-footer {
  padding: 15px;
  background-color: #409F47;
  color: white; }
  .modal-footer .cta-btn-holder {
    margin: 0;
    padding: 0; }
    .modal-footer .cta-btn-holder input {
      max-width: none;
      margin: 0 auto; }
    .modal-footer .cta-btn-holder #newsletter-ok {
      display: none; }

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  max-width: 550px;
  top: 10%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s; }
  .modal-content .inner {
    margin: 0;
    padding: 0; }
    .modal-content .inner .loader {
      width: 100%;
      height: 100%;
      background-image: url("../img/loader-rainbow.gif");
      background-repeat: no-repeat;
      background-size: 40px 40px;
      background-position: center center;
      background-color: rgba(255, 255, 255, 0.5);
      display: none;
      position: absolute;
      z-index: 1; }

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }
  to {
    top: 0;
    opacity: 1; } }
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }
  to {
    top: 0;
    opacity: 1; } }
.newsletter-link {
  padding: 0 !important;
  margin-top: 20px !important; }
  .newsletter-link a {
    border: 1px solid #82c282;
    padding: 10px !important;
    display: block;
    border-radius: 6px; }
    .newsletter-link a:before {
      display: none; }
    @media screen and (max-width: 1200px) {
      .newsletter-link a {
        max-width: 220px; } }

.small-image-slider {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  max-height: 400px;
  overflow: hidden;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4); }
  .small-image-slider .image-container {
    height: 100%;
    display: block;
    position: relative;
    max-height: 400px; }
    .small-image-slider .image-container .swiper-wrapper {
      max-height: 400px; }
      .small-image-slider .image-container .swiper-wrapper .swiper-slide {
        max-height: 400px;
        min-height: 400px; }
        .small-image-slider .image-container .swiper-wrapper .swiper-slide img {
          backface-visibility: hidden;
          bottom: -9999px;
          left: -9999px;
          margin: auto;
          max-width: 100%;
          min-height: 100%;
          min-width: 100%;
          -o-object-fit: cover;
          -o-object-position: center center;
          object-fit: cover;
          object-position: center center;
          position: absolute;
          right: -9999px;
          top: -9999px; }
  .small-image-slider .slider-wrapper-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 40px;
    position: absolute;
    z-index: 10; }
    .small-image-slider .slider-wrapper-overlay p {
      text-align: center;
      padding: 10px 20px;
      color: #3F94C8;
      text-transform: uppercase; }
      @media (min-width: 767px) {
        .small-image-slider .slider-wrapper-overlay p {
          text-align: right; } }
      .small-image-slider .slider-wrapper-overlay p span {
        margin-left: 15px;
        color: #fff; }

.intro {
  font-size: 1.0625em;
  font-weight: bold; }

.pullquote {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 1.4375em; }

.caption {
  font-style: italic; }

.text a {
  text-decoration: underline; }
.text ul {
  list-style: disc;
  margin: 0 0 1em 1.2em; }
  .text ul ul {
    margin-bottom: 0; }
.text ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em; }
  .text ol ol {
    margin-bottom: 0; }

blockquote {
  background: #f9f9f9;
  font-size: 20px;
  border-left: 10px solid #ccc;
  margin: 40px 0;
  padding: 30px;
  quotes: "“" "”" "‘" "’"; }
  blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em; }

blockquote p {
  display: inline; }

/**
 * components/_header.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
header {
  background-color: #4D4D4D;
  color: #fff;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  min-height: 70px;
  height: auto;
  padding: 10px 0;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999; }
  @media (min-width: 767px) {
    header {
      min-height: 0px;
      padding: 0; } }
  header .inner {
    margin: 0 auto;
    padding: 0; }
    @media (min-width: 767px) {
      header .inner {
        padding: 0 50px; } }
  header.stick {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 9999;
    min-height: 70px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }
    header.stick nav {
      background-color: transparent;
      box-shadow: none; }
      @media (min-width: 767px) {
        header.stick nav {
          -webkit-transition: all 0.3s ease-out;
          -moz-transition: all 0.3s ease-out;
          -ms-transition: all 0.3s ease-out;
          -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
          margin-top: 0;
          top: 12px; }
          header.stick nav ul {
            margin-bottom: 10px;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out; } }
    header.stick .logo {
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      width: 170px;
      height: 50px;
      margin: 0;
      top: 7px; }
      header.stick .logo a {
        font-size: 17px; }
      header.stick .logo .logo--white {
        font-size: 17px; }
    header.stick .hamburger {
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      top: 12px; }
  header .banner {
    background-color: #3F94C8;
    margin-top: -15px;
    position: relative;
    padding: 0; }
    @media (min-width: 767px) {
      header .banner {
        margin-top: -5px;
        padding: 5px; } }
    header .banner.hidden {
      display: none; }
    header .banner .banner-inner {
      padding: 25px 30px;
      text-align: center;
      border: 5px dashed;
      border-color: #f9a11b;
      animation-name: bordercolor;
      animation-duration: .5s;
      animation-delay: .1s; }
      header .banner .banner-inner p {
        color: #fff;
        font-size: 16px; }
        @media (min-width: 767px) {
          header .banner .banner-inner p {
            font-size: 20px; } }
    header .banner #close-banner {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 30px;
      height: 20px;
      background-color: #f9a11b;
      color: #fff;
      z-index: 1;
      border: 0 none; }
      header .banner #close-banner:hover {
        cursor: pointer; }

@keyframes bordercolor {
  0% {
    border-color: #39FF14; }
  30% {
    border-color: #f9a11b; }
  60% {
    border-color: #39FF14; }
  90% {
    border-color: #f9a11b; } }
/**
 * components/_kontakt-header.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
#kontakt-btn-wrapper {
  width: 200px;
  height: 50px;
  position: fixed;
  right: -75px;
  top: 50vh;
  z-index: 100;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: none; }
  @media (min-width: 767px) {
    #kontakt-btn-wrapper {
      display: block; } }
  #kontakt-btn-wrapper a {
    position: relative;
    height: 100%;
    width: 200px;
    line-height: 50px;
    text-align: center;
    display: block;
    color: #fff;
    text-transform: uppercase; }
    #kontakt-btn-wrapper a:after {
      content: "Kontakt";
      position: absolute;
      top: 0;
      width: 200px;
      font-size: 22px;
      left: 0;
      text-align: center;
      background-color: #3F94C8; }
    #kontakt-btn-wrapper a.open:after {
      content: 'X';
      box-shadow: 0 0 26px rgba(255, 255, 255, 0.3);
      border-radius: 0 0 3px 3px;
      background-color: #3F94C8; }

#kontakt-header {
  background-color: #3F94C8;
  max-height: 5px;
  min-height: 5px;
  height: 5px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  z-index: 100;
  background-image: url("../img/website/968871450.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  #kontakt-header.open {
    max-height: 100%;
    min-height: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  #kontakt-header .headline-wrapper {
    flex-flow: row wrap;
    height: 15%; }
    #kontakt-header .headline-wrapper .headline {
      width: 100%;
      display: block;
      text-align: center;
      color: #fff;
      top: 0;
      align-self: flex-end; }
      #kontakt-header .headline-wrapper .headline i {
        font-size: 42px; }
  #kontakt-header #map {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1;
    display: none !important; }
  #kontakt-header .inner-content {
    margin: 0 auto 20px;
    padding: 0;
    flex-flow: row wrap;
    height: 75%;
    width: 100%;
    max-width: 400px;
    position: relative;
    left: 0;
    top: 100px;
    z-index: 2;
    justify-content: space-around; }
    @media (min-width: 960px) {
      #kontakt-header .inner-content {
        float: none;
        margin-right: auto; } }
    #kontakt-header .inner-content .wrapper {
      align-self: center;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 10px;
      height: auto;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      color: #fff;
      box-shadow: 0 0 26px rgba(255, 255, 255, 0.3);
      border-radius: 0;
      position: relative; }
      #kontakt-header .inner-content .wrapper p, #kontakt-header .inner-content .wrapper a {
        color: #fff; }
      #kontakt-header .inner-content .wrapper #top-form {
        margin: 0 auto;
        padding: 5px;
        width: 100%; }
        #kontakt-header .inner-content .wrapper #top-form label {
          display: none; }
        #kontakt-header .inner-content .wrapper #top-form .cta-btn-holder {
          padding: 0; }
        #kontakt-header .inner-content .wrapper #top-form textarea {
          padding: 5px 10px;
          margin: 5px 0; }
      #kontakt-header .inner-content .wrapper .custom-address, #kontakt-header .inner-content .wrapper .custom-maps, #kontakt-header .inner-content .wrapper #top-form {
        align-self: center;
        height: auto; }
      #kontakt-header .inner-content .wrapper .cta-btn-holder {
        margin: 0; }
  #kontakt-header:after {
    content: "";
    position: absolute;
    z-index: 100;
    height: 10px;
    width: 100%;
    background-color: #3F94C8;
    left: 0;
    bottom: 0; }

/**
 * components/_footer.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */
footer {
  height: auto;
  background-color: #5A5A5A;
  border-top: 10px solid #393939;
  box-shadow: inset 0 10px 30px -20px #000;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden; }
  footer .inner-content {
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    color: #fff; }
    @media (min-width: 767px) {
      footer .inner-content {
        padding: 20px 50px 0; } }
    footer .inner-content a {
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      margin: 0 5px 5px 0;
      display: inline-block; }
      footer .inner-content a:hover {
        text-decoration: underline;
        color: #3F94C8; }
    footer .inner-content .grid-container {
      margin-bottom: 0; }
      footer .inner-content .grid-container .grid .inner--grid {
        background-color: rgba(0, 0, 0, 0);
        border: 0 none; }
        footer .inner-content .grid-container .grid .inner--grid .teaser-content {
          text-align: left; }
        footer .inner-content .grid-container .grid .inner--grid hr {
          margin: 0 0 12px 0;
          color: transparent;
          background-color: transparent;
          opacity: 0; }
        footer .inner-content .grid-container .grid .inner--grid h4 {
          position: relative;
          color: #9f9f9f;
          padding-bottom: 10px; }
          footer .inner-content .grid-container .grid .inner--grid h4:after, footer .inner-content .grid-container .grid .inner--grid h4:before {
            content: "";
            position: absolute;
            bottom: 0;
            width: 100%;
            top: auto;
            left: 0;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.13); }
          footer .inner-content .grid-container .grid .inner--grid h4:after {
            bottom: 1px;
            height: 1px;
            background-color: #383838; }
        footer .inner-content .grid-container .grid .inner--grid p, footer .inner-content .grid-container .grid .inner--grid a {
          color: #9f9f9f; }
        footer .inner-content .grid-container .grid .inner--grid a {
          text-transform: none; }
          footer .inner-content .grid-container .grid .inner--grid a:hover {
            color: #3F94C8;
            text-decoration: none; }

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
[role=main] {
  padding: 0.5em 0.5em 2em;
  overflow: hidden; }

.content-wrapper {
  min-height: -moz-calc(100% - 75px);
  min-height: -webkit-calc(100% - 75px);
  min-height: calc(100% - 75px);
  position: relative;
  background-image: url("../img/website/bg.jpg");
  background-repeat: repeat;
  background-position: center center; }
  .content-wrapper:after {
    content: "";
    width: 100%;
    height: 410px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/website/header_bg.png");
    background-repeat: repeat-x;
    background-position: center center; }
  .content-wrapper .inner {
    padding: 0; }
    @media (min-width: 767px) {
      .content-wrapper .inner {
        padding: 140px 50px 100px 50px; } }
    .content-wrapper .inner section {
      margin-top: 20px;
      display: table;
      width: 100%;
      padding: 0 20px; }
      @media (min-width: 767px) {
        .content-wrapper .inner section {
          padding: 0; } }
      .content-wrapper .inner section .text-wrapper {
        padding: 20px 0 60px; }
        .content-wrapper .inner section .text-wrapper ul li {
          list-style: circle;
          font-size: 16px;
          margin: 5px 0; }
    .content-wrapper .inner .sub-header {
      display: block;
      width: 100%;
      border-bottom: 0 none;
      margin: 20px auto;
      border-top: 1px dashed #409f36;
      border-bottom: 1px dashed #409f36;
      padding: 10px 20px; }
      @media (min-width: 460px) {
        .content-wrapper .inner .sub-header {
          width: 90%;
          border-top: 0 none;
          padding: 0; } }
      @media (min-width: 767px) {
        .content-wrapper .inner .sub-header {
          width: 100%;
          margin: 0 auto;
          padding: 0; } }
      .content-wrapper .inner .sub-header .headline {
        font-size: 18px;
        line-height: 30px;
        font-family: Lato, sans-serif;
        margin: 0;
        padding: 0;
        text-align: center; }
        @media (min-width: 460px) {
          .content-wrapper .inner .sub-header .headline {
            font-size: 20px;
            text-align: left; } }
        @media (min-width: 767px) {
          .content-wrapper .inner .sub-header .headline {
            font-size: 26px;
            line-height: 60px; } }
    .content-wrapper .inner h2 {
      color: #409f36;
      text-align: center;
      font-weight: normal;
      font-size: 20px;
      letter-spacing: 2.1px;
      margin-bottom: 30px; }
      @media (min-width: 767px) {
        .content-wrapper .inner h2 {
          font-size: 28px; } }
    .content-wrapper .inner h3 {
      font-size: 20px;
      text-align: left;
      color: #808080;
      text-transform: none;
      font-weight: normal; }
      @media (min-width: 767px) {
        .content-wrapper .inner h3 {
          font-size: 22px; } }
    .content-wrapper .inner h4 {
      text-align: left;
      margin: 30px 0 10px;
      display: inline-block;
      width: auto;
      font-weight: normal;
      border-bottom: 1px solid #808080; }
    .content-wrapper .inner h5 {
      font-size: 16px; }
    .content-wrapper .inner ul {
      margin-bottom: 30px;
      margin-left: 15px; }
      @media (min-width: 767px) {
        .content-wrapper .inner ul {
          font-size: 22px;
          margin-left: 15px; } }
      .content-wrapper .inner ul.circle li {
        list-style: circle; }
      .content-wrapper .inner ul li {
        padding: 2px 7px;
        margin: 0;
        list-style: circle;
        font-size: 16px; }
    .content-wrapper .inner .quelle {
      margin: 40px 0;
      display: block;
      font-size: 14px; }
      .content-wrapper .inner .quelle a {
        color: #808080;
        font-size: 14px; }
    .content-wrapper .inner a {
      color: #f9a11b; }

.golden-triangle-wrapper {
  width: 100%;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase; }
  .golden-triangle-wrapper .golden-triangle {
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 150px 100px;
    border-color: transparent transparent #f9a11b transparent; }
  .golden-triangle-wrapper .up {
    padding: 10px;
    display: block; }
  .golden-triangle-wrapper .down-1 {
    padding: 10px 30px 10px 10px;
    display: inline-block; }
    @media (min-width: 767px) {
      .golden-triangle-wrapper .down-1 {
        padding: 10px 80px 10px 10px; } }
  .golden-triangle-wrapper .down-2 {
    padding: 10px 10px 10px 80px;
    display: inline-block; }

.lowercase {
  text-transform: lowercase; }

section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 10px 0;
  position: relative;
  clear: both; }
  section > h2, section > h3, section > h4 {
    text-align: center;
    margin: 30px 0 30px;
    padding: 0 20px; }
  section > h4 {
    margin: 30px 0 50px; }
  section > h3 {
    font-size: 20px; }
    @media (min-width: 767px) {
      section > h3 {
        font-size: 30px; } }
  section.big-image-slider {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0; }
  section.sidebar-section {
    padding: 0; }
    section.sidebar-section .inner {
      margin: 0 auto 0;
      padding: 0; }
      @media (min-width: 767px) {
        section.sidebar-section .inner {
          padding: 0 20px; } }
  section .section--inner {
    padding: 0; }
    @media (min-width: 767px) {
      section .section--inner {
        padding: 0; } }
    section .section--inner h3 {
      border-bottom: 5px solid #808080;
      color: #808080;
      font-size: 25px !important;
      font-weight: 600;
      letter-spacing: 0.12em;
      margin: 80px 0 32px 0;
      padding: 0 0 35px;
      text-align: center !important;
      text-transform: uppercase !important; }
      @media (min-width: 767px) {
        section .section--inner h3 {
          padding: 15px 0 55px; } }
      section .section--inner h3:first-child {
        margin-top: 20px; }
    section .section--inner .img-holder {
      width: 100%;
      position: relative;
      height: auto;
      margin: 0 20px 20px;
      padding: 0; }
      @media (min-width: 767px) {
        section .section--inner .img-holder {
          width: 50%;
          margin: 0 20px; } }
      section .section--inner .img-holder .bild {
        border: 5px solid #cccccc;
        width: 100%;
        height: auto;
        padding: 10px;
        margin: 0 0 20px;
        display: block; }
      section .section--inner .img-holder.left {
        margin: 50px auto;
        float: none; }
        @media (min-width: 767px) {
          section .section--inner .img-holder.left {
            float: left;
            margin: 0 20px 0 0; } }
      section .section--inner .img-holder.right {
        margin: 50px auto;
        float: none; }
        @media (min-width: 767px) {
          section .section--inner .img-holder.right {
            float: right;
            margin: 0 0 20px 20px; } }
      section .section--inner .img-holder.small {
        width: 300px; }
    section .section--inner .left-content {
      float: none;
      margin: 0;
      width: 100%; }
      @media (min-width: 1150px) {
        section .section--inner .left-content {
          float: left;
          width: -moz-calc(100% - 320px);
          width: -webkit-calc(100% - 320px);
          width: calc(100% - 320px); } }
  section#ueber-mich {
    padding: 30px 0 0; }
    section#ueber-mich .cta-btn-holder {
      margin: 30px 0 0; }

/**
 * vendor/_vendor.scss
 */
/* ==========================================================================
   Imports
   ========================================================================== */

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