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

body {
    margin: 0 auto;
    font-family: "Noto Sans", Arial sans-serif;
    font-size: 20px;
    line-height: 36px;
    font-weight: 300;
    color: #280A0A;
    height: auto;
}

* {
    overflow: initial;
}

/* COLOR SCHEME */
:root {
    --companycolor: #CD003C;
}

/* FONTS */
h1, h2, h3, h4, h5, h6, strong, b {
    font-family: "Noto Sans", Arial sans-serif;
    font-weight: 500;
    color: #280A0A;
}

h1, h1:last-child {
    font-size: 76px;
    line-height: 103px;
    color: #262624;
    hyphens: initial;
    margin-bottom: 0;
}

h2, h2:last-child {
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 32px;
}

h3, h3:last-child {
    font-size: 16px;
    line-height: 20px;
}

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

a:hover {
    color: var(--companycolor);
    text-decoration: none;
    transition: color .2s;
}

a:hover svg circle {
    fill: var(--companycolor);
    transition: fill .2s;
}


/* BUTTONS */
button {
    cursor: pointer;
}

.button {
    position: relative;
    display: inline-block;
    background-color: var(--companycolor);
    padding: 10px 30px;
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    color: #FFFFFF;
    width: auto;
    border: 0;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    /*box-shadow: 0 3px 6px #00000029;*/
}

.button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--companycolor);
    transition: 0.1s ease-in-out;
    transition-delay: 0.05s;
}

.buttonWrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

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

.button:hover::before {
    content: "";
    border: 1px solid var(--companycolor);
}

@media screen and (max-width:480px) {
    footer .buttonWrapper .button {
        width: 100%;
        text-align: center;
    }
}

/* HEADER */
header {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #cd003c;
    top:-115px;
}

header .stickyJobtitle {
    display: none;
}

header.sticky {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

header.sticky .stickyJobtitle {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header.sticky .stickyJobtitle span {
    flex: 1;
}

.flexContainer {
    position: relative;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    min-height: 115px;
    max-width: 1480px;
    margin: 0 auto;
    gap: 40px;
}

.sticky .flexContainer  {
    display: flex;
    gap: 100px;
    flex-direction: row;
    width: 100%;
}

.companyLogo {
    min-width: 330px;
    line-height: 0;
}

.companyLogo svg {
    width: 100%;
    height: auto;
}

.companyLogo a {
    display: flex;
}

.stickyJobtitle > span:first-child {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
}

.stickyJobtitle .jobSubtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

main {
    margin: 0 auto 122px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

main section {
    margin: 0 auto;
    width: 100%;
    max-width: 1480px;
    height: 100%;
    padding: 60px 40px;
}

#tasks {
    padding-bottom: 42px;
}


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

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

#hero .keyVisual {
    width: 100%;
}


/* JOB TITLE */
.jobSubtitle {
    font-size: 40px;
    line-height: 55px;
    color: #262624;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

.jobMeta.location {
    display: flex;
    gap: 16px;
    font-size: 26px;
    line-height: 30px;
    margin-top: 30px;
    color: #262624;
}

.jobMeta.location svg {
    width: 16px;
}


/* SLICK SLIDER BENEFITS */
#benefits {
    max-width: 1480px;
    scroll-margin-top: 120px;
}

#benefits h2 {
    margin-bottom: 72px;
}

#slickBenefits {
    display: flex;
    align-items: start;
    margin-bottom: 0;
    min-height: 160px;
}

#slickBenefits .slick-list {
    max-width: 1270px;
    margin: 0 auto 0;
}

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

.benefitContainer {
    position: relative;
    cursor: pointer;
}

#benefits .slick-slide .imgContainer img {
    width: 80px;
    height: auto;
    opacity: 0.5;
    filter: grayscale(100);
    transition: 0.2s ease-in-out;
    margin-top: 20px;
}

#benefits .slick-slide.slick-current .imgContainer img {
    width: 160px;
    height: auto;
    opacity: 1;
    filter: grayscale(0);
    margin-top: 0;
}

#benefits .imgContainer {
    display: flex;
    align-content: center;
    justify-content: center;
}

#benefits .slick-slide .benefitTitle h3 {
    display: none;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--companycolor);
    hyphens: auto;
}

#benefits .slick-slide.slick-current .benefitTitle h3 {
    display: block;
}

.benefitFront {
    display: flex;
    flex-direction: column;
    transition: min-height 0.05s;
}

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

#benefits .slick-slide {
    height: inherit;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

#slickBenefits-content .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 40px;
    padding: 0;
    max-width: 520px;
    min-height: 174px;
}

#slickBenefits-content .slick-slide {
    text-align: center;
}

/* SLICK SLIDER SLIDESHOW */
.slick-slide img {
    width: 100%;
    height: auto;
}

.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 auto 40px;
    padding: 0;
    max-width: 1200px;
}

.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;
}

.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 {
    top: -65px;
    bottom: inherit;
}

.slick-dots li {
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    font-size: 20px;
    border: 1px solid #280A0A;
    opacity: 1;
    border-radius: 25px;
    background-color: #280A0A;
    content: "";
    width: 10px;
    height: 10px;
    line-height: 10px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #CC0000;
    border: 1px solid #CC0000;
}

.slick-dots li button:focus,
.slick-dots li button:before {
    color: #FFFFFF;
}

.slick-prev, .slick-next {
    position: relative;
    width: 30px;
    height: 56px;
    top: 80px;
    transition: 0.1s ease-in-out;
}

.slick-prev {
    left: -7px;
}

.slick-prev:hover {
    left: 0;
}

.slick-next {
    right: -7px;
}

.slick-next:hover {
    right: 0;
}

.slick-prev::before, .slick-next::before {
    width: 30px;
    height: 56px;
    display: flex;
    opacity: 1;
}

.slick-prev:hover::before, .slick-next:hover::before {
    opacity: 1;
}

.slick-prev::before {
    content: "";
    background-image: url('../images/chevron-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-next::before {
    content: "";
    background-image: url('../images/chevron-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* TASKS & PROFILE */
#tasksAndProfile {
    display: flex;
    gap: 20px 110px;
    padding-bottom: 18px;
}

section#tasksAndProfile ul {
    padding-left: 18px;
}

section#tasksAndProfile ul li {
    margin-bottom: 15px;
}

section#tasksAndProfile ul li:last-child {
    margin-bottom: 0;
}

#profile, #tasks {
    max-width: 1160px;
    flex: 1;
}


/* ABOUT SLIDESHOW */
.about {
    background-color: #F9F9F9;
    padding-left: 0;
    padding-right: 0;
    max-width: 1920px;
}

.about h2 {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1480px;
    margin:0 auto;
}

#about {
    padding-bottom: 30px;
}

#slickAbout .slick-list {
    max-width: 100%;
}

#slickAbout .slick-slide {
    opacity: 0.5;
    margin: 0 25px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: center right;
    transition: transform 0.5s;
    pointer-events: none;
}

#slickAbout .slick-slide.slick-current {
    opacity: 1;
    pointer-events: initial;
}

#slickAbout .aboutFront {
    backface-visibility: hidden;
    cursor: pointer;
}

#slickAbout .slick-slide.is-flipped {
    transform: translateX(-100%) rotateY(-180deg);
    transition: transform 0.5s;
}

#slickAbout .aboutBack {
    transform: rotateY(180deg);
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 25px;
    cursor: pointer;
    container-type: inline-size;
}

.aboutText, .abouttext {
    font-style: italic;
    hyphens: none;
    font-size: 5.5cqw;
    line-height: 6.5cqw;
}

.aboutreference {
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
    hyphens: none;
    font-size: 4.5cqw;
    line-height: 5.5cqw;
}

#slickAbout .flipIcon {
    width: 50px;
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
}

#slickAbout .slick-current .flipIcon {
    pointer-events: initial;
    cursor: pointer;
}

#slickAbout .slick-prev {
    position: absolute;
    left: 35.8%;
    top: 55%;
    z-index: 300;
}

#slickAbout .slick-next {
    position: absolute;
    right: 35.8%;
    top: 55%;
    z-index: 300;
}

#slickAbout-nav .slick-track {
    display: flex;
    justify-content: center;
    gap: 20px;
    left: 0 !important;
    width: auto !important;
}

#slickAbout-nav .imgContainer {
    display: flex;
    max-width: 64px;
}

#slickAbout-nav img {
    width: 100%;
    max-width: 64px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}

#slickAbout-nav .slick-current img {
    border: 2px solid var(--companycolor);
    opacity: 1;
}

.slideVideoContainer {
    position: relative;
    padding-bottom: 59.9%; /* 16:9 */
    height: 0;
}

.slideVideoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* BEWERBUNGSPROZESS */
#bewerbungsprozess h2 {
    margin-bottom: 72px;
}

#slickProcess {
    display: flex;
    align-items: start;
    margin-bottom: 0;
}

#slickProcess .slick-list {
    max-width: 1280px;
    margin: 0 40px;
}

#slickProcess .processContent {
    display: flex;
    align-items: start;
    gap: 20px 60px;
}

#slickProcess .imgContainer {
    width: 142px;
}

#slickProcess img {
    width: 142px;
}

#slickProcess h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

#slickProcess .processText span {
    display: block;
    line-height: 26px;
}

#slickProcess .processText ul {
    padding-left: 20px;
}

#slickProcess .slick-prev, #slickProcess .slick-next {
    top: 70px;
}

/* CONTACT */
.fullWidth {
    hyphens: auto;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.contacts {
    background-color: #F9F9F9;
}

.contactHolder {
    display: flex;
    flex-direction: column;
    color: #000000;
    gap: 60px;
}

#contactHeadings {
    display: block;
    margin-bottom: 18px;
}

.contactHolder > div > div {
    display: flex;
    flex-direction: row;
    gap: 20px 40px;

}

.contactHolder > div > div > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
}

.contactLinie, .contactHR  {
    display: flex;
    gap: 20px 100px;
    min-height: 200px;
}

.contactLinie > div, .contactHR > div {
    flex: 1;
}

#contacts .contactImage {
    width: 300px;
}

#contacts .imageContainer div {
    display: flex;
    width: 300px;
    height: auto;
    overflow: hidden;
}

.detailsContainer > div {
    display: flex;
    gap: 20px;
}

.detailsContainer a {
    display: flex;
}

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


/* MODAL & CONTACT FORM */
#contacts .contactAdditional {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

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

.contactFormWrapper {
    border-radius: 0;
    padding: 60px;
}

.formWrapper {
    display: grid;
    gap: 0 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 25px;
    position: relative;
}

form label {
    border-top: 1px solid #DBDBDB;
    padding: 10px 0;
}

form input[type="text"],
form input[type="email"],
form textarea {
    border: 1px solid #919191;
    outline: none;
    padding: 10px;
    width: 100%;
}

form textarea {
    border: 1px solid #919191;
    min-height: 72px;
    resize: vertical;
    vertical-align: top;
}

.ui.dimmer {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: initial;
}

.ui.modal {
    font-size: inherit;
}

.buttonWrapperCancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.buttonWrapperCancel:hover svg path {
    fill: var(--companycolor);
    transition: fill 0.2s ease-in-out;
}


    /* PARSLEY */
.parsley-errors-list {
    margin: 0;
    padding: 0;
}

.parsley-errors-list li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: var(--companycolor);
}

#parsley-id-9 {
    position: absolute;
    top: 44px;
}


/* FIRMENBESCHREIBUNG */
.firmenbeschrieb .bottomSlogan, .firmenbeschrieb .bottomSlogan b, .firmenbeschrieb .bottomSlogan strong {
    display: block;
    margin: 30px 0;
}


/* FOLLOW US */
#followUs span {
    font-weight: 500;
}

#followUs .socialIconsHolder {
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 20px;
    margin-top: 30px;
}

#followUs a {
    display: inline-flex;
}


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

.similarJobsContainer {
    background-color: #F9F9F9;
}

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

#similarJobsWrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
}

#similarJobsWrapper .similarJob {
    position: relative;
    padding: 30px;
    height: 100%;
    min-height: 220px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 6px #00000029
}

#similarJobsWrapper .similarJobContainer > svg {
    position: absolute;
    right: 30px;
    bottom: 35px;
    transition: right .1s linear;
    transform: rotate(270deg);
    width: 20px;
    height: auto;
}

#similarJobsWrapper a:hover .similarJobContainer > svg {
    right: 22px;
}

#similarJobsWrapper .job-meta {
    font-weight: 300;
    margin-top: 10px;
    color: #000000;
    max-width: 90%;
    transition: 0.2s all;
}

#similarJobsWrapper .similarJob:hover .job-meta {
    color: var(--companycolor);
}

#similarJobs .similarJob::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #CCCCCC;
    transition: 0.1s ease-in-out;
    transition-delay: 0.05s;
}

#similarJobs .similarJob:hover::before {
    content: "";
    border: 1px solid var(--companycolor);
}

#similarJobsWrapper .similarJob .jobTitle {
    font-family: 'Noto Sans', sans-serif;
    line-height: 32px;
    font-weight: 500;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    color: #000;
    margin: 0;
    max-width: 90%;
    transition: 0.2s all;
}

#similarJobsWrapper a:hover .jobTitle {
    color: var(--companycolor);
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(223,223,223,0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index:1000;
}

footer a {
    color: #262624;
}

footer svg:not(:root) {
    width: 40px;
    height: 40px;
    overflow: visible;
}

#shareUsButton:hover {
    color: var(--companycolor);
    transition: color .2s;
}

#shareUsButton:hover svg circle {
    fill: var(--companycolor);
    transition: fill .2s;
}


.shareUsItem {
    display: flex;
    align-content: center;
}

.shareUsItem a {
    display: inherit;
}

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

#footerWrapper {
    display: flex;
    justify-content: space-between;
    padding: 35px 40px;
    width: 100%;
    max-width: 1480px;
    z-index: 1;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footerTile {
    align-items: center;
}

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

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

#shareUsButton, #emailPrintWrapper div a {
    display: flex;
    align-items: end;
    gap: 20px;
}

#shareUsButton span, #emailPrintWrapper div a span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

#shareUsButton svg {
    overflow: visible;
}

.shareUsContainer {
    background-color: #262624;
    border: 1px solid #262624;
    cursor: initial;
    left: 0;
    padding: 12px 10px;
    position: absolute;
    top: -70px;
    visibility: hidden;
    z-index: -1;
    width: 220px;
    line-height: 18px;
}

.shareUsContainer.active {
    top: -70px;
    left: 0;
    visibility: visible;
    width: 220px;
    animation: fadeInPros .3s ease-in-out both;
    z-index: 999;
}

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

.shareUsContainer.active:after {
    content: "";
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background-color: #262624;
    display: inline-block;
    position: absolute;
    bottom: -5px;
    right: 72px;
}

.shareUsContainer.active svg:hover path {
    fill: var(--companycolor);
}

svg:not(:root) {
    overflow: visible;
}

#shareUsItemWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.buttonWrapperPrimary {
    display: inline-block;
}

.applyButton {
    font-size: 20px;
    line-height: 28px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.applyButton.whatsappApply {
    background-color: #25D366;
    border-color: #25D366;
}

.applyButton.whatsappApply::before {
    border-color: #25D366;
}

.applyButton.whatsappApply:hover {
    background-color: #075e54;
    color: white;
}

.applyButton.whatsappApply:hover::before {
    border-color: #075e54;
}

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
    .flexContainer {
        min-height: 60px;
    }
    header.sticky .companyLogo, header.sticky .stickyJobtitle span:nth-child(2) {
        display: none;
    }
    #slickAbout .slick-prev {
        left: 12.8%;
    }
    #slickAbout .slick-next {
        right: 12.8%;
    }
    .contactLinie, .contactHR {
        flex-direction: column;
    }
    #similarJobsWrapper {
        gap: 40px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1500px) {
    #slickAbout .slick-prev {
        left: 24%;
    }
    #slickAbout .slick-next {
        right: 24%;
    }
}

@media screen and (max-width:970px) {
    h1, h1:last-child {
        font-size: 32px;
        line-height: 40px;
    }
    h2, h2:last-child {
        font-size: 26px;
        line-height: 34px;
    }
    .jobSubtitle {
        font-size: 20px;
        line-height: 28px;
    }
    .jobMeta.location {
        font-size: 20px;
        line-height: 24px;
        margin-top: 15px;
    }
    #tasksAndProfile {
        flex-direction: column;
    }
    #slickProcess .processContent {
        gap: 20px;
    }
    #similarJobsWrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 26px;
    }
    #similarJobsWrapper .similarJob {
        min-height: 150px;
    }
    .footerTile:first-child {
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 18px;
        line-height: 28px;
    }
    main section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #jobTitle {
        padding-bottom: 45px;
    }
    #tasksAndProfile {
        padding-top: 45px;
        padding-bottom: 60px;
    }
    #benefits {
        padding-top: 60px;
    }
    .flexContainer,
    main section,
    #footerWrapper,
    .about h2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .stickyJobtitle > span:first-child {
        min-width: auto;
        font-size: 20px;
        line-height: 26px;
    }
    #slickAbout-nav .slick-track {
        gap: 10px;
        flex-wrap: wrap;
    }
    #slickAbout .slick-prev,
    #slickAbout .slick-next {
        top: 108%;
    }
    #slickProcess .slick-list {
        margin: 0;
    }
    #slickProcess .processContent {
        flex-direction: column;
        align-items: center;
    }
    #slickProcess .slick-prev, #slickProcess .slick-next {
        position: absolute;
        z-index: 300;
    }
    .slick-dots {
        top: -45px;
    }
    .contactHolder > div > div {
        flex-direction: column;
    }
    form label {
        border-top: 0;
    }
    .contactFormWrapper {
        padding: 30px;
    }
    .formWrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin-bottom: 10px;
    }
    #contactForm button {
        margin-top: 20px;
    }
    .shareUsContainer.active::after {
        right: inherit;
        left: 15px;
    }
    #shareUsButton span, #emailPrintWrapper div a span {
        display: none;
    }
    #similarJobs h2 {
        text-align: left;
    }
}

@media screen and (max-width: 680px) {
    main {
        margin-bottom: 68px;
    }
    .contactHolder {
        flex-direction: column;
    }
    #contacts .contactImage {
        width: 100%;
    }
    .detailsContainer > span {
        min-height: 34px;
    }
    #slickAbout .slick-slide {
        margin: 0 8px;
        font-size: 16px;
        line-height: 20px;
    }
    #similarJobsWrapper {
        flex-direction: column;
    }
    .similarJob {
        max-width: 100%;
    }
    .applyButton {
        font-size: 16px;
        line-height: 24px;
    }
    #footerWrapper {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 520px) {
    h1, h1:last-child {
        hyphens: auto;
    }
    .footerTile:first-child {
        gap: 15px;
    }
}

/* Mobile LANDSCAPE Hide sticky footer on landscape and resize sticky header */
@media (max-height: 650px) {
    footer {
        position: relative;
    }
}

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