/*   Styles /// Mobile First   */


/*   H E A D E R   */

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

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

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

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

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

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

/*   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/visuals/visual_green_gradient_mobile.png) no-repeat center 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: 25vh;
}

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

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

.mobile-menu-link {
	
	font-family: 'regular';
	font-size: 6.25vw;
  	letter-spacing: 0.1rem;
  	line-height: 100%; 
  	font-style: normal;
	font-weight: normal;
	color: rgba(255, 255, 255, 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(255, 255, 255, 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;
}

.about-logotype {
  position: relative; 
  width: 100%;
}

/* Logotype Desktop */

.desktop-custom-logotype {
  position: absolute; 
  bottom: 1vh;
  left: 7.5vw;
  height: 3.75vh;
  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;
  z-index: 1100;
  text-align: right;
}

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

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

.desktop-menu-link-active {
	color: rgba(0, 160, 60, 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: rgba(0, 0, 0, 1.0);
}

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

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

#content-section-0 {
	background: url(../img/visuals/visual_hero_mobile.jpg) no-repeat right center/cover;
}

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

#content-section-2 {
	background: url(../img/visuals/visual_green_gradient_mobile.png) no-repeat center center/cover;
}

.content-section-project-1 {
	background: url(../img/images_project_01/lindwurm_hero.jpg) no-repeat bottom center/cover;
}

.content-section-project-2 {
	background: url(../img/images_project_02/elsheimer_hero.jpg) no-repeat bottom center/cover;
}

.content-section-project-3 {
	background: url(../img/images_project_03/Zeppelin_hero.jpg) no-repeat bottom center/cover;
}


/*   Footer   */

footer {
	position: relative;
	width: 100%;
	min-height: 70vh;
	padding: 15.0vh 0;
	text-align: center;
	background: url(../img/visuals/gradient_gray.jpg) no-repeat center center/cover;
}

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

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

/*   C O L O R S  Background  */

.background-gradient-gray {
	background: url(../img/visuals/gradient_gray.jpg) no-repeat bottom center/cover;
}

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

.background-color-gray-235 {
	background-color: rgba(235, 235, 235, 1.0);
}

.background-color-gray-245 {
	background-color: rgba(245, 245, 450, 1.0);
}

.background-color-gray-gradient {
	background: url(../img/visuals/gradient_gray.jpg) no-repeat center center/cover;
}

.background-color-green-gradient {
	background: url(../img/visuals/visual_green_gradient_mobile.png) no-repeat center center/cover;
}

/*   END – C O L O R S  Background  */

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

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

/*   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, 30, 0, 1.0);
	border: 1px solid rgba(255, 255, 255, 0.75);
}

/* Hidden Items */

.item-invisible {
	display: none; }


.item__image {
	position: absolute;
	top: 50%;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.33;
	-webkit-transform: translate3d(0, -50%, 0) scale3d(1.2, 1.2, 1);
	transform: translate3d(0, -50%, 0) scale3d(1.2, 1.2, 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: 100%;
	bottom: 0;
	margin: 0;
	padding-bottom: 2.0em;
	color: rgba(255, 255, 255, 1.0);
	font-size: 24px;
	font-family: 'regular';
    letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;	
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s; }

.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: 33vh;
    height: 33vh;
	margin: 1vh; } }

@media only screen and (min-width: 1000px) and (orientation: landscape) {
  .item  {
    width: 50vh;
    height: 50vh;
	margin: 1vh; } }

@media only screen and (min-width: 1070px) and (orientation: landscape) {
  .item  {
    width: 33vh;
    height: 33vh;
	margin: 1.25vh; } }


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

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

/*   I C O N S */

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

@media only screen and (min-width: 360px) and (orientation: portrait){
	.icon-size-mobile-menu {
  		height: 53px; }
}

@media only screen and (min-width: 400px) and (orientation: portrait){
	.icon-size-mobile-menu {
  		height: 56px; }
}

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

@media only screen and (orientation: landscape){
	.icon-size-mobile-menu {
  		height:  40px;
  		margin: 15px 15px 0 15px; }
}

.icon-size-footer {
  position: relative;
  height:  32px;
  margin: 15px 10px 0 10px;
}

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

/*  Icon Wrapper 30%   */

.icon-wrapper-30 {
  position: relative;
  display: inline-block;
  width: 80%;
  max-width: 240px;
}

/*   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-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-process {
  height: 140px;
  margin: auto;
}

/*  END – I C O N S   */

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

/*  B U T T O N S  */

/* Basic Button */

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

.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 {
  border: 1px solid rgba(255, 255, 255, 1.0);
  background-color: rgba(0, 160, 60, 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, 160, 60, 1.0);
}

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

.button-negative-black: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-color {
  border: 1px solid rgba(0, 160, 60, 1.0);
  background-color: rgba(0, 160, 60, 0.0);
  color: rgba(0, 160, 60, 1.0);
}

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

/*   Button Quickfinder   */

.button-quickfinder {
  display: inline-block;
  padding: 7px 10px;
  min-width: 150px;
  font-family: 'regular';
  font-size: 11px;
  line-height: 140%;
  font-weight: normal;
  text-transform: none;
  text-align: center;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 1.0);
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

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

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

/*   W R A P P E R */

/*   Basic Content Wrapper   */

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

/*   Basic Content Wrapper   */

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

.icon-wrapper-full {
  position: relative;
  width: 100%;
  margin: auto;
}

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

.content-wrapper-accordion {
	position: relative;
	width: 100%;
	padding: 45px 0;
  	min-height: 10px;
}

.content-wrapper-accordion-active {
  min-height: 10vh;
}

/*   Text  C E N T E R   */

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

/*   Text  L E F T   */

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

.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 Headline */

.hero-headline {
  font-family: 'regular';
  font-size: 8.5vw;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 1.0);
  line-height: 125%;
}

/* Regular Headline */

.headline {
  font-family: 'regular';
  font-size: 24px;
  letter-spacing: 0.045em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 130%;
}

/* Regular Subline */

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

.bullet-subline-white {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.66);
}

/* Mengentext */

.infotext {
  font-family: 'regular';
  font-size: 18px;
  letter-spacing: 0.055em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 160%;
}

/* Bildunterschriften und Legenden */

.legend {
  font-family: 'regular';
  font-size: 16px;
  letter-spacing: 0.075em;
  color: rgba(0, 0, 0, 1.0);
  line-height: 160%;
}

.quickinfo {
  font-family: 'regular';
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 160%;
}

/* Icon Bildunterschriften */

.icon-headline {
  font-family: 'semibold';
  font-size: 16px;
  letter-spacing: 0.075rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 1.0);
  line-height: 150%;  
}

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

/*   Footer – Legal Info   */

.legal-info {
	display: block;
	font-family: 'regular';
  	font-size: 14px;
  	letter-spacing: 0.075em;
  	color: rgba(150, 150, 150, 1.0);
  	line-height: 160%;
	margin: 45px 15px 0 0;
}

/* Typografie Styles */

.bold {
	font-family: 'semibold';
	font-weight: normal;
}

.xtrbold {
	font-family: 'bold';
	font-weight: normal;
}

/* Typografie Ausrichtung */

.left-80 {
	max-width: 100%;
}

/*   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-headline {
	  font-size: 4.5vw;
	  letter-spacing: 0.035em; }
	}

/* Tablets Portrait View */

@media only screen and (min-width: 600px) {
  .hero-headline {
	 font-family: 'light';
	 letter-spacing: 0.025em; }
  .headline {
	font-family: 'light';
	letter-spacing: 0.045em;
    font-size: 32px; }    
  .item__title {
	font-family: 'light';
	letter-spacing: 0.045em;
    font-size: 32px; }
  .subline {
	font-family: 'light';
	letter-spacing: 0.045em;
    font-size: 22px; }
  .infotext {
	font-family: 'light';
	letter-spacing: 0.05em; }
  .icon-headline {
     font-family: 'regular'; }
  .icon-text {
    font-family: 'light'; }
  .legend {
	font-family: 'light'; }
  .infotext.negative {
    letter-spacing: 0.075em; }
  .bold {
	font-family: 'regular';
    letter-spacing: 0.035em; }
}

/* Tablets Landscape View */

@media only screen and (min-width: 850px) and (orientation: landscape) {
  	.hero-headline {
	  font-size: 5.5vw;
	  letter-spacing: 0.02em; }
}

/* Large Tablets Portrait View */

@media only screen and (min-width: 1000px) and (orientation: portrait) {
  .infotext.negative {
    letter-spacing: 0.07em; }
}

/* Regular Desktop Devices */

@media only screen and (min-width: 1170px) {
  .hero-headline {
	font-size: 4.5vw; }
  .headline {
    font-size: 40px;
	letter-spacing: 0.03em; }
  .item__title {
	font-family: 'light';
	letter-spacing: 0.03em;
    font-size: 40px; }
  .subline  {
    font-size: 24px;
	letter-spacing: 0.03em; }
  .negative {
    letter-spacing: 0.065em; }
  .infotext.negative {
    letter-spacing: 0.07em; }
  .bold {
	letter-spacing: 0.035em; }
}

/* Large Desktop Devices */

@media only screen and (min-width: 1400px) {
  .hero-headline {
	font-size: 3.75vw; }
  .negative {
    letter-spacing: 0.055em; }
  .infotext.negative {
    letter-spacing: 0.07em; }
}

@media only screen and (min-width: 1600px) {
  .hero-headline {
	font-size: 3.5vw; }
}

@media only screen and (min-width: 1900px) {
  .hero-headline {
	font-size: 3.0vw; }
}

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

/* Font Weights */

.typo-weight-xtrlight {
  font-family: 'xtrlight';
  letter-spacing: 0.04em;
}

.typo-weight-light {
  font-family: 'light';
  letter-spacing: 0.035em;
}

.typo-weight-regular {
  font-family: 'regular';
  letter-spacing: 0.03em;
}

.typo-weight-semibold {
  font-family: 'semibold';
  letter-spacing: 0.025em;
}

.typo-weight-bold {
  font-family: 'bold';
  letter-spacing: 0.02em;
}

/* Negative Type /// White */

.negative {
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 1.0);
}

/* Type Color RED */

.color-brand {
  color: rgba(0, 160, 60, 1.0);
}

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

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

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

/*   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-2-5vh {
  padding: 2.5vh 0;
}

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

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

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

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

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

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

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

.padd-project-info {
  padding: 10vh 0 15vh 0;
}
/*   Spacer – Absolut  */

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

.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-90 {
  margin-top: 90px;
}

/*   Spacer – Relativ  */

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

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

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

/*   Spacer – Left  */

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

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

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

.space-line-negative {
  height: 1px;
  width: 25%;
  background-color: rgba(255, 255, 255, 1.0);
  margin: auto;
  margin-top: 30px;
}



/*   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.75;
  	-moz-opacity: 0.75;
  	-ms-opacity: 0.75;
  	-o-opacity: 0.75;
	opacity: 0.75;
}

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

.link:hover {
	cursor: pointer;
	color: rgba(0, 160, 60, 1.0);
}

.textlink {
	color: rgba(0, 160, 60, 1.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;
}

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


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


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

.mobile-off { 
	display: none;
}

.break-1366-landscape { 
	display: none;
}

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

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

.landscape-break {
	display: none;
}

.desktop-landscape-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) { 

	.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  */

/* Landscape  */

@media only screen and (orientation: landscape) {
	
	#content-section-0 {
		background: url(../img/visuals/visual_hero_landscape.jpg) no-repeat center center/cover; }
	
	.mobile-menu-container, background-color-blue-gradient, #content-section-2 {
		background: url(../img/visuals/visual_green_gradient_landscape.png) no-repeat center center/cover; }
	
	.landscape-break {
		display: inline-block; }
	
	.portrait-break {
		display: none; }
	
	.about-logotype {
  		width: 75%; }
	
	.icon-size-process {
  		height: 140px; }
	}

/* Portrait View /// Tablet Portrait */

@media only screen and (min-width: 600px) and (orientation: portrait) {
	
	#content-section-0 {
		background: url(../img/visuals/visual_hero_portrait.jpg) no-repeat right center/cover; }
	
	.mobile-menu-container, background-color-blue-gradient, #content-section-2 {
		background: url(../img/visuals/visual_green_gradient_portrait.png) no-repeat center center/cover; }
	
	.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: 37.5vw; }
	
	.about-logotype {
  		width: 75%; }
	
	.mobile-menu-link {
		font-family: 'light';
		font-size: 3.75vh; }
	
	.content-wrapper-half {
  		width: 66%;
  		margin-left: 7.5%; }
	
	.icon-wrapper-30 {
		width: 30%;
	  	margin-left: 10px;
  		margin-right: 10px; }
	
	.icon-size-process {
  		height: 140px; }

	.left-80 {
		max-width: 90%; }

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

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

@media only screen and (min-width: 850px) and (orientation: landscape) {
	
	.desktop-hero-logotype {
  		width: 25vw; }
	
	.icon-wrapper-30 {
		width: 30%;
		margin-left: 10px;
  		margin-right: 10px; }
	
	.content-wrapper-half {
  		width: 50%;
  		margin-left: 7.5%; }
	
	.left-80 {
		max-width: 80%; }
	
	.legal-info {
		display: inline-block; }
	
	.break-1366-landscape { 
		display: block; }
	
	.mobile-break {
		display: none; }
	}

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

@media only screen and (min-width: 1000px) and (orientation: portrait) {
	
	.left-80 {
		max-width: 80%; }
	}

/* Landscape View /// Desktop */

@media only screen and (min-width: 1170px) {
	
	.desktop-hero-logotype {
  		width: 22.5vw; }
	
	.content-wrapper-half {
  		margin-left: 7.5%; }
	
	.left-80 {
		max-width: 75%; }
	
	.user-info-scroll {
		display: block; }

	.user-info-touch {
		display: none; }
	
	.mobile-break {
		display: none; }
	.desktop-landscape-break {
		display: inline-block; }
	}

/* Landscape View /// Desktop 1366 */

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

	.break-1366-landscape { 
		display: none; }
	}

/* Landscape View /// Desktop 1600 */

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

/* Landscape View /// Desktop 1900 */

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

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

/* 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: 12.5vh; }
	
	.mobile-custom-logotype {
		left: 7.5vw;
		height: 9vh; }
	
	.desktop-hero-logotype {
  		width: 25vw; }
	
	.mobile-menu-item {
		width: 45%;
        height: 10vh;
		margin: 4vh 0;
		text-align: center; }
	
	.mobile-menu-link {
		font-family: 'regular';
		font-size: 6.25vh; }
	
	.icon-wrapper-30 {
		width: 40%; }
	
	.legal-info {
		display: inline-block; }
	
	.mobile-break {
		display: none; }
	
	}

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


.todo {
	color: crimson;
}






