@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face { 
    font-family: "Minotaur"; 
    src: url("../fonts/minotaur.ttf"); 
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
}

a {
    text-decoration: none;
}

p:hover, h1:hover, h2:hover {
    cursor: default;
}

button:hover {
    cursor: pointer;
}

.container {
    position: relative;
}

.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    background: url(../rsc/bg/bg5.jpg);
    background-size: cover;
    background-attachment: fixed;
}

div#box {
    margin: auto;

    height: 400px;
    width: 80%;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40%;
    margin-top: -200px;
}

.main_logo {
    position: relative;
    margin: 0;
    width: 600px;
    transition: opacity 2s ease-in;
}

.bg_triangles {
    position: absolute;
    height: 800px;
    width: 800px;
    left: -400px; 
    background: rgba(75,171,244,0.1);
    z-index: -2;
    transform: rotate(45deg);
    border-radius: 5px;
}

#bg_triangle1 {
    top: 1000px;
}
#bg_triangle2 {
    top: 2000px;
}
#bg_triangle3 {
    top: 3500px;
}
#bg_triangle4 {
    top: 4500px;
}
#bg_triangle5, #bg_triangle6, #bg_triangle7, #bg_triangle8, #bg_triangle9, #bg_triangle10 {
    display: none;
}

/* NAVBAR */

header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    padding: 0 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;

    border: 1px solid black;
}

header.transitionCol {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background: rgba(0, 0, 0, 0.8);
}

header ul.transitionCol {
    background: none;
}

header.transitionCol2 {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background: white;
}

header ul.transitionCol2 {
    background: none;
}

.logo img {
    vertical-align: middle;
    height: 50px;
}

#langDiv {
    min-width: 90px;
}

#langDiv img {
    height: 20px;
}

header ul {
    display: flex;
    margin: 0;
    padding: 0;
    height: 70px;
}

header ul li {
    list-style: none;
    line-height: 70px;
}

header ul li button, .logo {
    height: 70px;
    background: none!important;
    border: none;

    font-weight: 900;
    color: #000;
    text-decoration: none;
    padding: 0 20px;
    font-size: 20px;
}

header ul li button:hover {
    cursor: pointer;
}

header ul li.active,
header ul li:hover {
    background: #2196f3;
}

header ul li.active button,
header ul li:hover button {
    color: #fff;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

header img:not(#logoImg) {
    margin-right: 20px;
    vertical-align: middle;
    border: 1px solid black;
    border-radius: 10px;
}

header img:hover {
    cursor: pointer;
}

.icon {
    display: none;
}

#mobileHeader {
    display: none;
    border: 1px solid black;
    position: sticky;
    top: 70px;
    background: #fff;
    z-index: 1;
}

.mH {
    height: 70px;
    width: 16.4%;
    float: left;
}

.mH button {
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    color: black;
    font-size: 100%;
    font-weight: 900;
}

#mobileHeader .active, #mobileHeader button:hover {
    background: #2196f3;
    color: #fff;
}

#mobileHeader .active button {
    color: #fff;
}

#mobileHeader.transitionCol {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background: rgba(0, 0, 0, 0.8);
}
#mobileHeader.transitionCol button {
    color: white;
}
#mobileHeader.transitionCol2 {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background: white;
}
#mobileHeader.transitionCol2 button:not[:first-child] {
    color: black;
}

/* CONTENT */

.content {
    width: 100%;
    padding: 100px;
    box-sizing: border-box;
}

.content h2 {
    margin: 0;
    padding: 0;
    font-size: 44px;
}

.content h3 {
    margin: 0;
    padding: 0;
    font-size: 25px;
}

#blockImg, #padImg {
    width: 49%;
}

#blockImg {
    margin-right: 10px;
}

#padMW {
    display: none;
}

#blockImg:hover, #padImg:hover, #padImgMV:hover {
    border: 2px solid #2196f3;
    border-radius: 10px;
}

#heightTable th {
    font-weight: 900;
    color: #2196f3;
}

#heightTable td {
    text-align: center;
    border: 1px solid black;
    padding: 3px;
}

.content hr {
    margin: 50px 0;
}

.mobileAppImg {
    display: none;
}

.mobileAppImg td {
    width: 9999px;
}

.mobilePeopleImg {
    display: none;
}

.mobilePeopleImg td {
    width: 9999px;
    text-align: center;
}

.content .person h2 {
    font-size: 30px;
}

.person {
    margin-top: 50px;
}

.person table td {
    vertical-align: top;
    padding-left: 20px;
}

#groupDiv {
    width: 100%;
    text-align: center;
}

#groupPhoto {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-top: 30px;
    max-width: 900px;
}

#appContent {
    margin-top: 50px;
}

#appTable {
    max-width: 100%;
}

#appImg, #appImg2 {
    min-width: 60px;
    max-height: 300px;
}

#appLeft, #appRight {
    font-size: 38px;
    height: 200px;
    width: 50%;
}

#appLeft:hover, #appRight:hover {
    font-weight: 900;
    color: #2196f3;
}

#appLeftModal, #appRightModal {
    border: none;
    background: none;
    font-size: 30px;
    position: absolute;
    margin-top: 25%;
    height: 100px;
}

#appLeftModal:hover, #appRightModal:hover {
    font-weight: 900;
    color: #2196f3;
}

#appLeftModal {
    margin-left: -35px;
}

#appTable tr td:nth-child(3) {
    padding-left: 20px;
    padding-right: 20px;
}

.content button {
    background: none;
    border: none;
}

.content button:hover {
    cursor: pointer;
}

#impT2, #impT3 {
    display: none;
}

#video {
    width: 80%;
    max-width: 640px;
    height: 360px;
}

#imgSen2 {
    display: none;
}

#impT3 img {
    height: 400px;
}

/* CONTACT FORM */

#contactFormDiv {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#contactForm {
    text-align: center;
    padding: 25px;
    margin: 50px 0;
    z-index: 0;
}

#contactForm fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#contactForm input[type="text"], #contactForm input[type="email"], #contactForm textarea {
    width: 90%;
    border: 1px solid #CCC;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

#contactForm input[type="text"]:hover, #contactForm input[type="email"]:hover, #contactForm textarea:hover {
    -webkit-transition:border-color 0.3s ease-in-out;
    -moz-transition:border-color 0.3s ease-in-out;
    transition:border-color 0.3s ease-in-out;
    border:1px solid #AAA;
}

#contactForm textarea {
    height: 200px;
    max-width: 100%;
    resize: none;
}

#contactForm button[type="submit"] {
    cursor: pointer;
    width: 60%;
    border: none;
    background: #2196f3;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#contactForm button[type="submit"]:hover {
    background: #FF9A13;
    -webkit-transition:background 0.3s ease-in-out;
    -moz-transition:background 0.3s ease-in-out;
    transition:background-color 0.3s ease-in-out;
}

#contactForm button[type="submit"]:active { 
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5); 
}

#contactForm input:focus, #contactForm textarea:focus {
    outline:0;
    border:1px solid #2196f3;
    transition: border 0.5s ease-in-out;
}

::-webkit-input-placeholder {
    color:#888;
}

:-moz-placeholder {
    color:#888;
}

::-moz-placeholder {
    color:#888;
}

:-ms-input-placeholder {
    color:#888;
}

/* NAV Links */

.goToElements {
    position: relative;
    top: -120px;
}

/* FOOTER */

footer {
    padding: 20px 0;
    height: auto;
    background-color: lightgrey;
    text-align: center;
}

footer img {
    border: 1px solid black;
    border-radius: 5px;
}

#footerBSZ {
    position: relative;
    float: left;
    left: 100px;
    top: 30px;
}

#footerBW {
    position: relative;
    float: right;
    right: 100px;
    top: 30px;
}

#impressum, 
#datenschutz {
    font-size: 16px;
    border: none;
    background: none;
    text-align: left;
}

#impressum:hover,
#datenschutz:hover {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    border-radius: 10px;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    margin-bottom: 200px;
}

.modal-content2 {
    border-radius: 10px;
    background-color: rgb(255,255,255);
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    margin-bottom: 200px;
}

#modalCImage {
    text-align: center;
}

#modalCImage img {
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* DISPLAY STYLE */

@media screen and (max-width: 1550px) {
    #sizeManager {
        color: aqua;
    }
    #impT1, #impT3 {
        display: none;
    }
    #impT2 {
        display: block;
    }
}

@media screen and (max-width: 1360px) {
    #sizeManager {
        color: red;
    }
    header ul {
        display: none;
    }
    header {
        padding-left: 0px;
        padding-right: 10px;
    }
    #mobileHeader {
        display: block;
        height: 70px;
    }
    .goToElements {
        position: relative;
        top: -180px;
    }
}

@media screen and (max-width: 1280px) {
    #sizeManager {
        color: lawngreen;
    }
    #padImgMV {
        width: 90%;
    }

    #padMW {
        display: block;
    }

    #padImg {
        display: none;
    }

    #blockImg {
        width: 90%;
    }
}

@media screen and (max-width: 1100px) {
    #sizeManager {
        color: fuchsia;
    }
    #impT1, #impT2 {
        display: none;
    }
    #impT3 {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    #sizeManager {
        color: yellow;
    }
    .mobilePeopleImg {
        display: block;
    }
    .tablePeopleImg {
        display: none;
    }
    .mobileAppImg {
        display: block;
    }
    .tableAppImg {
        display: none;
    }
    #appText {
        width: 100%;
    }
    .aboutImgs {
        display: none;
    }
    .main_logo {
        width: 500px;
    }
    #footerBSZ, #footerBW {
        position: block;
        float: none;
        left: 0;
        top: 0;
    }
    #video {
        height: 300px;
    }
}

@media screen and (max-width: 830px) {
    #sizeManager {
        color: blue;
    }
    #imgSen {
        display: none; 
    }
    
    #imgSen2 {
        display: block;
    }
}

@media screen and (max-width: 700px) {
    #sizeManager {
        color: green;
    }
    .content h2 {
        font-size: 30px;
    }
    .content h3 {
        font-size: 20px;
    }
    .main_logo {
        width: 300px;
    }
    #logoImg {
        height: 30px;   
    }
    .content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .mH button {
        font-size: 12px;
    }
    .bg_triangles {
        height: 500px;
        width: 500px;
        left: -250px;
    }
    #bg_triangle1 {
        top: 1000px;
    }
    #bg_triangle2 {
        top: 1550px;
    }

    #bg_triangle3 {
        top: 2500px;
    }
    #bg_triangle4 {
        top: 3050px;
    }

    #bg_triangle5 {
        top: 4000px;
    }
    #bg_triangle6 {
        top: 4550px;
    }

    #bg_triangle7 {
        top: 5500px;
    }
    #bg_triangle8 {
        top: 6050px;
    }

    #bg_triangle9 {
        top: 7000px;
    }
    #bg_triangle10 {
        top: 7550px;
    }

    #bg_triangle5, #bg_triangle6, #bg_triangle7, #bg_triangle8, #bg_triangle9, #bg_triangle10 {
        display: block;
    }
    #video {
        height: 250px;
    }
}

@media screen and (max-width: 550px) {
    #sizeManager {
        color: chocolate;
    }
    
    #impT3 img {
        width: 80%;
    }
}
 






