html,
body {
    font-family: arial;
    margin: 0;
    padding: 0;
}
body {
    max-width: 650px;
    padding: 0 1.3em;
    box-sizing: border-box;
    background-color: #ffffff;
    margin: 0 auto;
    font-family: Helvetica, Arial;
}

.skip-link {
	display:none;
}

.noscroll {
    overflow: hidden;
}

#mainlogo {
    display: block;
    max-width: 100%;
    width: 650px;
    margin: 100px auto 50px;
    transition: 1s;
}

#mainlogo:hover {
    transition: 0.5s;
    transform: scale(1.1);
}


img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

::-moz-selection {
    /* Code for Firefox */
    color: #ffffff;
    background: #004899;
}

::selection {
    color: #ffffff;
    background: #004899;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #004899;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e30613;
}

h2 {
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 10px;
}

#contact {
    font-size: 1em;
    /*border: 1px solid black;*/
    background-color: #004899;
    color: #fff;
    padding: 0 1.3em;
    line-height: 3em;
    display: table;
    margin: 0 auto;
    border-radius: 30px;
    text-align: center;
}
#contact .mobile {
    line-height: 2em;
    padding: 0;
}

/*#contact:hover {
    background: #000000;
    color: #ffffff;
    transition: 1s;
}*/

#footerbar {
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    /*color: #ffffff;*/
    text-decoration: underline;
}

.toggleButton {
    font-size: 0.8em;
    cursor: pointer;
    display: inline-block;
    padding: 1.3em 0;
    margin: 0;
}

.toggleActive {
    text-decoration: underline;
}

.toggleText {
    padding: 3em;
    text-align: left;
}

.toggleText a {
    font-size: 1em;
    font-weight: normal;
}



.desktop {
    display: block;
}
.mobile {
    display: none;
}

.modallogo {
    width: 80%;
    margin: 0 0 20px 0;
}

@media (min-width: 600px) {

    .modallogo {
        width: 50%;
    }
}

@media (max-width: 600px) {

    #mainlogo {
        margin: 50px auto;
    }

    #contact {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    #times tr {
        margin-bottom: 5px;
    }

    #times td {
        padding: 0px;
        display: block;
        width: 100%;
        text-align: center;
        line-height: 1.4em;
    }

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

}


/* Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
}

#modal-azubi .modal-content, #modal-job .modal-content {
    max-width: 600px;
}
#modal-azubi a, #modal-job a {
    text-decoration: underline;
    font-weight: bold;
}


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

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


@keyframes zooms {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}