@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", serif;
    background-color: #f7f7f7;
    color: #333333;
}
.jobwrapper {
    margin: 1rem auto;
    max-width: 860px;
    padding: 0 2%;
}

.jobcontainer {
    background-color: #fff;
    padding: 2rem;
}

.jobheader img {
    display: block;
    margin: auto;
    width: 100%;
}

h1 {
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
    color: #006EB7;
    border-top: solid 1px #006EB7;
    border-bottom: solid 1px #006EB7;
    margin: 3rem 0 1rem 0;
    padding: 0.6rem 0;
}

h2 {
    font-weight: 500;
    font-size: 1.2rem;
    font-style: italic;
    padding-bottom: 1.5rem;
}

h3 {
    font-weight: 400;
    font-size: 1.2rem;
    padding-top: 1rem;
    color: #006EB7;
    text-transform: uppercase;
    border-bottom: 1px solid #006EB7;
    margin-bottom: 1.5rem;
}

h4 {
    font-weight: 500;
    font-size: 1.1rem;
    padding-bottom: 0.6rem;
}

p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 1.5rem;
}
a, a:link, a:visited, a:active, a:hover {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    color: #006EB7;
}
a, a:link, a:visited, a:active {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.bildcontainer {
    display: flex;
    padding-bottom: 2rem;
}
.bildcontainer img {
    width: 50%;
}

.infobox {
    padding: 0.5rem 1.5rem;
    border: 2px solid #006EB7;
    border-radius: 10px;
    margin: 1rem 0;
    background-color: #fff;
}

.center {
     display: flex;
     justify-content: center;
     padding: 3rem 0;
 }

button {
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.2s;
    cursor: pointer;
    background-color: #006EB7;
    padding: 0.8rem 3.5rem;
    border: 1px solid #006EB7;
    border-radius: 0.5rem;
}
button:hover {
    background-color: #5b5b5b;
    border: 1px solid #5b5b5b;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #006EB7;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #5b5b5b;
}

.frame-section {
    margin-bottom: 4%;
}

.social-media {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.social-media img {
    width: 30px;
}

@media screen and (max-width:768px) {
    .jobwrapper {
        margin: auto;
    }

    iframe {
        width: 97% !important;
        height: 420px !important;
    }
}
@media screen and (max-width:430px) {
    iframe {
        width: 94% !important;
        height: 600px !important;
    }
    .social-media {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0;
        grid-row-gap: 0;
    }
}