@charset "UTF-8";

/* FONTS */

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v18-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('../fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v20-latin-900.eot'); /* IE9 Compat Modes */
  src: local('Roboto Black'), local('Roboto-Black'),
       url('../fonts/roboto-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}

html, Body {
    margin:0;
    padding:0;
    height:100%;
    overflow-y: hidden;
}

/* GRID */

.grid-container {
    display: grid;
    grid-template-columns: 5% 1fr 1fr 5%;
    grid-template-rows: 10vh 1fr;
    grid-template-areas: ". Name Menu ." ". Inhalt Inhalt .";
}

.Name { 
    grid-area: Name; 
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 130%;
    color: #006666;
    align-self: end;
    display: inline-block;
}

.herbers {
    color: #333333;
    display: inline-block;
    padding-bottom: .5em;
}

.Menu { 
    grid-area: Menu;
    font-family: 'Roboto', sans-serif;
    color: #006666;
    font-weight: 400;
    font-size: 130%;
    padding-bottom: .5em;
    text-align: right;
    align-self: end;
    }

.Inhalt { 
    grid-area: Inhalt; 
}

.Footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position:absolute;
  bottom:0;
  width:100%;
  height:35px;
  margin-top: 1vh;
  background:#ffffff;
}

.Contact { 
    grid-area: 1 / 1 / 2 / 4; 
    font-family: 'Roboto', sans-serif;
    color: #006666;
    font-size: 90%;
    font-weight: 500;
    text-align: center;
}

.Copyright { 
    grid-area: 2 / 1 / 3 / 2;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 75%;
    color: #006666;
}

.Disclaimer { 
    grid-area: 2 / 2 / 3 / 3;
    text-align: right;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 75%;
    color: #006666;
}

.flexbox_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30vw;
    height: 100%;
    overflow-y: auto;
    margin-right: 40px;
        padding-right: 15px;
}

.flexbox_text {
/*    display: block;*/
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 100%;
    color: #333333;
    padding-top: 15vh;
    line-height: 1.5;
    overflow-y: auto;

    }

.flexbox_text a1 {
    font-weight: 500;
    font-size: 150%;
    color: #006666;
}

.flexbox_galerie {
    display: flex;
    align-items: center;
    height: calc(84vh - 35px);
    overflow-x: auto;
    overflow-y: hidden;
}

.flexbox_galerie img{
    max-height: calc(84vh - 35px);
}

.img_bod {
    padding-right: 15px;
}


/* LINKS */

a:hover {
    color: #006666;
    text-decoration: line-through;
}

a:active {
    color: #006666;
    text-decoration: none;
}

a {
    color: #006666;
    text-decoration:none
}

/* DROPDOWN MENU */

/* Dropdown Button */
.dropbtn {
  border: none;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #006666;
  font-weight: 400;
  font-size: 100%; 
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  text-align: left;
  min-width: 150px;
 /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);  */
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #006666;
  padding: 0.5em 10px;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ffffff;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #ffffff;}

/* SCROLLBAR */

/* width */
::-webkit-scrollbar {
  width: 15px;
    height:15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #006666; 
}

/* TITLE OVERLAY */



/* Container needed to position the overlay. Adjust the width as needed */
.img_bod {
  position: relative;
}

 .img_end{
  position: relative;
}


/* Mobile */
@media all and (orientation: portrait) {
    
.flexbox_info {
/*    display: block;*/
    flex-direction: column;
    align-items: center;
    width: 85vw;
    min-height: auto;
    margin-right: 7px;
    margin-bottom: 40px;
    overflow: visible;
}
    
.flexbox_text {
    padding-top: 2vh;
    height: auto;
    }
    
.flexbox_galerie {
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
  }
    
.flexbox_galerie img{
    width: 90vw;
    max-height: 100%;
    padding-right: 0;
}
    
  }
