*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

/* Century Gothic */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 200;

    src: url('../font/century-gothic.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../font/century-gothic.woff') format('woff');
    /* Modern Browsers */
}

html, body {
font-family:'Century Gothic', 'open_sanslight',georgia, tahoma, arial, Verdana, Segoe, 'Open Sans',helvetica,roboto ,sans-serif;
font-size:62.5%;
line-height:1.5;
font-weight:normal;
height:100%;
}

body {overflow:hidden;
margin: 0 auto;
background-image: url(img/unicenter2.svg);
background-position: center;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
color:#333;
}

/* ############# H E A D E R ########### */

header {
  display: none;
  background: transparent;
  text-align: center;
  position: fixed;
  top: 0;
  left: 30%;
  z-index: 999;
  width: 100%;
  height: 8em;
  opacity: 1;
  transition: opacity 150ms ease-in-out;
}

nav {
  position: absolute;
  text-align: center;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  color: white;
  font-size: 2rem;
  font-weight: 300;
    text-transform: uppercase;
  margin: 1em;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  /* opacity: 0;
  transition: opacity 150ms ease-in-out; */
}

nav a:hover {
  /* letter-spacing:1px; */
  color: white;
}

/* ############# F O O T E R ########### */

footer {
  display: none;
  background: transparent;
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 30%;
  z-index: 999;
  width: 100%;
  height: 5em;
  opacity: 1;
  transition: opacity 150ms ease-in-out;
}

.fuss ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fuss li {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
    text-transform: uppercase;
  margin: 1em;
}

.fuss a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  /* opacity: 0;
  transition: opacity 150ms ease-in-out; */
}

/* .fuss a:hover {
  color: white;
} */

/* ########### M A I N ############# */

#main {
    width: 100vw;
    height: 100vh;
    padding: 0;
    display: grid;
    place-items: center;
    justify-content: center;
}

.item span {
    font-size: 1.250rem;
    line-height: 0.8rem;
    text-align: center;
}


.quote {
    display: none;
  position: absolute;
  z-index: -1;
  top: 60%;
  width: 70%;
  height: auto;
  margin: 1em auto;
  padding: 1em;
  font-size: 1.2rem;
  text-align: center;
  color: silver;
}

/* ######### L A Y E R ############ */

.container {
    width: 70vw;
    display: flex;
    /* max-width: 18em; */
    height: 100vh;
    min-height: 100svh;
    place-items: center;
    justify-content: center;
    
  }

input[type=checkbox] {
  display: none;
}

input#menu-toggle:checked ~ .menu-layer {
  margin-top: 3em; /* Zielwert */
  opacity: 1;
  transition: opacity 1s;
}
 
.menu-layer {
    width: 100%;
    height: 100%;
    margin-top:3em; /* Ausgangswert */
    /* box-shadow:0 0 6px #56000a; */
    padding:0;
    box-shadow:0 0 6px #000;
    transition: opacity 1s;
    opacity: 1;

    
    /* border-left:solid 1px black;
    border-right:solid 1px black; */
}

.content {
    width: 100%;
    height: 90%;
    /* background: rgba(86, 0, 10, 0.3); */
    background: rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30vh;
    margin: 0;
    /* margin-top: 3em; */
    padding: 3em 0 3em 0;
    border-radius: 0.5em;
    box-shadow: 1px 1px 1px rgba(86, 0, 10, 0.7);
    /* background: rgb(102, 102, 102); */
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    /* margin-top: 3em; */
    padding: 3em 0em;
    background: rgba(200, 0, 0, 0.5);
    /* background: rgb(102, 102, 102, 0.5); */

    border-radius: 0.5em;
    box-shadow: 1px 1px 1px rgba(86, 0, 10, 0.7);}

    
.menu ul {
    height:100%;
    width:100%;
    display: block;
    padding:0 ;
    margin:0;
    text-align: center;
}
    
.menu li {
    list-style-type : none;
    display:block;
    padding: .4rem .2rem ;
    margin:1em;
    color: rgb(192, 192, 192);
    font-size:1.2rem;
    font-weight: 450;
    text-transform: uppercase;
    
}
  
.menu li span {
    /* cursor:pointer; */
    border-bottom: 5px solid #56000a;
    /* text-shadow: 1px 0px 10px rgba(51, 51, 51); */
    text-shadow: 3px 3px 3px rgba(51, 51, 51, 0.7);
}

/* .menu li span:active {
  letter-spacing:1px;
  color: rgb(192, 192, 192);
  background: #56000a;
  border-radius: 3px;
} */

.layer-quote {
  /* display: none; */
    position: absolute;
    z-index: -1;
    top: 65%;
    width: 70%;
    height: auto;
    margin: 1em auto;
    padding: 1em;
    font-size: 1rem;
    text-align: center;
    color: silver;
  }

.layer-fuss {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    position: absolute;
    background: #56000a;
    bottom: 0%;
    left: 15%;
    margin-bottom: 1em;
    width: 70%;
    height: auto;
    text-align: center;
    padding: 0 0rem 0rem 0rem;
    font-size: 1rem;
}

.layer-fuss ul {
    display: flex;
    grid-column: 2 / 2;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.layer-fuss li {
  list-style: none;

    line-height: 2.5rem;
    padding: 0.5em 1em;
}
.layer-fuss li span {
  font-weight: normal;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 0px;
    width: 100%;
    /* margin: 0; */
    color: white;
    text-shadow: 0 1px 0px black;
    white-space: nowrap;
    /* cursor: pointer; */
    text-transform: none;
}

.layer-fuss a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  
}

.layer-fuss a:hover {
  
  color: white;
}
/* ########### F E N S T E R ########### */

.schalter {
  position: relative;
}

.schalter input[type=checkbox] {
  display: none;
}

.schalter .close {
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 3rem;
  right: 3rem;
  cursor: pointer;
  background: transparent;
}

.schalter .close img {
  width: 1.8rem;
  height: 1.8rem;
}

input#open-unternehmen:checked~.fenster,
input#open-leistungen:checked~.fenster,
input#open-ziele:checked~.fenster,
input#open-kontakt:checked~.fenster,
input#open-impressum:checked~.fenster,
input#open-datenschutz:checked~.fenster
{
  margin: 0;
  background: rgba(0, 0, 0, .7);
  opacity: 1;
}

.inhalt {
  display: block;
  width: 100vw;
  padding: 0.25em;
  margin: 0.25em;
  flex-wrap: wrap;
  flex-direction: row;
  /*zusammengefasst: flex-flow - überschreibt alles, was darüber steht*/
  flex-flow: row wrap;
  justify-content: flex-start;
  /*immer die Hauptachse, hier: row*/
  align-items: flex-start;
  /*immer die Gegenachse, hier: column*/
}

h1, h2, h3, h4 {
  text-align: left;
  font-weight: 400;
  text-transform: none;
  margin: 0.5em;
}
h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
    font-size: 1.2rem;
    font-weight: bold;
}
p {
font-size: 1rem;
}


h1:after {
  display: block;
  border-top: solid #c80000;
  width: 20em;
  content: "";
  margin: 1rem 0 1rem 0;
}

.fenster {
  display: flex;
  position: fixed;
  align-items: start;   /* GEÄNDERT!! */
  justify-content: center;
  z-index: 999;
  top: 0;
  left: 0;
  /* box-shadow: 0 0 1px black; */
  text-align: left;
  height: 100vh;
  width: 100%;
  margin-top: -260vh;
  overflow: hidden;
  transition: opacity 0.8s;
  opacity: 0;
}

.wrapper {
  display: flex;
  position: relative;
  width: 100vw;
  height: 80vh;
  padding: 0;
  margin-top: 0;
  background: #dcdcdc;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  overflow: auto;
}

.infobox {
    display: block;
    width: 90%;
    margin: 1em 1em 2em 0.5em;
    /* margin-bottom: 1.25em; */
    padding: 0.625em;
    font-size: 1.250rem;
    border: 1px solid #c80000;
    border-radius: 0.3em;
}

.item {
  margin: 1em;
  padding: 1em;
  font-size: 1.5rem;
}

.bild {
    margin-right: 1em;
    padding: 0.3em;
}
.text {
    margin-left: 1em;
}

.flex-item {
  min-width: 21em;
  height: auto;
  margin: 0.5em;
  padding: 0.5em;
  /* background: #002d81;
  background: #002d81 repeating-conic-gradient(rgba(0, 0, 0, .1) 0 25deg, rgba(0, 0, 0, .0) 0 50deg); */
  border: #c80000 1px solid;
  border-radius: 10px;
  /* color: #F3FBFE; */
  font-size: 1.2rem;
}

ul .check {
  list-style-type: '\2713'; /* OK-Häckchen */
}

ul .check li {
  padding-left: 0.5em;
}

/* ######### Fenster ########## */

.datenschutz {
  font-size: 1rem;
}

/* ######### Formular ########## */

.kontakt {
  /* background: rgb(255, 255, 255, 0.8); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  margin: 2em 0em 1em 0em;
  padding: 1em 0em 1em 0em;
  border: #c80000 0.5px solid;
  border-radius: 0.3em;
}

.kontakt-left {
  width: 80vw;
  padding: 0em 0.5em 1em 0.5em;
}

.kontakt-left a {
    color: #c80000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
}

.kontakt-right {
  width: 80%;
  padding: 1em;
  margin: 0.5em;
  background: #c80000; 
  /* background: #002d81 repeating-conic-gradient(rgba(0, 0, 0, .1) 0 25deg, rgba(0, 0, 0, .0) 0 50deg); */
  color: #F3FBFE;
  border: #c80000 1px solid;
    border-radius: 1em;
}

.input-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
.input-row .input-group {
  flex-basis: 45%;
}
input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c80000;
  outline: none;
  padding: 0.5em;
}
textarea {
  width: 100%;
  border: 1px solid #c80000;
  outline: none;
  padding: 1em;
}
label.input-group {
  font-size: 1.25rem;
}

button {
  background: #c80000;
  width: 10em;
  border: none;
  outline: none;
  color: white;
  height: 3em;
  margin-top: 1em;
  border-radius: 0.5em;
  cursor: pointer;
}


tr td:first-child {
  padding-right: 2em; 
  vertical-align: top;   
}
tr td {
  padding-top: 1em;
  font-size: 1rem;
}



/* ==================================== ab 480 pixel ================================== */
@media (min-width: 480px) {

  

}

/* ==================================== ab 760 pixel ================================== */
@media (min-width: 760px) {

  html {
      font-size: 70%;
  }

  /* .nav-toggle-label {
    display: none;
  } */

  header {
    left: 0;
    display: grid;
    width: 100%;
    height: 10%;
    grid-template-columns: 1fr auto minmax(700px, 3fr) 1fr;
    box-shadow: 0.3em 0.3em 0.3em grey;
    opacity: 1;
    transition: opacity 150ms ease-in-out;
  }

    /* .logo {
    grid-column: 2 / 3;
  } */

  nav {
    all: unset;
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 1;
    transition: opacity 150ms ease-in-out;
    /* border-bottom: #c80000 1px solid;
    border-radius: 3px; */
  }

  nav ul {
    display: flex;
  }

  nav li {
    margin-left: 1em;
    margin-bottom: 0;
    opacity: 1;
    position: relative;
  }

  nav li span {
    cursor:pointer;
}

  /* nav li span:hover {
    letter-spacing:1px;
  } */

  nav li span::after {
    content: '';
    display: block;
    height: 5px;
    background: #c80000;
    position: absolute;
    /* top: -.75em; */
    top: 1.3em;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    transition: transform ease-in-out 250ms;
  }

  nav li span:hover::after {
    transform: scale(1,1);
  }

  footer {
    right: 0;
    display: grid;
    width: 100%;
    height: 10%;
    grid-template-columns: 1fr auto minmax(700px, 3fr) 1fr;
    box-shadow: 0.2em -0.2em 0.2em rgb(86, 0, 10);
    opacity: 1;
    transition: opacity 150ms ease-in-out;
  }

  .fuss {
    all: unset;
    grid-column: 3 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 1;
    transition: opacity 150ms ease-in-out;
    /* border-bottom: #c80000 1px solid;
    border-radius: 3px; */
  }

  .fuss ul {
    display: flex;
  }

  .fuss li {
    margin-left: 1em;
    margin-bottom: 0;
    opacity: 1;
    position: relative;
  }

  .fuss li span {
    cursor:pointer;
}

  #main {
    display: grid;
    background-image: url(img/logo_050124.svg);
    background-position: center;
    background-size: 60em;
    background-repeat: no-repeat;
  }

  .quote {
    display: block;
    position: absolute;
    z-index: -1;
    top: 70%;
    width: 50%;
    height: auto;
    margin: 1em auto;
    padding: 1em;
    text-align: justify;
    color: silver;
  }

  .fenster {
    display: flex;
    position: fixed;
    align-items: center;   
    justify-content: center;
    z-index: 999;
    top: 0;
    left: 0;
    /* box-shadow: 0 0 1px black; */
    text-align: left;
    height: 100vh;
    width: 100%;
    margin-top: -260vh;
    overflow: hidden;
    transition: opacity 0.8s;
    opacity: 0;
  }

  .container {
    max-width: 20em;
    display: none;
  }

  .menu {
    margin-top: 1em;
  }

  .infobox {
    display: flex;
    
}

  .schalter label.close {
      top: 3rem;
      right: 4rem;
  }

  .wrapper {
      width: 80%;
  }

  .kontakt {
    background: #fff;
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    margin: 2em 0;
  }

  .kontakt-left {
    width: 40%;
    padding: 0 1em 1em 0;
  }

  .kontakt-right {
    width: 40%;
    padding: 1em 1em 1em 1em;
    /* background: #002d81; 
    background: #002d81 repeating-conic-gradient(rgba(0, 0, 0, .1) 0 25deg, rgba(0, 0, 0, .0) 0 50deg);*/
    /* border: #c80000 1px solid;
      border-radius: 0.3em; */
  }
}


