* {
    box-sizing: border-box;
}
body {
    margin: 0 auto;
    font-family:"Adelle Sans", sans-serif;
    color:#5E625D;
    font-size: 20px;
    overflow-x: hidden;
}
main {
    overflow:hidden;
}
img {
    max-width: 100%;
}
h1 {
    color:var(--primary);
    font-family: "Adelle Cyrillic", sans-serif;
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    hyphens:auto;
    padding:0px 20px;
}
h2 {
    font-family: "Adelle Sans", sans-serif;
    font-size: 26px;
    font-weight: 700;
    hyphens:auto;
}
h2.bigh2 {
    font-size: 58px;
    font-weight: 800;
    font-family: "Adelle Cyrillic", sans-serif;
}
h2.centeredh2 {
    width: 100%;
    text-align: center;
}

/*
** Sticky header
 */
#stickyHeader .headerWrapper {
    max-width: 1600px;
    margin: 0 auto;
}
#stickyHeader #logoApplyWrapper {
    padding:0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#stickyHeader #logoApplyWrapper img {
    max-width: 280px;
}
#stickyHeader h2 {
    color:var(--primary);
    font-family: "Adelle Cyrillic", sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    hyphens:auto;
    padding:0px 20px;
}
#stickyHeader {
    top:-200px;
    position: fixed;
    box-shadow:0px 2px 6px 4px rgba(0,0,0,0.2);
    background-color:white;
    width: 100%;
    transition: top ease-in-out 250ms;
}
#stickyHeader.sticky {
    top:0;
    z-index: 9999999;
}

/**
Header
 */
.headerWrapper {
    max-width: 1600px;
    margin: 0 auto;
}
header #logoApplyWrapper {
    padding:26px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#responsiveLogo {
    display: none;
}
header #logoApplyWrapper img {
    max-width: 280px;
}
.button {
    color:var(--secondary);
    border:1px solid var(--secondary);
    text-decoration: none;
    display: flex;
    padding:13px 32px;
    align-items: center;
}
.linkButton {
    font-size:20px;
    color:#5E625D;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap:8px;
    justify-content: center;
    margin-top:20px;
}
section {
    margin:88px 0;
}
.pageWrapper {
    max-width: 1322px;
    width: 100%;
    margin: 0 auto;
    padding:0px 20px;
}
/*
** Metaline
 */
#metaLine .pageWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
#metaLine .metaItem {
    display: flex;
    align-items: center;
    gap:8px;
    font-size: 24px;
}
#metaLine .metaItem svg {
    min-width: 33px;
}
#metaLine .metaItem a {
    color:inherit;

}
/*
** Aufgaben Profil
 */
#profilAufgabeList .pageWrapper {
    display: flex;
    gap:80px;
}
#profilAufgabeList .profAufEle {
    flex-basis: 33%;
    background:white;
    box-shadow:2px 6px 7px #D3D3D3;
    padding:48px 32px;
    border:1px solid #DEE2E6;
    position: relative;
    min-height: 280px;
}
#profilAufgabeList .profAufEle h2 {
    padding-top:0;
    margin-top:0;
}
#profilAufgabeList .profAufEle:before {
    content:"";
    background-color:var(--primaryTrans);
    width: 259px;
    height: 341px;
    display: block;
    position: absolute;
    z-index:-1;
    top:-34px;
    left:-31px;
}
#profilAufgabeList .profAufEle ul {
    padding-left:25px;
    padding-bottom: 0;
    margin-bottom: 0;
}

/*
** Benefits
 */
#benefits {
    position: relative;
 }
#benefits:after {
    content:"0";
    font-size: 500px;
    font-family: "Adelle Cyrillic", sans-serif;
    color:white;
    text-stroke:1px solid var(--primary);
    -webkit-text-stroke: 2px var(--primary);
    font-weight: 800;
    right: -30px;
    position: absolute;
    bottom:-180px;
    z-index: 99;
}
#benefits.counting::after {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% { content: "1"; }
    11.11% { content: "1"; }
    22.22% { content: "2"; }
    33.33% { content: "3"; }
    44.44% { content: "4"; }
    55.55% { content: "5"; }
    66.66% { content: "6"; }
    77.77% { content: "7"; }
    88.88% { content: "8"; }
    100% { content: "9"; }
}
#benefits h2 {
    margin-bottom: 0;
}
.swiper {
    width: 100%;
}
.benefitInner {
    padding:80px;
    position: relative;
}
.benefitIcon {
    position:relative;
}
.benefitText {
    hyphens:auto;
}
.benefitIcon img {
    width: 100%;
}
.benefit .benefitIcon:before {
    content: "1";
    font-size: 110px;
    font-family: "Adelle Cyrillic", sans-serif;
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    right: 10px;
    z-index: -1;
}
.benefit:nth-child(1) .benefitIcon:before { content:"1";}
.benefit:nth-child(2) .benefitIcon:before { content:"2";}
.benefit:nth-child(3) .benefitIcon:before { content:"3";}
.benefit:nth-child(4) .benefitIcon:before { content:"4";}
.benefit:nth-child(5) .benefitIcon:before { content:"5";}
.benefit:nth-child(6) .benefitIcon:before { content:"6";}
.benefit:nth-child(7) .benefitIcon:before { content:"7";}
.benefit:nth-child(8) .benefitIcon:before { content:"8";}
.benefit:nth-child(9) .benefitIcon:before { content:"9";}

.swiper-pagination-custom {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background:transparent;
    text-align: center;
    font-size: 22px;
    color: var(--primary);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-family: "Adelle Cyrillic", sans-serif;
    font-weight: bold;
}

.swiper-pagination-bullet:hover {
}

.swiper-pagination-bullet-active {
    color: #E8927C;
}


/*
** Arbeitsort Kontakt
 */
#arbeitsortKontakt .pageWrapper {
    display: flex;
    gap:50px;

}
#arbeitsortKontakt .pageWrapper .arbeitsortKontaktEl {
    flex-basis:50%;
}
#arbeitsortKontakt .pageWrapper .kontaktFullWidth {
    flex-basis:100%;
}
.arbeitsortKontaktBox {
    background-color:white;
    padding:33px;
    box-shadow:2px 6px 7px #D3D3D3;
    position: relative;
    min-height: 410px;
}
.arbeitsortKontaktBox iframe {
    max-width: 100%;
}
.arbeitsortKontaktBox:before {
    content:"";
    background-color:var(--primaryTrans);
    width: 344px;
    height: 182px;
    display: block;
    position: absolute;
    z-index:-1;
    top:-34px;
    left:-31px;
}
.arbeitsortKontaktBox h3 {
    margin-top:0;
}

/**
** Über pzm
 */
#ueberPZM p {
    text-align: center;
}


/*
** Jobabo CTA
 */
#jobabocta {
    padding:100px 40px;
    background-color:var(--primaryTrans);
}
#jobabocta .pageWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#jobabocta h2 {
    margin:0px;
}
#jobabocta p {
    text-align: center;
    margin-bottom: 40px;
}

/*
** Similarjobs
 */
#similarJobs .pageWrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#similarJobs #jobs {
    display: grid;
    gap:20px;
    grid-template-columns: 25% 25% 25% 25%;
}
#similarJobs .job {
    background-color: var(--primary);
    padding:30px;
    color:white;
}
#similarJobs .job h3 {
    margin-top:0;
    word-break: break-all;
    hyphens:auto;
}
#similarJobs .jobMeta {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
#similarJobs .jobMetaItem {
    display: flex;
    gap:8px;
}
#similarJobs .allJobsButton {
    margin-top:38px;
}
#similarJobs #jobs a {
    text-decoration: none;
}
/*
** Footer
 */
footer {
    background-color:var(--primary);
    color:white;
    padding:40px;
}
footer .pageWrapper {
    display: flex;
    justify-content: space-between;
}
footer a {
    text-decoration: none;
}
footer .socialFollow {
    display: flex;
    gap:18px;
    margin-top:25px;
}
footer .footerLinkList {
    display: flex;
    flex-direction: column;
    color:white;
    gap:15px;
    position: relative;
}
footer .footerLinkList a {
    color:white;
    display: flex;
    align-items: center;
    gap:8px;
    position: relative;
}
#shareAreaHeader {
    position: absolute;
    background:white;
    padding:20px;
    border-radius: 8px;
    top:-30px;
    display: none;
}
#shareAreaHeader:after {
    content:"";
    background-color:white;
    width: 20px;
    height: 20px;
    position: absolute;
    transform:rotate(45deg);
    bottom:-6px;
}
.shareIcons {
    display: flex;
    gap:22px;
}
.shareIcons svg {
    width: 26px;
    height: 26px;
}
@media only screen and (max-width: 1600px) {

    #benefits {
    }
    #benefits:after {
        font-size:300px;
        bottom:-70px;
        z-index:-1;
    }
    iframe {
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {

    #stickyHeader h2 {
        font-size: 24px;
    }
    .benefitInner {
        padding:40px;
    }
    #benefits:after {
        display: none;
    }
    h1 {
        font-size: 58px;
    }
    h2.bigh2 {
        font-size: 42px;
    }
    #jobs {
        grid-template-columns: 50% 50%;
    }
    section#metaLine {
        margin:50px 0;
    }
    section#einleitung {
        margin-top:60px;
    }
}
@media only screen and (max-width: 1024px) {
    #profilAufgabeList .pageWrapper, #arbeitsortKontakt .pageWrapper {
        flex-direction: column;
    }
    .arbeitsortKontaktBox {
        min-height: inherit;
    }
    #similarJobs #jobs {
        grid-template-columns: 50% 50%;
    }
}
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 38px;
    }
    h2.bigh2 {
        font-size: 32px;
    }
    #metaLine .pageWrapper {
        flex-direction: column;
    }
    #arbeitsortKontakt h2.bigh2 {
        margin-bottom: 50px;
    }
    header #logoApplyWrapper img {
        max-width: 160px;
    }
    #responsiveLogo {
        display: block;
        max-width: 100px;
    }
    #desktopLogo {
        display: none;
    }
    header #logoApplyWrapper {
        gap:20px;
    }
    #stickyHeader {
        padding:10px 0;
    }
    #stickyHeader h2 {
        display: none;
    }
    #stickyHeader #logoApplyWrapper svg {
        width: 100px;
    }
    #metaStation {
        flex-direction: column;
        text-align: center;
    }
    #jobs {
        grid-template-columns: 1fr;
    }
    #jobabocta {
        padding:40px 0px;
    }
    footer .pageWrapper {
        flex-direction: column;
        gap:40px;
    }
    #similarJobs #jobs {
        grid-template-columns: 100%;
    }
    footer {
        padding:40px 20px 50px 20px;
    }
}