.open-sans-bold {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin: 0;
}

h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 70px;
    margin-top: 0px;
    color: var(--primary-color);
}

h2 {
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 38px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

h3, h3 b {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    margin-top: 0px;
    margin-bottom: 20px;
}

h3.secondary, h3.secondary b {
    margin-bottom:0px;
}

section a, section a:visited {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

p, span {
    font-size: 18px;
    line-height: 27px;
}

strong {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
}

a, a:visited {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

a:hover, a:focus {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
}

section ul li {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
    padding-left: 4px;
}

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

section ul li {
    position: relative;
}

section ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.7em;
    width: 10px;
    border-top: 2px solid #000;
}

.button, .button:visited {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    justify-content: center;
    line-height: 133%;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    border: none;
}

.button.apply {
    font-size: 20px;
}

.button:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), var(--secondary-color);
    color: var(--secondary-font-color);
    text-decoration: none;
}

.button.no-gradient {
    background: var(--primary-color);
}

.button.no-gradient:hover {
    background: var(--secondary-color);
}

.button:focus-visible {
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), var(--secondary-color);
}

.two-buttons.grid {
    grid-template-columns: minmax(0, 1fr) 433px;
}

.two-buttons .footer-col {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

section {
    width: 100%;
    max-width: 1238px;
    margin: 50px auto;
    padding: 0px 30px
}

article {
    margin-top: 50px;
}

.grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 376px;
    column-gap: 75px;
    width: 100%;
}

@media (max-width: 1024px) {
  .grid, .two-buttons.grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .two-buttons .footer-col {
    flex-direction: column;
  }

  .grid .side-col {
    width: 100%;
  }
  .sticky-footer.traveco section {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 75px;
}

@media (max-width: 768px) {
    .grid-2cols {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .grid-2cols > :not(.video) {
        order: 1;
    }

    .grid-2cols > .video {
        order: 2;
    }
}

.bg {
    background-color: var(--background-color);
    padding: 50px 0px
}

.bg section {
    margin: 0px auto;
}

.bg h2 {
    color: #000
}

/* Header & Logo */
header {
    max-width: 1332px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width: 1025px) {
    main > header:first-of-type {
        min-height: 160px;
    }
}

.logoLink {
    width: auto;
    height: auto;
    max-width: 230px;
    max-height: 140px;
    display: block;
}

body.nav-open {
    overflow: hidden;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--primary-color);
    position: relative;
}

.nav-toggle-bar {
    width: 23px;
    height: 2px;
    background-color: currentColor;
    display: block;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
    margin-top: 6px;
}

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

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

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

.nav-toggle.is-open {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
    color: #fff;
}

.mobile-nav-close {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--primary-color);
    position: absolute;
    top: 37px;
    right: 20px;
    flex-direction: column;
}

.mobile-nav-close .nav-toggle-bar:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
    width: 24px;
}

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

.mobile-nav-close .nav-toggle-bar:nth-child(3) {
    transform: translateY(-16px) rotate(-45deg);
    width: 24px;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 999;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.mobile-nav__list a {
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--primary-color);
}

.mobile-nav__list a:after {
    display: none;
}

/* Sticky Desktop Header */
.sticky-desktop-header {
    display: none;
    position: fixed;
    top: -10px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding-bottom: 0;
    padding-top: 0;
}

.sticky-desktop-header.is-visible {
    transform: translateY(0);
}

.sticky-header-content {
    max-width: 1332px;
    margin: 0 auto;
    padding: 25px 20px 15px;
    display: flex;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.sticky-header-content > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    width: 200px;
}

@media screen and (min-width: 1025px) {
    header > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 140px;
        width: 230px;
    }
}

@media screen and (max-width: 1024px) {
    header > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 80px;
        width: 130px;
    }
}

.sticky-logoLink {
    max-height: 60px;
    height: auto;
    width: auto;
    max-width: 200px;
}

.sticky-nav-and-title {
    display: flex;
    flex-direction: column;
}

.sticky-desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.sticky-desktop-nav a {
    font-size: 14px;
    line-height: 16px;
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sticky-desktop-nav a:hover {
    opacity: 0.7;
}

.sticky-desktop-nav a:after {
    display: none;
}

.sticky-job-title, .slogan {
    font-size: 28px;
     font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hero */
#hero {
    width: 100%;
    margin-bottom: 10px;
    max-width: 1312px;
    padding:0;
    margin: 0 auto;
}

.picture-wrapper {
  max-height: 503px;
  overflow: hidden;
}

.picture-wrapper img {
  width: 100%;
  height: auto;
  max-height: 503px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Optional: only crop when the image is taller than 503px */
@supports (object-fit: cover) {
  .picture-wrapper.cover img {
    height: 503px;
    object-fit: cover;
    object-position: 50% 35%;
  }
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.38%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Job Data */
.side-col {
    display: flex;
    flex-direction: column;
    gap: 50px;    
}
.job-data > div {
    display: flex;
    padding: 16px 0px 14px;
    border-bottom: 1px solid #E2E2E2;
    align-items: flex-start;
    justify-content: flex-start;
}

.job-data > div:first-child {
    padding-top: 0px;
}

.job-data label {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    width: 140px;
}

.job-data span {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 140px);
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.job-department-info {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #000;
    padding: 0 16px;
}

/* Contact */
.contact-box {
    background-color: var(--background-color);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-box h3 {
    margin: 0px; 
}

.contact-box h3:nth-of-type(2) {
    margin-top: 15px;
}

.contact-box h3.secondary, .contact-box h3.secondary b {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.contact-person {
    display: flex;
    gap: 30px;
}

.contact-person img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 50%;
}

.contact-person-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-person-data a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000!important;
    cursor: pointer;
}

.contact-person-data a:hover {
    color: var(--primary-color)!important;
}

.contact-person-data a svg {
    width: 18px;
    height: 18px;
}

.contact-person-data a svg * {
    fill: var(--primary-color);
}

.contact-person-data a:after {
    display: none;
}

/* Benefits */
#vorteile {
    margin-bottom: 100px;
}
.benefit {
    background-color: var(--primary-color);
    padding: 30px;
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow: visible;
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
}

/* Slick slider equal height */

.slick-list {
    padding-right: 24px;
}

@media (min-width:400px) {
    .slick-list {
        padding-right: 50px;
    }
}

@media (min-width:1024px) {
    .slick-list {
        padding: 0 75px;
    }
}

#benefits .slick-track {
    display: flex !important;
    padding-bottom: 10px;
}

#benefits .slick-slide {
    height: auto;
    display: flex !important;
}

#benefits .slick-slide > .benefit {
    height: 100%;
}

.benefitIcon, .benefitTitle, .benefitText {
    text-align: center;
    color: var(--secondary-font-color);
}

.benefit img {
    height: 80px;
    width: auto;
}

.benefitTitle span {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;
}

.benefitText span {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.slick-prev:before
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='var(--primary-color)' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M9.224 1.553a.5.5 0 0 1 .223.67L6.56 8l2.888 5.776a.5.5 0 1 1-.894.448l-3-6a.5.5 0 0 1 0-.448l3-6a.5.5 0 0 1 .67-.223'/%3E%3C/svg%3E");
}

.slick-next:before
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='var(--primary-color)' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6.776 1.553a.5.5 0 0 1 .671.223l3 6a.5.5 0 0 1 0 .448l-3 6a.5.5 0 1 1-.894-.448L9.44 8 6.553 2.224a.5.5 0 0 1 .223-.671'/%3E%3C/svg%3E");
}

/* Video */
.video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.award {
    text-align: right;
    margin-top: 15px;
}

/* Weitere Jobs */
.jobs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left:-20px;
    margin-right:-20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
  .jobs {
    grid-template-columns: 1fr;
  }
}

.job {
    padding: 20px;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job > div {
    background-color: var(--background-color);
}

.job img {
    height: 190px;
}

.job .job-title {
    font-size: 24px;
    line-height: 32px;
    transition: color .2s ease;
    padding-left: 16px;
    padding-right: 16px;
    color: black;
    font-weight: 300;
    margin-bottom: 0px;
}

.job:hover {
    background-color: var(--background-color);
    transform: scale(1.025);
}

.job:hover .job-title {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--background-color);
    padding: 20px 10px 1px;
    margin-top: 100px;
}

footer section .grid-2cols {
    gap: 428px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.follow {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.follow a {
    display: block;
}

.follow svg {
    fill: var(--primary-color);
    width: 36px;
    height: 36px;
}

.follow a:hover:after {
    display: none;
}

.follow a:hover svg * {
    fill: var(--secondary-color);
}

/* Sticky Footer */
.sticky-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px -6px 15px #0000001A;
    z-index: 100;
}

.sticky-footer section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0px auto;
}
.functions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.functions > a,
.functions .share, 
.functions > a:visited {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    line-height: 28px;
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: color .2s ease;
    cursor: pointer;
}

.functions.fr > a,
.functions.fr .share {
    gap: 15px;
    font-size: 18px;
}

.functions a svg,
.functions .share svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.functions a:hover,
.functions a:hover svg,
.functions .share:hover,
.functions .share.is-open {
    color: var(--secondary-color);
}
.shareButtonContainer {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.share {
    cursor: pointer;
}

.shareIcons {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 16px);
    transform: translateX(-50%) translateY(12px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    min-width: 340px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
    z-index: 5;
}

.shareIcons::after,
.shareIcons::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    pointer-events: none;
}

.shareIcons::before {
    border-width: 11px 11px 0 11px;
    border-color: rgba(0, 0, 0, 0.08) transparent transparent transparent;
    bottom: -11px;
}

.shareIcons::after {
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    bottom: -10px;
}

.shareIcons.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.shareIcons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: color .2s ease;
}

.shareIcons a:hover,
.shareIcons a:focus {
    color: #fff;
}

.shareIcons svg {
    width: 20px;
    height: 20px;
}

.functions.mobile {
    padding: 50px 20px 40px;
    display: none;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.functions.mobile .print {
    display: none;
}

@media (max-width: 1024px) {
    .shareIcons {
        left: 0;
        right: 0;
        transform: translateY(12px);
    }

    .shareIcons.is-open {
        transform: translateY(0);
    }

    .shareIcons::before,
    .shareIcons::after {
        left: auto;
        right: auto;
        transform: none;
    }

    .map-modal,
    .contact-modal {
        padding-top: 120px;
        align-items: flex-start;
    }
}

/* Map Modal */
.map-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1000;
}

.map-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.map-modal__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: pointer;
}

.map-modal__dialog {
    position: relative;
    width: min(900px, 100%);
    height: min(600px, 80vh);
    background: #fff;
    padding: 20px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(20px);
    transition: transform .3s ease;
}

.map-modal.is-open .map-modal__dialog {
    transform: translateY(0);
}

.map-modal__close {
    border: none;
    background: none;
    color: #fff;
    position: absolute;
    top: -45px;
    right: -45px;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;    
}

.map-modal__close svg {
    width: 38px;
    height: 38px;
}

.map-modal__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    color: var(--primary-color);
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.map-modal__content {
    flex: 1;
    min-height: 0;
    border: 1px solid #e0e0e0;
}

.map-modal__content iframe {
    width: 100%;
    height: 100%;
}

/* Jobabo modal customization */
.jobabo-modal .map-modal__dialog {
    height: min(670px, 80vh);
}

.jobabo-modal .map-modal__content {
    border: none;
}

body.modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1000;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: pointer;
}

.contact-modal__dialog {
    position: relative;
    width: min(1050px, 100%);
    background: #fff;
    padding: 35px 100px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(20px);
    transition: transform .3s ease;
}

.contact-modal.is-open .contact-modal__dialog {
    transform: translateY(0);
}

.contact-modal__close {
    border: none;
    background: none;
    color: #fff;
    position: absolute;
    top: -45px;
    right: -50px;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;    
}

.contact-modal__close svg {
    width: 38px;
    height: 38px;
}

.contact-modal__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
    color: var(--primary-color);
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form.is-hidden {
    display: none;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__field label {
     font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
}

.contact-form__field input,
.contact-form__field textarea {
    font: inherit;
    padding: 4px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 148, 86, 0.15);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__actions {
    display: flex;
    justify-content: center;
}

body.contact-modal-open {
    overflow: hidden;
    padding-right: var(--modal-scrollbar-compensation, 0px);
}

.mobile {
    display: none;
}


@media (max-width: 1024px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .functions.mobile {
        display: flex;
    }

    header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 900;
        justify-content: space-between;
        padding: 10px 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logoLink {
        max-width: 130px;
        max-height: 80px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .mobile-nav-close {
        display: inline-flex;
    }
    
    @supports (object-fit: cover) {
        .picture-wrapper.cover img {
            height: 220px;
            object-fit: cover;
            object-position: 50% 35%;
        }
    }

    section {
        margin: 30px auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .slick-dotted.slick-slider {
        margin-left:0px;
        margin-right:0px;
    }

    footer {
        margin-top:0px;
        padding: 30px 10px;
    }

    footer section .grid-2cols {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
    }

    footer section {
        margin-top: 0px;    
    }
    
    footer section .grid-2cols {
        align-items: center;
    }

    footer section .grid-2cols div {
        align-items: center;
    }

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

    h1 {
        font-size: 34px;
        line-height: 49px;
        margin-bottom: 20px;
    }

    h2, h2 b {
        font-size: 30px;
        line-height: 43px;
        margin-bottom: 20px;
    }

    .job-data.mobile {
        margin-top: 50px;
    }

    .benefitTitle span {
        font-size: 20px;
    }

    .contact-box {
        margin-left: -20px;
        margin-right: -20px;
    }

    #ueber-uns {
        padding: 30px 0px;
    }

}

@media (min-width: 1025px) {
    .mobile-nav {
        display: none;
    }

    .sticky-desktop-header {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    h2, h2 b {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .job .job-title {
        font-size: 18px;
        line-height: 28px;
    }
    .job-department-info {
        font-size: 16px;
        line-height: 26px;
    }
    .contact-modal {
        padding: 60px 10px 10px;
    }

    .contact-modal__dialog {
        padding: 32px 24px 36px;
        width: 80%;
    }

    .contact-modal__title {
        font-size: 26px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form {
        gap: 20px;
    }

    .map-modal {
        padding: 60px 10px 10px;
    }

    .map-modal__dialog {
        width: 80%;
    }

    .map-modal__close {
        top: -45px;
        right: -40px;
    }
}

@media (max-width: 360px) {
    h1, .job .job-title {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}
/* Traveco Styles */


@font-face {
    font-family: "Akkurat-Regular";
    src: url("../fonts/Akkurat/AkkuratLL-Regular.woff") format("woff"),
         url("../fonts/Akkurat/AkkuratLL-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Akkurat-Bold";
    src: url("../fonts/Akkurat/AkkuratLL-Bold.woff") format("woff"),
         url("../fonts/Akkurat/AkkuratLL-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

body.Traveco,
.Traveco div,
.Traveco strong,
.Traveco p,
.Traveco span,
.Traveco a,
.Traveco .functions > a,
.Traveco .button.apply,
.Traveco .job-data label,
.Traveco section ul li,
.Traveco .job-data label,
.Traveco .contact-box h3.secondary,
.Traveco .functions .share,
.Traveco .contact-form__field label {
    font-family: "Akkurat-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.Traveco strong, .Traveco h3, .Traveco h3 b, .Traveco .sticky-job-title {
    font-family: "Akkurat-Bold", sans-serif;
}

.Traveco h1 {
    font-family: "Akkurat-Regular", sans-serif;
    font-size: 38px;
    line-height: 49px;
}

.Traveco h2, .Traveco h2 b {
    font-family: "Akkurat-Regular", sans-serif;
}

.Traveco .job .job-title {
    font-size: 21px;
    line-height: 29px;
}

.Traveco section ul {
    margin-left: 0px;
}

.Traveco section ul li {
    list-style: disc;
}

.Traveco section ul li::before {
    display: none;
}

.Traveco .benefitTitle span {
    font-family: "Akkurat-Bold", sans-serif;
    font-size: 20px;
}   

/* Meliofeed AG Styles */
.meliofeed section ul li::before {
    border-top-color: #ef3340;
}

/* UFA AG Styles */
.ufa section ul li::before {
    border-top-color: #3255a4;
}

/* Rutishauser Styles */
@font-face {
    font-family: "GillSans-Light";
    src: url("../fonts/GillSans/GillSans-Light-08.woff") format("woff"),
         url("../fonts/GillSans/GillSans-Light-08.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "GillSans-SemiBold";
    src: url("../fonts/GillSans/GillSans-SemiBold-05.woff") format("woff"),
         url("../fonts/GillSans/GillSans-SemiBold-05.otf") format("opentype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

body.Rutishauser,
.Rutishauser div,
.Rutishauser strong,
.Rutishauser p,
.Rutishauser span,
.Rutishauser a,
.Rutishauser .functions > a,
.Rutishauser .button.apply,
.Rutishauser .job-data label,
.Rutishauser section ul li,
.Rutishauser .job-data label,
.Rutishauser .contact-box h3.secondary,
.Rutishauser .functions .share,
.Rutishauser .contact-form__field label {
    font-family: "GillSans-Light", sans-serif;
}

.Rutishauser strong,
.Rutishauser h1,
.Rutishauser h2, .Rutishauser h2 b, 
.Rutishauser h3, 
.Rutishauser h3 b, 
.Rutishauser .sticky-job-title, 
.Rutishauser .slogan,
.Rutishauser .benefitTitle span {
    font-family: "GillSans-SemiBold", sans-serif;
}