@charset "UTF-8";
/* 
    DEFAULT.SCSS: Main file; loads other partials
*/
/* 
	SASS.SCSS 
*/
/* grids */
/* font */
/* colours */
/* breakpoints? */
/* transitions: ... allows multiple attributes seperated with a comma */
/* transforms: ... allows multiple attributes seperated with a comma */
/* transform-origin: ... allows multiple attributes seperated with a comma */
/* fitler */
/* animations */
/*
@include keyframes(fadein) {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@include animation('fadein 5s 3');
*/
/*
@mixin bp-large {
  @media only screen and (min-width: 1180px) {
    @content;
  }
}

@mixin bp-medium {
  @media only screen and (max-width: 40px) {
    @content;
  }
}
*/
/* 
	RESET.SCSS 
*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* Make sure videos and embeds fit their containers */
embed, iframe, object {
  max-width: 100%;
}

/* reset margin and padding */
* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%; /* for smartphones */
  -ms-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type=text],
input[type=submit] {
  -webkit-appearance: none; /* for smartphone submit buttons */
}

img {
  border: none;
  vertical-align: bottom;
}

blockquote,
q {
  quotes: "„" "“" "‚" "‘";
}

blockquote:before,
q:before {
  content: open-quote;
}

blockquote:after,
q:after {
  content: close-quote;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}

sub {
  top: 0.4em;
}

/* 
	TYPO.SCSS 
*/
/* nunito-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/nunito-sans-v15-latin/nunito-sans-v15-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/nunito-sans-v15-latin/nunito-sans-v15-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html, body {
  font-size: 16px;
  font-size: 1rem;
  /* DO NOT CHANGE - DEFAULT BROWSER SIZE */
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
}

.section {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
}

nav a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1em;
}

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
}

h1, .h1, h2, .h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5em;
}

.teaser,
.slogan,
h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5em;
}

b, strong {
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

i, em {
  font-style: italic;
}

.btn {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
}

.btn-lg {
  font-size: 24px;
  font-size: 1.5rem;
}

.section-label,
.breadcrumb,
.breadcrumb a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5em;
}

input,
textarea {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.quote {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5em;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.quote small {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
}

/*
.box-kontakt {
	@include font-size(16px);
	line-height:1.5em;

	h3 {
		@include font-size(16px);
		line-height:1.5em;
	}
}
*/
/* 
	JIVE.SCSS 
*/
/* box-sizing */
input,
textarea,
.jive-container,
.jive-container-fluid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* clearer */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* container default */
.jive-container {
  position: relative;
  max-width: 1180px;
  margin: auto;
  padding: 0 25px;
}

.jive-grid-col .jive-container {
  width: 100%;
  padding: 0;
}

/* container full (fluid) */
.jive-container-fluid {
  position: relative;
}

/* colours */
.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

/* parallax */
.bg-parallax {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Grid */
.jive-grid-row {
  margin: 0 -25px;
}

.jive-grid-col {
  margin: 0 25px;
  float: left;
  position: relative;
}

.jive-grid-last-col {
  float: right;
  margin-left: 0;
  clear: right;
}

.jive-grid-one-half {
  width: calc(50% - 50px);
}

.jive-grid-one-third {
  width: calc(33.3% - 50px);
}

.jive-grid-two-third {
  width: calc(66.6% - 50px);
}

.jive-grid-one-fourth {
  width: calc(25% - 50px);
}

.jive-grid-three-fourth {
  width: calc(75% - 50px);
}

.jive-grid-one-fifth {
  width: calc(20% - 50px);
}

.jive-grid-two-fifth {
  width: calc(40% - 50px);
}

.jive-grid-three-fifth {
  width: calc(60% - 50px);
}

.jive-grid-four-fifth {
  width: calc(80% - 50px);
}

.jive-grid-one-sixth {
  width: calc(16.6% - 50px);
}

.jive-grid-five-sixth {
  width: calc(83.3% - 50px);
}

/* CE: HR */
.jive-ce-hr hr {
  border: none;
  height: 1px;
  background: #ccc;
}

.jive-ce-hr.invers hr {
  background: #fff;
}

/* CE: IMAGE */
.jive-ce-image {
  position: relative;
}

.jive-ce-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  left: 0;
  top: 0;
}
#emotion .jive-ce-image img {
  width: 100%;
  max-width: none;
}

/*.jive-ce-image.align-center { overflow:hidden; }
.jive-ce-image.align-center img { left:50%; margin-left:-100%; max-width:none; }
.jive-ce-image.clip-circle img { border-radius:50%;  }*/
/* CE: SPACER */
.jive-space-1 {
  height: 1px;
}

.jive-space-2 {
  height: 2px;
}

.jive-space-3 {
  height: 3px;
}

.jive-space-4 {
  height: 4px;
}

.jive-space-5 {
  height: 5px;
}

.jive-space-6 {
  height: 6px;
}

.jive-space-7 {
  height: 7px;
}

.jive-space-8 {
  height: 8px;
}

.jive-space-9 {
  height: 9px;
}

.jive-space-10 {
  height: 10px;
}

.jive-space-11 {
  height: 11px;
}

.jive-space-12 {
  height: 12px;
}

.jive-space-13 {
  height: 13px;
}

.jive-space-14 {
  height: 14px;
}

.jive-space-15 {
  height: 15px;
}

.jive-space-16 {
  height: 16px;
}

.jive-space-17 {
  height: 17px;
}

.jive-space-18 {
  height: 18px;
}

.jive-space-19 {
  height: 19px;
}

.jive-space-20 {
  height: 20px;
}

.jive-space-21 {
  height: 21px;
}

.jive-space-22 {
  height: 22px;
}

.jive-space-23 {
  height: 23px;
}

.jive-space-24 {
  height: 24px;
}

.jive-space-25 {
  height: 25px;
}

.jive-space-26 {
  height: 26px;
}

.jive-space-27 {
  height: 27px;
}

.jive-space-28 {
  height: 28px;
}

.jive-space-29 {
  height: 29px;
}

.jive-space-30 {
  height: 30px;
}

.jive-space-31 {
  height: 31px;
}

.jive-space-32 {
  height: 32px;
}

.jive-space-33 {
  height: 33px;
}

.jive-space-34 {
  height: 34px;
}

.jive-space-35 {
  height: 35px;
}

.jive-space-36 {
  height: 36px;
}

.jive-space-37 {
  height: 37px;
}

.jive-space-38 {
  height: 38px;
}

.jive-space-39 {
  height: 39px;
}

.jive-space-40 {
  height: 40px;
}

.jive-space-41 {
  height: 41px;
}

.jive-space-42 {
  height: 42px;
}

.jive-space-43 {
  height: 43px;
}

.jive-space-44 {
  height: 44px;
}

.jive-space-45 {
  height: 45px;
}

.jive-space-46 {
  height: 46px;
}

.jive-space-47 {
  height: 47px;
}

.jive-space-48 {
  height: 48px;
}

.jive-space-49 {
  height: 49px;
}

.jive-space-50 {
  height: 50px;
}

.jive-space-51 {
  height: 51px;
}

.jive-space-52 {
  height: 52px;
}

.jive-space-53 {
  height: 53px;
}

.jive-space-54 {
  height: 54px;
}

.jive-space-55 {
  height: 55px;
}

.jive-space-56 {
  height: 56px;
}

.jive-space-57 {
  height: 57px;
}

.jive-space-58 {
  height: 58px;
}

.jive-space-59 {
  height: 59px;
}

.jive-space-60 {
  height: 60px;
}

.jive-space-61 {
  height: 61px;
}

.jive-space-62 {
  height: 62px;
}

.jive-space-63 {
  height: 63px;
}

.jive-space-64 {
  height: 64px;
}

.jive-space-65 {
  height: 65px;
}

.jive-space-66 {
  height: 66px;
}

.jive-space-67 {
  height: 67px;
}

.jive-space-68 {
  height: 68px;
}

.jive-space-69 {
  height: 69px;
}

.jive-space-70 {
  height: 70px;
}

.jive-space-71 {
  height: 71px;
}

.jive-space-72 {
  height: 72px;
}

.jive-space-73 {
  height: 73px;
}

.jive-space-74 {
  height: 74px;
}

.jive-space-75 {
  height: 75px;
}

.jive-space-76 {
  height: 76px;
}

.jive-space-77 {
  height: 77px;
}

.jive-space-78 {
  height: 78px;
}

.jive-space-79 {
  height: 79px;
}

.jive-space-80 {
  height: 80px;
}

.jive-space-81 {
  height: 81px;
}

.jive-space-82 {
  height: 82px;
}

.jive-space-83 {
  height: 83px;
}

.jive-space-84 {
  height: 84px;
}

.jive-space-85 {
  height: 85px;
}

.jive-space-86 {
  height: 86px;
}

.jive-space-87 {
  height: 87px;
}

.jive-space-88 {
  height: 88px;
}

.jive-space-89 {
  height: 89px;
}

.jive-space-90 {
  height: 90px;
}

.jive-space-91 {
  height: 91px;
}

.jive-space-92 {
  height: 92px;
}

.jive-space-93 {
  height: 93px;
}

.jive-space-94 {
  height: 94px;
}

.jive-space-95 {
  height: 95px;
}

.jive-space-96 {
  height: 96px;
}

.jive-space-97 {
  height: 97px;
}

.jive-space-98 {
  height: 98px;
}

.jive-space-99 {
  height: 99px;
}

.jive-space-100 {
  height: 100px;
}

/* CE: TABS */
.jive-ce-tabs-nav {
  background: #ddddd9;
  width: 25%;
  float: left;
  display: block;
  cursor: pointer;
  border-right: 1px solid #fff;
  -webkit-border-radius: border-box;
  -moz-border-radius: border-box;
  border-radius: border-box;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
}

.jive-ce-tabs-nav:last-child {
  border-right: none;
}

.jive-ce-tabs-nav:hover {
  background: #ccc;
}

.jive-ce-tabs-nav.active {
  background: #f1f1f1;
}

.jive-ce-tabs-nav h2 {
  text-align: center;
  text-transform: none;
  margin-top: 10px;
}

.jive-ce-tabs-nav h2 a {
  color: #333;
}

.jive-ce-tabs-nav h2 > span {
  display: block;
  text-align: center;
  color: #999;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
}

.jive-ce-tabs-nav:hover h2 > span,
.jive-ce-tabs-nav.active h2 > span {
  color: #0082c6;
}

.jive-ce-tabs-content {
  display: none;
  padding: 20px 0 50px 0;
}

.jive-ce-tabs-content.active,
.jive-ce-tabs-content:first-child {
  display: block;
}

.jive-ce-tabs-content h4 > span {
  position: absolute;
  top: -0.2em;
  left: -0.25em;
  color: #0082c6;
}

.jive-ce-tabs-content h4 {
  padding-left: 1.75em;
  color: #0082c6;
  margin-top: 1.75em;
}

/* CE: ICON */
.jive-ce-icon span {
  font-size: 7em;
  color: #0082c6;
}

.jive-ce-icon.variant-1 {
  text-align: center;
  margin-top: 50px;
}

.jive-ce-icon.variant-1 span {
  padding: 0px;
  background: #fff;
}

.jive-ce-icon.variant-1:before {
  content: "";
  display: block;
  margin: auto;
  border-top: 1px solid #333;
  width: 40%;
  margin-top: 3.5em;
  position: absolute;
  left: 50%;
  margin-left: -20%;
}

/* CE: TEASER */
.jive-ce-teaser {
  background: #f1f1f1;
}

.teaser-img {
  padding-top: 66%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.teaser-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.teaser-content {
  padding: 20px 20px 80px 20px;
  min-height: 160px;
  position: relative;
}

.teaser-title h3 {
  margin-top: 0;
}

.teaser-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.teaser-no-btn .teaser-content {
  padding-bottom: 10px;
  min-height: 190px;
}

/* CE: SLIDER */
.slider {
  display: none;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 30px 0;
  position: relative;
}

.slider-quote-icon {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  color: #666;
}

.slider-quotes {
  margin: 100px 0;
}

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

.slider-author {
  text-align: center;
  margin-top: 1.5em;
}

.teaser h3 {
  margin-top: 0;
}

.jive-ce-image.teaser:after {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 10%;
  height: 110%;
  transform: rotate(5deg);
  background: #fff;
  z-index: 2;
  content: "";
}

/* CE: BANDEROLE */
.jive-ce-banderole {
  background: #0082c6;
}

.jive-ce-banderole h2 {
  margin-top: 0;
}

.jive-ce-banderole * {
  color: #fff;
}

/* BTN */
.btn {
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: #333;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 7px 15px;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  vertical-align: middle;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  background: #0082c6;
  color: #fff;
}

.btn-lg {
  padding: 15px 20px;
}

.btn-primary {
  background: #0082c6;
  color: #fff;
}

.btn-primary:hover {
  background: #0f0;
}

.btn-secondary {
  background: #0f0;
  color: #fff;
}

.btn-secondary:hover {
  background: #000;
}

.btn-secondary.cta {
  -webkit-transition: ease 1s;
  -moz-transition: ease 1s;
  -ms-transition: ease 1s;
  -o-transition: ease 1s;
  transition: ease 1s;
}

.btn-secondary.cta:hover {
  background: #0f0;
}

.btn-ghost {
  border: 2px solid #0082c6;
  color: #0082c6;
  background: transparent;
}

.btn-ghost:hover {
  background: #0082c6;
  color: #fff;
}

.btn-ghost.btn-invers {
  border-color: #fff;
  color: #fff;
}

.btn-ghost.btn-invers:hover {
  background: #fff;
  color: #0082c6;
}

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

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

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

.to-uppercase {
  text-transform: uppercase;
}

.to-lowercase {
  text-transform: lowercase;
}

/* 
	MAIN.SCSS 
*/
a {
  text-decoration: none;
  outline: none;
  color: #0082c6;
}

@media screen and (min-width: 769px) {
  a:hover {
    text-decoration: underline;
    outline: none;
  }
}
#javahinweis {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 3px;
  background-color: #900;
}

#rahmen {
  position: relative;
}

/* * * * * * * * * * * * *
 * * *  HEADER
 * * * * * * * * * * * * */
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  height: 210px;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}
header.sticky {
  height: 70px;
}

#logo {
  width: 270px;
  display: block;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
  position: absolute;
  right: 25px;
  top: 50px;
  z-index: 10;
}
#logo img {
  width: 100%;
}
header.sticky #logo {
  width: 135px;
  top: 12px;
  background: #fff;
  padding: 5px 10px;
}

#lang {
  position: absolute;
  top: 5px;
  left: 25px;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}
#lang a:hover {
  text-decoration: none;
}
header.sticky #lang {
  top: -50px;
}

/* NAV */
#nav-wrapper {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  border: 1px solid #999;
  border-right: none;
  border-left: none;
}

nav li {
  display: inline-block;
  position: relative;
  text-align: left;
}
nav a {
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
  color: #000;
  display: block;
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 30px 15px 30px;
}
nav a.current, nav a:hover {
  color: #0082c6;
  text-decoration: none;
}

/* 1st level */
.j-nav-level-0 {
  text-align: left;
}
.j-nav-level-0 > li {
  margin: 0 5px;
}
.j-nav-level-0 > li > a:first-child {
  padding-left: 0;
}

/* 2nd level */
.j-nav-level-1 {
  display: none;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
}
.j-nav-level-1 > li {
  background: rgba(0, 0, 0, 0.8);
  display: block;
}
.j-nav-level-1 > li > a {
  padding: 5px 15px;
}
.j-nav-level-1 > li:first-child {
  padding-top: 10px;
}
.j-nav-level-1 > li:last-child {
  padding-bottom: 15px;
}

.main-menu {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0f0;
  z-index: 10;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}
#menusub {
  background: #000;
  box-shadow: 0px 3px 10px #aaa;
}
#menusub .j-nav-level-0 {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .j-nav-level-0 > li > a:hover {
    border-bottom-color: #0082c6;
    text-decoration: none;
  }
  .j-nav-level-0 > li:hover > ul {
    display: block !important;
    opacity: 1;
    -webkit-animation: fadein 0.4s;
    -moz-animation: fadein 0.4s;
    -ms-animation: fadein 0.4s;
    -o-animation: fadein 0.4s;
    animation: fadein 0.4s;
  }
  @-webkit-keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-moz-keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-ms-keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-o-keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/* * * * * * * * * * * * *
 * * *  EMOTION
 * * * * * * * * * * * * */
#emotion {
  position: relative;
  margin-top: 210px;
}
#emotion > img {
  width: 100%;
}

/* * * * * * * * * * * * *
 * * *  MAIN
 * * * * * * * * * * * * */
main {
  position: relative;
  padding: 0px 0 100px 0;
}

p {
  margin: 0.67em 0;
}

em {
  letter-spacing: 0.25px;
}

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  color: #0082c6;
  position: relative;
  text-transform: uppercase;
}

h1, .h1 {
  margin: 0 0 0.67em;
}
h1 span, .h1 span {
  color: #000;
}

h2, .h2 {
  margin: 1.67em 0 0.67em;
}
h2 span, .h2 span {
  color: #000;
}

h3 {
  margin: 1.34em 0 0.34em;
  color: #000;
}
h3 span {
  color: #0082c6;
}
aside h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.teaser {
  text-transform: uppercase;
}

.slogan {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slogan .highlight {
  color: #0082c6;
}

.section {
  position: relative;
}

.section-label {
  background-color: #000;
  padding: 15px 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
  z-index: 8;
}
.section-label.l {
  left: 0;
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: rotate(-90deg) translateX(-100%);
  -moz-transform: rotate(-90deg) translateX(-100%);
  -ms-transform: rotate(-90deg) translateX(-100%);
  -o-transform: rotate(-90deg) translateX(-100%);
  transform: rotate(-90deg) translateX(-100%);
}
.section-label.r {
  right: 0;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: translateY(-100.9%) rotate(-90deg);
  -moz-transform: translateY(-100.9%) rotate(-90deg);
  -ms-transform: translateY(-100.9%) rotate(-90deg);
  -o-transform: translateY(-100.9%) rotate(-90deg);
  transform: translateY(-100.9%) rotate(-90deg);
}

.section-1 .bg-parallax {
  margin: 30px 0 60px 0;
  height: 25vw;
  background-image: url(/uploads/org/2000/0/1/emotion-middle.jpg);
}

.section-3 .bg-parallax {
  margin: 60px 0 100px 0;
  height: 33vw;
  background-image: url(/uploads/org/2000/0/1/emotion-bottom.png);
}

.section-1 {
  padding-top: 50px;
  /*background:url(/images/bg-section-1.png) no-repeat top right;*/
}
.section-1 .section-label {
  top: 50px;
}

.bg-section {
  position: absolute;
  z-index: 1;
}
.section-3 .bg-section {
  bottom: -169px;
  left: 0;
}
.section-4 .bg-section {
  top: 0px;
  right: 0;
}

/*
.section-4 {
	padding-top:0px;

	.section-label {
		top:0px;
	}
}*/
.breadcrumb {
  position: relative;
  margin: 40px 0 20px 0;
}
.breadcrumb:before {
  content: "";
  display: block;
  border-top: 1px solid #ccc;
  top: 50%;
  position: absolute;
  width: 100%;
}
.breadcrumb:after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  background: #fff;
  width: calc((100% - 1130px) / 2);
}
.breadcrumb.l .breadcrumbs {
  margin-left: -25px;
}
.breadcrumb.l :after {
  left: 0;
}
.breadcrumb.r {
  text-align: right;
}
.breadcrumb.r .breadcrumbs {
  margin-right: -25px;
}
.breadcrumb.r:after {
  right: 0;
}
.breadcrumb .breadcrumbs {
  display: inline-block;
  padding: 0 20px;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb .breadcrumbs a {
  color: #000;
  padding: 0 10px;
}
.breadcrumb .breadcrumbs a:hover, .breadcrumb .breadcrumbs a.active {
  color: #0082c6;
  text-decoration: none;
}

.jive-ce-hr hr {
  margin: 20px 0;
}

.jive-ce-banderole {
  position: relative;
  background-color: #d5e0ee;
}
.jive-ce-banderole .quote,
.jive-ce-banderole small {
  color: #0082c6;
  text-transform: uppercase;
  margin: 0;
}

aside ul,
main ul {
  margin-top: 0.67em;
  padding-left: 35px;
  list-style: none;
}
aside ul li,
main ul li {
  position: relative;
  margin: 0.5em 0 1em 0;
}
aside ul li:before,
main ul li:before {
  content: "";
  border: 7px solid transparent;
  border-left: 11px solid #000;
  position: absolute;
  left: -35px;
  top: 0.4em;
}

main .box-kontakt ul {
  padding-left: 20px;
}
main .box-kontakt ul li {
  margin: 0;
}
main .box-kontakt ul li:before {
  border-width: 5px;
  border-left-width: 8px;
  left: -20px;
}

main ol {
  padding-left: 20px;
}

.img-rounded-corners {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

img.portrait {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

img.clip-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* Forms */
fieldset {
  border: none;
  background-color: transparent;
}

textarea {
  height: 100px;
}

input[type=password],
input[type=text],
input[type=email],
textarea {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  color: #333;
  padding: 12px 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
}

input[type=password]:focus,
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: #ccc;
}

input[type=radio] {
  margin-right: 5px;
}

.show-label label {
  display: inline-block !important;
}

#formKontakt label {
  display: none;
  margin-right: 30px;
}

form p {
  position: relative;
}

p.pflichtfeld:after {
  content: "*";
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  color: #0f0;
}

p.checkbox.pflichtfeld:after {
  display: none;
}

p.checkbox.pflichtfeld label:after {
  content: "*";
  color: #0082c6;
}

p.radio {
  background: #f9f9f9;
  padding: 9px 15px;
  border: 1px solid transparent;
}

p.pflichtfeld.fehler.radio,
p.pflichtfeld.fehler input,
p.pflichtfeld.fehler textarea {
  border-color: #900;
}

p.pflichtfeld.checkbox.fehler {
  background: #fdd;
}

p.pflichtfeld.fehler label {
  color: #900;
}

.box-status, .box-status-hinweis, .box-status-fehler, .box-status-erfolg {
  padding: 5px 10px;
  color: #fff;
}

.box-status-erfolg {
  background: #0c0;
}

.box-status-fehler {
  background: #900;
}

.box-status-hinweis {
  background: #0082c6;
}

/* tables */
td {
  padding: 5px 20px 5px 0;
  border-bottom: 1px dotted #ccc;
  vertical-align: top;
}

tr:last-child td {
  border-bottom: none;
}

/* * * * * * * * * * * * *
 * * *  ASIDE
 * * * * * * * * * * * * */
aside {
  padding: 40px 0;
  background: #0082c6;
}
aside a {
  color: #0f0;
}

/* * * * * * * * * * * * *
 * * *  FOOTER
 * * * * * * * * * * * * */
footer {
  padding: 20px 0 30px;
  color: #fff;
  background: #000;
  text-transform: uppercase;
}
footer a {
  color: #fff;
  margin-right: 20px;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}
@media screen and (min-width: 769px) {
  footer a:hover {
    text-decoration: none;
    color: #fff;
  }
}

/* 
	PLUGINS.SCSS 
*/
/* Slider */
#slider {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}

#slider li:before {
  display: none;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
}

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

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

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

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

.slick-slide img {
  display: inline-block;
}

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

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

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

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

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

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

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 80px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  transition: ease 0.2s;
}

.slick-prev:hover,
.slick-next:hover {
  outline: none;
  background: rgba(0, 0, 0, 0.3);
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -25px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  opacity: 0.3;
}

.slick-prev:before {
  margin-left: -10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.slick-next:before {
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

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

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

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

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

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

.slick-dots li button:before {
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  opacity: 0.25;
  border: 3px solid #fff;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #fff;
}

/* 
	MEDIA.SCSS 
*/
@media only screen and (min-width: 980px) {
  /* show menu, when orientation changes back from portrait to landscape */
  nav > ul {
    display: block !important;
  }
  .desktop-hidden {
    display: none;
  }
}
@media only screen and (max-width: 979px) {
  header {
    position: relative;
    height: auto;
  }
  #nav-wrapper {
    border: none;
    bottom: auto;
    top: 57px;
    background: #fff;
  }
  #logo {
    width: 140px;
    position: relative;
    float: right;
    top: auto;
    right: 0;
    padding: 20px 25px 20px 0;
  }
  .section {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em;
  }
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
  }
  h2 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
  }
  h3 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em;
  }
  aside {
    padding: 0 0 40px 0;
  }
  aside h3 {
    margin-top: 1.5em;
  }
  .jive-grid-row {
    margin: 0;
  }
  .jive-grid-col {
    width: 100%;
    float: none;
    margin: 0;
  }
  .btn {
    font-size: 16px;
    font-size: 1rem;
    white-space: normal;
  }
  .btn-lg {
    padding: 10px 20px;
  }
  #mobile-menu {
    display: block;
    padding: 15px 10px;
    width: 30px;
    margin-left: -10px;
  }
  .mobile-menu-line {
    display: block;
    width: 30px;
    position: relative;
    margin: 6px 0;
    border-top: 3px solid #0082c6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mobile-menu-line:before,
  .mobile-menu-line:after {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 3px solid #0082c6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mobile-menu-line:before {
    top: -9px;
  }
  .mobile-menu-line:after {
    top: 3px;
  }
  #mobile-menu.open .mobile-menu-line {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #mobile-menu.open .mobile-menu-line:before,
  #mobile-menu.open .mobile-menu-line:after {
    top: -3px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #mobile-menu.open .mobile-menu-line:after {
    opacity: 0;
  }
  nav > ul {
    display: none;
  }
  .j-nav-level-0 > li {
    display: block;
    position: relative;
  }
  .j-nav-level-0 > li > a {
    padding: 10px 20px;
    border-top: 1px solid #fff;
  }
  .j-nav-level-0 > li:last-child {
    padding-bottom: 15px;
  }
  .j-nav-level-1 {
    display: none;
    opacity: 1;
    position: relative;
    border-top: none;
    min-width: 100%;
    max-width: 100%;
  }
  .j-nav-level-1 > li {
    background-color: transparent;
  }
  .j-nav-level-1 > li:first-child {
    padding-top: 0px;
  }
  .j-nav-level-1 > li > a {
    padding: 5px 20px 5px 50px;
  }
  .j-nav-toggle-child {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 52px;
  }
  .j-nav-toggle-child:after {
    content: "";
    position: absolute;
    top: 24px;
    left: 12px;
    display: block;
    border: 8px solid #fff;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .j-nav-toggle-child.close:after {
    top: 13px;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  li.current .j-nav-toggle-child:after {
    border-top-color: #0082c6;
  }
  #emotion {
    margin-top: 0px;
  }
  main {
    padding: 30px 0 50px 0;
  }
  .breadcrumbs a {
    display: none;
  }
  .breadcrumbs a.active {
    display: inline-block;
  }
  .section-label {
    display: none;
  }
  .quote {
    display: inline;
    text-align: left !important;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4em;
  }
  .quote small {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4em;
  }
  img.portrait {
    position: relative;
    max-width: 100%;
  }
  .mobile-hidden {
    display: none;
  }
  .bg-parallax {
    background-attachment: scroll;
  }
  .section-1 .bg-parallax,
  .section-3 .bg-parallax {
    height: 70vw;
  }
  .section-3 .bg-parallax {
    margin-bottom: 40px;
  }
  .section-1 {
    background-image: none;
  }
  .section-4 .bg-section,
  .section-3 .bg-section {
    display: none;
  }
  .section-4 {
    padding-top: 0;
  }
  .section-1 .bg-parallax {
    background-image: url(/uploads/org/980/0/1/emotion-middle.jpg);
  }
  .section-3 .bg-parallax {
    background-image: url(/uploads/org/980/0/1/emotion-bottom.jpg);
  }
}
@media only screen and (max-width: 1250px) {
  .section-3 .bg-section {
    bottom: -260px;
  }
  .section-1 .bg-parallax {
    background-image: url(/uploads/org/1250/0/1/emotion-middle.jpg);
  }
  .section-3 .bg-parallax {
    background-image: url(/uploads/org/1250/0/1/emotion-bottom.jpg);
  }
}/*# sourceMappingURL=default.css.map */