@charset "UTF-8";
/* 
    DEFAULT.SCSS: Main file; loads other partials
*/
/* 
	SASS.SCSS 
*/
/* grids */
/* font */
/* colours: https://robots.thoughtbot.com/controlling-color-with-sass-color-functions */
/* Mixins */
/* 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 */
/* filter */
/* animations */
/* https://www.w3schools.com/css/css3_animations.asp

@include keyframes(fadein) {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@include animation('fadein 5s linear 2s infinite alternate');

*/
/* 
	RESET.SCSS 
*/
/* box-sizing, not on pseudo-elements: would assign a pseudo-element to each element. https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

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

a,
a:link,
a:active,
a:hover,
:focus {
  outline: none;
}

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

h1, .h1 {
  margin: 0 0 .67em 0;
}

h2, .h2 {
  margin: 1.67em 0 .67em 0;
}

h3, .h3 {
  margin: 1.34em 0 .34em 0;
}

h4, .h4 {
  margin: 1em 0 .34em 0;
}

h5, .h5 {
  margin: .67em 0 .34em 0;
}

h6, .h6 {
  margin: .34em 0 .34em 0;
}

input[type=submit],
input[type=email],
input[type=text],
input[type=password],
teatxarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* for smartphone form elements */
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

p {
  margin: .67em 0 1.34em 0;
}

em {
  letter-spacing: .025em;
}

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: -.4em;
  font-size: .7em;
}

sub {
  top: .4em;
}

/* 
	JIVE.SCSS 
*/
/* clear jive-containers - no extra class needed: https://blog.kulturbanause.de/2013/03/clearfix-fuer-gefloatete-css-layouts/ */
.jive-container::before, .jive-container::after,
.jive-container-fluid::before,
.jive-container-fluid::after,
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.jive-container::after,
.jive-container-fluid::after,
.clearfix::after {
  clear: both;
}

#javahinweis {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 3px;
  background-color: #900;
}

#rahmen {
  position: relative;
}

/* HELPER CLASSES */
/* http://usabilitypost.com/2012/11/05/stop-fixing-font-smoothing/ */
.jive-font-smooth {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* mobile menu */
#jive-mobile-menu {
  display: inline-block;
  padding: 15px 15px;
  position: fixed;
  top: 65px;
  right: calc(25px);
  z-index: 109;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

body.is-sticky #jive-mobile-menu {
  right: 5px;
  top: 5px;
}

body.is-sticky #jive-mobile-menu.open::before {
  content: 'MENU';
  position: absolute;
  top: 10px;
  left: -70px;
  color: #fff;
  font-weight: 700;
}

#jive-mobile-menu .line {
  display: block;
  width: 30px;
  position: relative;
  margin: 6px 0;
  border-top: 3px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#jive-mobile-menu .line::before, #jive-mobile-menu .line::after {
  content: '';
  position: absolute;
  width: 100%;
  border-top: 3px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#jive-mobile-menu .line::before {
  top: -9px;
}

#jive-mobile-menu .line::after {
  top: 3px;
}

#jive-mobile-menu.open .line {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#jive-mobile-menu.open .line::before,
#jive-mobile-menu.open .line::after {
  top: -3px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#jive-mobile-menu.open .line::after {
  opacity: 0;
}

@media all and (min-width: 75em) {
  #jive-mobile-menu {
    display: none;
  }
}

nav {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 0 25px;
  display: none;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  overflow: scroll !important;
  max-height: calc(100vh - 80px);
  padding: 20px 0 30px 0;
}

@media all and (min-width: 75em) {
  nav {
    border: none;
    overflow: visible !important;
    max-height: none;
    padding: 0;
  }
}

body.is-sticky nav {
  top: 0;
  bottom: 0;
  border: none;
  max-height: 100vh;
  padding-top: 60px;
}

@media all and (min-width: 75em) {
  body.is-sticky nav {
    max-height: none;
    padding-top: 0;
  }
}

nav a {
  position: relative;
  display: block;
  white-space: nowrap;
}

nav ul {
  position: relative;
  list-style: none;
}

nav li {
  position: relative;
}

nav .j-nav-toggle-child {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
}

nav.toggle-arrow .j-nav-toggle-child::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav.toggle-arrow .j-nav-toggle-child.close::after {
  margin-top: -12px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

nav.toggle-arrow li.current .j-nav-toggle-child::after {
  border-top-color: #e3000c;
}

nav.toggle-plus .j-nav-toggle-child::before, nav.toggle-plus .j-nav-toggle-child::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav.toggle-plus .j-nav-toggle-child::before {
  width: 16px;
  height: 2px;
  margin-top: -1px;
  margin-left: -8px;
}

nav.toggle-plus .j-nav-toggle-child::after {
  width: 2px;
  height: 16px;
  margin-top: -8px;
  margin-left: -1px;
}

nav.toggle-plus .j-nav-toggle-child.close::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

nav.toggle-plus .j-nav-toggle-child.close::after {
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
}

nav.toggle-plus li.current .j-nav-toggle-child::before,
nav.toggle-plus li.current .j-nav-toggle-child::after {
  background-color: #e3000c;
}

.j-nav-level-0 > li > a {
  padding: 10px 0;
  border-top: 1px solid #999;
}

.j-nav-level-1 {
  display: none;
  padding-top: 15px;
  padding-bottom: 30px;
}

.j-nav-level-1 > li {
  /*
		&:first-child > a {
			padding-top:15px;
		}
		&:last-child > a {
			padding-bottom:30px;
		}*/
}

.j-nav-level-1 > li > a {
  padding: 10px 0 10px 40px;
}

.j-nav-level-2 {
  display: none;
  padding-top: 15px;
  padding-bottom: 30px;
}

.j-nav-level-2 > li {
  /*
		&:first-child > a {
			padding-top:20px;
		}
		&:last-child > a {
			padding-bottom:30px;
		}*/
}

.j-nav-level-2 > li > a {
  padding: 10px 0 10px 80px;
}

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

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

@media all and (min-width: 62em) {
  .jive-container {
    max-width: 1180px;
  }
}

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

/* parallax */
.bg-parallax {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

.bg-parallax::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.bg-parallax .call2action {
  display: none;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media all and (min-width: 75em) {
  .bg-parallax {
    background-attachment: fixed;
  }
  .bg-parallax .call2action {
    display: block;
    top: 50%;
  }
  body.can-touch .bg-parallax {
    background-attachment: scroll;
  }
  body.can-touch .bg-parallax .call2action {
    display: none;
  }
}

/* Grid */
.jive-ce-grid .jive-grid-col {
  position: relative;
  margin: 0 0 1em 0;
}

@media all and (min-width: 36em) {
  .jive-ce-grid .jive-grid-row {
    margin: 0 -25px;
  }
  .jive-ce-grid .jive-grid-col {
    margin: 0 25px;
    float: left;
  }
  .jive-ce-grid .jive-grid-col:last-child,
  .jive-ce-grid .jive-grid-last-col {
    float: right;
    margin-left: 0;
    clear: right;
  }
  .jive-ce-grid .jive-grid-one-half {
    width: calc(50% - 50px);
  }
  .jive-ce-grid .jive-grid-one-third {
    width: calc(33.3% - 50px);
  }
  .jive-ce-grid .jive-grid-two-third {
    width: calc(66.6% - 50px);
  }
  .jive-ce-grid .jive-grid-one-fourth {
    width: calc(25% - 50px);
  }
  .jive-ce-grid .jive-grid-three-fourth {
    width: calc(75% - 50px);
  }
  .jive-ce-grid .jive-grid-one-fifth {
    width: calc(20% - 50px);
  }
  .jive-ce-grid .jive-grid-two-fifth {
    width: calc(40% - 50px);
  }
  .jive-ce-grid .jive-grid-three-fifth {
    width: calc(60% - 50px);
  }
  .jive-ce-grid .jive-grid-four-fifth {
    width: calc(80% - 50px);
  }
  .jive-ce-grid .jive-grid-one-sixth {
    width: calc(16.6% - 50px);
  }
  .jive-ce-grid .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%;
  }
}

/* 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 {
  position: relative;
  left: 0;
  top: 0;
}

/*.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;
  border-radius: border-box;
  -webkit-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;
  transition: ease 0.4s;
}

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

.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: #e3000c;
}

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

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

.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 {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 10%;
  height: 110%;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  background: #fff;
  z-index: 2;
}

.jive-ce-map {
  position: relative;
  padding-bottom: 66%;
}

@media all and (min-width: 36em) {
  .jive-ce-map {
    padding-bottom: 33%;
  }
}

#jive-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* CE: BANDEROLE */
.jive-ce-banderole {
  background: #e3000c;
  padding: 40px 0 50px;
  margin: 50px 0;
}

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

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

/* 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;
  transition: ease 0.4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 5px;
  vertical-align: middle;
  white-space: nowrap;
}

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

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

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

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

.btn-primary.btn-invers {
  background: #fff;
  color: #e3000c;
}

.btn-primary.btn-invers:hover {
  background: #fff;
  color: #000;
}

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

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

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

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

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

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

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

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

.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;
}

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

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

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

textarea {
  height: 100px;
}

input[type=password],
input[type=text],
input[type=email],
input[type=tel],
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;
  transition: ease 0.4s;
}

input[type=password]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]: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;
  margin: .25em 0;
}

form input[type=submit] {
  margin: 1.5em 0;
}

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

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

p.checkbox.pflichtfeld label:after {
  content: '*';
  color: #e3000c;
}

p.check.pflichtfeld,
p.radio.pflichtfeld {
  background: #f1f1f1;
  padding: 9px 15px;
  border: 1px solid transparent;
}

p.pflichtfeld.fehler.radio,
p.pflichtfeld.fehler.check,
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: #e3000c;
}

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

/* lists */
main ul {
  padding-left: 1.25em;
  margin: .67em 0 1.34em 0;
}

main ul li {
  position: relative;
  margin-bottom: .34em;
}

main ul.li-arrow {
  list-style: none;
}

main ul.li-arrow li:before {
  content: '';
  border: .3em solid transparent;
  border-left-color: #000;
  position: absolute;
  left: -1.25em;
  top: .5em;
}

.jive-ce-columns {
  /* 5 columns */
}

.jive-ce-columns .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -50px;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 21em) {
  .jive-ce-columns .flex {
    margin-right: -10px;
    margin-left: -10px;
  }
}

@media all and (min-width: 36em) {
  .jive-ce-columns .flex {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media all and (min-width: 48em) {
  .jive-ce-columns .flex {
    margin-right: -20px;
    margin-left: -20px;
  }
}

@media all and (min-width: 62em) {
  .jive-ce-columns .flex {
    margin-right: -25px;
    margin-left: -25px;
  }
}

@media all and (min-width: 75em) {
  .jive-ce-columns .flex {
    margin-right: -25px;
    margin-left: -25px;
  }
}

.jive-ce-columns .item {
  -webkit-box-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  /* grow, [shrink], [width] ; IE11: auto needed or non-relative unit like px */
  /*padding-left:$gap;*/
  position: relative;
  width: 100%;
  min-height: 1px;
}

@media all and (min-width: 21em) {
  .jive-ce-columns .item {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (min-width: 36em) {
  .jive-ce-columns .item {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media all and (min-width: 48em) {
  .jive-ce-columns .item {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (min-width: 62em) {
  .jive-ce-columns .item {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media all and (min-width: 75em) {
  .jive-ce-columns .item {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.jive-ce-columns .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-24 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.jive-ce-columns .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

@media all and (min-width: 48em) {
  .jive-ce-columns {
    /* 5 columns (2.4 / 12) */
  }
  .jive-ce-columns .col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  .jive-ce-columns .col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  .jive-ce-columns .col-24 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    width: 20%;
    max-width: 20%;
  }
  .jive-ce-columns .col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .jive-ce-columns .col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  .jive-ce-columns .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  .jive-ce-columns .col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .jive-ce-columns .col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  .jive-ce-columns .col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  .jive-ce-columns .col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .jive-ce-columns .col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  .jive-ce-columns .col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  .jive-ce-columns .col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

.jive-ce-columns .pull-right {
  margin-left: auto;
}

/*

TODO:

- Main layout via CSS GRID

*/
/* 
	MAIN.SCSS 
*/
html, body {
  font-size: 100%;
  /* DO NOT CHANGE - DEFAULT BROWSER SIZE */
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5em;
  font-weight: 300;
  color: #333;
}

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

body.can-hover a:hover {
  text-decoration: none;
}

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

i, em {
  font-style: italic;
}

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

#rahmen {
  overflow-x: hidden;
}

/* * * * * * * * * * * * *
 * * *  HEADER
 * * * * * * * * * * * * */
header {
  background-color: #fff;
  position: relative;
  /* fixed is bad in mobile view: menu must be completely visible */
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

@media all and (min-width: 75em) {
  header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
  }
  body.is-sticky header {
    position: fixed;
    top: -120px;
    border-bottom: 1px solid #ccc;
  }
}

#logo {
  position: relative;
  width: 150px;
  margin: auto;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

#logo .logo-btn {
  display: inline-block;
  padding: 10px 0 15px 0;
}

@media all and (min-width: 75em) {
  #logo .logo-btn {
    padding: 20px 0;
  }
}

@media all and (min-width: 75em) {
  #logo {
    margin: 0;
    width: 200px;
    float: left;
  }
  body.is-sticky #logo {
    width: 120px;
    height: 73px;
    float: left;
    overflow: hidden;
    position: absolute;
    top: 103px;
    left: 0;
  }
}

/* Main Nav */
nav {
  background-color: #333;
  padding: 20px 25px;
  z-index: 99;
}

nav a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1em;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px;
}

body.can-hover nav > ul > li > a:hover,
body.can-hover nav > ul > li:hover > a {
  color: #e3000c;
}

.j-nav-level-0 > li:first-child > a {
  border-top: none;
}

.j-nav-level-0 > li > a {
  padding: 15px;
}

@media all and (min-width: 75em) {
  nav {
    color: #000;
    width: 900px;
    float: right;
    display: block !important;
    position: relative;
    top: 0;
    padding: 0;
    margin-top: 90px;
    background: transparent;
  }
  nav .j-nav-toggle-child {
    display: none;
  }
  nav a {
    color: #000;
    font-size: 15px;
  }
  .j-nav-level-0 {
    text-align: right;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    /*body.can-hover & > li {
			&:hover > a[aria-haspopup=true]::after {
				margin-top:-15px;
				opacity:1;
				@include transition(.4s);
			}
		}*/
  }
  .j-nav-level-0 > li {
    display: inline-block;
  }
  .j-nav-level-0 > li.current > a {
    color: #e3000c;
  }
  .j-nav-level-0 > li > a {
    border: none;
    padding: 20px 18px 50px 18px;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    /* arrow */
    /*&::after {
					content:''; 
					position:absolute; 
					opacity:0;
					top:100%; 
					left:15px; 
					margin-top:0px;
					border:8px solid transparent; 
					border-bottom-color:#000;
				}*/
  }
  body.is-sticky .j-nav-level-0 > li > a {
    padding: 50px 18px 20px 18px !important;
  }
  .j-nav-level-1 {
    text-align: left;
    display: none;
    /*opacity:0;*/
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    border-radius: 0 0 7px 7px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  body.is-sticky .j-nav-level-1 {
    background: rgba(0, 0, 0, 0.95);
    padding-left: 10px;
    padding-right: 10px;
  }
  body.is-sticky .j-nav-level-1 > li > a {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .j-nav-level-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200vw;
    background: rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.8);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=rgba(0, 0, 0, 0.8), endColorstr=rgba(0, 0, 0, 0));
    height: 100%;
    min-height: 150px;
    display: block;
    z-index: -1;
    margin-left: calc(-100vw);
    border-top: 8px solid #000;
  }
  .j-nav-level-1 > li {
    display: block;
    margin: 1px 0;
  }
  .j-nav-level-1 > li > a {
    padding: 10px 18px;
    font-weight: 300;
    color: #fff;
  }
  .j-nav-level-1 > li:first-child > a {
    /*margin-top:30px;*/
    padding: 10px 18px;
  }
  .j-nav-level-1 > li:last-child > a {
    /*margin-bottom:20px;*/
    padding: 10px 18px;
  }
  .j-nav-level-1 > li.current > a {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 3px;
  }
  body.can-hover .j-nav-level-1 > li:hover > a,
  body.can-hover .j-nav-level-1 > li > a:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 3px;
  }
  body.can-hover.is-sticky .j-nav-level-1 > li:hover > a,
  body.can-hover.is-sticky .j-nav-level-1 > li > a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  .j-nav-level-2 {
    text-align: left;
    display: none;
    /*opacity:0; */
    position: absolute;
    top: -11px;
    left: calc(100% + 1px);
    min-width: 100%;
    border-radius: 7px 7px 7px 7px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  body.is-sticky .j-nav-level-2 {
    background: rgba(0, 0, 0, 0.95);
    padding-left: 10px;
    padding-right: 10px;
    left: calc(100% + 11px);
  }
  .j-nav-level-2 > li {
    display: block;
    margin: 1px 0;
  }
  .j-nav-level-2 > li > a {
    padding: 10px 18px;
    font-weight: 300;
    color: #fff;
  }
  .j-nav-level-2 > li:first-child > a {
    /*margin-top:10px;*/
    padding: 10px 18px;
  }
  .j-nav-level-2 > li:last-child > a {
    /*margin-bottom:10px;*/
    padding: 10px 18px;
  }
  .j-nav-level-2 > li.current > a {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 3px;
  }
  body.can-hover .j-nav-level-2 > li > a:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 3px;
  }
  body.can-hover.is-sticky .j-nav-level-2 > li > a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  /*
	.j-nav-level-0 > li > ul,
	.j-nav-level-1 > li > ul { 
		@include keyframes(fadein) {
			0% { opacity:0; }
			100% { opacity:1; }
		}
		@include animation(fadein 0s);
	}*/
  /*
	.j-nav-level-0 > li:hover > ul,
	.j-nav-level-1 > li:hover > ul { 
		display:block; 
		opacity:1;
	}*/
}

/* * * * * * * * * * * * *
 * * *  EMOTION
 * * * * * * * * * * * * */
#emotion {
  position: relative;
}

@media all and (min-width: 75em) {
  #emotion {
    margin-top: 176px;
    min-height: 39vw;
    background-color: #e4e4e4;
  }
  body.bilder #emotion {
    min-height: 0px;
  }
}

.emotion-caption.cta {
  position: absolute;
  bottom: 10%;
  z-index: 9;
  left: 25px;
  padding: 10px 10px 10px 10px;
  border-radius: 6px;
  background: #fff;
}

.emotion-caption.cta h1 {
  margin: 0;
  padding: 0 5px;
}

.emotion-caption.cta .btn {
  display: none;
}

@media all and (min-width: 48em) {
  .emotion-caption.cta {
    padding: 10px 20px 20px 20px;
  }
  .emotion-caption.cta .btn {
    display: inline-block;
  }
  .emotion-caption.cta h1 {
    padding: 0 20px 10px 20px;
  }
}

@media all and (min-width: 62em) {
  .emotion-caption.cta {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#section-news {
  padding: 30px 0;
  position: relative;
  border-top: 3px solid #fff;
}

#section-news h2 {
  margin-top: 0;
}

#slider-main .emotion-caption {
  position: absolute;
  bottom: auto;
  top: 20%;
  left: auto;
  right: auto;
  background: #000;
  display: inline-block;
  -webkit-transform: translate(0);
  transform: translate(0);
  padding: 0 20px;
  border-radius: 0;
}

@media all and (min-width: 36em) {
  #slider-main .emotion-caption {
    padding: 0 50px;
  }
}

#slider-main .emotion-caption.r {
  right: 0;
}

#slider-main .emotion-caption.l {
  left: 0;
}

#slider-main .emotion-caption .h1 {
  color: #fff;
  margin: 0;
}

body.can-hover #slider-main .emotion-caption {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body.can-hover #slider-main .emotion-caption:hover {
  background: #e3000c;
}

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

body.home main {
  padding-bottom: 0;
}

ol {
  padding-left: 1.25em;
}

p.teaser {
  text-align: center;
}

@media all and (min-width: 62em) {
  p.teaser {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}

.font-size-14 {
  font-size: 14px;
  font-size: 0.875rem;
}

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

h1, .h1 {
  text-transform: uppercase;
  margin-top: 2em;
}

#emotion h1, #emotion .h1 {
  margin-top: 0em;
  text-align: center;
}

@media all and (min-width: 48em) {
  h1, .h1 {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 1.5em;
  }
}

@media all and (min-width: 75em) {
  h1, .h1 {
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1.5em;
  }
}

h2, .h2 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

@media all and (min-width: 62em) {
  h2, .h2 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5em;
  }
}

h2.boxed, .h2.boxed {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: 0;
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
  border-radius: 0 0 10px 10px;
  padding: 15px 30px 20px 65px;
  display: inline-block;
  background-color: #e3000c;
}

h2.color-1, .h2.color-1 {
  background-color: #e3000c;
}

h2 .svg-icon, .h2 .svg-icon {
  position: absolute;
  top: 6px;
  left: 12px;
  display: inline-block;
  width: 40px;
}

h3, .h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em;
  text-transform: uppercase;
  margin-top: 1.5em;
}

.btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 400;
}

.btn-lg {
  font-size: 18px;
  font-size: 1.125rem;
}

@media all and (min-width: 62em) {
  .btn-lg {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

@media all and (min-width: 75em) {
  .btn-lg {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.bg-color-1 {
  background-color: #e3000c;
}

.bg-color-1 * {
  color: #fff;
}

.bg-color-3 {
  background-color: #333;
}

.bg-color-3 * {
  color: #fff;
}

.box-teaser-wrapper {
  margin: 0 -10px;
}

.box-teaser {
  display: block;
  margin: 10px;
  padding: 30px 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.box-teaser .desc {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.box-teaser .desc h2 {
  margin-top: 0;
}

.box-teaser .image {
  max-width: 200px;
  display: inline-block;
  margin-bottom: 20px;
}

.box-teaser .image img {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.box-teaser .link {
  margin-top: 20px;
}

body.can-hover .box-teaser {
  -webkit-transition: 2s;
  transition: 2s;
}

body.can-hover .box-teaser:hover {
  background: #e4e4e4;
}

@media all and (min-width: 36em) {
  .box-teaser .desc {
    float: right;
    width: 60%;
  }
  .box-teaser .image {
    float: left;
    width: 35%;
  }
}

@media all and (min-width: 48em) {
  .box-teaser {
    float: left;
    width: calc(50% - 20px);
    min-height: 280px;
  }
}

.box-table {
  color: #fff;
  margin: 20px 0;
}

.box-table .head {
  background: #444;
}

.box-table .head .th {
  padding: 10px 20px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: 400;
}

.box-table .body .td {
  padding: 10px 20px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5em;
}

.box-table .body .tr {
  margin-bottom: 1px;
  background: #555;
}

.box-table .body .location > a {
  color: #fff;
  display: inline-block;
  margin-top: 4px;
  padding-left: 20px;
  position: relative;
}

.box-table .body .location > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/uploads/org/svg-marker.svg) no-repeat left center;
}

.box-table .body .location > a:hover {
  text-decoration: underline;
}

@media all and (min-width: 36em) {
  .box-table .body .td {
    float: left;
  }
  .box-table .body .td:nth-child(1) {
    width: 25%;
    background-color: #444;
    border-radius: 3px 0 0 3px;
  }
  .box-table .body .td:nth-child(2) {
    width: 45%;
  }
  .box-table .body .td:nth-child(3) {
    width: 30%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5em;
  }
}

@media all and (min-width: 48em) {
  .box-table .head {
    float: left;
    width: 24%;
    border-radius: 3px;
  }
  .box-table .head .th {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .box-table .body {
    float: right;
    width: 75%;
  }
  .box-table .body .tr {
    border-radius: 3px;
  }
  .box-table .body .td {
    float: left;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  .box-table .body .td:nth-child(1) {
    width: 25%;
    background-color: #444;
    border-radius: 3px 0 0 3px;
  }
  .box-table .body .td:nth-child(2) {
    width: 45%;
  }
  .box-table .body .td:nth-child(3) {
    width: 30%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5em;
  }
}

.box-team-wrapper {
  margin: 0 -3%;
}

.box-team {
  margin: 20px 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.box-team .image {
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-flex: 1 0 0;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 5px solid #444;
}

.box-team .image img {
  vertical-align: middle;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  -o-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.box-team:hover .image img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.box-team .title {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.box-team .desc {
  -webkit-box-flex: 3 0 0;
  -ms-flex: 3 0 0;
  flex: 3 0 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #fff;
  padding-left: 30px;
}

@media all and (min-width: 48em) {
  .box-team {
    float: left;
    width: 44%;
  }
}

.box-guertel {
  float: left;
  width: 120px;
  text-align: center;
  border-right: 1px solid #ccc;
  margin: 10px 0;
}

.box-guertel:last-child {
  border-right: none;
}

.box-guertel .grade {
  text-transform: uppercase;
  font-weight: 700;
}

.box-guertel .color {
  margin-bottom: 10px;
}

.box-guertel .image {
  display: inline-block;
  width: 92px;
  height: 25px;
  background: url(/uploads/org/92/0/1/judo-guertelfarben.jpg) no-repeat top left;
}

.box-guertel .image.k9 {
  background-position: 0 0;
}

.box-guertel .image.k8 {
  background-position: 0 -234px;
}

.box-guertel .image.k7 {
  background-position: 0 -26px;
}

.box-guertel .image.k6 {
  background-position: 0 -261px;
}

.box-guertel .image.k5 {
  background-position: 0 -52px;
}

.box-guertel .image.k4 {
  background-position: 0 -286px;
}

.box-guertel .image.k3 {
  background-position: 0 -78px;
}

.box-guertel .image.k2 {
  background-position: 0 -104px;
}

.box-guertel .image.k1 {
  background-position: 0 -130px;
}

.box-guertel .image.d1 {
  background-position: 0 -156px;
}

.box-guertel .image.d6 {
  background-position: 0 -208px;
}

.box-guertel .image.d9 {
  background-position: 0 -182px;
}

.stoerer-news {
  display: none;
}

@media all and (min-width: 48em) {
  .stoerer-news {
    display: block;
    position: absolute;
    top: -150px;
    left: 0;
    z-index: 1;
    width: 210px;
    height: 210px;
    background: #000;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .stoerer-news .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .stoerer-news .intro {
    text-transform: uppercase;
  }
  .stoerer-news .title {
    text-transform: uppercase;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: 700;
  }
  .stoerer-news .link {
    margin-top: 15px;
  }
  body.can-hover .stoerer-news:hover {
    background: #444;
  }
}

.box-news-teaser .link {
  margin-top: 15px;
}

.box-news {
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.box-news:last-child {
  border: none;
}

.box-news h2 {
  margin-top: 0;
}

.box-news .image a {
  display: inline-block;
}

.box-news .image img {
  max-width: 100%;
  width: auto;
  height: auto;
}

@media all and (min-width: 36em) {
  .box-news .content {
    width: 75%;
    float: left;
  }
  .box-news .image {
    width: 23%;
    float: right;
  }
}

.box-galerie-wrapper {
  margin: 0 -1%;
}

.box-galerie {
  display: block;
  float: left;
  position: relative;
  background-color: #000;
  margin: 1%;
  width: 98%;
}

@media all and (min-width: 21em) {
  .box-galerie {
    width: 48%;
  }
}

@media all and (min-width: 36em) {
  .box-galerie {
    width: 31.33%;
  }
}

@media all and (min-width: 48em) {
  .box-galerie {
    width: 23%;
  }
}

@media all and (min-width: 75em) {
  .box-galerie {
    width: 18%;
  }
}

.box-galerie .content {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 66%;
  overflow: hidden;
}

.box-galerie .content .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-position: center 25%;
  background-size: cover;
}

.box-galerie .content .caption-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

.box-galerie .content .caption-wrapper .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 5px;
  z-index: 3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  text-align: center;
  opacity: .75;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3em;
}

body.no-touch .box-galerie .content .caption-wrapper {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.75);
}

body.no-touch .box-galerie .content .caption {
  left: 10px;
  right: 10px;
  top: 50%;
  bottom: auto;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.no-touch .box-galerie .content:hover .caption-wrapper {
  background: rgba(0, 0, 0, 0);
}

body.no-touch .box-galerie .content:hover .caption {
  top: 200%;
}

.box-bilder-wrapper {
  margin: 0 -1%;
}

.box-bilder {
  display: block;
  float: left;
  position: relative;
  background-color: #000;
  margin: 1%;
  width: 98%;
}

@media all and (min-width: 21em) {
  .box-bilder {
    width: 48%;
  }
}

@media all and (min-width: 36em) {
  .box-bilder {
    width: 31.33%;
  }
}

@media all and (min-width: 48em) {
  .box-bilder {
    width: 23%;
  }
}

@media all and (min-width: 75em) {
  .box-bilder {
    width: 18%;
  }
}

.box-bilder .content {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 66%;
  overflow: hidden;
}

.box-bilder .content .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-position: center 25%;
  background-size: cover;
}

.box-bilder .content .caption-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

body.no-touch .box-bilder .content .caption-wrapper {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.5);
}

body.no-touch .box-bilder .content:hover .caption-wrapper {
  background: rgba(0, 0, 0, 0);
}

.line-top,
#galerie,
#trainer,
#kampfregeln,
#pruefungen,
#pruefung-grade,
#was-ist-judo,
#was-ist-aikido,
#was-ist-goshin,
#was-ist-tai-chi-chuan,
#historie,
#kontakt,
#anfahrt,
#anmeldung,
#vorstand,
#trainingszeiten {
  border-top: 8px solid #e3000c;
  padding-bottom: 50px;
}

.line-top,
#anfahrt {
  padding-bottom: 0;
}

.jive-slider.text {
  padding: 80px 0 100px 0;
  color: #fff;
}

.jive-slider.text .caption {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: 700;
}

.jive-slider.text .caption-small {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  padding: 0 10px;
}

@media all and (min-width: 62em) {
  .jive-slider.text .caption {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.4em;
  }
  .jive-slider.text .caption-small {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em;
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
}

#overlay .outer {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 1130px;
  max-height: 800px;
  padding: 20px;
  background-color: #333;
}

#overlay #jive-map-overlay,
#overlay .inner {
  width: 100%;
  height: 100%;
}

#overlay .close {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: #000;
  z-index: 9;
}

@media all and (min-width: 75em) {
  #overlay .close {
    right: -50px;
  }
}

#overlay .close::before, #overlay .close::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 9px;
  display: block;
  width: 30px;
  height: 6px;
  background: #fff;
}

#overlay .close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#overlay .close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

form .check label {
  display: block !important;
  margin: 10px 0;
}

form .check input {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

form .radio input {
  position: relative;
  top: -2px;
}

form p.mtb {
  margin: 1em 0;
}

form textarea,
form input {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4em;
  vertical-align: middle;
}

form ::-webkit-input-placeholder {
  color: #bbb;
}

/* * * * * * * * * * * * *
 * * *  ASIDE
 * * * * * * * * * * * * */
aside {
  position: relative;
}

/* * * * * * * * * * * * *
 * * *  FOOTER
 * * * * * * * * * * * * */
footer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4em;
  padding: 20px 0 30px;
  color: #ccc;
  background-color: #000;
}

footer .footer-links a {
  color: #fff;
  margin-right: 20px;
}

body.can-hover footer a:hover {
  color: #ccc;
}

footer .zertifizierter-verein figure {
  display: inline-block;
  text-align: center;
  -webkit-filter: grayscale(0.9);
          filter: grayscale(0.9);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer .zertifizierter-verein figure:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

footer .zertifizierter-verein figure figcaption {
  margin-top: 5px;
  font-weight: bold;
}

footer .zertifizierter-verein img {
  width: 160px;
  height: auto;
}

@media all and (min-width: 62em) {
  footer .zertifizierter-verein {
    text-align: right;
  }
  footer .footer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-box.-left {
    float: left;
    width: 75%;
  }
  footer .footer-box.-right {
    float: right;
    width: 25%;
  }
}

/* 
	PLUGINS.SCSS 
*/
/* Slider */
.jive-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;
  -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);
  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 {
  width: 100%;
  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;
  -webkit-transition: ease .2s;
  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);
  transform: rotate(-135deg);
}

.slick-next:before {
  margin-left: -25px;
  -webkit-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;
}

/*
	By Osvaldas Valutis, www.osvaldas.info
	Available for use under the MIT License
*/
/* ImageLightbox */
a.lightbox {
  display: block;
}

a.lightbox.rahmen {
  border: 1px solid #ccc;
}

#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
}

#imagelightbox-overlay {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#imagelightbox-close {
  width: 2.5em;
  height: 2.5em;
  text-align: left;
  background-color: transparent;
  border: none;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  right: 2.5em;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

#imagelightbox-close:before,
#imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.imagelightbox-arrow {
  width: 3.75em;
  height: 7.5em;
  background: transparent;
  border: none;
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -3.75em;
}

.imagelightbox-arrow-right {
  right: .5em;
}

.imagelightbox-arrow-left {
  left: .5em;
}

.imagelightbox-arrow:before {
  width: 20px;
  height: 20px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  display: inline-block;
}

.imagelightbox-arrow-right:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.imagelightbox-arrow-left:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-caption {
  text-align: center;
  color: #fff;
  background-color: #666;
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.625em;
}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow {
  -webkit-animation: fade-in .25s linear;
  animation: fade-in .25s linear;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#imagelightbox-loading,
#imagelightbox-loading div {
  border-radius: 50%;
}

#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
}

#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #fff;
  -webkit-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite;
}

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
  }
}

@keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
/*# sourceMappingURL=default.css.map */