@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    hyphens: auto;
}

body {
    font-family: "Roboto", serif;
    background-color: #fff;
    color: #333333;
}

.jobwrapper {
    margin: 1rem auto;
    max-width: 900px;
    padding: 0 2%;
}

.jobcontainer {
    position: relative;
    height: auto;
    background-color: #fff;
    padding: 2rem 3rem;
}

.jobcontainer img {
    display: block;
    margin: auto;
    width: 100%;
}

.bildcontainer {
    padding-bottom: 1rem;
}

.bildcontainer img {
    width: 100%;
}

.alongside-bilder {
    display: flex;
    gap: 2%;
}

h2 /* Titel */{
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
    color: #006EB7;
    border-top: solid 1px #006EB7;
    border-bottom: solid 1px #006EB7;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
}

h3 /* Untertitel */{
    font-weight: 500;
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
    line-height: 1.4;
}

h4 /* Untertitel - Absatz */{
    font-weight: 400;
    font-size: 1.2rem;
    padding-top: 1rem;
    color: #006EB7;
    text-transform: uppercase;
    border-bottom: 1px solid #006EB7;
    margin-bottom: 1rem;
}

h5 /* Bildtext */{
    font-weight: 400;
    font-size: 0.9rem;
    padding-top: 0.2rem;
    text-align: center;
}

h6 /* Copyright */{
    font-weight: 700;
    font-size: 0.7rem ;
    margin: -1.2rem 0 0.5rem 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 1rem;
}

.untertitel {
    font-weight: 700;
    font-size: 1rem;
    color: #006EB7;
    padding: 0.2rem 0;
}

a, a:link, a:visited, a:active, a:hover {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #006EB7;
    text-decoration: underline;
}

a, a:link, a:visited, a:active {
    text-decoration: none;
}

a:hover {
    color: #006EB7;
    text-decoration: underline;
}

ul {
    font-weight: 400;
    font-size: 1rem ;
    line-height: 1.5;
    padding: 0 0 1rem 1.1rem;
}

li::marker {
    color: #006EB7;
}

.tabellen {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabellen img {
    width: 48%;
    margin: 0;
}

.autor {
    font-weight: 500;
    font-size: 0.9rem;
    font-style: italic;
    text-align: right;
}

.expert {
    padding: 0.3rem 1rem 0.4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
}

.expert img {
    width: 180px;
}

.infobox {
    max-width: 920px;
    padding: 1.2rem;
    border: 1px solid #006EB7;
    border-radius: 0.3rem;
    margin: auto;
    box-shadow: 20px 20px 15px -5px rgba(0,0,0,0.1);
    background-color: #006EB720;
}

.infobox h3 {
    margin-top: 0;
}

.topic {
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 0.4rem;
}

.center {
    display: flex;
    justify-content: center;
}

button {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-size: 1rem ;
    background-color: #006EB7;
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 0.6rem 3rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 2rem;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover {
    background-color: #5b5b5b;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 50%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 20px;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.arrow:hover,
.close:hover {
    color: #ddd;
}
/* MODAL - END */

@media only screen and (max-width: 768px) {
    .jobwrapper {
        margin: 0;
    }
    .jobcontainer {
        padding: 2rem;
    }
    .infobox {
        padding: 1rem 1rem;
    }

    .alongside-bilder {
        display: block;
    }
}

@media only screen and (max-width: 430px) {
    h2 {
        font-size: 26px;
    }
}