:root {
    /* Colors */
    --primary: #949073;
    --secondary: #007589;
    --secondaryHover: #00656f;
    --textColor: #504E4A;
    --textColorLight: #7a7c80;
    --violet: #7061a4;
    --sectionBg: #9590730f;
    --containerWidth: 1414px;
    --smallSidePadding: 24px;
    --standardSidePadding: 32px;
    --sectionYPadding: 58px;
    /* FontSizes */
    --textBaseSize: 1.25rem; /* 20px */
    --textBaseLineHeight: 2rem;  /* 32px */
    --textSmallSize: 1rem;
    --h1FontSize: 2.5rem;
    --h1LineHeight: 3.5rem;
    --ctaTitleFontSize: 2.5rem;
    --ctaTitleLineHeight: 3.5rem;
    /* Header & Logo */
    --headerHeight: 166px;
    --logoWidth: 7.5rem;
    --logoHeight: 3.1875rem;
}

/* Fonts */
@font-face {
    font-display: swap;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/roboto-v30-latin-300.woff2") format("woff2")
}
@font-face {
    font-display: swap;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2")
}
@font-face {
    font-display: swap;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/roboto-v30-latin-500.woff2") format("woff2")
}

* {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

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

body {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: var(--textBaseSize);
    line-height: var(--textBaseLineHeight);
    font-weight: 300;
    color: #504E4A;
    margin: 0;
}

body.modalOpenScroll {
    overflow: hidden;
}

* {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

h2, h2 b {
    font-size: var(--h1FontSize);
    line-height: var(--h1LineHeight);
    color: var(--secondary);
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
}

h3, h3 b {
    font-size: var(--h1FontSize);
    line-height: var(--h1LineHeight);
    color: var(--secondary);
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

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

a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

p, span, .text-base {
    font-size: var(--textBaseSize);
    line-height: var(--textBaseLineHeight);
}

.text-sm {
    font-size: var(--textSmallSize);
    line-height: 144%;
}

.leading-base {
    line-height: var(--textBaseLineHeight);
}

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

ul li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.singleButtonCentered {
    display: flex;
    justify-content: center;
}

.button, .button:visited {
    text-decoration: none;
    display: inline-flex;
    color: #ffffff;
    background-color: var(--primary);
    border-radius: 16px;
    font-size: var(--textBaseSize);
    line-height: 36px;
    box-shadow: 3px 3px 9px #00000029;
    padding: 6px 2rem;
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    outline: 0;
    outline-offset: 2px;
    border: none;
}

.button span {
    font-weight: 400;
}

/* Hover state */
.button:hover {
    background-color: #F5F5F5;
    color: var(--primary);
    text-decoration: none;
}

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

/* Header & Logo */
header {
    padding: 1.25rem var(--smallSidePadding);
    width: 100%;
    max-width: calc(var(--containerWidth) + 2*var(--smallSidePadding));
    margin: 0 auto;
}

header .logoHolder a {
    display: inline-flex;
}

header .logoHolder a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    border-radius: 8px;
}

@keyframes dash {
    from {
        stroke-dasharray: 400;
        stroke-dashoffset: 400
    }

    to {
        stroke-dashoffset: 0
    }
}

.logoHolder {
    display: flex;
}

.logoHolder svg.animateLogo .st1,
.logoHolder svg.animateLogo .st2 {
    animation: dash 1.5s linear forwards;
}

header .logoHolder svg {
    width: var(--logoWidth);
    height: var(--logoHeight);
    transition: all 200ms ease;
}

.logoHolder svg * {
    pointer-events: none;
}

header #wortmarke .st0{fill:#86856E;}
header #bildmarke .st1{fill:none;stroke:#86856E;stroke-width:5.4231;stroke-linecap:round;stroke-miterlimit:10;}
header #bildmarke .st2{fill:none;stroke:#007C88;stroke-width:5.4231;stroke-linecap:round;stroke-miterlimit:10;}

/* Hero */
#hero {
    width: 100%;
    max-width: var(--containerWidth);
    margin: 0 auto;
}

#hero img {
    display: flex;
    width: 100%;
    max-width: 1765px;
}

/* Page Title */
#pageTitle {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: calc(1064px + 2*var(--standardSidePadding));
    padding-left: var(--standardSidePadding);
    padding-right: var(--standardSidePadding);
}

#pageTitle .pageTitleInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: var(--sectionYPadding) 0;
    border-radius: 8px;
}

h1, #pageTitle span {
    font-weight: 300;
    font-size: var(--h1FontSize);
    line-height: var(--h1LineHeight);
    color: var(--secondary);
    margin: 0;
}

#pageTitle span {
    display: block;
    color: var(--primary);
}

/* Content */
.pageInner {
    margin: 0 auto;
    max-width: calc(1064px + 2*var(--standardSidePadding));
    padding-right: var(--standardSidePadding);
    padding-left: var(--standardSidePadding);
}

/* Tasks and Skills */
#tasks {
    background: var(--sectionBg);
    padding-top: var(--sectionYPadding);
    padding-bottom: var(--sectionYPadding);
}

#skills {
    padding-top: var(--sectionYPadding);
    padding-bottom: var(--sectionYPadding);
}

/* Benefits */
#benefitsArea {
    background: var(--sectionBg);
    padding-top: var(--sectionYPadding);
    padding-bottom: calc(var(--sectionYPadding) - 20px);
}

#benefitsArea h2, #benefitsArea h2 b {
    margin-bottom: 0;
}

/* Swiper container spacing */
.swiperContainer {
    position: relative;
    left: -10px;
    width: calc(100% + 10px);
}

.swiper {
    padding: 20px 10px;
}

/* Benefit cards */
.benefit {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 3px 3px 9px #00000029;
    height: 100%;
    min-height: 190px;
}

/* Icon */
.benefitIcon {
    display: flex;
    width: 100%;
    max-width: 80px;
    height: auto;
    max-height: 80px;
}

.benefitIcon img.icon {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.benefitTitle {
    display: block;
    margin-top: 20px;
}

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

/* Title text */
.benefitTitle span {
    font-weight: 400;
    color: var(--textColorLight);
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
    width: 36px;
    height: 36px;
    top: calc(50% + 24px);
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.1s ease-in-out;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 36px;
    height: 36px;
}

.swiper-button-prev {
    left: -80px;
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.swiper-button-next {
    right: -80px;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
}

@media (max-width: 1280px) {
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(100% + 50px);
    }
    .swiper-button-next {
        right: 0;
    }
    .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(100% + 42px);
    }
}

/* Pagination (if you use dots) */
.custom-swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.custom-swiper-pagination .swiper-pagination-bullet {
    background: #bfbfbf;
    opacity: 1;
    height: 14px;
    width: 14px;
    margin: 0 6px !important;
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

@media screen and (max-width:480px) {
    .custom-swiper-pagination {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/*
** Kontakt
 */
#kontakt {
    padding-top: var(--sectionYPadding);
    padding-bottom: var(--sectionYPadding);
}

#kontakt .pageInner {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}

#kontakt .pageInner > div {
    border-radius: 16px;
    padding: 40px 40px 50px;
    box-shadow: 3px 3px 9px #00000029;
}

.contact {
    color: var(--textColorLight);
}

#kontakt .contact a, #map a {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    border-radius: 10px;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

#map a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

#kontakt .contact a::after,
#kontakt .contact button::after,
#map a::after {
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
}

#kontakt .contact a:hover::after,
#kontakt .contact button:hover::after {
    content: "";
    height: 2px;
    background: var(--secondaryHover);
    width: 100%;
    bottom: -5px;
    opacity: 1;
}

#kontakt .contact a span {
    position: relative;
    top: 1px;
    line-height: 1;
}

.contactName {
    line-height: 157%;
}

.contactAdditional {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.contactAdditional button, .contactAdditional a, .contactAdditional a span,
.contactAdditional button:visited, .contactAdditional a:visited, #map a, #map a:visited {
    position: relative;
    background: none;
    border: none;
    border-radius: 10px;
    padding: 0;
    text-decoration: none;
    color: var(--secondary);
    font-size: var(--textBaseSize);
    display: inline-flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    line-height: 24px;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

#map a, #map a:visited {
    line-height: var(--textBaseLineHeight);
}

.contactAdditional button:focus-visible, .contactAdditional a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

#kontakt .contact a:focus-visible, #map a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

#map a, #map a:visited {
    gap: 12px;
}

.contactAdditional button:hover, .contactAdditional a:hover , .contactAdditional a:hover span, #map a:hover {
    color: var(--secondaryHover);
}

.contactAdditional button svg, .contactAdditional a svg, #map a svg {
    flex-shrink: 0;
}

#map a svg {
    position: relative;
    top: 3px;
}

/*
** Kontaktformular
 */
/*  Contact form */
.contactFormConfirmation,
.grecaptcha-badge {
    display: none;
}

.formWrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    position: relative;
}

.formTitleContainer {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-bottom: 28px;
    max-width: calc(100% - 64px);
}

.formTitleContainer svg {
    flex-shrink: 0;
}

/* Floating labels */
.floating-label {
    position: absolute;
    top: 0.85rem;
    left: 14px;
    pointer-events: none;
    transition: transform 0.2s ease-out, top 0.2s ease-out;
    transform-origin: 0 0;
    padding: 0 0.5rem;
    font-weight: 400 !important;
    font-size: var(--textBaseSize) !important;
    color: var(--textColor) !important;
    margin: 0 !important;
    background: white;
}


input:not(:placeholder-shown) + .floating-label,
input:focus + .floating-label,
textarea:not(:placeholder-shown) + .floating-label,
textarea:focus + .floating-label,
input:not(:placeholder-shown) + ul + .floating-label,
input:focus + ul + .floating-label,
textarea:not(:placeholder-shown) + ul + .floating-label,
textarea:focus + ul + .floating-label {
    transform: translateY(-34%) scale(0.8);
    top: 0;
    left: 16px;
    background-color: #FFFFFF;
    padding: 0 0.5rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    font-family: Roboto, Arial, sans-serif;
    padding: 18px 21px 14px;
    font-size: var(--textBaseSize);
    height: 58px;
    line-height: 155%;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    color: var(--textColor);
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 2px 3px 9px #00000033;
    border-radius: 8px;
    outline: none;
}

form textarea {
    height: 130px;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 2px 3px 9px #00000033;
    color: var(--textColor);
}

form textarea {
    min-height: 72px;
    resize: vertical;
    vertical-align: top;
}

.parsley-errors-list {
    list-style: none;
    margin: 0px 0 0 0;
    padding: 0;
}

.parsley-errors-list li::before {
    display: none;
}

.parsley-errors-list li {
    font-size: calc(var(--textSmallSize) - 0.2rem);
    line-height: 28px;
    list-style-type: none;
    padding: 0 26px;
    margin: 0;
    color: #db2828;
}

/* Application CTA */
#applyCta {
    background: var(--sectionBg);
    padding-top: var(--sectionYPadding);
    padding-bottom: calc(var(--sectionYPadding) - 10px);
}

.applyButtonContainer {
    position: relative;
}

.ctaTitle {
    font-family: "PT Serif", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    font-size: var(--ctaTitleFontSize);
    line-height: var(--ctaTitleLineHeight);
    text-align: center;
    margin-bottom: 122px;
}

#apply-button-sticky {
    position: fixed;
    left: 50%;
    bottom: 0;
    margin-bottom: 30px;
    transform: translate(-50%, 0);
    padding: 8px 1.6rem;
    min-width: 220px;
    max-width: 410px;
    z-index: 10000;
    transition: all 0.2s ease;
    will-change: transform;
    background: var(--violet);
    color: #FFFFFF;
}

#apply-button-sticky:hover, #apply-button-sticky.bottomStick:hover {
    background: #FFFFFF;
    color: var(--violet);
    transform: translate(-50%, 0) scale(1.075);
}

#apply-button-sticky:focus-visible {
    outline-color: var(--violet);
}

#apply-button-sticky.bottomStick {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 0);
}

/* Share and Links */
#shareAndLinks {
    padding-top: var(--sectionYPadding);
    padding-bottom: var(--sectionYPadding);
    width: 100%;
}

#shareAndLinks .pageInner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 44px;
    align-items: center;
}

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

#shareUsItemWrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 18px;
    align-items: center;
}

#shareUsItemWrapper a {
    display: flex;
}

.sharePrint {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
}

.sharePrint > span {
    color: var(--primary);
    font-weight: 500;
}

.print, .share {
    display: flex;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.print:hover, .share:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.print:focus-visible, .share:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.shareButtonContainer {
    position: relative;
}

.shareIcons {
    position: absolute;
    background-color:white;
    align-items: center;
    justify-content: space-between;
    top: -60px;
    padding:7px 15px;
    display: none;
    gap:10px;
    border-radius: 20px;
    box-shadow: 3px 3px 9px #00000029;
    left: -108px;
}

.shareIcons a {
    display: flex;
}

.shareIcons.active {
    display: flex;
}

a.shareIcon, a.shareIcon:visited, #shareUrlEmail, #shareUrlEmail:visited {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.printOnly, .sr-only {
    display: none;
}

/* Modal Windows */
dialog {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease-out, transform 0.2s 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.1);
    overflow: hidden;
    backdrop-filter: blur(2px);
}

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

dialog::backdrop {
    background-color: rgb(0 0 0 / 0%);
    transition: background-color 0.2s 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 .2s ease-out;
}

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

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    padding: var(--standardSidePadding) var(--standardSidePadding) 48px;
    border-radius: 16px;
    width: calc(100% - 2*var(--standardSidePadding));
    max-width: 684px;
    box-shadow: 3px 3px 9px #00000029;
    z-index: 220;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (max-width:480px) {
    .modal-content {
        width: 100%;
        border-radius: 0;
    }
}

.close-button, .close-button:active, .close-button:visited {
    color: var(--secondary);
    position: absolute;
    top: var(--standardSidePadding);
    right: var(--standardSidePadding);
    cursor: pointer;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    border: none;
    outline: 0;
    background: transparent;
    padding: 0;
}

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

.close-button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Responsive */
@media screen and (max-width:767px) {
    :root {
        /* Header & Logo */
        --logoWidth: 6.25rem;
        --logoHeight: 2.6875rem;
        /* FontSizes */
        --textBaseSize: 1.125rem;
        --textBaseLineHeight: 1.675rem;
        --textSmallSize: 0.9rem;
        --h1FontSize: 2rem;
        --h1LineHeight: 2.6rem;
        --ctaTitleFontSize: 2rem;
        --ctaTitleLineHeight: 6rem;
    }
    form input[type="text"], form input[type="email"], form textarea {
        height: 52px;
    }
    form textarea {
        height: 130px;
    }
    .benefit {
        min-height: 160px;
        padding: 20px 20px 10px;
    }
    .benefitIcon {
        max-width: 62px;
        max-height: 62px;
    }
    .benefitTitle {
        margin-top: 10px;
    }
    .benefitTitle span, .benefitTitle {
        display: flex;
        align-items: center ;
        min-height: 58px;
        line-height: 20px;
    }
    .button, .button:visited {
        line-height: var(--textBaseLineHeight);
    }
}

@media screen and (max-width:480px) {
    :root {
        --smallSidePadding: 16px;
        --standardSidePadding: 32px;
        --sectionYPadding: 32px;
        /* FontSizes */
        --textBaseSize: 1rem;
        --textBaseLineHeight: 1.55rem;
        --textSmallSize: 0.85rem;
        --h1FontSize: 1.4rem;
        --h1LineHeight: 2rem;
        --ctaTitleFontSize: 1.4rem;
        --ctaTitleLineHeight: 2rem;
    }
    h1, h2, h2 b, h3, h3 b, h4, h5 {
        hyphens: auto;
    }
    .benefit {
        min-height: 124px;
        padding: 12px;
    }
    .benefitIcon {
        max-width: 52px;
        max-height: 52px;
    }
    .benefitTitle span, .benefitTitle {
        font-size: 1rem;
        line-height: 20px;
        min-height: 48px;
    }
    #kontakt .pageInner > div {
        padding: 26px 16px;
    }
    .contactAdditional button svg, .contactAdditional a svg, #map a svg {
        width: 20px;
        height: 20px;
    }
    .contactAdditional button, .contactAdditional a, .contactAdditional a span, .contactAdditional button:visited, .contactAdditional a:visited {
        line-height: 24px;
    }
    #pageTitle .pageTitleInner {
        min-height: auto;
        padding: var(--sectionYPadding) 0;
    }
    .ctaTitle {
        margin-bottom: 97px;
    }
    .close-button {
        height: 30px;
        width: 30px;
    }
}

@media screen and (min-width: 768px) {
    :root {
        /* Header & Logo */
        --logoWidth: 7.5rem;
        --logoHeight: 3.1875rem;
    }
    header {
        padding: 3rem var(--smallSidePadding) 1.75rem;
    }
}

@media only screen and (min-width: 1024px) {
    #kontakt .pageInner {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width:1024px) and (max-width: 1046px) {
    .benefit {
        min-height: 214px;
    }
}

@media only screen and (min-width: 1280px) {
    #pageTitle {
        margin-top: -100px;
        margin-bottom: 85px;
        width: 100%;
        max-width: calc(1228px + 2 * var(--standardSidePadding));
        padding-left: var(--standardSidePadding);
        padding-right: var(--standardSidePadding);
    }
    #pageTitle .pageTitleInner {
        background-color: #FFFFFF;
        box-shadow: 0 3px 6px #00000029;
        width: 100%;
        max-width: 1048px;
        padding: var(--standardSidePadding) 80px;
        min-height: 200px;
    }
}

@media only screen and (min-width: 1438px) {
    :root {
        /* Header & Logo */
        --logoWidth: 11.375rem;
        --logoHeight: 5.5625rem;
    }
}