
* {
    margin: 0;
    padding: 0;
    color: #fff;
}

body {
    background: #1864ab;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 27px;
}

h1 {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 27px;
    font-weight: 700;
}

h2 {
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
}

h3 {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 700;
}

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

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

a:hover {
    color: #fff;
    text-decoration: underline;
}

.header-gradient {
    z-index: 1;
    height: 70px;
    background: #1864ab;
}

header {
    z-index: 2;
    background: #3474B2;
    height: 70px;
    transform: translate3d(0,0,0);
}

.logo {
    margin: 20px 0 20px 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: inline-block;
    margin: 20px 10px;
    border-bottom: 2px solid transparent;
    transition: all .25s ease-out;
}

nav ul li a:hover {
    text-decoration: none;
}

nav ul li a.active {
    border-bottom: 2px solid #fff;
}

nav .nav-primary ul {
    display: inline;
}


button.btn-modal {
    padding: 0;
    margin: 20px 0;
    border: none;
    background: transparent;
    opacity: .7
}




main {
    
}

main section {
    margin: 50px 0;
}

main section:first-child {
    margin-top: 120px;
}


.spectrumList {
    margin: 15px 0 30px 0;
}

.spectrumList li {
    /* margin: 0 30px 0 0; */
    position: relative;
    margin-left: 20px;
}

.spectrumList li::before {
    content: '';
    display: inline-block;
    height: 8px;
    width: 8px;
    background: rgba(255,255,255,.3);
    border-radius: 8px;
    position: relative;
    top: 10px;
    left: -20px;
    margin: 0 15px 0 0;
    position: absolute;
}


.modal * {
    color: #fff;
}

.modal-header {
    border: none;
}



.profileImage {
    height: 120px;
    width: 100px;
    border-radius: 5px;
    margin: 5px 30px 10px 0;
    background: url(../images/dietmar.png);
    background-size: cover;
    float: left;
}

a.modalCloseBtn {
    display: none;
}

a.modalCloseBtn.show {
    display: inline-block;
    z-index: 99999;
    color:red;
    position: fixed;
    top: 40px;
    right: 30px;
    height: 42px;
    width: 42px;
    border-radius: 42px;
    background: #fff;
    text-align: center;
}

a.modalCloseBtn svg {
    position: relative;
    top: 5px;
}


.modal {
    position: fixed;
    bottom: 0;
    height: 100vh;
    transform: translate(0, 100%);
    background: #3474B2;
    overflow: scroll;
    transition: all .35s ease-out;
    padding: 0 20px;
}

.modalOpen .modal {
    transform: translate(0, 0);
}

.modalOpen {
    overflow: hidden;
}

.modalContent {
    margin: 50px 0 150px;
}

.modalClose {
    background: white;
    display: none;
}


footer .col {
}

footer a {
    opacity: .7;
    display: inline-block;
    margin: 20px 0;
}



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .background {
        z-index: 0;
        position: fixed;
        height: 100vh;
        width: 100vw;
        background-image: url(../images/background.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }



    main {
        background-color: rgba(24, 100, 171, .9);
        margin: 0;
        z-index: 2;
        position: relative;
    }


    .logo {
        margin: 20px 10px 20px 0;
    }

    main section:first-child {
        margin-top: 0;
        padding-top: 130px;
        padding-bottom: 0;
    }

    main section {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 100px;
        padding-bottom: 0;
    }

    footer {
        background-color: rgba(24, 100, 171, .9);
        z-index: 2;
        position: relative;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    body {
        /* height: 100vh;
        width: 100vw; */
        /* background-color: red;  */
        font-size: 15px;
        line-height: 27px;
    }

    h1 {
        font-size: 27px;
        line-height: 42px;
    }

    .header-gradient {
        background: #3474B2;
    }


    .logo {
        margin: 20px 20px 20px 0;
    }

    nav ul li a {
        margin: 20px 10px;
    }

    main section {
        height: 100vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    main section:first-child {
        margin-top: 0;
        padding-top: 0;
    }

    main section#imprint {
        height: auto;
        display: block
    }



    .aboutList li {
        display: none;
    }

    .aboutList li.show {
        display: block;
    }

    .aboutListPagination {
        margin-top: 30px;
    }

    .aboutListPagination li {
        display: inline-block;
        margin: 0 10px 0 0;
    }

    .aboutListPagination li a {
        display: inline-block;
        height: 12px;
        width: 12px;
        background: #fff;
        opacity: .3;
        border-radius: 12px;
    }

    .aboutListPagination li a.active {
        opacity: 1;
    }


    .lang a:first-child {
        margin-right: 5px;
    }

    .lang a:last-child {
        margin-left: 5px;
    }

    footer {
        position: fixed;
        bottom: 0;
        z-index: 3;
    }

    footer .col {
        text-align: right;
    }


    .spectrumList {
        margin: 15px 0 30px 15px;
    }
    
    .spectrumList li {
        /* margin: 0 30px 0 0; */
        position: relative;
        margin-left: 20px;
        margin-bottom: 5px;
    }
    
    .spectrumList li::before {
        content: '';
        display: inline-block;
        height: 22px;
        width: 22px;
        background-color: rgba(255,255,255,.3);
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iOXB4IiBoZWlnaHQ9IjdweCIgdmlld0JveD0iMCAwIDkgNyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDx0aXRsZT5jaGVja21hcmstb3V0bGluZTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogICAgICAgIDxnIGlkPSIwMDItZGlicmVjb24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02NTUuMDAwMDAwLCAtNzAyLjAwMDAwMCkiIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIj4KICAgICAgICAgICAgPGcgaWQ9ImNoZWNrbWFyay1vdXRsaW5lIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2NTYuMDAwMDAwLCA3MDMuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlBhdGgiIHBvaW50cz0iNi4yNSAtMS4xNzk2MTE5NmUtMTQgMi4wODMzMzMzMyA1IDEuMTc5NjExOTZlLTE0IDIuOTE2NjY2NjciPjwvcG9seWxpbmU+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==');
        background-repeat: no-repeat;
        background-position: 7px 7px;
        border-radius: 22px;
        position: relative;
        top: 6px;
        left: -34px;
        margin: 0 15px 0 0;
        position: absolute;
    }



    .modalOpen .modal {
        transform: translate(0, 70px);
    }

    .modalContent {
        margin: 70px 0 150px;
    }

    a.modalCloseBtn {
        display: none !important
    }

    footer {
        background: transparent;
    }

    .btnImprint {
        background: #3474B2;
        display: inline;
        padding: 10px;
        border-radius: 5px;
    }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}