/* orbitron-regular - latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/orbitron-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: 
       url('../fonts/orbitron-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/orbitron-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/orbitron-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/orbitron-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/orbitron-v25-latin-regular.svg#Orbitron') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v29-latin-regular.eot'); /* IE9 Compat Modes */
  src: 
       url('../fonts/open-sans-v29-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v29-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v29-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v29-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v29-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

    background-color: #333;

    color: white;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.tk-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.tk-open-sans {
    font-family: 'Open Sans', sans-serif;
}

/*
 * Nevigation
 */
nav {
    display: flex;
    justify-content: space-around;
    position: fixed;
    z-index: 450;
    height: 4.5rem;
    width: 100%;
    top: 0;

    background: #191919;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);

    text-shadow: 0px 7px 15px rgba(0, 0, 0, 0.4);
}

.hamburger {
    display: block;
    appearance: none;
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    z-index: 1000;
    height: 3rem;
    width: 3rem;
    left: 0rem;
    margin: 0.75rem 0rem 0rem 1rem;
    padding: 0;

    background-color: transparent;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;

    text-indent: 0;

    transition: background 0.3s;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 10%;
    top: 45%;
    right: 25%;
    left: 25%;

    background: #fff;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);

    transition: background 0s 0.3s;
}

.hamburger span::before,.hamburger span::after {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;

    content: "";
    background-color: #fff;

    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.hamburger span::before {
    top: -210%;

    transition-property: top, transform;
}

.hamburger span::after {
    bottom: -210%;

    transition-property: bottom, transform;
}

.h-ena span {
    background: none;
}

.h-ena span::before {
    top: 0;

    transform: rotate(45deg);
}

.h-ena span::after {
    bottom: 0;

    transform: rotate(-45deg);
}

.h-ena span::before,.h-ena span::after {
    transition-delay: 0s, 0.3s;
}

nav ul.menu {
    overflow: hidden;
    position: absolute;
    z-index: 999;
    height: 0;
    width: 100%;
    top: 4.5rem;
    margin: 0;
    padding: 0;

    background: #191919;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);

    font-size: 1.25rem;
    text-align: center;
    list-style: none;

    transition: height 0.5s, padding 0.5s, visibility 0.5s;
}

.close {
    display: none;
    cursor: pointer;
    position: fixed;
    z-index: 501;
    height: 100%;
    width: 100%;
    top: 4.5rem;

    background-color: rgba(0, 0, 0, 0.6);
}

nav ul.m-ena {
    height: 12rem;
    padding: 0.5rem 0;
}

.h-ena, .close-ena {
    display: block;
}

nav li {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    padding: 0 1rem;
}

nav li:hover {
    background-color: #737373;
}

nav li a {
    color: #fff;
    text-decoration: none;
}

nav .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: fixed;
    z-index: 1500;
    height: 4.5rem;
    margin-left: 4rem;
    padding: 0 0.5rem;

    font-size: 1.5rem;
}

nav .logo:hover {
    background-color: #737373;
}

nav .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;

    color: #fff;
    text-decoration: none;
}

nav .logo img {
    z-index: 1500;
    height: 3rem;
    margin-right: 0.5rem;
}

nav .active {
    background-color: #333;
}

/*
 * Content
 */
.opener {
    min-height: 100%;
    width: 100%;

    background: url("../img/AdobeStock_107620848_web.jpg") no-repeat center;
    background-size: cover;
    box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.2);

    text-align: center;
}

.openlogo {
    width: 40%;
    margin-top: 8rem;
}

.opener div.tk-orbitron {
    font-size: 3rem;
}

.opener div.nichts {
    padding: 0 1.5rem;
}

.opener div.nichts b {
    font-size: 1.5rem;
}

.opener div.tk-open-sans {
    margin-top: 5rem;

    font-size: 1.5rem;
}

article.wfs {
    padding: 2rem 0;

    background: #fff;

    color: #000;
}

article.wfs section, article.wfs div {
    padding: 0 1.5rem 1.5rem;
}

article.wfs b {
    font-size: 1.25rem;
}

div.wfsopen {
    font-size: 1.75rem;
    text-align: center;
}

article.dienste {
    padding: 2rem 0;

    background: url("../img/Dienste.jpg") no-repeat center;
    background-size: cover;
}

article.dienste div.antw {
    padding: 0 1.5rem 4rem 1.5rem;
}

article.dienste section {
    width: 55vw;
    padding-bottom: 4rem;
}

div.antw {
    font-size: 1.75rem;
    text-align: center;
}

div.sectionb, div.sectiong, div.sectionr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
}

div.symb {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 55vw;
    width: 100%;
}

div.sb {
    background: rgba(0, 164, 255, 0.6);
}

div.sg {
    background: rgba(28, 195, 47, 0.7);
}

div.sr {
    background: rgba(205, 48, 31, 0.7);
}

article.dienste img {
    height: 100%;
    max-height: 80%;
    max-width: 80%;
}

div.untersch {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 4rem;
    width: 90%;
    padding: 0 5%;

    background: rgba(0, 0, 0, 0.8);

    font-size: 1rem;
    text-align: center;
}

article.sitz {
    padding: 2rem 0;

    background: #fff;

    color: #000;
    text-align: center;
}

article.sitz section {
    padding: 3rem 1.5rem;
}

div.draht {
    font-size: 1.5rem;
    text-align: center;
}

div.ort {
    margin-bottom: 2rem;
}

div.ort img {
    height: 6rem;
    margin-bottom: 1rem;
}

div.trenner {
    display: flex;
    width: 80%;
    margin-left: 10%;
}

.trenner_hr {
    height: 5px;
    width: 100%;
    margin-top: 10px;

    background-color: #000;
}

.trenner img {
    height: 25px;
}

.trenner_img_first {
    float: left;
}

.trenner_img_second {
    float: right;
}

article.partner {
    padding: 2rem 0 4rem;

    background: url("../img/Partner.jpg") no-repeat center;
    background-size: cover;

    text-align: center;
}

article.partner section{
    padding: 0 1.5rem 4rem 1.5rem;
}

article.partner div.bezug {
    padding: 0 1.5rem 2rem 1.5rem;
}

div.bezug {
    font-size: 1.5rem;
}

div.pback {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 4rem;

    background: rgba(255, 255, 255, 0.7);
}

article.partner img {
    height: 6rem;
    max-width: 100%;
}

div.pback div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

div.pback div section {
    max-width: 100%;
}

div.pback div section a {
    color: #000;
    font-size: 3.5rem;
    text-decoration: none;
}

article.impressum {
    margin-top: 4.5rem;
    padding: 2rem 0;

    background: #fff;

    color: #000;
}

article.impressum section {
    padding: 0 1.5rem 1.5rem;
}

footer {
    display: flex;
    align-items: center;
    height: 6rem;

    box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.2);

    font-size: 1.25rem;
    text-shadow: 0px 7px 15px rgba(0, 0, 0, 0.4);
}

footer div {
    padding: 0 1.5rem;
}

@media screen and (min-width: 350px) {
    nav .logo {
        margin: 0;
    }

    div.untersch {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    nav ul.menu {
        width: 30%;
    }

    article.wfs section, article.wfs div, article.impressum section {
        padding: 0 6rem 1.5rem;
    }

    article.dienste section {
        width: 34vw;
    }

    div.symb {
        height: 34vw;
    }

    article.sitz {
        text-align: left;
    }

    article.sitz section {
        display: flex;
        justify-content: space-around;
        padding: 3rem 6rem;
    }

    div.ort {
        display: flex;
        align-items: center;
        margin-bottom: 0rem;
    }

    div.ort img {
        margin-right: 2rem;
        margin-bottom: 0;
    }

    footer div {
        padding: 0 6rem;
    }
}

@media screen and (min-width: 992px) {
    nav ul.menu {
        display: block;
        height: 4.5rem;
        width: 100%;
        top: 0;
        padding: 0;

        background: none;
        box-shadow: none;

        font-size: 1.2rem;
    }

    nav li {
        padding: 0 0.5rem;
    }

    .opener div.nichts b {
        font-size: 2.5rem;
    }

    div.mleft, div.mright {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: absolute;
        height: 4.5rem;
        width: 40%;
    }

    div.mleft {
        left: 0;
    }

    div.mright {
        right: 0;
    }

    .hamburger {
        display: none;
    }

    .openlogo {
        width: 26%;
    }

    article.dienste section {
        width: 22.5vw;
    }

    div.symb {
        height: 22.5vw;
    }

    div.sectionb, div.sectiong, div.sectionr {
        padding: 0 12rem;
    }

    div.sectionb, div.sectiong {
        justify-content: space-around;
    }
}

@media screen and (min-width: 1200px) {
    nav ul.menu {
        width: 90%;
        left: 5%;
    }

    nav .logo, nav li {
        padding: 0 1rem;
    }

    .openlogo {
        width: 23%;
    }

    article.wfs section, article.wfs div, article.impressum section {
        padding: 0 12rem 1.5rem;
    }

    article.dienste section {
        width: 15vw;
    }

    div.symb {
        height: 15vw;
    }

    article.sitz section {
        padding: 12rem 20rem;
    }

    div.pback {
        width: 74%;
        margin-left: 13%;
    }

    article.partner img {
        height: 6rem;
    }

    footer div {
        padding: 0 12rem;
    }
}
