/*   Styles MeisterWerkKibo /// Mobile First   */


/*   H E A D E R   */

header {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 64px;
	background-color: rgba(255, 255, 255, 0.85);
	text-align: center;
	z-index: 1000;
}

#shrink-header { }

#shrink-mobile-header { }

#shrink-desktop-custom-logotype { }

#shrink-mobile-custom-logotype { }

#move-desktop-item-container { }

.hero-header {
	height: 10.0vh;
	background-color: rgba(0, 0, 0, 0.0);
}

.mobile-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 8.5vh;
	background-color: rgba(255, 255, 255, 0.85);
	text-align: center;
	z-index: 1000;
}

.hero-mobile-header {
	background-color: rgba(0, 0, 0, 0.0);
}

/*   END – H E A D E R   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   C O N T E X T – H E A D E R at Bottom   */

.context-header {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(25, 18, 11, 0.9);
	text-align: center;
	z-index: 500;
}

.context-header-offset {
	bottom: -300px;
}

/*   END - C O N T E X T  H E A D E R at Bottom   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   M O B I L E  M E N U   */

/* Logotype Mobile */

.mobile-custom-logotype {
  position: fixed; 
  top: 1.75vh;
  left: 5vw;
  height: 5vh;
  z-index: 1100;
}

/* Menu Burger Button */

.burger-menu {
  position: fixed; 
  top: 2vh;
  right: 5vw;
  width: 10vw;
  height: 32px;
  text-align: center;
  -webkit-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  -moz-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  -ms-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  -o-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  z-index: 2000;
}

.burger-menu.active {
  right: 45vw;
}

/* Mobile Menu Container */

.mobile-menu-container {
  position: fixed; 
  top: 0;
  right: -102vw;
  width: 102vw;
  height: 100vh;
  text-align: center;
  background: url(../img/backgroundimages/background_gradient_gray_light.png) no-repeat right center/cover;
  -webkit-opacity: 0.33;
  -moz-opacity: 0.33;
  -ms-opacity: 0.33;
  -o-opacity: 0.33;
  opacity: 0.33;
  z-index: 1500;
}

.mobile-menu-container-visible {
	-webkit-opacity: 1.0;
  	-moz-opacity: 1.0;
  	-ms-opacity: 1.0;
  	-o-opacity: 1.0;
	opacity: 1.0;
	right: -1vw;
}

/* Mobile Menu Items */

.mobile-menu-space-top {
	width: 100%;
	height: 12.5vh;
}

.mobile-menu-item {
	display: inline-block;
	width: 100%;
	height: 6.25vh;
	margin: 1.5vh 0;
	text-align: center;
	opacity: 1.0;
}

.mobile-menu-item-closed {
	-webkit-transform: translatex(100vw);
  	-moz-transform: translatex(100vw);
  	-ms-transform: translatex(100vw);
  	-o-transform: translatex(100vw);
	transform: translatex(100vw);
	opacity: 0.0;
}

.mobile-menu-link {
	
	font-family: 'light';
	font-size: 5.0vw;
  	letter-spacing: 0.1rem;
  	line-height: 100%; 
  	font-style: normal;
	font-weight: normal;
	color: rgba(0, 0, 0, 1.0);
	margin: auto;
}

/* IDs Mobile Menu Items */

#mobile-menu-item-1 { }

#mobile-menu-item-2 { }

#mobile-menu-item-3 { }

#mobile-menu-item-4 { }

#mobile-menu-item-5 { }

#mobile-menu-item-contact { }


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 4px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-box {
  width: 24px;
  height: 26px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: rgba(0, 0, 0, 1.0);
    border-radius: 1px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }


/*  Elastic Reverse  */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*   END – hamburger   */

/*   END – M O B I L E  M E N U   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   D E S K T O P  M E N U   */

/* Logotype Desktop */

.desktop-hero-logotype {
  position: relative; 
  width: 50vw;
}

/* Logotype Desktop */

.desktop-custom-logotype {
  position: absolute; 
  bottom: 1vh;
  left: 7.5vw;
  height: 40px;
  z-index: 1100;
}

.logotype-offset {
	-webkit-opacity: 0.0;
  	-moz-opacity: 0.0;
  	-ms-opacity: 0.0;
  	-o-opacity: 0.0;
	opacity: 0.0;
}

.desktop-item-container {
  position: absolute; 
  bottom: 2vh;
  right: 7.5vw;
  width: auto;
  z-index: 1100;
  text-align: right;
}

.desktop-item-container-offset { 
	width: 85vw;
	text-align: center;
}

.desktop-item-container li {
  display: inline-block;
}

.desktop-menu-link {
	font-family: 'light';
	font-size: 14px;
  	line-height: 100%; 
  	font-style: normal;
	font-weight: normal;
    letter-spacing: 0.05rem;
	color: rgba(255, 255, 255, 1.0);
	margin: 0 0 0 15px;
	opacity: 1.0;
    margin-bottom: -10px;
}

.desktop-menu-link-first-element {
	margin: 0;
}

/*   Active Color Desktop Link
     Possible change from WHITE to COLOR */

.desktop-menu-link-active {
    font-family: 'medium';
	color: rgba(255, 255, 255, 1.0);
}

/*   H E R O  C O N T A I N E R  */

.hero-container {
	position: relative;
	width: 100%;
  	height: 100vh;
	text-align: center;
	background-color: none;
}

/*  Hero Image  */
 
.hero-image-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
  	height: 100vh;
	text-align: center;
}

/*  Promotion Images  */

.promotion-container {
	position: relative;
	width: 100%;
	text-align: center;
}

/*   END – H E R O  C O N T A I N E R   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   C O N T E N T  C O N T A I N E R  */

.content-container {
	position: relative;
	width: 100%;
	text-align: center;
}

.content-container-faq {
	position: relative;
	width: 90%;
    margin: auto;
	text-align: center;
}

.content-container-banner {
	position: relative;
	width: 100%;
    min-height: 100vh;
	text-align: center;
}

/*   C O N T E N T  Sections  */

#content-section-0 {
    background-color: rgba(250, 250, 250, 1.0);
}

#content-section-1 {
    background-color: rgba(245, 245, 245, 1.0);
}

#content-section-2 {
    background: url(../img/backgroundimages/background_ausstellung.jpg) no-repeat center center/cover;
}

#content-section-3 {
    background-color: rgba(250, 250, 250, 1.0);
}

#content-section-4 {}

#content-section-5 {}

footer {
	background-color: rgba(245, 245, 245, 1.0);
}

/*   Footer   */

footer {
	position: relative;
	width: 100%;
	min-height: 70vh;
	padding: 15.0vh 0 20vh 0;
	text-align: center;
}


/*   C O L O R S  Background  */

.background-color-brand-1 {
	background-color: rgba(10, 95, 105, 1.0);
}

.background-color-brand-2 {
	background-color: rgba(125, 125, 125, 1.0);
}

.background-color-black {
	background-color: rgba(0, 0, 0, 1.0);
}

.background-color-white {
	background-color: rgba(255, 255, 255, 1.0);
}

.background-gradient-brand-1 {
	background: url(../img/backgroundimages/background_gradient_brand_1.png) no-repeat center center/cover;
}

.background-gradient-brand-2 {
	background: url(../img/backgroundimages/background_gradient_brand_2.png) no-repeat center center/cover;
}

.background-gradient-gray-light {
	background: url(../img/backgroundimages/background_gradient_gray_light.png) no-repeat center center/cover;
}

/*   END – C O N T E N T  C O N T A I N E R   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   T E X T  */

/*   END – T E X T   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   V I D E O  */

/*   END – V I D E O   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   I M A G E S */

/*   Image 100 %  */

.image-100 {
  width: 100%;
}

.image-66 {
  width: 66%;
}

.image-circle-center {
  width: 66%;
}

/*   Images Projects  */


.items-wrap {
	position: relative;
    width: 100%; }

.item {
	position: relative;
    display: inline-block;
	width: 46vh;
    height: 46vh;
	overflow: hidden;
	outline: none;
	margin: 2vh;
    background: rgba(0, 0, 0, 1.0);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}


.item:hover {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    -ms-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    -o-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
    transform: scale(1.025);
    
}

/* Hidden Items */

.item-invisible {
	display: none; }


.item__image {
	position: absolute;
	top: 50%;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.50;
	-webkit-transform: translate3d(0, -50%, 0) scale3d(1.1, 1.1, 1);
	transform: translate3d(0, -50%, 0) scale3d(1.1, 1.1, 1);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s; }

.item:hover .item__image {
	cursor: pointer;
	opacity: 1.0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0); }

.item__title {
	position: absolute;
	width: 90%;
	bottom: 47.5%;
	margin-left: 5%;
	text-align: center;	
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s; }

.item__title:hover {
	cursor: pointer; }

.item:hover .item__title {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0); }

@media only screen and (orientation: landscape) {
  .item  {
    width: 80vh;
    height: 80vh; }
}

@media only screen and (min-height: 800px) and (orientation: portrait) {
  .item  {
    width: 37.5vh;
    height: 37.5vh; }
}

@media only screen and (min-width: 600px) and (orientation: portrait) {
  .item  {
    width: 37.5vw;
    height: 37.5vw;
	margin: 1vh; }
	
  .item__title {
	width: 80%;
	margin-left: 10%;}
}

@media only screen and (min-width: 1000px) and (orientation: landscape) {
  .item  {
    width: 30.0vw;
    height: 30.0vw;
	margin: 1vh; }
	
  .item__title {
	width: 90%;
	margin-left: 5%;}
}

@media only screen and (min-width: 1100px) and (orientation: landscape) {
  .item  {
    width: 27.5vw;
    height: 27.5vw;
	margin: 0.5vh; }
}

@media only screen and (min-width: 1280px) and (orientation: landscape) {
  .item  {
    width: 25.0vw;
    height: 25.0vw;
	margin: 0.5vh; }
}

@media only screen and (min-width: 1366px) and (orientation: landscape) {
  .item  {
    width: 22.5vw;
    height: 22.5vw;
	margin: 0.75vh; }
}

@media only screen and (min-width: 1600px) and (orientation: landscape) {
  .item  {
    width: 20vw;
    height: 20vw;
	margin: 1.0vh; }
}

@media only screen and (min-width: 1900px) and (orientation: landscape) {
  .item  {
    width: 17.5vw;
    height: 17.5vw;
	margin: 1.0vh; }
}

/*   END – I M A G E S   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   I C O N S */

.icon-size-mobile-menu {
  position: relative;
  height:  50px;
  margin: 30px 10px 0 10px;
}

@media only screen and (min-width: 600px) and (orientation: portrait){
	.icon-size-mobile-menu {
  		height:  60px;
  		margin: 30px 20px 0 20px; }
}

.icon-size-footer {
  position: relative;
  height:  32px;
  margin: 25px 10px 0 10px;
  line-height: 5%;
  -webkit-opacity: 0.66;
  -moz-opacity: 0.66;
  -ms-opacity: 0.66;
  -o-opacity: 0.66;
  opacity: 0.66;
}

.icon-size-footer:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1) translateY(-5px);
  -moz-transform: scale(1.1) translateY(-5px);
  -ms-transform: scale(1.1) translateY(-5px);
  -o-transform: scale(1.1) translateY(-5px);
  transform: scale(1.1) translateY(-5px);
  -webkit-opacity: 1.0;
  -moz-opacity: 1.0;
  -ms-opacity: 1.0;
  -o-opacity: 1.0;
  opacity: 1.0;
}

.icon-size-footer-inline {
  position: relative;
  height:  32px;
  margin: 0 6px -9px -8px;
}

.icon-wrapper-contact {
  position: relative;
  display: inline-block;
  width: 120px;
}

/*  Icon Wrapper 30%   */

.icon-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
}

/*   Icon Größen   */

.icon-size-15 {
  height: 15px;
  margin-left: 10px;
  margin-bottom: -2px;
}

.icon-size-25 {
  height: 25px;
  margin: auto;
}

.icon-size-35 {
  height: 35px;
  margin: auto;
}

.icon-size-50 {
  height: 50px;
  margin: auto;
}

.icon-size-60 {
  height: 60px;
  margin: auto;
}

.icon-size-75 {
  height: 75px;
  margin: auto;
}

.icon-size-100 {
  height: 100px;
  margin: auto;
}

.icon-size-125 {
  height: 125px;
  margin: auto;
}

.icon-size-150 {
  height: 150px;
  margin: auto;
}

.icon-size-200 {
  height: 200px;
  margin: auto;
}

.icon-size-triple {
  height: 150px;
  margin: auto;
}

/*  END – I C O N S   */

/*  - - - - - - - - - - - - - - - - - - - - -    */

/*  B U T T O N S  */

/* Shop Button */

.button-shop-nav  {
  display: inline-block;
  padding: 5px 24px 6px 24px;
  font-family: 'regular';
  font-size: 12px;
  line-height: 100%;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  border: 1px solid rgba(0, 0, 0, 1.0);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.0);
  color: rgba(0, 0, 0, 1.0);
}

.button-shop-nav-hero  {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 0.0);
  color: rgba(255, 255, 255, 1.0);
}

.button-shop-spacer {
  display: inline-block;
  width: 100px;
  height: 5px;
}

.button-shop-nav:hover  {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0 1.0);
  background-color: rgba(0, 0, 0, 1.0);
  color: rgba(255, 255, 255, 1.0);
}

.button-shop-nav-hero:hover  {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(0, 0, 0, 1.0);
}

/* Basic Button */

.button  {
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-family: 'regular';
  font-size: 14px;
  line-height: 100%;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
}

.button:hover  {
  cursor: pointer;
}

/* Button Styles */

.button-positive {
  border: 1px solid rgba(0, 0, 0, 1.0);
  background-color: rgba(0, 0, 0, 0.0);
  color: rgba(0, 0, 0, 1.0);
}

.button-positive:hover {
  border: 1px solid rgba(0, 0, 0, 1.0);
  background-color: rgba(0, 0, 0, 1.0);
  color: rgba(255, 255, 255, 1.0);
}

.button-negative-hero {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 1.0);
}

.button-negative-hero:hover {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(0, 0, 0, 1.0);
}

.button-negative {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 0.0);
  color: rgba(255, 255, 255, 1.0);
}

.button-negative:hover {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(0, 0, 0, 1.0);
}

.button-brand-color-1-positive {
  border: 1px solid rgba(10, 95, 105, 1.0);
  background-color: rgba(255, 0, 70, 0.0);
  color: rgba(10, 95, 105, 1.0);
}

.button-brand-color-1-positive:hover {
  border: 1px solid rgba(10, 95, 105, 1.0);
  background-color: rgba(10, 95, 105, 1.0);
  color: rgba(255, 255, 255, 1.0);
}

/*   END – B U T T O N S  */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   W R A P P E R */

/*   Basic Content Wrapper   */

.content-wrapper {
  position: relative;
  width: 88%;
  max-width: 600px;
  margin: auto;
}

.content-wrapper-herotext {
  position: relative;
  width: 88%;
  margin: auto;
    
/*    background-color: aquamarine;*/
}

.content-wrapper-full {
  position: relative;
  width: 85%;
  margin: auto;
}

.content-wrapper-half {
  position: relative;
  width: 85%;
  margin-left: 7.5%;
}

/*   Text  C E N T E R   */

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

/*   Text  L E F T   */

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

/*   END – W R A P P E R  */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   B A S I C  T Y P O G R A F I E   */

h1, h2, h3, h4, h5, h6, p {
    font-size: 100%;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
    color: rgba(0, 0, 0, 1.0);
}

/*   T Y P O G R A F I E  Einzelformate /// Mobile First   */


.hero-overline {
  font-family: 'light';
  font-size: 3.25vw;  
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 1.0);
  line-height: 150%;
}

.hero-subline {
  font-family: 'regular';
  font-size: 7.5vw;  
  text-transform: uppercase;
  text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.115em;
  color: rgba(255, 255, 255, 1.0);
  line-height: 135%;
}

/* Regular Headline */

.headline {
  font-family: 'regular';
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 135%;
}

/* Regular Subline */

.subline {
  font-family: 'light';
  font-size: 20px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 140%;
}

.subline-versal {
  font-family: 'medium';
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 135%;
}

/* Mengentext */

.infotext {
  font-family: 'light';
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 150%;
}

/* Icon und Bildunterschriften */

.overline {
  font-family: 'light';
  font-size: 14px;
  letter-spacing: 0.15rem;
  font-weight: normal;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 1.0);
  line-height: 145%;  
}

.icon-headline {
  font-family: 'regular';
  font-size: 12px;
  letter-spacing: 0.11rem;
  font-weight: normal;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 1.0);
  line-height: 145%;  
}

.icon-text-light {
  font-family: 'medium';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 145%;
}

.icon-text-regular {
  font-family: 'light';
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 145%;
}

/*   Footer – Legal Info   */

.legal-info {
	display: block;
	font-family: 'light';
  	font-size: 14px;
    text-transform: uppercase;
  	letter-spacing: 0.2em;
  	color: rgba(0, 0, 0, 0.66);
  	line-height: 160%;
	margin: 45px 6px 0 6px;
}

/*   M E D I A  Q U E R Y /// T Y P O G R A F I E /// Mobile First   */

/* Landscape  */

@media only screen and (orientation: landscape) { 

    .hero-overline {
      font-size: 2.0vw; }
    
    .hero-subline {
	  font-size: 4.0vw; }
}

/* Tablets Portrait View */

@media only screen and (min-width: 600px) and (orientation: portrait) {

  .hero-overline {
      font-size: 2.0vw; }
    
  .hero-subline {
	 font-size: 6.0vw;
	 line-height: 130%; }
    
  .headline {
	line-height: 130%;
    font-size: 32px; }
    
  .subline {
    font-size: 20px; }
    
  .infotext {
    font-size: 18px;
	letter-spacing: 0.025em; }

  .legal-info {
  	font-size: 10px; }
}

/* Tablets Landscape View */

@media only screen and (min-width: 850px) and (orientation: landscape) {

    .hero-overline {
      font-size: 2.0vw; }
    
    .hero-subline {
	  font-size: 4.0vw;
	  line-height: 125%; }
    
    .headline {
      line-height: 125%;
      font-size: 32px; }
    
    .legal-info {
  	  font-size: 10px; }
}

/* Large Tablets Portrait View */

@media only screen and (min-width: 1000px) and (orientation: portrait) {
    
  .hero-overline {
    font-size: 3.0vw; }
    
  .hero-subline {
	font-size: 6.0vw;
	line-height: 125%; }
}

/* Regular Desktop Devices */

@media only screen and (min-width: 1170px) {

  .hero-overline {
    font-size: 1.25vw;
    letter-spacing: 0.125em;}
    
  .hero-subline {
	font-size: 4.0vw;
	line-height: 120%; }

  .headline {
    font-size: 40px;
	line-height: 120%;}
    
  .subline  {
    font-size: 22px; }
    
  .infotext {
    font-size: 18px;
	letter-spacing: 0.025em; }
}

/* Large Desktop Devices */

@media only screen and (min-width: 1366px) {}

@media only screen and (min-width: 1600px) {}

@media only screen and (max-width: 950px) and (orientation: landscape) {

  .hero-overline {
    font-size: 2.0vw; }
    
  .hero-subline {
	font-size: 4.0vw;
	line-height: 130%; }
}


/*   T Y P O G R A F I E  Colors and Weights /// Mobile First   */

/* Font Weights */

.typo-weight-regular {
  font-family: 'regular';
}

.typo-weight-bold {
  font-family: 'bold';
}

.typo-weight-italic {
  font-family: 'italic';
}

/* Type Colors */

.color-brand-1 {
  color: rgba(10, 95, 105, 1.0);
}

.color-brand-2 {
	color: rgba(125, 125, 125, 1.0);
}

.color-white {
  color: rgba(255, 255, 255, 1.0);
}

.color-black {
  color: rgba(0, 0, 0, 1.0);
}

.color-black-66 {
  color: rgba(0, 0, 0, 0.66);
}

/*   END – T Y P O G R A F I E   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   L A Y O U T  E L E M E N T E   */

/*   Padding   */

.padd-imageslider {
	padding: 8vh 0 0 0;
}

.padd-2-5vh {
  padding: 2.5vh 0;
}

.padd-5vh {
  padding: 5.0vh 0;
}

.padd-7-5vh {
  padding: 7.5vh 0;
}

.padd-10vh {
  padding: 10vh 0;
}

.padd-2-5-10vh {
  padding: 2.5vh 0 10vh 0;
}

.padd-5-10vh {
  padding: 5vh 0 10vh 0;
}

.padd-0-15vh {
  padding: 0 0 12.5vh 0;
}

.padd-5-15vh {
  padding: 5vh 0 15vh 0;
}

.padd-10-15vh {
  padding: 10vh 0 12.5vh 0;
}

.padd-10vh-0 {
  padding: 10.0vh 0 0 0;
}

.padd-12-5vh {
  padding: 12.5vh 0;
}

.padd-15vh {
  padding: 15vh 0;
}

.padd-15-0vh {
  padding: 15.0vh 0 0 0;
}

.padd-15vh-90px {
  padding: 15vh 0 90px 0;
}

.padd-90px-15vh {
  padding: 90px 0 15vh 0;
}

.padd-20px-90px {
  padding: 20px 0 90px 0;
}

.padd-20px-15vh {
  padding: 20px 0 15vh 0;
}

.padd-90px-90px {
  padding: 90px 0;
}

.padd-17-5vh {
  padding: 17.5vh 0;
}

.padd-20vh {
  padding: 20.0vh 0;
}

/*   Spacer – Absolut  */

.space-top-5 {
  margin-top: 5px;
}

.space-top-10 {
  margin-top: 10px;
}

.space-top-15 {
  margin-top: 15px;
}

.space-top-20 {
  margin-top: 20px;
}

.space-top-30 {
  margin-top: 30px;
}

.space-top-40 {
  margin-top: 40px;
}

.space-top-45 {
  margin-top: 45px;
}

.space-top-60 {
  margin-top: 60px;
}

.space-top-75 {
  margin-top: 75px;
}

.space-top-90 {
  margin-top: 90px;
}

/*   Inline Elemente */

.inline-element {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}

/*   Spacer – Negativ */

.space-bottom-offset-20 {
  margin-bottom: -20px;
}

/*   Spacer – Relativ  */

.space-top-2-5vh {
  margin-top: 2.5vh;
}

.space-top-5vh {
  margin-top: 5vh;
}

.space-top-10vh {
  margin-top: 10vh;
}

.space-top-15vh {
  margin-top: 15vh;
}

.space-top-20vh {
  margin-top: 20vh;
}

.space-top-herologo {
  margin-top: 15vh;
}

.space-slider-mobile {
  margin-top: 2.5vh;
}

/*   Spacer – Left  */

.space-left-5 {
  margin-left: 4px; 
}

.space-left-10 {
  margin-left: 10px; 
}

.space-left-negative-5 {
  margin-left: -5px; 
}

.opacity-80  {
	-webkit-opacity: 0.8;
  	-moz-opacity: 0.8;
  	-ms-opacity: 0.8;
  	-o-opacity: 0.8;
	opacity: 0.8;
}

/*   END – L A Y O U T  E L E M E N T E   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   U X – E L E M E N T S */

.desktop-menu-link:hover {
	cursor: pointer;
	-webkit-opacity: 0.66;
  	-moz-opacity: 0.66;
  	-ms-opacity: 0.66;
  	-o-opacity: 0.66;
	opacity: 0.66;
}

.desktop-menu-link-active:hover {
    cursor: default;
	-webkit-opacity: 1.0;
  	-moz-opacity: 1.0;
  	-ms-opacity: 1.0;
  	-o-opacity: 1.0;
	opacity: 1.0;
}

.legal-info:hover {
    cursor: pointer;
	color: rgba(0, 0, 0, 1.0);
}

.link-underline {
	text-decoration:underline;
}

.link-pointer:hover {
	cursor: pointer;
}

.link-zoom:hover {
	cursor: zoom-in;
}
	
.link:hover, .link-underline:hover {
	cursor: pointer;
	color: rgba(10, 95, 105, 1.0);
}

.link-brand-1:hover {
	cursor: pointer;
	color: rgba(10, 95, 105, 1.0);
}

.link-brand-2:hover {
	cursor: pointer;
	color: rgba(125, 125, 125, 1.0)
}

/*  Accordion  */

.accordion-off {
	display: none;
}

.accordion-invisible {
	line-height: 5%;
	-webkit-opacity: 0;
  	-moz-opacity: 0;
  	-ms-opacity: 0;
  	-o-opacity: 0;
  	opacity: 0;
}

/*  Hover Icons  */

.hover-icon { }

.hover-icon:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1) translateY(-5px);
  -moz-transform: scale(1.1) translateY(-5px);
  -ms-transform: scale(1.1) translateY(-5px);
  -o-transform: scale(1.1) translateY(-5px);
  transform: scale(1.1) translateY(-5px);
}

/*   END – U X – E L E M E N T S   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   A N I M A T I O N S  */

/*   inView Elements */

.animationElement {
  	transition: transform .6s .0s ease-in-out;
  	-webkit-animation-fill-mode: forwards;
  	animation-fill-mode: forwards;
  	-webkit-opacity: 0;
  	-moz-opacity: 0;
  	-ms-opacity: 0;
  	-o-opacity: 0;
  	opacity: 0;
}

.inView {
	-webkit-opacity: 1.0;
  	-moz-opacity: 1.0;
  	-ms-opacity: 1.0;
  	-o-opacity: 1.0;
  	opacity: 1.0;
}

@-webkit-keyframes pulse {
  10% {
    opacity: 1; }
  20% {
    opacity: 0.5; }
  30% {
    opacity: 1; }
  40% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  60% {
    opacity: 0.5; }
  70% {
    opacity: 1; }
  80% {
    opacity: 0.5; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }
	
@keyframes pulse {
  10% {
    opacity: 1; }
  20% {
    opacity: 0.5; }
  30% {
    opacity: 1; }
  40% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  60% {
    opacity: 0.5; }
  70% {
    opacity: 1; }
  80% {
    opacity: 0.5; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*   END – A N I M A T I O N S   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   T R A N S I T I O N S  */

/*   Cubic  */

.trans-cubic-250 {
	-webkit-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-moz-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-ms-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-o-transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	transition: all 0.25s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

.trans-cubic-500 {
	-webkit-transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-moz-transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-ms-transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-o-transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

.trans-cubic-750 {
	-webkit-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-moz-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-ms-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-o-transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	transition: all 0.75s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

.trans-cubic-1500 {
	-webkit-transition: all 1.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-moz-transition: all 1.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-ms-transition: all 1.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	-o-transition: all 1.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
	transition: all 1.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

/*   Ease  */

.ease-100 {
    -webkit-transition: all 0.1s ease-in-out;
  	-moz-transition: all 0.1s ease-in-out;
  	-ms-transition: all 0.1s ease-in-out;
  	-o-transition: all 0.1s ease-in-out;
  	transition: all 0.1s ease-in-out;
}

.ease-250 {
    -webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
  	-ms-transition: all 0.25s ease-in-out;
  	-o-transition: all 0.25s ease-in-out;
  	transition: all 0.25s ease-in-out;
}

.ease-500 {
    -webkit-transition: all 0.5s ease-in-out;
  	-moz-transition: all 0.5s ease-in-out;
  	-ms-transition: all 0.5s ease-in-out;
  	-o-transition: all 0.5s ease-in-out;
  	transition: all 0.5s ease-in-out;
}

.ease-750 {
    -webkit-transition: all 0.75s ease-in-out;
  	-moz-transition: all 0.75s ease-in-out;
  	-ms-transition: all 0.75s ease-in-out;
  	-o-transition: all 0.75s ease-in-out;
  	transition: all 0.75s ease-in-out;
}

.ease-1000 {
    -webkit-transition: all 1.0s ease-in-out;
  	-moz-transition: all 1.0s ease-in-out;
  	-ms-transition: all 1.0s ease-in-out;
  	-o-transition: all 1.0s ease-in-out;
  	transition: all 1.0s ease-in-out;
}

.ease-2000 {
    -webkit-transition: all 2.0s ease-in-out;
  	-moz-transition: all 2.0s ease-in-out;
  	-ms-transition: all 2.0s ease-in-out;
  	-o-transition: all 2.0s ease-in-out;
  	transition: all 2.0s ease-in-out;
}

.ease-10000 {
    -webkit-transition: all 10.0s ease-in-out;
  	-moz-transition: all 10.0s ease-in-out;
  	-ms-transition: all 10.0s ease-in-out;
  	-o-transition: all 10.0s ease-in-out;
  	transition: all 10.0s ease-in-out;
}

/*   END – T R A N S I T I O N S   */

/*   - - - - - - - - - - - - - - - - - - - - -    */

/*   - - - - - - - - - - - - - - - - - - - - -    */

.mobile-off { 
	display: none;
}

.mobile-break {
	display: inline-block;
}

.portrait-break {
	display: none;
}

.landscape-break {
	display: none;
}

.desktop-break {
	display: none;
}

/*   M E D I A  Q U E R I E S /// Mobile First  */

/* Switch Mobile Menu to Desktop Menu  */

@media only screen and (min-width: 1000px) and (orientation: landscape) { 

	.mobile-header, .burger-menu, .mobile-custom-logotype, .mobile-menu-container {
  		display: none; }

	header  {
  		display: block; }

	.mobile-off { 
	 	display: inline-block; }
	
	.mobile-break {
		display: none; }
	}

/* Default View /// Portrait View /// Smartphone  */

@media only screen and (min-width: 400px) {}

/* Landscape  */

@media only screen and (orientation: landscape) { 
	
	.hero-image-container {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
  		height: 100vh; }
	
	.hero-image-container {}
	
	.landscape-break {
		display: inline-block; }
    
    .portrait-break {
	   display: none; }
    }

/* Portrait View /// Tablet Portrait */

@media only screen and (min-width: 600px) and (orientation: portrait) { 
	
    .padd-imageslider {
	   padding: 7.5vh 0 0 0;}
    
	.mobile-off { 
	 	display: inline-block; }

	.mobile-header {
		top: 0;
		height: 7.5vh; }

	.burger-menu {
  		top: 2.5vh; }
	
	.mobile-custom-logotype {
  		left: 7.5vw;
		top: 2.0vh;
		height: 3.5vh; }
	
	.desktop-hero-logotype {
  		width: 33vw; }

	.mobile-menu-link {
		font-size: 2.5vh; }
	
	.content-wrapper-half {
  		width: 66%;
  		margin-left: 7.5%; }
    
    .image-circle-center {
        width: 50%; }

	.legal-info {
		display: inline-block; }

	.mobile-break {
		display: none; }
    
    .portrait-break {
        display: inline-block; }
	
	.space-slider-mobile {
  		margin-top: 10vh; }
	}

/* Landscape View /// Small Desktop and Tablet Landscape */

@media only screen and (min-width: 850px) and (orientation: landscape) {
	
	.desktop-hero-logotype {
  		width: 25vw; }

	.content-wrapper-half {
  		width: 50%;
  		margin-left: 7.5%; }
	
	.legal-info {
		display: inline-block; }

	.mobile-break {
		display: none; }
    
    .image-circle-center {
        width: 33%; }

	.space-slider-mobile {
  		margin-top: 25vh; }
	}

/* Landscape View /// Tablet Portrait iPad Pro */

@media only screen and (min-width: 1000px) and (orientation: portrait) {
    
    .padd-imageslider {
	   padding: 7.25vh 0 0 0;}  
}

/* Landscape View /// Desktop */

@media only screen and (min-width: 1170px) {
	
	.desktop-hero-logotype {
  		width: 20vw; }
	
	.content-wrapper-half {
  		width: 42.5%;
  		margin-left: 7.5%; }

	.mobile-break {
		display: none; }
    
    .desktop-break {
	   display: block; }
    
	}


/* Special Devices */

/* Landscape View /// Tablet Landscape iPads */

@media only screen and (aspect-ratio: 4/3) { }

/* Landscape View /// Smartphone */

@media only screen and (orientation: landscape) and (max-width: 850px) {
	
	.mobile-header {
		top: 0;
		height: 13vh; }
	
	.mobile-menu-space-top {
		width: 100%;
		height: 10vh; }
	
	.mobile-custom-logotype {
		left: 7.5vw;
		height: 9vh; }
	
	.desktop-hero-logotype {
  		width: 33vw; }

	.mobile-menu-item {
		width: 49%;
		height: 10vh;
		margin: 4vh 0;
		text-align: center; }
	
	.mobile-menu-link {
		font-size: 5.0vh; }

	.legal-info {
		display: inline-block; }
	
	.mobile-break {
		display: none; }
	
	.space-slider-mobile {
  		margin-top: 5vh; }
	
	}

/* Portrait View /// iPhone SE */

@media only screen and (orientation: portrait) and (max-width: 320px) {
	.mobile-header {
		top: 0;
		height: 9vh; }
	}

@media only screen and (orientation: landscape) and (max-width: 600px) {
	
	.burger-menu {
  		top: 2.0vh; }
	
	.mobile-custom-logotype {
  		left: 7.5vw;
		top: 1.5vh; }
	}

/* Trennungen */

.no-hyphens {
	-moz-hyphens: none;
    -o-hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Mobile Image Spacer at Top */

.mobile-image-top {
    display: block;
	height: 60px;
}

@media only screen and (orientation: landscape) and (min-width: 950px) {
	
	.mobile-image-top{
  		display: none; }
}

@media only screen and (orientation: portrait) and (min-width: 750px) {
	
	.mobile-image-top{
        display: block;
	    height: 90px; }
}

@media only screen and (orientation: portrait) and (min-width: 1000px) {
	
	.mobile-image-top{
        display: block;
	    height: 120px; }
}







