:root {
    --fontXXXL:500 64px/75px "Roboto", serif;
    --fontXXL:400 48px/56px "Roboto", serif;
    --fontXL:500 36px/42px "Roboto", serif;
    --fontL:400 24px/28px "Roboto", serif;
    --fontLB:500 24px/48px "Roboto", serif;
    --fontM:400 18px/21px "Roboto", serif;
    --fontMB:500 18px/21px "Roboto", serif;
    --fontS:400 16px/19px "Roboto", serif;
    --fontXSB:500 14px/16px "Roboto", serif;
    --fontXS:400 14px/16px "Roboto", serif;
    --gradient-buhler:linear-gradient(90deg, #00324B 15%, #0C5678 35%, #009A93 45%, #E6E100 100%);
    --gradient-button:linear-gradient(90deg, #009B91 -5.5%, #64C3C8 100%);
    --gradient-v:linear-gradient(180deg, #00324B 0%, #00978E 51.35%, #E6E100 100%);
    --gradient-bg:linear-gradient(72.28deg, #00324B 0%, #00978E 61.21%, #E6E100 99.61%);
    --color-deep-blue-5: #F2F4F6;
    --color-deep-blue:#00324B;
    --color-turquoise:#009B91;
    --color-deep-blue-80:rgba(51, 91, 111, 1);
    --color-deep-blue-60:#668493;
    --color-deep-blue-20:rgba(204, 214, 219, 1);
    --color-deep-blue-10:rgba(229, 235, 237, 1);
    --color-mint:rgba(100, 195, 200, 1);
    --color-mint-grad:linear-gradient(90deg, #64C3C8 -5.5%, #64C3C8 100%);
    --color-white:#FFFFFF;
    --content-width:1792px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0 auto;
    font:var(--fontL);
    color:var(--color-deep-blue);
}
.fontXXXL {
    font: var(--fontXXXL);
}
.fontXXL {
    font: var(--fontXXL);
}
.fontXL {
    font: var(--fontXL);
}
.fontL {
    font: var(--fontL);
}
.fontLB {
    font: var(--fontLB);
}
.fontM {
    font: var(--fontM);
}
.fontMB {
    font: var(--fontMB);
}
.fontS {
    font: var(--fontS);
}
.fontXS {
    font: var(--fontXS);
}
.fontXSB {
    font: var(--fontXSB);
}
.print-only {
    display: none;
}
h1,h2,h3,h4,h5,h6 {
    padding:0;
    margin:0;
}
.bold {
    font-weight: 500;
}
b {
    font-weight: inherit !important;
}
.bolder {
    font-weight: 700;
}
.lineH48 {
    line-height: 48px;
}
section {
    margin:64px 0;
}
a {
    text-decoration: none;
}
.pageInner {
    width:var(--content-width);
    margin:0 auto;
    max-width: 100%;
}

.button {
    font:var(--fontXSB);
    background:var(--color-white);
    padding:12px 16px;
    border-radius: 8px;
    color:var(--color-deep-blue);
}

/**
** Header
 */
header {
    background:var(--gradient-buhler);
    height: 80px;
}
#headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding:0px 24px;
}
header nav ul {
    display: flex;
    gap:16px;
    align-items: center;
    padding:0px 16px;
}
header nav ul li {
    list-style: none;
}
header nav ul li a {
    color:var(--color-white);
    text-decoration: none;
    font:var(--fontXS);
}
header nav ul li a {
    display: flex;
    align-items: center;
    gap:10px;
}
header nav ul li a {
    padding:8px 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
}
header nav ul li a:hover {
    background-color: rgba(255,255,255,0.2);
}
/*
** Intro
 */
#introLink {
    margin:0;
}
#intro {
    margin-top:0;
}
#goBack {
    padding:16px 0;
    display: flex;
}
#goBack a {
    color: var(--color-turquoise);
    font: var(--fontXSB);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 14px;
    justify-content: flex-start;
    border-radius: 8px;
}
#goBack a:hover {
    background-color:var(--color-deep-blue-5);
}
#mainPic {
    height: auto;
    width: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 3;
}
#intro .pageInner {
    display: flex;
    gap:104px;
    align-items: center;
}
#jobIntroArea {
    gap:48px;
    display: flex;
    flex-direction: column;
    width: 60%;
}
.applyButton {
    background:var(--gradient-button);
    color:var(--color-white);
    transition:background 0.3s ease-in-out;
}
.applyButton:hover {
    background:var(--color-mint-grad);
}
#introButtonArea {
    display: flex;
    gap:32px;
    align-items: center;
}
.introOptionButton {
    padding:10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: white;
    transition: background-color ease-in-out 0.3s;
}

.introOptionButton svg.introIcon path {
    fill:#668493;
    transition: fill ease-in-out 0.3s;
}
.introOptionButton:hover {
    background-color: rgba(100, 195, 200, 0.15);
    border-radius: 8px;
}
.introOptionButton:hover svg.introIcon path {
    fill:var(--color-turquoise);
}
#introOptionButtons {
    display: flex;
    gap:16px;
}
.shareArea {
    padding-top: 10px;
    margin-left: -10px;
    display: none;
}
#shareButton:hover .shareArea {
    display: flex;
}
#stickyFooterShare:hover .shareArea {
    display: flex;
}
.shareIcons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color:white;
    border:1px solid var(--color-deep-blue-20);
    box-shadow: 0px 0px 10px 0px rgba(0, 50, 75, 0.15);
    position: absolute;
    padding: 8px;
    border-radius: 8px;
}
.shareEle  {
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: background-color ease-in-out 0.3s;
    position: relative;
}
.shareEle:hover {
    background-color: rgba(100, 195, 200, 0.15);
    border-radius: 8px;
}
.shareEle:hover svg path {
    fill:#668493;
    transition: fill ease-in-out 0.3s;
}
.shareEle:hover svg path {
    fill:var(--color-turquoise);
}
#stickyFooterShare {
    position: relative;
}
#stickyFooterShare .shareArea {
    padding-top:0;
    margin-left: 0;
    position: absolute;
}
#stickyFooterShare .shareIcons {
    right: -30px;
    top: -66px;
}
#titleArea {
    display: flex;
    flex-direction: column;
    gap:8px;
}

/*
** MetaBar
 */
#metaBar {
    background-color:var(--color-deep-blue-5);
    padding:32px 0px;
}
#metaBar .pageInner {
    display: flex;
    gap:32px;
    flex-wrap: wrap;
    row-gap: 16px;
}
.metaBarItem {
    display: flex;
    gap:8px;
    align-items: center;
    height: auto;
}
#metaLocation {
    cursor: pointer;
}
#metaLocationInner {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}
/*
** Google Maps
 */
#map {
    width: calc(100%);
    height: 658px;
    margin:0 auto;
}
#modalMap {
    width: 980px;
    max-width: 90%;
    justify-content: flex-end;
}
/*
** Intro Text
 */
#introText p {
    color:var(--color-deep-blue-80);
}
/*
** Aufgaben Profil
 */
#aufgabenProfil .pageInner {
    display: flex;
    flex-direction: column;
    gap:64px;
    padding-top: 64px;
}

.aufgabenProfilHolder {
    display: flex;
    gap:132px;
    align-items: flex-start;
}
.aufProTitle {
    display: flex;
    font:var(--fontLB);
    gap:32px;
    padding-left:30px;
    position: relative;
    align-items: center;
    width: 367px;
    margin-left: 18px;
    max-width: 367px;
    min-width: 367px;
    line-height: 32px;
    color:var(--color-deep-blue-80);
    padding-top: 8px;
}
.aufProText {
    max-width: 960px;
}
.aufProTitle:before {
    content:"";
    width: 5px;
    height: 40px;
    background:var(--gradient-v);
    display: block;
    position: absolute;
    left:0;
    transform:rotate(0deg);
    transition: transform ease-in-out 0.3s;
}
.aufProTitle.inView:before {
    transform:rotate(90deg);
}
#aufgabenProfil ul {
    padding:0;
    margin:0;
}
#aufgabenProfil li {
    line-height: 48px;
}

/*
** Benefits
 */
#benefits {
    background:var(--gradient-bg);
    padding:64px 0px;
}
#benefitsHolder {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    row-gap:64px;
    column-gap: 64px;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    max-width: calc(3 * 300px + 2 * 64px);
    margin:64px auto;
}
#benefitsHolder.moreBenefits {
    grid-template-columns:repeat(4, 1fr);
    max-width: calc(4 * 300px + 3 * 64px);
}
.benefit {
    background-color: transparent;
    height: auto;
    width: 400px;
    aspect-ratio: 4 / 3;
    perspective: 1000px;
}
.benefitbody {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:32px;
}
.benefitInner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.benefit:hover .benefitInner {
    transform: rotateY(180deg);
}
.benefitsFront,.benefitsBack {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    padding:32px;
}
.benefitsFront {
    background-color:var(--color-white);
    text-align: center;
}
.benefitsBack {
    background-color:var(--color-white);
    transform: rotateY(180deg);
    text-align: left;
    justify-content: center;
    align-items: start;
    gap:16px;
}
.benefitText {
    font:var(--fontM);
    color:var(--color-deep-blue-80);
    line-height: 28px !important;
}
.benefitIcon {
    height: 62px;
}
#benefitsTitle {
    font:var(--fontXL);
    color:var(--color-white);
    hyphens: auto;
}
#benefitsCTAButton {
    display: flex;
    justify-content: center;
}
#benefits .button {
    display: flex;
    align-content: center;
    width: auto;
    gap:12px;
    border:1px solid var(--color-deep-blue-60);
    align-items:center;
}
#benefits .button:hover {
    border:1px solid var(--color-turquoise);
}
.benefitIcon img {
    width: 62px;
}
.benefitTitle {
    font:var(--fontLB);
    line-height: 28px !important;
}
/*
** Kontakt
 */
#kontakt .pageInner {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}
#kontaktFoto {
    height: 506px;
    width: 506px;
    background-image:url("../images/7b44a9b8bfbff248c77942daefde3eae.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    border-radius: 50%;
}
#kontaktFoto.notRadius {
    border-radius: 0;
}
#kontaktFotoHolder {
    display: flex;
    justify-content: center;
}
#kontaktRightside {
    display: flex;
    flex-direction: column;
    gap:64px;
}
#kontaktRightside h3 {
    color:var(--color-deep-blue-80);
}
#kontaktRightsideTop, #kontaktRightsideBottom {
    display: flex;
    flex-direction: column;
    gap:32px;
}
#kontaktRightsideBottom {
    gap:16px;
}
#kontaktLinks {
    display: flex;
    gap:27px;
}
.kontaktLink a {
    display: flex;
    color:var(--color-turquoise);
    align-items: center;
    gap:8px;
    padding:10px 16px;
}
.kontaktLink a:hover {
    background-color:var(--color-deep-blue-5);
    border-radius: 8px;
}
#kontaktPersonInfosLinks {
    display: flex;
    gap:16px;
    flex-direction: column;
}
#kontaktNamePosition {
    display: flex;
    gap:8px;
    color:var(--color-deep-blue-80);
}
#kontaktBottomLinks .kontaktLink {
    display: flex;
}
#kontaktBottomLinks {
    display: flex;
    flex-direction: column;
    gap:8px;
}
/**
** About
 */
#aboutUs {
    padding: 64px 0;
}
#aboutUs .pageInner {
    display: grid;
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
    gap:50px;
}
#aboutUsRight {
    background-image:url("../images/dc9491b6f398daacac0b10eb60145048.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#aboutUsRight svg:hover circle {
    fill:var(--color-mint);
}
#jobvideoModal {
    width: 980px;
    height: auto;
    min-height: inherit;
    aspect-ratio: 16 / 9;
}
#jobvideoModal iframe {
    aspect-ratio: 16 / 9;
}
/*
** Similarjobs
 */
#similarJobs a {
    color:inherit;
}
#jobs {
    display: grid;
    grid-template-columns: 1fr;
    gap:32px;
    padding:10px;
}
.job {
    box-shadow: 0px 0px 10px 0px #00324B26;
    padding:64px;
    border-radius: 16px;
}
.simiTopTitle {
    margin-bottom: 8px;
}
.simiMetas {
    display: flex;
    gap:24px;
    margin-top: 32px;
    flex-wrap: wrap;
}
#similarJobs h2 {
    margin-bottom: 64px;
}
.simiMeta {
    display: flex;
    align-items: center;
    gap: 11px;
    color:var(--color-deep-blue-60);
}
.simiMeta svg {
    min-width: 18px;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    top:inherit;
    bottom:-13px;
    position: relative;
    max-width: calc(100vw - 40px);
}
span.swiper-pagination-bullet {
    background-color: var(--color-deep-blue-10);
    width: 48px;
    height: 4px;
    border-radius: 8px;
    opacity: 1;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-turquoise);
    width: 48px;
    height: 4px;
    border-radius: 8px;
}
/*
** Footer
 */
footer {
    background-color:var(--color-deep-blue);
    margin-top:128px;
    color:#CCD6DB;
    font:var(--fontXS);
    margin-bottom: 136px;
    max-width: 100%;
}
footer a {
    color:var(--color-turquoise);
    font:var(--fontXS);
    text-decoration: underline;
}
footer a:hover {
    color:var(--color-mint);
}
footer .pageInner {
    display: flex;
    align-items: center;
    height: 74px;
    justify-content: space-between;
}
footer h6 {
    color:var(--color-deep-blue-60);
}
#footerSocial {
    display: flex;
    gap:16px;
    align-items: center;
}
#footerSocial .fontMB {
    color:var(--color-deep-blue-60);
}
#footerSocialIcons {
    display: flex;
    gap:8px;
}
.footerSocialIcon {
    height: 24px;
}
#footerLinks {
    display: flex;
    gap:34px;
}
/**
Sticky Header
 */
#stickyFooter {
    background-color: white;
    border-top: 1px solid #CCD6DB;
    height: 136px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    justify-content: space-between;
    position: fixed;
    bottom: -200px;
    width: 100%;
    box-sizing: border-box;
    z-index: 99999;
    transition: bottom ease-in-out 0.3s;
}
#stickyFooter.active {
    bottom:0;
}
#stickyFooter .applyButton {
    height: 40px;
    width: auto;
    padding:0;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding:0 16px;
}
#stickyFooter h2 {
    font:var(--fontL);
    font-weight: 500;
}
#stickyFooterLeft {
    display: flex;
    gap:36px;
    align-items: center;
}
#stickyFooterTitleMeta {
    display: flex;
    flex-direction: column;
    gap:16px;
}
#stickyFooterMeta {
    display: flex;
    gap:32px;
}
#stickyFooter .metaBarItem {
    color:#668493;
    gap:8px;
}
#stickyFooter .metaBarItem svg path {
    fill:#668493;
}
#stickyFooterRight {
    display: flex;
    gap:32px;
}
#stickyFooterJobabo, #stickyFooterShare {
    display: flex;
    align-items: center;
    justify-content: center;
}
/**
Modal Kontakt
 */
dialog[open] {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeIn 0.3s ease-out forwards;
    width: 658px;
    border:0;
    border-radius: 8px;
    color:var(--color-deep-blue-80);
    padding:0;
    min-height: 637px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.jobaboModalContent {
    overflow-y:auto;
}
dialog::backdrop {
    background-color:rgba(0, 50, 75, 0.3);
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
#modalCFHeader, #formFields {
    margin:32px 16px;
}
#formFields {
    margin-top: 0;
}
#modalCFHeader h2.fontM.bolder {
    margin-bottom: 25px;
}
.contactFormButton {
    border-top: 1px solid var(--color-deep-blue-10);
    padding:16px;
    display: flex;
    justify-content: space-between;
}
.contactFormButton .button {
    outline:0;
    border:0;
    cursor: pointer;
}
#closeModal {
    cursor: pointer;
    color:var(--color-turquoise);
}
.fieldGroup {
    display: flex;
    width: 100%;
    gap:16px;
}
.fieldGroup .textfield {
    width: 100%;
    position: relative;
}
.parsleyContainer svg {
    position: absolute;
    top: 11px;
    right: 10px;
    display: none;
}
.parsleyContainer.formError svg {
    display: block;
}
ul.parsley-errors-list li {
    list-style: none;
    padding: 0;
    font-size: 12px;
    color:rgba(230, 0, 60, 1);
    margin-top: 0px;
}
.parsley-errors-list {
    padding:0;
    margin:0;
}
label[for=dsgaccept] {
    font-size: 14px;
}
.dsgacceptField, .dsgacceptField label, .dsgacceptField input {
    cursor: pointer;
}
.textfieldArea {
    position: relative;
}
.textfield,.textfieldArea {
    margin-bottom: 16px;
}
.textfield input {
    width: 100%;
    color:rgba(102, 132, 147, 1);
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-deep-blue-20, rgba(204, 214, 219, 1));
    background-color:var(--color-deep-blue-10);
    padding:12px;
    box-sizing: border-box;
}
.textfield input::placeholder {
    color:rgba(102, 132, 147, 1);
}
.textfieldArea textarea:focus, .textfield input:focus {
    border: 1px solid var(--color-deep-blue-20, rgba(204, 214, 219, 1));
    outline:0;
}
.textfieldArea textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--color-deep-blue-20, rgba(204, 214, 219, 1));
    background-color:var(--color-deep-blue-10);
    color:rgba(102, 132, 147, 1);
    padding:12px;
    border-radius: 8px;
    height: 226px;
    font-family: "Roboto", serif;
}
.textfieldArea textarea::placeholder {
    color:rgba(102, 132, 147, 1);
}
.parsley-error {
    border-color:rgba(230, 0, 60, 1) !important;
}
.closeModalX {
    position: absolute;
    right:25px;
    top:25px;
    cursor: pointer;
}
input[type="checkbox"] {
    appearance: none; /* Entfernt das Standard-Design */
    width: 20px;
    height: 20px;
    background-color: var(--color-deep-blue-10);
    border: 1px solid var(--color-deep-blue-20);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding:0;
    margin:0;
    align-items: center;
    justify-content: center;
    display: flex;
}
.dsgacceptField {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* Wenn die Checkbox aktiv (gecheckt) ist */
input[type="checkbox"]:checked {
    background-color:var(--color-mint);
    border-color: var(--color-mint);
}

/* H�kchen als eigenes Element */
input[type="checkbox"]::after {
    content: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.73372%2012.0002L5.26706%2011.5335L0.400391%206.73353L1.33372%205.80019L5.73372%2010.1335L14.8671%200.200195L15.8004%201.13353L5.73372%2012.0002Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
    font-size: 16px; /* Optional, je nach Gr��e des Symbols */
    display: none;
    margin-top: 2px;
}

/* H�kchen anzeigen, wenn gecheckt */
input[type="checkbox"]:checked::after {
    display: block;
}
/*
** CF Form Confirmation
 */
#contactFormConfirmation {
    display: none;
    position: absolute;
    width: 100%;
}
#confirmationHolder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#confirmationHolder span,#confirmationHolder h2 {
    margin-top: 8px;
}
.grecaptcha-badge {
    display: none;
}

/*
** Responsive
 */
@media only screen and (max-width: 1850px) {
    .pageInner {
        padding:0px 20px;
    }
}
@media only screen and (max-width: 1800px) {
    :root {
        --fontXXXL: 500 46px/58px "Roboto", serif;
        --fontXXL:400 38px/46px "Roboto", serif;
    }
    #intro .pageInner {
        gap:60px;
    }
    .job {
        padding:32px;
        max-width: 33%;
        min-width: 240px;
    }
    #similarJobs .pageInner {
        padding:0;
    }
    #similarJobs h2 {
        padding-left:20px;
    }
    #jobs {
        padding:10px 20px;
    }
}
@media only screen and (max-width: 1280px) {
    :root {

    }
    #jobIntroArea {
        width: 50%;
    }
    #mainPic {
        width: 50%;
    }
    #intro .pageInner {
        gap:40px;
    }
    .aufProTitle {
        line-height: 32px;
    }
    .aufProTitle:before {
        height: 40px;
    }
    .aufgabenProfilHolder {
        gap:92px;
    }
    #benefitsHolder {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
        column-gap: 34px;
        max-width: calc(3 * 33% + 2 * 34px);
        margin: 64px auto;
    }
    #benefitsHolder.moreBenefits {
        grid-template-columns: repeat(2, 1fr);
        max-width: calc(2 * 50% + 1 * 34px);
    }
    .benefit {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
    }
    #kontakt .pageInner {
        gap:32px;
        grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    }
    #kontakt .pageInner {
        align-items: flex-start;
    }
    #kontaktFotoHolder {
        max-width: 100%;
    }
    #kontaktFoto {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 480px;
    }
    #stickyFooter {
        padding:0 20px;
    }
}
@media only screen and (max-width: 1024px) {
    #jobTitle {
        font:var(--fontXXL);
        font-weight: 500 !important;
    }
    #aufgabenProfil .pageInner {
        padding-top: 0;
    }
    #aboutUs .pageInner {
        display: flex;
        flex-direction: column-reverse;
    }
    #aboutUsRight {
        min-height: 300px;
    }
    .aufgabenProfilHolder {
        flex-direction: column;
        gap:20px;
    }
    #aufgabenProfil ul {
        padding-left: 35px;
    }
    .benefit {
        padding:12px;
    }
    #benefitsHolder {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 14px;
        column-gap: 14px;
        max-width: calc(2 * 50% + 1 * 34px);
        margin: 64px auto;
    }
    #stickyFooter {
        height: 72px;
    }
    #stickyFooterMeta {
        display: none;
    }
    footer {
        margin-bottom: 72px;
    }
    footer .pageInner {
        height: auto;
        flex-direction: column;
        gap:32px;
        padding:24px 0;
    }
    #stickyFooterLeft {
        gap:16px;
    }

    .job {
        padding:32px;
        max-width: 350px;
        min-width: 240px;
    }
}
@media only screen and (max-width: 820px) {

}
@media only screen and (max-width: 768px) {
    :root {
        --fontXXXL: 500 36px/42px "Roboto", serif;
        --fontXXL: 400 32px/37px "Roboto", serif;
        --fontXL: 500 24px/28px "Roboto", serif;
        --fontL: 400 16px/18px "Roboto", serif;
        --fontLB: 500 16px/18px "Roboto", serif;
        --fontM: 400 14px/24px "Roboto", serif;
        --fontMB: 500 14px/24px "Roboto", serif;
        --fontS: 400 14px/24px "Roboto", serif;
        --fontXSB: 500 14px/24px "Roboto", serif;
        --fontXS: 400 14px/24px "Roboto", serif;
    }
    #intro .pageInner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    #mainPic,#jobIntroArea {
        max-width: 100%;
        min-width: 100%;
    }
    section {
        margin:48px 0;
    }
    .lineH48 {
        line-height: 24px;
    }
    nav {
        display: none;
    }
    #jobIntroArea {
        gap:32px;
    }
    #metaBar {
        margin-bottom: 24px;
    }
    #metaBar .pageInner {
        row-gap:20px;
    }
    .metaBarItem {
        font-size: 14px;
    }
    .metaBarItem svg {
        min-width: 18px;
    }
    #introText {
        margin-top:24px;
    }
    #intro .pageInner {
        gap:32px;
    }
    #introText .pageInner p {
        line-height: 24px;
        font-size: 14px;
        color:var(--color-deep-blue-80);
        padding:0;
        margin:0;
    }
    .aufProTitle {
        max-width: 100%;
        color:var(--color-deep-blue-80);
        min-width: 100%;
    }
    .aufProText, #aufgabenProfil li {
        font-size: 14px;
        line-height: 24px;
    }
    #benefitsHolder {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 14px;
        column-gap: 14px;
        max-width: 100%;
        margin: 64px auto;
    }
    #benefitsHolder.moreBenefits {
        grid-template-columns: repeat(1, 1fr);
        max-width: 100%;
    }
    .benefit {
        height: auto;
        padding: 34px 24px;
    }
    #kontakt .pageInner {
        display: flex;
        flex-direction: column;
    }
    #kontaktFotoHolder {
        width: 100%;
    }
    #kontaktLinks {
        gap:36px;
        flex-direction: column;
        padding-left:16px;
    }
    .kontaktLink a {
        padding:0;
    }
    #kontaktBottomLinks {
        display: flex;
        flex-direction: column;
        gap:36px;
        padding-left:16px;
    }
    #aboutUs {
        padding:0;
        margin:57px 0;
    }
    #aboutUs .pageInner {
        gap:32px;
    }
    #aboutUsLeft p {
        font-size: 14px;
    }
    #similarJobs {
        margin-top: 0;
    }
    #similarJobs h2 {
        margin-bottom: 32px;
    }
    #stickyFooterLeft {
        justify-content: space-between;
        width: 100%;
    }
    #stickyFooterRight {
        display: none;
    }
    #footerSocial,#footerLinks {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #footerLinks {
        gap:16px;
    }

    .job {
        padding:32px;
        max-width: 320px;
        min-width: 240px;
    }
}
