/* COLORS */
:root {
    --companyColorYellow: #FBAA1E;
    --companyColorBlue: #007DC4;
    --companyColorLightBlue: #D4EFFC;
    --companyColorLightGray: #E6E6E6;
    --companyColorDarkGray: #828282;
}

/* FONTS */
h1 {
    font-family:"Roboto", Arial sans-serif;
    font-size: 32px;
    line-height: 42px;
    hyphens: auto;
    letter-spacing: 3px;
}

h2, h3, h4, h5, h6, strong, b {
    font-family: "Roboto", Arial sans-serif;
    font-weight: bold;
}

h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 35px;
}

h3 {
    font-family: 'Shadows Into Light', cursive;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 13px;
    line-height: 19px;
}

a {
    color: var(--companyColorBlue);
}

a:hover {
    color: var(--companyColorBlue);
    text-decoration: none;
}

/* GENERAL */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    font-family: "Roboto", Arial sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    height: auto;
}

.button {
    display: inline-block;
    background-color: var(--companyColorBlue);
    padding: 15px 25px;
    font-size: 16px;
    color: #FFFFFF;
    width: auto;
}

.button:hover {
    color: #FFFFFF;
    background-color: var(--companyColorDarkGray);
}

/* Header */
header {
    position: relative;
    z-index:999;
    top:0;
    width: 100%;
    background-color: #FFFFFF;
}

header.active {
    position: sticky;
    animation: slideDown 0.25s ease-in-out both;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header.active .navigation {
    display: none;
    background-color: var(--companyColorBlue);
}

header.active #navigation ul li a {
    color: #FFFFFF;
}

header.active .menu-button-container {
    display: flex;
}

header.active .jobTitleContainer > div {
    padding: 10px 40px;
}

header.active h1 {
    font-size: 18px;
    margin: 0;
}

header.active #subtitle {
    display: none;
}

header.active .companyLogo img {
    max-width: 220px;
    height: auto;
    width: 100%;
    max-height: 70px;
}

header.active .secondaryLogo {
    max-height: 70px;
}

.logoHolder {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1190px;
    margin:0 auto;
    padding: 5px 40px;
}

.mobile {
    display:none;
}

.logoHolder > div {
    display: flex;
    gap: 50px;
    align-items: center;
}

.companyLogo img {
    max-width: 315px;
    height: auto;
    width: 100%;
    max-height: 100px;
}

.secondaryLogo {
    max-height: 100px;
}

.logo.image.mobile {
    height: 40px;
}

.companyLogo a {
    display: block;
    line-height: 0;
}

.jobTitleContainer {
    background-color: var(--companyColorLightBlue);
}

.jobTitleContainer > div {
    margin: 0 auto;
    width: 100%;
    max-width: 1190px;
    padding: 40px 40px 30px;
}

/* Navigation */
.navigation {
    background-color: var(--companyColorBlue);
}

.navOpen {
    display: block !important;
}

#navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1190px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

#navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    gap: 5%;
}

#navigation ul li {
    list-style: none;
}

#navigation ul li a {
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 40px 0;
    display: inline-block;
}

#navigation ul li a:hover {
    text-decoration: underline;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #000;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

/* Main */
main {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

main section {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1190px;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* HERO */
#hero {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

#hero img {
    width: 100%;
    display: flex;
}

#hero .keyVisual {
    width: 100%;
    position: relative;
}

.imgOverlay {
    position: absolute;
    bottom: -2px;
    height: 102px;
}

/* INTRODUCTION */
.jobIntroduction {
    font-size: 20px;
    line-height: 28px;
}

/* SLICK SLIDER BENEFITS */
#benefits h2 {
    margin-bottom: 20px;
}

#slickBenefits {
    display: flex;
    align-items: center;
}

.slick-prev, .slick-next {
    position: relative;
}

#benefits .slick-dots li:only-child {
    display: none;
}

.benefitContainer {
    position: relative;
    border: 4px solid transparent;
    max-width: 328px;
}

.benefitContainer:after {
    visibility: hidden;
    content: "";
    background-color: var(--companyColorBlue);
    background: var(--companyColorBlue);
    width: 80%;
    height: 4px;
    bottom: -30px;
    position: absolute;
    margin: 0 auto;
    z-index: 9100;
    left: 10%;
}

.benefitContainer:hover::after {
    visibility: visible;
}

#benefits .benefitContainer .benefitText {
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
    display: none;
    visibility: hidden;
    transition: visibility 0s, opacity 0.5s linear;
    margin: 0;
    min-height: 200px;
}

.benefitContainer:hover{
    cursor: pointer;
    background: var(--companyColorLightBlue);
    transition: background-color 0.5s linear;
    border: 4px solid var(--companyColorBlue);
}

#benefits .benefitContainer:hover .benefitText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

#benefits .benefitContainer:hover img,
#benefits .benefitContainer:hover > .benefitTitle {
    display: none;
}

#benefits .benefitContainer > .benefitTitle {
    position: absolute;
}

#benefits .benefitTitle {
    text-align: left;
}

#benefits .benefitText ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    font-size: 16px;
    line-height: 16px;
}

#benefits .benefitText ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#benefits .benefitText ul li:last-child {
    margin-bottom: 0;
}

#benefits .benefitText ul li::before {
    background: #FFFFFF;
    position: absolute;
    left: 0;
    top: 6px;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

#benefits .benefitText strong {
    hyphens: none;
    word-break: break-word;
}

#benefits #slickBenefits .slick-track {
    display: flex;
    justify-content: space-between;
}

#benefits .slick-slide {
    padding: 8px;
    text-align: center;
    margin: 5px 8px 3px;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 230px;
}

#benefits .slick-prev, #benefits .slick-next {
    width: 40px;
    height: 40px;
}

#benefits .slick-prev {
    top: calc(50% - 20px);
    left: -5px;
    transform: none;
    -webkit-transform: none;
}

#benefits .slick-next {
    top: calc(50% - 20px);
    right: -5px;
    transform: none;
    -webkit-transform: none;
}

#benefits .slick-prev::before, #benefits .slick-next::before {
    width: 40px;
    height: 40px;
    display: flex;
}

#benefits .slick-prev::before {
    content: "";
    background-image: url('../images/icons/chevron-left.png');
    background-size: contain;
}

#benefits .slick-next::before {
    content: "";
    background-image: url('../images/icons/chevron-right.png');
    background-size: contain;
}

#benefits .slick-slide img {
    width: 100%;
}

/* TASKS & PROFILE & BENEFITS FOR HTML PRINT */
#overView {
    display: flex;
    gap: 40px;
}

#overView > div {
    min-width: calc(50% - 20px);
}

#profile, #tasks, #benefits .printOnly {
    padding-bottom: 30px;
}

#profile ul, #tasks ul, #benefits .printOnly ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#profile li, #tasks li, #benefits .printOnly li {
    line-height: 30px;
    padding-left: 15px;
    position: relative;
}

#profile li::before, #tasks li::before, #benefits .printOnly li::before {
    background: #464646;
    position: absolute;
    left: 0;
    top: 14px;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* CONTACTS */
#contacts {
    margin-top: 40px;
}
.fullWidth.contacts {
    background-color: var(--companyColorLightGray);
    padding-bottom: 27px;
    padding-top: 30px;
    hyphens: auto;
}

.contactHolder {
    display: flex;
    flex-direction: row;
    color: #000000;
    gap: 35px;
}

.contactLinie, .contactHR {
    max-width: 50%;
    width: 100%;
}

.contactHolder > div > div {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

#contacts .contactImage {
    width: 150px;
    border-radius: 50%;
}

.detailsContainer > div {
    display: flex;
}

.detailsContainer a {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-content: center;
    word-break: break-all;
}

.detailsContainer > span {
    display: block;
}

.detailsContainer svg {
    height: auto;
    min-width: 20px;
}

#contacts h2 {
    margin-bottom: 70px;
    color: #000000;
}

#contacts h3 {
    margin-bottom: 20px;
}

/** CONTACT FORM **/
#openContactForm {
    cursor: pointer;
}

#contactForm {
    height:0;
    margin-top: 30px;
    flex-basis: 100%;
    transform: scaleY(0);
    transform-origin: top;

}

#contactForm.formVisible {
    transform: scaleY(1);
    transition: transform 0.26s ease;
    height: auto;
}

#contactForm.formVisible {

}

#contactForm textarea:active, #contactForm textarea:focus,#contactForm input:focus,#contactForm input:active {
    outline:0;
    border:2px solid #000000;
}

#contactForm input {
    background-color:transparent;
    color:black;
    margin-bottom: 25px;
    padding:10px;
    width: 100%;
    max-width: 440px;
    border:2px solid var(--companyColorDarkGray);
    font-family: "Open Sans", sans-serif;
}

#contactForm button[type=submit] {
    background-color:white;
    color: #FFFFFF;
    padding: 10px 20px;
    background-color: var(--companyColorBlue);
    display: inline-block;
    margin-top: 10px;
    width:240px;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    border: none;
}

#contactForm button[type=submit]:hover {
    background-color: var(--companyColorDarkGray);
    color:white;
}

#contactForm textarea {
    background-color: transparent;
    color: black;
    margin-bottom: 15px;
    border:2px solid var(--companyColorDarkGray);
    padding: 10px;
    width: 100%;
    max-width: 440px;
    font-family: "Open Sans", sans-serif;
}

#contactForm textarea::placeholder, #contactForm input::placeholder {
    font-family: "Open Sans", sans-serif;
}

.grecaptcha-badge,
.contactFormConfirmation {
    display: none;
}

.parsley-errors-list {
    margin: 0;
    padding-left: 20px;
}

.parsley-errors-list li {
    color: #7A000E;
    max-width: fit-content;
}

/* BEWERBUNGSPROZESS */
#applicationSteps {
    margin-top: 70px;
}

#applicationSteps img {
    width: 100%;
}

/* AWARDS */
#awardsContainer {
    display: flex;
    gap: 40px;
    width: 100%;
}

.locationContainer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.mapsRoute {
    text-decoration: underline;
    display: inline-block;
}

.awardImage {
    max-width: 170px;
    min-width: 16%;
    max-height: 120px;
    display: inline-block;
}

.awardImage img {
    width: 100%;
}

/* SLICK SLIDER SLIDESHOW */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0 0 30px 0;
    flex: 1;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: initial;
    margin-right: initial;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-loading .slick-slide, .slick-loading .slick-track {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-loading .slick-list {
    background: #fff;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 7px;
    height: 7px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before, .slick-dots li.slick-active button:before {
    color: var(--companyColorBlue);
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    font-size: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    content: '\2022';
    text-align: center;
    color: var(--companyColorBlue);
    opacity:0.3;
    padding:5px;
}

.placeholder-slideshow {
    min-height: 100px;
}

/* FOLLOW US */
#followUs div {
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 20px;
}

#followUs h2 {
    margin-bottom: 15px;
}

#followUs a {
    display: inline-flex;
}

#followUs svg {
    height: auto;
}

/* SEO SUPPORT */
#seoSupport br {
    display: none;
}

/* SIMILAR JOBS */
#similarJobs {
    margin-top: 40px;
    margin-bottom: 30px;
}

#similarJobsWrapper {
    display: flex;
    gap: 16px;
}

#similarJobs h2 {
    margin-bottom: 20px;
}

.similarJob {
    width: 100%;
    max-width: 465px;
}

.similarJob a {
    min-height: 155px;
    display: block;
    padding: 30px 20px;
    height: 100%;
    background-color: var(--companyColorLightGray);
}

.similarJobTitle {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin: 10px 0;
    display: block;
}

/* JOBABO */
#jobAbo {
    margin-top: 30px;
    margin-bottom: 115px;
}

#jobAbo h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

#jobAbo p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}

#jobAbo a {
    width: 231px;
    padding: 13px 9px;
    text-align: center;
}

.socialsMobile {
    display: none;
}


/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 3px 6px #00000029;
    z-index:1000;
}

.shareUsItem a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 7px;
    color: #000000;
}

#shareUsItemWrapper svg {
    max-width: 20px;
    height: auto;
}

#footerWrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 40px 11px;
    width: 100%;
    z-index: 1;
    margin: 0 auto;
    max-width: 1190px;
}

.footerTile {
    align-items: center;
}

.footerTile:first-child, #emailPrintWrapper {
    display: flex;
    gap: 50px;
    line-height: 0;
}

.applyButton {
    width: 230px;
    display: block;
    text-align: center;
    box-shadow: 0 3px 6px #00000029;
}

#shareUsButton {
    cursor: pointer;
    position: relative;
    width: auto;
    line-height: 0;
}

#shareUsButton svg {
    overflow: visible;
}

.shareUsContainer {
    background-color: #ffffff;
    cursor: initial;
    left: -52px;
    padding: 20px;
    position: absolute;
    top: -250px;
    visibility: hidden;
    z-index: -1;
    width: 170px;
    line-height: 18px;
}

.shareUsContainer.active {
    top: -250px;
    left: -52px;
    visibility: visible;
    width: 170px;
    animation: fadeIn .3s ease-in-out both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

#shareUsItemWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buttonWrapperPrimary {
    display: inline-block;
}

#shareUs {
    margin: 25px 0 60px;
}

#shareUs svg {
    width: 40px;
    height: 40px;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
    #similarJobs {
        margin-bottom: 140px;
    }
}

@media screen and (max-width: 767px) {
    header {
        position: sticky;
    }

    #subtitle {
        display: none;
    }

    .logoHolder > div {
        gap: 20px;
    }

    .companyLogo img {
        max-width: 120px;
        height: auto;
        width: 100%;
        max-height: 40px;
    }

    .secondaryLogo {
        max-height: 40px;
    }

    .navigation {
        display: none;
        background-color: #FFFFFF;
    }

    #navigation ul li a {
        color: #000000;
    }

    .menu-button-container {
        display: flex;
    }
    .menu {
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
        border: 1px solid #333;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
        width: 100%;
    }

    #navigation ul li a {
        padding: 10px 0;
    }

    main section,
    #footerWrapper,
    .jobTitleContainer > div,
    .logoHolder {
        padding-left: 20px;
        padding-right: 20px;
    }

    #overView {
        flex-direction: column;
    }

    .mobile {
        display: block;
    }

    .socialsMobile {
        display:block;
    }

    .logoHolder .mainLogo {
        display: none;
    }

    #hero .keyVisual {
        width: 100%;
    }

    #followUs {
        margin-top: 10px;
    }

    #imageSlider,
    #hero .imageSchwung,
    .accordion {
        display: none;
    }

    #tasks {
        margin-top: 5px;
    }

    .applyButton {
        width: 180px;
    }

    .footerTile:first-child, #emailPrintWrapper {
        gap: 20px;
    }

    #jobTitle {
        padding-top: 20px;
    }

    h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .jobTitleContainer > div {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .imgOverlay {
        height: auto;
    }

    #benefits .benefitContainer > .benefitTitle {
        text-align: center;
        position: relative;
        padding-top: 30px;
    }

    #benefits .imgContainer svg {
        height: 60%;
    }

    #profile, #tasks, #benefits .printOnly {
        padding-bottom: 20px;
    }

    #contacts .contactImage {
        width: 117px;
    }

    .awardImage {
        max-width: 107px;
        max-height: 80px;
        margin-bottom: 20px;
    }

    #footerWrapper {
        justify-content: center;
        padding: 10px 40px;
    }

    #footerWrapper .footerTile:first-child {
        display: none;
    }

    footer {
        background-color: transparent;
        box-shadow: none;
    }
}

@media screen and (max-width: 680px) {
    .contactHolder {
        flex-direction: column;
    }

    .contactLinie, .contactHR {
        max-width: 100%;
        min-width: 100%;
    }

    #similarJobsWrapper {
        flex-direction: column;
    }
    .similarJob {
        max-width: 100%;
    }

    #benefits {
        padding-left: 15px;
        padding-right: 15px;
    }

    #similarJobs {
        margin-top: 20px;
    }

    #jobAbo a {
        padding: 15px 9px;
    }
}

@media only screen {
    .printOnly {
        display: none !important;
    }
}