@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');
*/
/* 384px */
/* 
	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 
*/
html, body {
  font-size: 16px;
  font-size: 1rem;
  /* DO NOT CHANGE - DEFAULT BROWSER SIZE */
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5em;
  font-weight: 400; }

nav a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1em;
  font-weight: 700; }
nav .j-nav-level-1 a {
  font-weight: 400; }

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  font-weight: 700; }

h1, .h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2em; }

h2, .h2 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2em; }
  .emotion-teaser h2, .emotion-teaser .h2 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.2em;
    font-weight: 400; }

h3, .h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em; }

b, strong {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  font-weight: 700; }

i, em {
  font-style: italic; }

.btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 700; }

.btn-lg {
  font-size: 20px;
  font-size: 1.25rem; }

input,
textarea {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5em; }

.box-icon-caption {
  font-weight: 700; }

.box-tile-content h2 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  font-weight: 700; }

.call2action {
  font-weight: 700; }

/* 
	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; }

/* Grid */
.jive-grid-row {
  margin: 0 -25px; }
  .jive-grid-row .jive-grid-col:last-child {
    float: right;
    margin-left: 0;
    clear: right; }

.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); }

.jive-ce-grid.no-gap .jive-grid-row {
  margin: 0; }
.jive-ce-grid.no-gap .jive-grid-col {
  margin: 0; }
.jive-ce-grid.no-gap .jive-grid-one-half {
  width: 50%; }
.jive-ce-grid.no-gap .jive-grid-one-third {
  width: 33.3%; }
.jive-ce-grid.no-gap .jive-grid-two-third {
  width: 66.6%; }
.jive-ce-grid.no-gap .jive-grid-one-fourth {
  width: 25%; }
.jive-ce-grid.no-gap .jive-grid-three-fourth {
  width: 75%; }
.jive-ce-grid.no-gap .jive-grid-one-fifth {
  width: 20%; }
.jive-ce-grid.no-gap .jive-grid-two-fifth {
  width: 40%; }
.jive-ce-grid.no-gap .jive-grid-three-fifth {
  width: 60%; }
.jive-ce-grid.no-gap .jive-grid-four-fifth {
  width: 80%; }
.jive-ce-grid.no-gap .jive-grid-one-sixth {
  width: 16.6%; }
.jive-ce-grid.no-gap .jive-grid-five-sixth {
  width: 83.3%; }

@media only screen and (max-width: 1179px) {
  .jive-grid-row {
    margin: 0 -15px; }

  .jive-grid-col {
    margin: 0 15px; }

  .jive-grid-one-half {
    width: calc(50% - 30px); }

  .jive-grid-one-third {
    width: calc(33.3% - 30px); }

  .jive-grid-two-third {
    width: calc(66.6% - 30px); }

  .jive-grid-one-fourth {
    width: calc(25% - 30px); }

  .jive-grid-three-fourth {
    width: calc(75% - 30px); }

  .jive-grid-one-fifth {
    width: calc(20% - 30px); }

  .jive-grid-two-fifth {
    width: calc(40% - 30px); }

  .jive-grid-three-fifth {
    width: calc(60% - 30px); }

  .jive-grid-four-fifth {
    width: calc(80% - 30px); }

  .jive-grid-one-sixth {
    width: calc(16.6% - 30px); }

  .jive-grid-five-sixth {
    width: calc(83.3% - 30px); } }
@media only screen and (max-width: 767px) {
  .jive-ce-grid .jive-grid-row {
    margin: 0; }
  .jive-ce-grid.no-gap .jive-grid-col,
  .jive-ce-grid .jive-grid-col {
    width: 100%;
    float: none;
    margin: 0 0 20px 0; }
  .jive-ce-grid.no-gap .jive-grid-col {
    margin: 0; } }
/* CE: HR */
.jive-ce-hr hr {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 70px 0; }

.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: #345073; }

.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: -.2em;
  left: -.25em;
  color: #345073; }

.jive-ce-tabs-content h4 {
  padding-left: 1.75em;
  color: #345073;
  margin-top: 1.75em; }

/* CE: ICON */
.jive-ce-icon span {
  font-size: 7em;
  color: #345073; }

.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: #345073;
  padding: 40px 0 50px;
  margin: 50px 0; }

.jive-ce-banderole h2:first-child {
  margin-top: 0; }

.jive-ce-banderole * {
  color: #e7e7e7; }

/* 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: #345073;
  color: #fff; }

.btn-lg {
  padding: 15px 20px; }

.btn-primary {
  background: #345073;
  color: #fff; }

.btn-primary:hover {
  background: #e7e7e7; }

.btn-secondary {
  background: #e7e7e7;
  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: #081427; }

.btn-ghost {
  border: 2px solid #345073;
  color: #345073;
  background: transparent; }

.btn-ghost:hover {
  background: #345073;
  color: #fff; }

.btn-ghost.btn-invers {
  border-color: #fff;
  color: #fff; }

.btn-ghost.btn-invers:hover {
  background: #fff;
  color: #345073; }

.align-right {
  text-align: right; }

.align-center {
  text-align: center; }

.align-left {
  text-align: left; }

.to-lowercase {
  text-transform: lowercase; }

.to-uppercase {
  text-transform: uppercase; }

/* 
	MAIN.SCSS 
*/
html, body {
  color: #081427; }

a {
  text-decoration: none;
  outline: none;
  color: #081427;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s; }

#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: #081427;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  min-height: 118px; }

#logo {
  width: 325px;
  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;
  left: 25px;
  top: 10px;
  z-index: 10; }
  #logo img {
    width: 100%; }

/* Main Nav 1 */
nav {
  margin-top: 52px; }
  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: #fff;
    display: block;
    white-space: nowrap; }
    nav a.current {
      opacity: 1; }

.j-nav-level-0 {
  text-align: right;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s; }
  .j-nav-level-0 > li {
    display: inline-block;
    position: relative;
    margin: 0 10px; }
    .j-nav-level-0 > li > a {
      display: block;
      padding: 15px 0px 30px 0;
      text-transform: uppercase;
      white-space: nowrap; }
      .j-nav-level-0 > li > a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 1px;
        background-color: #fff;
        -webkit-transition: ease 0.2s;
        -moz-transition: ease 0.2s;
        -ms-transition: ease 0.2s;
        -o-transition: ease 0.2s;
        transition: ease 0.2s; }
    .j-nav-level-0 > li.current > a:before {
      width: 100%; }

.j-nav-level-1 {
  text-align: left;
  display: none;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: calc(100% + 15px); }
  .j-nav-level-1 > li {
    display: block; }
    .j-nav-level-1 > li > a {
      padding: 8px 15px; }
    .j-nav-level-1 > li.current > a {
      opacity: 1; }
  .j-nav-level-1 > li:last-child {
    padding-bottom: 25px; }

/* * * * * * * * * * * * *
 * * *  EMOTION
 * * * * * * * * * * * * */
#emotion {
  position: relative;
  margin-top: 110px; }
  #emotion > img {
    width: 100%; }

.emotion-teaser {
  position: absolute;
  width: 730px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  -moz-transform: translate(-50%, -60%);
  -ms-transform: translate(-50%, -60%);
  -o-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%); }
  .emotion-teaser * {
    color: #fff;
    text-align: center; }
  .emotion-teaser a {
    text-decoration: underline; }
  .emotion-teaser h1 {
    margin: 0; }
  .emotion-teaser h2 {
    margin: 0 0 .67em 0;
    text-transform: uppercase; }

.kontakt-label {
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  -ms-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
  background-color: #345073;
  padding: 15px 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: fixed;
  top: 0;
  z-index: 8; }
  .kontakt-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%); }
  .kontakt-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(200%) rotate(-90deg);
    -moz-transform: translateY(200%) rotate(-90deg);
    -ms-transform: translateY(200%) rotate(-90deg);
    -o-transform: translateY(200%) rotate(-90deg);
    transform: translateY(200%) rotate(-90deg); }
  .kontakt-label:hover {
    background-color: #081427; }

.icon-label-wrapper {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 5; }
  .icon-label-wrapper .icon-label {
    width: 150px;
    padding-bottom: 150px;
    background: #345073 none no-repeat center center;
    background-size: 80%; }
    .icon-label-wrapper .icon-label.energieeffizienz {
      background-image: url(/uploads/org/icon-energieeffizienz-weiss.svg); }
    .icon-label-wrapper .icon-label.schallschutz {
      background-image: url(/uploads/org/icon-schallschutz-weiss.svg); }
    .icon-label-wrapper .icon-label.brandschutz {
      background-image: url(/uploads/org/icon-brandschutz-weiss.svg); }
    .icon-label-wrapper .icon-label.schweissen {
      background-image: url(/uploads/org/icon-schweissfachingenieur-weiss.svg); }
    .icon-label-wrapper .icon-label.statikberechnung {
      background-image: url(/uploads/org/icon-2-statikberechnung-weiss.svg); }
    .icon-label-wrapper .icon-label.tragwerksplanung {
      background-image: url(/uploads/org/icon-2-tragwerksplanung-weiss.svg); }
    .icon-label-wrapper .icon-label.bausachverstaendiger {
      background-image: url(/uploads/org/icon-2-bausachverstaendiger-weiss.svg); }
    .icon-label-wrapper .icon-label.energetische-sanierung {
      background-image: url(/uploads/org/icon-2-energetische-sanierung-weiss.svg); }
    .icon-label-wrapper .icon-label.energieberater {
      background-image: url(/uploads/org/icon-2-energieberater-weiss.svg); }
    .icon-label-wrapper .icon-label.waermeschutz {
      background-image: url(/uploads/org/icon-2-energieeffizienz-und-waermeschutz-weiss.svg); }
    .icon-label-wrapper .icon-label.kfw-foerderung {
      background-image: url(/uploads/org/icon-2-kfw-foerderung-weiss.svg); }

/* * * * * * * * * * * * *
 * * *  MAIN
 * * * * * * * * * * * * */
main {
  position: relative;
  padding-bottom: 100px; }
  body.home main {
    padding-bottom: 0; }

p {
  margin: .67em 0; }

em {
  letter-spacing: 0.25px; }

h1, h2, h3, h4, h5, h6 {
  color: #081427;
  position: relative; }

h1, .h1 {
  color: #345073;
  margin: 1.67em 0 .67em;
  text-transform: uppercase;
  letter-spacing: 2px; }

h2 {
  margin: 1.67em 0 .67em; }

h3 {
  margin: 1.34em 0 .34em; }

main ul {
  margin-top: .67em;
  padding-left: 15px;
  list-style: none; }
  main ul li {
    position: relative; }
  main ul li:before {
    content: '';
    border: 5px solid transparent;
    border-left: 5px solid #345073;
    position: absolute;
    left: -15px;
    top: .4em; }

main ol {
  padding-left: 20px; }

.img-rounded-corners {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden; }

.call2action {
  margin: 2em 0; }

/* 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: #345073; }

p.checkbox.pflichtfeld:after {
  display: none; }

p.checkbox.pflichtfeld label:after {
  content: '*';
  color: #345073; }

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-erfolg, .box-status-fehler, .box-status-hinweis {
  padding: 5px 10px;
  color: #fff; }

.box-status-erfolg {
  background: #0c0; }

.box-status-fehler {
  background: #900; }

.box-status-hinweis {
  background: #345073; }

/* tables */
td {
  padding: 5px 20px 5px 0;
  border-bottom: 1px dotted #ccc;
  vertical-align: top; }

tr:last-child td {
  border-bottom: none; }

.jive-ce-map {
  position: relative;
  padding-bottom: 33%;
  background-color: #f1f1f1; }

#jive-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.box-icon .box-icon-outer {
  position: relative;
  display: block;
  padding: 50px 10px 0 10px;
  height: 280px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }
  .box-icon .box-icon-outer .box-icon-img {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: block;
    width: 50%;
    padding-bottom: 50%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%; }
    .box-icon .box-icon-outer .box-icon-img.statik {
      background-image: url(/uploads/org/icon-statik-blau.svg); }
    .box-icon .box-icon-outer .box-icon-img.energieeffizienz {
      background-image: url(/uploads/org/icon-energieeffizienz-blau.svg); }
    .box-icon .box-icon-outer .box-icon-img.schallschutz {
      background-image: url(/uploads/org/icon-schallschutz-blau.svg); }
    .box-icon .box-icon-outer .box-icon-img.brandschutz {
      background-image: url(/uploads/org/icon-brandschutz-blau.svg); }
    .box-icon .box-icon-outer .box-icon-img.schweissfachingenieur {
      background-image: url(/uploads/org/icon-schweissfachingenieur-blau.svg); }
  .box-icon .box-icon-outer .box-icon-caption {
    /*@include transition(.4s);*/
    margin-top: 1em;
    text-align: center;
    text-transform: uppercase; }

/* * *  BOXES  * * */
.box-tile {
  width: 100%;
  position: relative;
  overflow: hidden; }
  .box-tile.theme-primary {
    background-color: #345073; }
    .box-tile.theme-primary .box-tile-outer .box-tile-caption {
      background-color: #345073; }
    .box-tile.theme-primary .box-tile-outer:hover .box-tile-caption {
      background-color: #e7e7e7; }
    .box-tile.theme-primary .box-tile-content h2, .box-tile.theme-primary .box-tile-content p {
      color: #fff; }
    .box-tile.theme-primary .box-tile-content .btn-ghost {
      color: #fff;
      border-color: #fff; }
      .box-tile.theme-primary .box-tile-content .btn-ghost:hover {
        background-color: #fff;
        color: #345073; }
  .box-tile.theme-primary-dark {
    background-color: #081427; }
    .box-tile.theme-primary-dark .box-tile-content h3, .box-tile.theme-primary-dark .box-tile-content p {
      color: #fff; }
    .box-tile.theme-primary-dark .box-tile-content h3 {
      margin-top: 0; }
  .box-tile.theme-secondary {
    background-color: #e7e7e7; }
    .box-tile.theme-secondary .box-tile-outer .box-tile-caption {
      background-color: #e7e7e7; }
    .box-tile.theme-secondary .box-tile-outer:hover .box-tile-caption {
      background-color: #345073; }
    .box-tile.theme-secondary h2, .box-tile.theme-secondary p {
      color: #345073; }
    .box-tile.theme-secondary .btn-ghost {
      color: #345073;
      border-color: #345073; }
      .box-tile.theme-secondary .btn-ghost:hover {
        background-color: #345073;
        color: #fff; }
  .box-tile.type-image {
    background-color: #fff; }
  .box-tile.prop-2-1 {
    padding-bottom: 50%; }
  .box-tile.prop-1-1 {
    padding-bottom: 100%; }
  .box-tile.prop-10-7 {
    padding-bottom: 70%; }
  .box-tile.prop-4-3 {
    padding-bottom: 75%; }
  .box-tile .box-tile-outer {
    position: absolute;
    /* 1px offset in all directions, due to browser %-calc errors */
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px; }
    .box-tile .box-tile-outer.box-zoom:hover .box-tile-content {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
  .box-tile .box-tile-inner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    color: #fff;
    text-align: left;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .box-tile .box-tile-content {
    -webkit-transition: ease 1s;
    -moz-transition: ease 1s;
    -ms-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s; }
    .box-tile .box-tile-content img {
      width: 100%; }
    .box-tile .box-tile-content h2 {
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 0; }
    .box-tile .box-tile-content.text {
      width: 70%;
      margin: auto; }
  .box-tile .box-tile-caption {
    position: absolute;
    padding: 10px 20px;
    display: inline-block;
    text-align: left;
    color: #fff;
    background-color: #081427;
    -webkit-transition: ease 1s;
    -moz-transition: ease 1s;
    -ms-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s;
    /* full size horizontal */
    /* full size vertical */ }
    .box-tile .box-tile-caption.t {
      top: 0; }
    .box-tile .box-tile-caption.b {
      bottom: 0; }
    .box-tile .box-tile-caption.r {
      right: 0; }
    .box-tile .box-tile-caption.l {
      left: 0; }
    .box-tile .box-tile-caption.h {
      left: 0;
      right: 0; }
    .box-tile .box-tile-caption.v {
      top: 0;
      bottom: 0; }
    .box-tile .box-tile-caption.type-slide-up {
      -webkit-transition: ease 0.4s;
      -moz-transition: ease 0.4s;
      -ms-transition: ease 0.4s;
      -o-transition: ease 0.4s;
      transition: ease 0.4s;
      top: calc(100% - 39px); }

.jive-gal {
  margin: 0 -10px; }
  .jive-gal .jive-gal-item {
    width: calc(20% - 20px);
    float: left;
    margin: 0 10px 30px 10px;
    position: relative;
    display: block; }
    .jive-gal .jive-gal-item .img img {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-filter: grayscale(1);
      -moz-filter: grayscale(1);
      -ms-filter: grayscale(1);
      -o-filter: grayscale(1);
      filter: grayscale(1);
      -webkit-transition: 0.4s;
      -moz-transition: 0.4s;
      -ms-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      border: 1px solid #345073;
      width: 100%; }
    .jive-gal .jive-gal-item .hover {
      background: #081427;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      opacity: .925;
      -webkit-transition: 0.4s;
      -moz-transition: 0.4s;
      -ms-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .jive-gal .jive-gal-item .title {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center; }
    .jive-gal .jive-gal-item:hover .hover {
      opacity: 0; }
    .jive-gal .jive-gal-item:hover .img img {
      -webkit-filter: grayscale(0);
      -moz-filter: grayscale(0);
      -ms-filter: grayscale(0);
      -o-filter: grayscale(0);
      filter: grayscale(0); }

.gradient1 {
  background: #858694;
  background: -moz-linear-gradient(left, #858694 0%, #081427 50%);
  background: -webkit-linear-gradient(left, #858694 0%, #081427 50%);
  background: linear-gradient(to right, #858694 0%, #081427 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#858694', endColorstr='#081427',GradientType=1 ); }

.gradient2 {
  background: #858694;
  background: -moz-linear-gradient(left, #081427 50%, #858694 100%);
  background: -webkit-linear-gradient(left, #081427 50%, #858694 100%);
  background: linear-gradient(to right, #081427 50%, #858694 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#081427', endColorstr='#858694',GradientType=1 ); }

.desktop-hidden {
  display: none; }

/* * * * * * * * * * * * *
 * * *  ASIDE
 * * * * * * * * * * * * */
/* * * * * * * * * * * * *
 * * *  FOOTER
 * * * * * * * * * * * * */
footer {
  padding: 40px 0 50px;
  background-color: #ebebeb;
  letter-spacing: 1px; }
  footer .trenner {
    margin: 0 15px; }
  footer a {
    margin: 0 10px;
    color: #fff; }
    footer a:first-child {
      margin-left: 0; }
    footer a.mail {
      margin: 0; }
  footer * {
    color: #fff; }
  footer .jive-ce-hr hr {
    margin: 0;
    background: #fff; }

/* * * * * * * * * * * * *
 * * *  JIVE OVERRIDES
 * * * * * * * * * * * * */
.btn {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-transform: uppercase; }
  .btn.btn-primary {
    background-color: #345073; }
    .btn.btn-primary:hover {
      background-color: #081427; }

.btn-ghost {
  border-width: 1px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; }

.jive-caption {
  position: absolute;
  padding: 10px 20px;
  display: inline-block;
  text-align: left;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .jive-caption.theme-primary {
    background-color: #081427;
    width: 40%; }
  .jive-caption.theme-secondary {
    background-color: #e7e7e7; }
  .jive-caption.effect-fade {
    -webkit-transition: ease 1s;
    -moz-transition: ease 1s;
    -ms-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s; }
  .jive-caption.pos-t {
    top: 0; }
  .jive-caption.pos-b {
    bottom: 0; }
  .jive-caption.pos-r {
    right: 0; }
  .jive-caption.pos-l {
    left: 0; }

.jive-ce-banderole {
  margin: 0; }
  .jive-ce-banderole.theme-primary {
    background-color: #081427; }
  .jive-ce-banderole li:before {
    border-left-color: #fff; }
  .jive-ce-banderole h1 {
    color: #345073; }
  .jive-ce-banderole h1:first-child,
  .jive-ce-banderole h2:first-child,
  .jive-ce-banderole h3:first-child {
    margin-top: 0; }

.jive-ce-hr hr {
  background-color: #345073;
  margin: 40px 0; }

/* 
	PLUGINS.SCSS 
*/
/* Slider */
#slider {
  display: none;
  width: 100%;
  overflow: hidden; }

.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: transparent;
  z-index: 999;
  transition: ease .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: .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: .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: 1180px) {
  a:hover {
    text-decoration: none;
    outline: none; }

  main a:hover {
    color: #345073; }

  /* show menu, when orientation changes back from portrait to landscape */
  nav > ul {
    display: block !important; }

  nav:hover a {
    color: #fff;
    opacity: .5; }
  nav ul > li:hover > a {
    opacity: 1; }

  .icon-boxes:hover .box-icon-img {
    opacity: .5;
    /*width:30%;*/
    background-size: 50%;
    padding-bottom: 30%; }
  .icon-boxes:hover .box-icon-caption {
    opacity: .5;
    margin-top: .5em;
    font-size: .8em; }
  .icon-boxes .box-icon-outer:hover .box-icon-img {
    opacity: 1;
    /*width:50%;*/
    background-size: 100%;
    padding-bottom: 50%; }
  .icon-boxes .box-icon-outer:hover .box-icon-caption {
    opacity: 1;
    margin-top: 1em;
    font-size: 1em; }

  .box-icon .box-icon-outer:hover {
    background: #081427;
    /*background: -moz-linear-gradient(-45deg, #081427 50%, #858694 100%);
    background: -webkit-linear-gradient(-45deg, #081427 50%,#858694 100%);
    background: linear-gradient(135deg, #081427 50%,#858694 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#081427', endColorstr='#858694',GradientType=1 );*/ }
    .box-icon .box-icon-outer:hover .box-icon-img.statik {
      background-image: url(/uploads/org/icon-statik-weiss.svg); }
    .box-icon .box-icon-outer:hover .box-icon-img.energieeffizienz {
      background-image: url(/uploads/org/icon-energieeffizienz-weiss.svg); }
    .box-icon .box-icon-outer:hover .box-icon-img.schallschutz {
      background-image: url(/uploads/org/icon-schallschutz-weiss.svg); }
    .box-icon .box-icon-outer:hover .box-icon-img.brandschutz {
      background-image: url(/uploads/org/icon-brandschutz-weiss.svg); }
    .box-icon .box-icon-outer:hover .box-icon-img.schweissfachingenieur {
      background-image: url(/uploads/org/icon-schweissfachingenieur-weiss.svg?c=1); }
    .box-icon .box-icon-outer:hover .box-icon-caption {
      color: #fff; }

  .box-tile .box-tile-outer .box-tile-caption {
    opacity: 0; }
    .box-tile .box-tile-outer .box-tile-caption.type-visible {
      opacity: 1; }
    .box-tile .box-tile-outer .box-tile-caption.type-slide-up {
      opacity: 1; }
  .box-tile .box-tile-outer:hover .box-tile-caption {
    opacity: 1; }
    .box-tile .box-tile-outer:hover .box-tile-caption.type-slide-up {
      top: 50%;
      opacity: 1; }

  .j-nav-level-0 > li:hover > a:before {
    width: 100%; }

  .j-nav-level-0 > li:hover > ul,
  .j-nav-level-1 > 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; } } }
@media only screen and (max-width: 1179px) {
  html, body {
    font-size: 14px; }

  .mobile-hidden {
    display: none; }

  header {
    position: relative;
    height: auto; }

  #nav-wrapper {
    position: relative;
    border: none; }

  #logo {
    width: 260px;
    position: relative;
    left: 0;
    top: 0;
    padding: 10px 0 20px 0; }

  h1 {
    font-size: 1.5em;
    line-height: 1.25em; }

  h2, .emotion-teaser h2 {
    font-size: 1.125em;
    line-height: 1.4em; }

  h3 {
    font-size: 1em;
    line-height: 1.4em; }

  .kontakt-label {
    font-size: 1em;
    letter-spacing: 0;
    padding: 3px 8px;
    top: -65px;
    position: absolute; }

  .jive-container {
    padding: 0 15px; }

  .btn {
    font-size: 1em;
    white-space: normal; }

  .btn-lg {
    padding: 10px 20px; }

  #mobile-menu {
    display: block;
    padding: 15px 15px;
    width: 30px;
    position: absolute;
    top: 37px;
    right: 0;
    z-index: 5; }
    #mobile-menu .mobile-menu-line {
      display: block;
      width: 30px;
      position: relative;
      margin: 6px 0;
      border-top: 3px solid #fff;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      #mobile-menu .mobile-menu-line:before, #mobile-menu .mobile-menu-line:after {
        content: '';
        position: absolute;
        width: 100%;
        border-top: 3px solid #fff;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
      #mobile-menu .mobile-menu-line:before {
        top: -9px; }
      #mobile-menu .mobile-menu-line:after {
        top: 3px; }
    #mobile-menu.open .mobile-menu-line {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-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);
      -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg); }
    #mobile-menu.open .mobile-menu-line:after {
      opacity: 0; }

  nav {
    position: absolute;
    top: 100px;
    margin-top: 0;
    left: 0;
    right: 0;
    background-color: #081427; }
    nav > ul {
      display: none; }
    nav ul {
      padding-bottom: 15px; }

  .j-nav-level-0 {
    text-align: left;
    padding: 0 35px; }
    .j-nav-level-0 > li {
      display: block;
      position: relative;
      margin: 0 15px; }
      .j-nav-level-0 > li > a {
        padding: 14px 0px;
        border-top: 1px solid #fff; }
      .j-nav-level-0 > li:first-child > a {
        border: none; }

  .j-nav-level-1 {
    display: none;
    opacity: 1;
    position: relative;
    border-top: none;
    top: auto;
    left: auto;
    right: auto; }
    .j-nav-level-1 > li {
      display: block;
      background-color: transparent; }
      .j-nav-level-1 > li > a {
        padding: 10px 20px;
        color: #fff;
        display: block; }
      .j-nav-level-1 > li:last-child {
        padding-bottom: 10px; }

  .j-nav-level-2 {
    display: none;
    opacity: 1;
    position: relative;
    border-top: none;
    top: auto;
    left: auto;
    right: auto; }
    .j-nav-level-2 > li {
      display: block;
      background-color: transparent; }
      .j-nav-level-2 > li > a {
        padding: 10px 40px;
        color: #fff;
        display: block; }

  .j-nav-toggle-child {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px; }
    .j-nav-toggle-child:after {
      content: '';
      position: absolute;
      top: 45%;
      left: calc(50% - 8px);
      display: block;
      border: 8px solid #fff;
      border-left-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .j-nav-toggle-child.close:after {
      top: 20%;
      -webkit-transform: rotate(-180deg);
      -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
      transform: rotate(-180deg); }
    li.current .j-nav-toggle-child:after {
      border-top-color: #345073; }
    .j-nav-level-1 .j-nav-toggle-child {
      height: 32px; }

  .slogan {
    text-align: center; }

  #emotion {
    margin-top: 0px; }

  main {
    padding: 0 0 50px 0; }

  .jive-ce-map {
    padding-bottom: 100%; }

  footer {
    padding: 20px 0 30px 0; }
    footer .jive-ce-spacer {
      display: none; }

  .box-tile .box-tile-caption.type-slide-up {
    top: calc(100% - 35px); } }
@media only screen and (max-width: 1023px) {
  	/*
  	h1, .h1 {
  		font-size:24px;
  		line-height:1.2em;
  		margin-top:40px;
  	}
  	h2, .h2 {
  		font-size:18px;
  		line-height:1.2em;
  
  		.emotion-teaser & {
  			font-size:24px;
  			line-height:1.2em;
  		}
  	}
  	h3, .h3 {
  		font-size:16px;
  		line-height:1.2em;
  	}*/
  .box-tile .box-tile-content.text {
    width: 90%; } }
@media only screen and (max-width: 767px) {
  	/*
  	h1, .h1 {
  		font-size:24px;
  		line-height:1.2em;
  		margin-top:40px;
  	}
  	h2, .h2 {
  		font-size:18px;
  		line-height:1.2em;
  
  		.emotion-teaser & {
  			font-size:24px;
  			line-height:1.2em;
  		}
  	}
  	h3, .h3 {
  		font-size:16px;
  		line-height:1.2em;
  	}*/
  .emotion-teaser {
    width: 100%;
    padding: 20px;
    position: relative;
    background-color: #081427;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

  .box-tile .box-tile-content.text {
    width: auto;
    border: none; }

  .box-icon .box-icon-outer {
    padding: 20px 10px;
    height: auto; }

  .jive-ce-grid.icon-boxes .jive-grid-col {
    width: 50%;
    float: left; }

  .box-footer .outer-box {
    text-align: center; }
    .box-footer .outer-box.trennlinie:after {
      display: none; }

  .jive-caption {
    position: relative; }
    .jive-caption.theme-primary {
      width: 100%; }

  .box-tile {
    padding: 25px 0 !important; }
    .box-tile h2 {
      margin-top: 0; }
    .box-tile .box-tile-caption {
      position: relative;
      display: block; }
      .box-tile .box-tile-caption.l, .box-tile .box-tile-caption.r {
        right: 0;
        left: 0; }
    .box-tile .box-tile-outer {
      position: relative; }
    .box-tile .box-tile-inner {
      position: relative;
      top: auto;
      left: auto;
      padding: 0 25px;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .box-tile.type-image {
      padding: 0 !important; }
      .box-tile.type-image .box-tile-inner {
        padding: 0; }

  .icon-label-wrapper .icon-label {
    width: 90px;
    padding-bottom: 90px; }

  .jive-gal .jive-gal-item {
    width: calc(33% - 20px); }
    .jive-gal .jive-gal-item .img img {
      -webkit-filter: grayscale(0);
      -moz-filter: grayscale(0);
      -ms-filter: grayscale(0);
      -o-filter: grayscale(0);
      filter: grayscale(0); }
    .jive-gal .jive-gal-item .hover {
      top: 70%; }

  .desktop-hidden {
    display: block; } }
@media only screen and (max-width: 450px) {
  .jive-gal .jive-gal-item {
    width: calc(50% - 20px); } }
@media only screen and (max-width: 320px) {
  .jive-gal .jive-gal-item {
    width: calc(100% - 20px); } }

/*# sourceMappingURL=default.css.map */
