:root {
    --primaryColor: #03236C;
    --lighterBlue: #006fd5;
    --yellow: #ffe100;
    --lightYellow: #fdfae6;
    --largeVerticalSpacing: 100px;
}

/* Fonts */
@font-face {
    font-display: swap;
    font-family: Noto Sans;
    font-weight: 300 700;
    src: url(../fonts/NotoSans-VariableFont_wdth,wght.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Noto Sans;
    font-style: italic;
    font-weight: 300 700;
    src: url(../fonts/NotoSans-Italic-VariableFont_wdth,wght.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Noto Sans Display;
    font-weight: 300 700;
    src: url(../fonts/NotoSansDisplay-VariableFont_wdth,wght.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Noto Sans Display;
    font-style: italic;
    font-weight: 300 700;
    src: url(../fonts/NotoSansDisplay-Italic-VariableFont_wdth,wght.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Noto Sans SemiCondensed;
    font-weight: 700;
    src: url(../fonts/NotoSans_SemiCondensed-Bold.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Noto Sans SemiCondensed;
    font-weight: 300;
    src: url(../fonts/NotoSans_SemiCondensed-Light.ttf) format("truetype")
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', Helvetica sans-serif;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 20px;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 87.5;
    line-height: 1.5;
    margin: 0;
}

body.modalOpenScroll {
    overflow: hidden;
}

.contentContainer {
    width: 100%;
    max-width: 1620px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

/* LAYOUT */

h1, h1 b, h2, h2 b, h3, h3 b, h4, h4 b {
    font-family: 'Noto Sans Display', Helvetica sans-serif;
    font-weight: 300;
    color: var(--primaryColor);
}

h1 {
    font-size: 72px;
    line-height: 76px;
}

h2 {
    font-size: 2rem;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0;
}

h3 {
    font-size: 1.825rem;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0;
}

h4 {
    font-size: 25px;
    margin: 30px 0;
}

p {
    margin-top: 0;
    line-height: 1.7rem;
}

button {
    font-family: 'Noto Sans', Helvetica sans-serif;
    font-size: 1.25rem;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 87.5;
    line-height: 1.5;
}

a, a:visited {
    position: relative;
    color: var(--primaryColor);
    text-decoration: underline;
}

a::after {
    background-color: var(--primaryColor);
    bottom: -.05em;
    content: "";
    height: .1em;
    left: 0;
    position: absolute;
    transition: .15s ease;
    width: 100%;
    z-index: -1;
}

a:hover::after {
    background-color: #ffe100;
    bottom: .1em;
    height: .4em;
}

a:hover {
    text-decoration: underline;
}

.main-btn::after {
    display: none;
}

.main-btn {
    text-decoration: none;
    background-color: white;
    color: #03236C;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    padding: 21px 24px;
    min-width: 200px;
    border-radius: 72px;
    box-shadow:
            0 8px 8px 4px rgba(0, 151, 213, 0.1),
            0 0 12px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.825rem;
    position: relative;
    margin-top: 24px;
}

.main-btn:hover {
    text-decoration: none;
    background-color: white;
    box-shadow:
            0 0 24px 16px rgba(0, 151, 213, 0.15),
            0 0 6px 4px rgba(0, 0, 0, 0.2);
}

.main-btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(41, 68, 130, 0.5);
}

p, a, a:visited {
    font-family: "Noto Sans", system-ui, sans-serif;
    font-size: 1.25rem;
    color: #03236C;
    font-weight: 600;
}

hr {
    border-top: 1px solid var(--primaryColor);
    margin: 30px 0;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}
li {
    padding-left:12px;
    position: relative;
}
li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "–";
}
#subtitle {
    font-size: 16px;
}

#company-link{
    background-color: #008b57;
    cursor: pointer;
    padding: 12px 24px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Noto Sans', Helvetica sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 3px;
}

/* Header */
header {
    padding: 40px 0;
}

.logo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.logo img {
    width: auto;
    max-height: 80px;
    height: 100%;
    align-items: center;
}

.logo a::after {
    display: none !important;
}

/* Sticky Header */
/* Base styles */
.stickyHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Hidden by default */
}

.stickyHeader.active {
    display: flex;
}

/* Flex layout */
.stickyHeader .contentContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

/* Logo container */
.stickyHeader .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 24%;
}

/* Title with ellipsis */
.stickyHeaderTitle {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a::after {
    background-color: transparent;
}

.breadcrumbs a:hover::after {
    background-color: #ffe100;
}

.breadcrumbSeparator {
    height: 2px;
    width: 30px;
    background-color: var(--primaryColor);
}

/* Key Visual */
#headerimg img {
    max-width: 1560px;
    height: auto;
    width: 100%;
}

#headerimg .contentContainer {
    max-width: 1560px;
    padding: 0;
}

/* Title and JobMeta */
#titleAndMeta h1 {
    margin-top: 50px;
    margin-bottom: 30px;
}

.jobMeta {
    display: flex;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 20px;
    background-color: var(--primaryColor);
    color: #FFFFFF;
    padding: 30px 40px;
    margin-bottom: var(--largeVerticalSpacing);
}

.jobMetaItem, .jobMetaItem a {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
}

.jobMetaItem svg {
    overflow: visible;
    flex-shrink: 0;
}

/* Tasks and Profile */
#taskAndProfile {
    margin-bottom: 48px;
}

#taskAndProfile .contentContainer {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tasks, .profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
    gap: 48px;
}

.tasks > div > :last-child,
.profile > div > :last-child {
    margin-bottom: 0;
}

.taskProfileTitle {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
}

.taskProfileTitle svg {
    overflow: visible;
    flex-shrink: 0;
}

.tasks li, .profile li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.tasks li:last-child, .profile li:last-child {
    margin-bottom: 0;
}

/* Job Video */
#jobVideo {
    margin-bottom: var(--largeVerticalSpacing);
}

.video-wrapper {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
}

.video-wrapper iframe,
.video-wrapper .video-thumbnail,
.video-wrapper .video-thumbnail2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.video-thumbnail, .video-thumbnail2 {
    cursor: pointer;
    display: block;
}

.video-thumbnail img, .video-thumbnail2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.play-button {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    color: var(--primaryColor);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: auto;
    cursor: pointer;
    padding: 5px 24px;
    border-radius: 72px;
    background-color: #FFFFFF;
    transition: .3s ease;
}

.play-button:hover {
    color: var(--lighterBlue);
}

.play-button svg {
    height: 20px;
    width: 1rem;
}

/* Benefits */
#benefits {
    margin-bottom: 48px;
}

#benefits .contentContainer {
    display: flex;
    flex-direction: column;
}

.benefitContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1165px;
    align-self: flex-end;
    row-gap: 2.5rem;
    width: 100%;
}

.benefitContainer.fullWidth4items,
.benefit-wrapper.fullWidth4items {
    max-width: 100%;
}

.benefit {
    max-width: 375px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.benefitImgContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lighterBlue);
    aspect-ratio: 1 / 1;
}

.benefitImgContainer img {
    max-width: 180px;
    max-height: 180px;
}

.benefit.open, .benefit:hover {
    box-shadow: 2px 10px 10px #006FD533;
}

.benefitTitle, .benefitText {
    display: block;
    margin: 0;
    padding: 20px;
}

.benefitTitle {
    font-size: 2rem;
    padding-bottom: 0;
}

/*
.benefitText {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.benefit.open .benefitText {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding-bottom: 30px;
}
*/
.benefit-wrapper > div img {
    width: 100%;
}

/* Swiper Slider */
.custom-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    margin: 0 10px;
    background: white;
    opacity: 1;
    border: 2px solid #03236C;
}

.swiper-pagination-bullet-active {
    background: #03236C;
}

.swiper-button-disabled {
    opacity: 0.4;
}

.swiper-slide {
    outline: none;
}

/* Contact */
#contact {
    margin-bottom: var(--largeVerticalSpacing);
}

.noContactsSelected {
    display: none !important;
}

.contactsHolder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contactsHolder > div {
    display: flex;
    flex: 1 1 0;
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
    flex-wrap: nowrap;
}

.contactContainer {
    width: 100%;
    gap: 32px;
}

.contactContainer > div {
    min-width: 0;
}

.hrContact {
    flex-direction: column;
}

.linieContact {
    flex-direction: column-reverse;
}

.contactDetails {
    margin-top: 1.75rem;
    gap: 24px;
}

.contactDetails h3 {
    margin-bottom: 30px;
}

.contactDetails > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.contactName {
    display: block;
}

.contactName, .contactPosition {
    color: #006fd5;
}

.contactQuote {
    font-style: italic;
}

.contactLinks {
    letter-spacing: 0.5px;
}

.contactImage, .contactImage img {
    display: flex;
    max-width: 220px;
    flex-shrink: 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.contactIconLink {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: flex-start;
    text-decoration: none;
}

.contactIconLink:hover {
    text-decoration: none;
}

.contactIconLink svg {
    color: var(--primaryColor);
    flex-shrink: 0;
}

/* About */
#about {
    background-color: var(--lightYellow);
    padding-top: var(--largeVerticalSpacing);
    padding-bottom: var(--largeVerticalSpacing);
}

#about .contentContainer {
    display: flex;
    gap: 48px;
}

#about .contentContainer > div {
    flex: 1;
}

.aboutTitleContainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aboutTitleContainer p:last-child {
    margin-bottom: 0;
}

.aboutMoreLink a {
    font-family: 'Noto Sans Display', Helvetica sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.825rem;
    align-items: center;
    z-index: 0;
}

/* Apply + Social*/

#apply-btn{
    margin: 50px 0;
}

#apply-btn a{
    background-color: #008b57;
    cursor: pointer;
    padding: 12px 24px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Noto Sans', Helvetica sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 3px;
}

#apply-btn a:hover{
    background-color: #333;
}
.social-icons img{
    height: 35px;
    width: 35px;
    margin-top: 20px;
    margin-left: 5px;
}

.printable-only {
    display: none;
}
/* Footer */
footer {
    background-color: var(--primaryColor);
    padding: 3rem 0 1.2rem;
    border-top: 1px solid #FFFFFF;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.legalNav a {
    font-size: 1rem;
}

.socialNav {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.socialNav li {
    padding: 0;
}

.socialNav li::before, .socialNav li::after {
    display: none;
}

.socialNav svg {
    overflow: visible;
}

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

footer ul, footer li {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer li::before, footer a::after {
    display: none;
}

footer .contentContainer {
    display: flex;
    gap: 20%;
}

footer .contentContainer > div {
    flex: 0 0 auto;
    width: 33%;
}

/* Sticky Footer */
#stickyFooter {
    position: sticky;
    bottom: 0;
    background-color: var(--primaryColor);
    box-shadow: rgba(14, 63, 126, .04) 0 0 0 1px, rgba(42, 51, 69, .04) 0 -1px 1px -.5px, rgba(42, 51, 70, .04) 0 -3px 3px -1.5px, rgba(42, 51, 70, .04) 0 -6px 6px -3px, rgba(14, 63, 126, .04) 0 -12px 12px -6px, rgba(14, 63, 126, .04) 0 -24px 24px -12px;
    z-index: 200;
    padding-top: 16px;
    padding-bottom: 16px;
}

#stickyFooter .footerContentContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 36px;
    row-gap: 15px;
}

#stickyFooter .main-btn {
    margin-top: 0;
    padding: 16px 20px;
}

#stickyFooter .main-btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(148, 161, 192, 1);
}

.footerContentContainer > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Share button */
#shareUsButton {
    position: relative;
    cursor: pointer;
}

#iconShare {
    color: #FFFFFF;
}

#shareUsButton, #emailPrintWrapper a {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    background: transparent;
    color: #FFFFFF;
    transition: all .3s linear;
    border: 0;
    outline: 0;
}

#emailPrintWrapper a::after {
    display: none;
}

#shareUsButton span, #emailPrintWrapper a span {
    font-family: 'SourceSans3', sans-serif;
    font-weight: 400;
    font-size:1.35rem;
}

#shareUsButton:hover, #emailPrintWrapper a:hover {
    color: var(--yellow);
}

#shareUsButton > svg, #emailPrintWrapper a svg {
    width: 30px;
}

#shareUsButton > svg *,
#emailPrintWrapper a svg * {
    transition: all .3s linear;
}

#shareUsButton:hover > svg *,
#emailPrintWrapper a:hover svg * {
    stroke: var(--yellow);
}

.shareUsContainer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primaryColor);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.shareUsContainer:focus {
    outline: none;
}

.shareUsContainer[hidden] {
    display: none;
}

#shareUsButton[aria-expanded="true"] .shareUsContainer {
    opacity: 1;
    visibility: visible;
}

#shareUsItemWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.shareUsItem a {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.shareUsItem a svg {
    overflow: visible;
}

.shareUsItem a::after {
    display: none;
}

.shareUsItem a:hover {
    color: var(--yellow);
}

/* Modal */
dialog {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    max-height: 100%;
    border: 0;
    z-index: 600;
    background-color: rgba(20, 30, 20, 0.4);
    overflow: hidden;
    backdrop-filter: blur(6px);
}

dialog[open] {
    opacity: 1;
    transform: translateY(0);
}

dialog::backdrop {
    background-color: rgb(0 0 0 / 0%);
    transition: background-color 0.5s ease-out;
}

dialog[open]::backdrop {
    background-color: rgb(0 0 0 / 25%);
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

dialog[open] {
    animation: fade-in .5s ease-out;
}

dialog.closing {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0;
    width: calc(100% - 3rem);
    max-width: 980px;
    box-shadow: 0 4px 128px 0 rgba(10, 10, 130, 0.1);
    z-index: 220;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

#modalSend2Friend .modal-content {
    max-width: 760px;
}

.close-button {
    color: var(--primaryColor);
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    min-width: auto;
    margin-top: 0;
    padding: 2px;
}

.close-button svg {
    color: var(--primaryColor);
}

.modalAddress {
    color: var(--primaryColor);
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: calc(100% - 80px);
    gap: 10px;
}

@media screen and (max-width: 500px) {
    .modalAddress {
        margin-top: 40px;
        flex-wrap: wrap;
        max-width: 100%;
    }
}

.modalAddress svg {
    flex-shrink: 0;
    margin-top: 4px;
}

/* Media Queries */
@media screen and (max-width:1240px) {
    .contactsHolder {
        grid-template-columns: 1fr;
    }
    .noLinieImage {
        margin-left: 252px;
    }
    .stickyHeaderTitle {
        display: none;
    }
}

@media screen and (max-width: 825px) {
    #kontakt-block {
        display: block;
    }
    #kontakt, #kontakt-adresse, #kontakt-mail {
        width: 100%;
        display: block;
    }
    #kontakt-adresse, #kontakt-mail {
        margin-top: 20px;
        border-top: 1px solid #fff;
        padding-top: 20px;
    }
    footer {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    footer div {
        width: 100%;
    }
    .subfooter {
        padding-left: 20px;
        padding-right: 20px;
    }
    .tasks, .profile {
        grid-template-columns: 1fr;
    }
    #about .contentContainer {
        flex-direction: column;
    }
    footer .contentContainer {
        flex-direction: column;
        gap: 50px;
    }
    footer .contentContainer > div {
        display: flex;
        flex-direction: row;
        width: 100%;
        min-width: 100%;
        justify-content: space-between;
    }
    footer .legalNav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        width: 100%;
        min-width: 100%;
        justify-content: center;
    }
    .benefit-wrapper {
        flex-wrap: nowrap;
    }
    .benefit {
        max-width: 100% !important;
    }

}
@media screen and (min-width: 826px) {
    .benefit-wrapper {
        display: flex;
        max-width: 1165px; /* 375px × 3 + 40px */
        justify-content: center;
        column-gap: 20px;
        row-gap: 3rem;
        flex-wrap: wrap;
        width: 100%;
        align-items: flex-start;
    }
    .benefitContainer {
        margin: 0 !important;
    }
    .benefit {
        width: 100% !important;
    }
}
@media screen and (max-width: 620px) {
    .contactsHolder > div {
        flex-direction: column;
    }
    .contactDetails {
        margin-top: 0;
    }
    .noLinieImage {
        margin-left: 0px;
    }
    .modal-content {
        padding: 20px;
    }
    #stickyFooter .main-btn {
        padding: 10px 16px;
    }
}

@media screen and (max-width: 590px) {
    .logo img{
        width: 100px;
    }
    h1 {
        font-size: 36px;
        line-height:1.3;
        hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
    }
    .col-xs-4{
        width: 35%;
    }
    .col-xs-8{
        width: 65%;
    }
    #apply-btn{
        margin: 50px 0 20px;
    }
    .subfooter {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media screen and (max-width:470px) {
    #stickyFooter .footerContentContainer {
        justify-content: center;
    }
    .main-btn {
        padding: 12px 18px;
    }
}

@media screen and (max-width: 400px) {
    #apply-btn a {
        padding: 12px;
    }
    #kontakt-person-bild img {
        max-width: 100px;
        hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
    }
    #kontakt-block {
        padding: 10px;
    }
}
