/* Variables */
:root {
    --bisongreen: #009456;
    --bisongreen_hover: #00854d;
    --bisongreen_bright: #7AB750;
    --grey1: #686869;
    --lightgrey: #fafafa;
    --darkgrey: #4e4e4e;
    --black: #000000;
    --white: #ffffff;
    --borderradius: 5px;
    --boxshadow: 0px 0px 26px rgba(0, 0, 0, .1);
    --border: 1px solid var(--grey1);
}

/**
 * Fonts.
 */
@font-face {
    font-family: "SourceSans3-Light";
    src: url("../fonts/SourceSans3-Light.woff2") format("woff2"), url("../fonts/SourceSans3-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SourceSans3";
    src: url("../fonts/SourceSans3-Regular.woff2") format("woff2"), url("../fonts/SourceSans3-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SourceSans3-Bold";
    src: url("../fonts/SourceSans3-Bold.woff2") format("woff2"), url("../fonts/SourceSans3-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    font-variant-ligatures: normal;
    box-sizing: border-box;
    font-family: 'SourceSans3-Light', Arial sans-serif;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.375rem;
    font-weight: normal;
    color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
body.no-scroll {
    overflow: hidden;
}
*/
.text_wrapper {
    padding: 100px 0;
}

.megaSpace {
    padding: 180px 0;
}

.tighterWidth {
    max-width: 1364px;
    margin: 0 auto;
}

/**
 * Typography.
 */
h1, h2, h2 b, h3, h3 b, h4, h4 b, h5, h6 {
    font-family: 'SourceSans3-Bold',sans-serif;
    font-weight: normal;
    line-height: 1.15;
    text-transform: uppercase;
    margin-top: 0;
}

h1 {
    margin: 0 0 0.5em 0;
    color: var(--bisongreen);
    font-size: 3.125rem;
    font-weight: bold;
}

h1 span {
    font-family: 'SourceSans3-Bold',sans-serif;
    font-weight: bold;
    color: var(--darkgrey);
    display: block;
}

h2, h2 b {
    color: var(--bisongreen);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3, h3 b {
    color: var(--bisongreen);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h2.mega, h2.mega b {
    font-size: 4rem;
}

svg {
    overflow: visible;
}

p:first-of-type {
    margin-top: 0;
}

p:last-of-type {
    margin-bottom: 0;
}

a, a:active, a:focus, a:visited {
    color: var(--bisongreen);
    text-decoration: none;
    transition: color .3s ease,background-color .3s ease,border-color .3s ease;
}

a:hover {
    color: var(--bisongreen_hover)
}

button {
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

button:focus-visible {
    outline: 2px solid var(--black);
}

.button {
    font-family: 'SourceSans3',sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    color: var(--white);
    text-transform: uppercase;
    border-radius: var(--borderradius);
    background: var(--bisongreen);
    border: 2px solid var(--bisongreen);
    padding: 8px 13px;
    cursor: pointer;
    transition: color .3s ease,background-color .3s ease,border-color .3s ease;
    box-shadow: none;
}

.button:hover {
    color: var(--white) !important;
    background: var(--bisongreen_hover);
    border: 2px solid var(--bisongreen_hover);
}

.button:active, .button:focus, .button:visited {
    color: var(--white);
}

.button-inverted {
    color: var(--bisongreen);
    background: var(--white);
    border: 2px solid var(--white);
}

.button-outlined {
    color: var(--bisongreen);
    background: transparent;
}

.button-inverted:active, .button-inverted:focus, .button-inverted:visited,
.button-outlined:active, .button-outlined:focus, .button-outlined:visited {
    color: var(--bisongreen);
}

.boxed {
    width: calc(1640px + 25px + 25px);
    margin: 0 auto;
    padding: 0 25px;
    max-width: 100%;
}

iframe {
    border: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Navbar Top */
#navbarTop {
    background-color: var(--darkgrey);
    color: var(--white);
    margin: 0;
    padding: 5px 0;
}

#navbarTop ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
    justify-content: end;
    margin: 0;
    padding: 0;
}

#navbarTop ul li {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.15;
}

#navbarTop ul li a {
    font-family: 'SourceSans3', sans-serif;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: color .3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

#navbarTop ul li a:hover {
    color: var(--grey1);
}

/* Header */
header {
    position: absolute;
    background-color: transparent;
    width: 100%;
    left: 0;
    border: none;
    padding: 25px 0;
    transition: all .3s ease;
    z-index: 550;
}

header.fixed {
    position: fixed;
    z-index: 500;
    background-color: var(--white);
    width: 100%;
    left: 0;
    top: 0;
    padding: 12px 0;
    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;
}

.headerContainer {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

header .logo {
    transition: all .3s ease;
}

header.unfixed .logo * {
    fill: var(--white);
}

header.fixed .logo {
    width: 120px;
    height: auto;
    margin-bottom: -6px;
}

header.fixed .logo #claim {
    display: none;
}

header .nav_wrapper {
    display: none;
}

header.fixed .nav_wrapper {
    display: flex;
}

header .nav_wrapper ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    justify-content: end;
    margin: 0;
}

header .nav_wrapper ul li {
    margin: 0;
    position: relative;
    line-height: 1;
}

header .nav_wrapper ul li a {
    font-family: 'SourceSans3', sans-serif;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    color: var(--darkgrey);
    transition: all .3s ease;
    position: relative;
}

header .nav_wrapper ul li a::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: var(--bisongreen);
    transform: scaleX(0);
    transition: all .3s ease;
}

header .nav_wrapper ul li:hover a::before {
    transform: scaleX(1);
}

/* Mobile Navigation */
.burger-menu_v2 {
    display: none;
}

@media screen and (max-width:767px) {
    .fixed .burger-menu_v2 {
        display: block;
    }

    header .navigation {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 5000;
    }

    header .navigation.active {
        opacity: 1;
        visibility: visible;
    }

    header .menu {
        flex-direction: column;
        list-style: none;
        text-align: center;
        padding: 0 25px;
        gap: 0 !important;
    }

    header .nav_wrapper ul li:first-child {
        border-top: var(--border);
    }

    header .nav_wrapper ul li {
        margin: 0;
        position: relative;
        border-bottom: var(--border);
        padding: 12px 0;
    }

    .burger-menu_v2 {
        z-index: 1000;
        cursor: pointer;
    }

    .nav-toggle > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menuText {
        font-family: 'SourceSans3', sans-serif;
        font-size: 11px;
        margin-top: 4px;
        color: var(--black);
    }

    .bar {
        width: 30px;
        height: 3px;
        background: var(--black);
        transition: 0.3s;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero */
#hero {
    width: 100vw;
    max-width: 100%;
    height: 70vh;
    min-height: 690px;
    max-height: 1200px;
    position: relative;
    background-color: var(--black);
    z-index: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.heroImageOverlay {
    background-color: rgba(0, 0, 0, .45);
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 690px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Title and Introduction */
#locations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

#locations .button-outlined {
    font-size: 1.15rem;
    color: var(--darkgrey);
    border: var(--border);
    padding: 4px 10px 4px 7px;
    gap: 5px;
}

#locations .button-outlined:hover {
    border-color: var(--bisongreen_hover);
}

/* Job Main Details */
#jobMainDetails {
    padding-bottom: 100px;
}

#jobMainDetails .flex {
    display: flex;
    column-gap: 120px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#tasks {
    margin-bottom: 60px;
}

#jobMainDetails ul {
    margin-top: 0;
    padding-left: 24px;
}

#jobMainDetails li {
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Contact */
#contact {
    max-width: 265px;
}

.contactContainer {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 30px;
}

.contactContainer > div {
    flex: 1;
}

.contactImage, .contactImage img {
    display: flex;
    max-width: 265px;
}

.contactDetails {
    min-width: 265px;
}

.contactDetails > span {
    display: block;
}

.contactName {
    font-family: 'SourceSans3-Bold', sans-serif;
    font-size: 1.5rem;
}

.contactPosition {
    margin-bottom: 15px;
}

.contactPhone a, .contactEmail a {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    color: var(--black);
    margin-bottom: 5px;
}

.contactPhone a:hover, .contactEmail a:hover {
    color: var(--bisongreen_hover);
}

.contactPhone a svg, .contactEmail a svg {
    min-width: 20px;
    width: 20px;
}

.hinweisStellenvermittler {
    font-family: 'SourceSans3', sans-serif;
    margin-top: 35px;
    font-size: 1rem;
}

/* Benefits */
#benefits {
    background-image: url("../images/background-images/bg_benefits.jpg");
    background-color: var(--bisongreen);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#benefits h2 {
    color: var(--white);
}

.swiper {
    width: 100%;
    padding: 0 5px 10px;
}

.swiper-wrapper {
    padding: 40px 0;
}

.swiper-slide {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 271px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    margin: 0;
    padding: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.swiper-button-next svg, .swiper-button-prev svg {
    fill:#0028a5;
    position: absolute;
    width: 26px;
    height: 26px;
}

.swiper-button-next:before, .swiper-button-prev:before {
    content:"";
    width: 100%;
    height: 100%;
    background-color:white;
    border-radius: 50%;
    position: absolute;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 9px 22px -4px rgba(0,0,0,.05);
}

.swiper-button-prev {
    right: inherit;
    left: 0;
}

.swiper-button-next:hover:before, .swiper-button-prev:hover:before {
    transform: scale(1.2);
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

.swiper-pagination {
    position: relative;
}

#benefits .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.35;
    height: 16px;
    width: 16px;
    margin: 0 8px;
}

#benefits .swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

.sliderControl {
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
    gap:15px;
    position: absolute;
    width: 100%;
    top: calc(100% - 60px);
}

.benefitContent {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    perspective: 1000px;
}

.benefitInner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.benefitContent.flipped .benefitInner,
.benefitContent:hover .benefitInner {
    transform: rotateY(180deg);
}

.benefitFront, .benefitBack {
    border: 6px solid var(--white);
    border-radius: var(--borderradius);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backface-visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    padding: 25px;
}

.benefitFront, .benefitBack b {
    font-family: 'SourceSans3-Bold', sans-serif;
    font-size: 1.375rem;
}

.benefitFront {
    color: white;
    opacity: 1;
}

.benefitBack {
    color: var(--black);
    background: var(--white);
    transform: rotateY(180deg);
}

.benefitBack br {
    display: none;
}

.benefitBack b {
    color: var(--bisongreen);
    margin-bottom: 10px;
    font-weight: normal;
}

/* About */
#about .flex {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 120px;
    row-gap: 60px;
    justify-content: space-between;
}

.aboutText {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

.textIconLink, .textIconLink:visited {
    font-family: 'SourceSans3', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    transition: 0.3s ease;
    color: var(--black);
}

.textIconLink:hover {
    gap: 16px;
    color: var(--bisongreen_hover);
}

#video {
    min-width: 34%;
}

/* Jobabo CTA */
#jobabo {
    display: flex;
    background-image: url("../images/background-images/bg_jobaboCTA.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 31%;
    min-height: 300px;
}

.jobaboBlackImageOverlay {
    display: flex;
    background-color: rgba(0, 0, 0, .45);
    width: 100%;
}

.jobaboGreenImageOverlay {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(359deg, #019557CC 0%, #0046291A 100%);
}

.jobaboGreenImageOverlay .boxed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

#jobabo h3 {
    font-size: 3.125rem;
}

#jobabo h3, #jobabo p {
    color: var(--white);
    text-align: center;
    margin-bottom: 0;
}

#jobabo p {
    text-transform: uppercase;
    font-size: 1.875rem;
}

/* Similar Jobs */
#similarJobs .jobs {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#similarJobs .job {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    flex: 1;
    border: var(--border);
    border-radius: var(--borderradius);
    box-shadow: var(--boxshadow);
    padding: 20px;
    max-width: 435px;
    min-width: 300px;
    color: var(--black);
}

#similarJobs .job:visited {
    color: black;
}

#similarJobs .job:hover {
    color: var(--white);
    background-color: var(--bisongreen_hover);
    border-color: var(--bisongreen_hover);
    transition: color .3s ease,background-color .3s ease,border-color .3s ease;
}

.similarJobsJobTitle {
    display: block;
    font-family: 'SourceSans3-Bold', sans-serif;
    line-height: 1.15;
    text-transform: uppercase;
    word-break: break-word;
}

.similarJobsMeta {
    display: block;
    font-family: 'SourceSans3', sans-serif;
    font-size: 1rem;
    line-height: 1.15;
    margin-top: 10px;
}

.similarIntroduction {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
    margin-top: 8px;
}

.similarIntroduction span {
    font-family: 'SourceSans3', sans-serif;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similarJobsJobLink {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.similarJobsJobLink span {
    font-family: 'SourceSans3', sans-serif;
    font-size: 1rem;
}

/* Footer */
footer {
    position: sticky;
    bottom: 0;
    background-color: var(--white);
    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;
}

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

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

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

#shareUsButton, #emailPrintWrapper a {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    background: transparent;
    color: var(--black);
    transition: all .3s linear;
    border-radius: var(--borderradius)
}

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

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

#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(--bisongreen_hover);
}

.shareUsContainer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border: var(--border);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--boxshadow);
    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: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* 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: #fefefe;
    padding: 2.625rem 2.5rem 2.5rem;
    border-radius: 6px;
    width: calc(100% - 3rem);
    max-width: 1200px;
    box-shadow: 0 4px 128px 0 rgba(10, 10, 130, 0.1);
    z-index: 220;
}

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

.close-button {
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
    background: var(--bisongreen);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.close-button:hover {
    background-color: var(--bisongreen_hover);
}

/* Scroll top button */
.scroll-top-button {
    color: #fff;
    background-color: var(--bisongreen);
    line-height: 1;
    padding: 11px 12px;
    border-radius: var(--borderradius);
    position: absolute;
    z-index: 500;
    bottom: 110px;
    right: 25px;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: color .3s ease,background-color .3s ease,border-color .3s ease, opacity .3s ease, visibility .3s ease;
}

.scroll-top-button.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-button:hover {
    background-color: var(--bisongreen_hover);
}

.scroll-top-button svg {
    display: flex;
    transform: rotate(270deg);
}

/* Responsive */
@media only screen and (max-width: 1200px) {
    h1, h2, h2 b, h3, h3 b, h2.mega, h2.mega b, #jobabo h3 {
        font-size: 2.25rem;
    }
    #jobabo p {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 1010px) {
    #jobMainDetails .flex {
        flex-direction: column;
        gap: 40px;
    }
    #contact {
        max-width: 100%;
    }
    #about .flex {
        flex-direction: column;
    }
    #similarJobs .jobs {
        flex-direction: column;
    }
    #similarJobs .job {
        max-width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    body, #jobabo p {
        font-size: 19px
    }
}

@media only screen and (max-width: 880px) {
    #shareUsButton span, #emailPrintWrapper a span {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .button {
        font-size: 19px;
    }
    .footerButtonsContainer svg {
        height: 16px;
    }
    .footerContentContainer > div {
        gap: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .text_wrapper, .megaSpace {
        padding: 50px 0;
    }
    #jobMainDetails {
        padding-bottom: 50px;
    }
    h1, h2, h2 b, h3, h3 b, h2.mega, h2.mega b, #jobabo h3 {
        font-size: 1.625rem;
    }
    #benefits h2 {
        margin-bottom: 0;
    }
    .modal-content {
        padding: 20px;
    }
}

@media only screen and (max-width: 520px) {
    #navbarTop ul {
        gap: 12px;
    }
    #navbarTop ul li {
        font-size: 0.7rem;
    }
    .footerContentContainer {
        gap: 15px;
    }
    .footerContentContainer .button {
        font-size: 1rem;
    }
    .footerButtonsContainer {
        gap: 10px !important;
    }
}

@media only screen and (max-width: 450px) {
    .footerContentContainer {
        padding: 10px 0;
    }
    #emailPrintWrapper {
        display: none;
    }
    .footerContentContainer .button {
        font-size: 0.85rem;
    }
    .footerButtonsContainer svg {
        height: 12px;
    }
    #shareUsButton > svg, #emailPrintWrapper a svg {
        width: 24px;
    }
    .scroll-top-button {
        bottom: 80px;
    }
    .shareUsItem svg {
        height: 20px;
    }
}

.printOnly {
    display: none;
}