/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- Background Color + Schriftbestimmung General*/ 
body {
    font-family: Arial, sans-serif;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- colors id */

#orange { color: #ff6211; }

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- Gridsystem */
* {
  box-sizing: border-box;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- H1 */
h1 {
    font-size: 46px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- H2 */
h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- H3 */
h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- H4 */
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- H5 */
h5 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}
/* ----- ----- ----- ----- ----- ----- ----- ----- H6 */
h6 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;  
}

h6.medium {
  font-weight: 500;
}


/* ----- ----- ----- ----- ----- ----- ----- ----- p */
p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- Links General */
a:link { /* ----- ----- ----- nicht unterstrichen; Standartfarbe schwarz */
    text-decoration: none;
    color: black;
}  

a:visited { /* ----- ----- -- Klickverhalten: Standartfarbe ist schwarz */
    background-color: transparent;
    color: black;
}
ul { /* ----- ----- ----- --- keine Bullet Points */
    list-style-type: none;
}

li a:hover { /* ----- ----- - Hovern: graumarkierung */
    color: gray;
    cursor: w-resize /* pointer */
}

a:hover {
    cursor: pointer
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- Header General */
/* ----- ----- ----- ----- ----- ----- ----- ----- Header-01 */

.Header-01 {
    margin: 20px 20px 20px 20px; /* oben rechts unten links */
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.H01-index {
    margin: 0px 0px 0px 0px; /* oben rechts unten links */
    padding: 0px 0px 0px 0px; 
}

.H01-navi {
    display: flex;
    position: relative;
    top: -100;
    margin: 0px 0px 0px 0px;  
    padding: 0px 0px 0px 5px;
}

.H02-navi {
    display: none;
}


.H01-navi h6 {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 10px;
}


@media (max-width: 800px) {
.H01-navi {
    display: none;
}    
    
.H02-navi {
    display: block;
    top: -100;
    text-align: right;
    margin: 0px 0px 0px 0px;  /* oben rechts unten links */
    padding: 0px 0px 0px 5px;
}

.H02-navi-content {
    display: none;
    position: fixed;
    top: 60px;
    right: 25px;
    background-color: white;
    z-index: 1;
    padding: 5px;
    margin: 10px 0px 0px 0px;
}

.H02-navi-content a {
    float: none;
    color: black;
    margin: 0px;
    padding: 5px 0px 5px 5px;
    text-decoration: none;
    display: block;    
}

.show {
  display: block;
}
} 


/* ----- ----- ----- ----- ----- ----- ----- ----- Teaser */


.H01-teaser {
    margin: 50px 140px 0px 140px; /* oben rechts unten links */
    padding: 0px 0px 0px 0px;
    align-items: center;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- Buttons */

.btn-01 {
    background-color: white;
    border: none;
    padding: 0px;
    cursor: pointer;
}









