/*
==================
= PAGE STRUCTURE =
==================
*/

/* Basic Page Structure (Container and Frame Sizes, standard-Padding etc...)

/*PAGE-SEGMENTS
**************************************************************/

/*contains the whole Page */
.container {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 81px;
}
@media screen and (min-width: 768px) {
    .container {
        padding-top: 128px;
    }
}
.content {
    position: relative;
    flex-grow: 1;
}
.content-inner {
    position: relative;
}
section {
    position: relative;
    margin-bottom: 80px;
    background-color: var(--white);
}

@media screen and (min-width: 768px) {
    section {
        margin-bottom: 160px;
    }
}

.padded {
    padding-left: var(--grid-gap);
    padding-right: var(--grid-gap);
}
/*frame, contains Content-Modules, no padding! Values come from the settings.css file*/
.frame,
[class*=" frame-"],
[class^="frame-"] {
    position: relative;
    width: 100%;
    max-width: var(--grid-width);
    margin: 0 auto;
}

.frame-2,
.width-2 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 2 - var(--grid-gap));
}

.frame-3,
.width-3 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 3 - var(--grid-gap));
}

.frame-4,
.width-4 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 4 - var(--grid-gap));
}
.frame-5,
.width-5 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 5 - var(--grid-gap));
}
.frame-6,
.width-6 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 6 - var(--grid-gap));
}
.frame-7,
.width-7 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 7 - var(--grid-gap));
}
.frame-8,
.width-8 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 8 - var(--grid-gap));
}
.frame-9,
.width-9 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 9 - var(--grid-gap));
}
.frame-10,
.width-10 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 10 - var(--grid-gap));
}
.frame-11,
.width-11 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 11 - var(--grid-gap));
}
.frame-12,
.width-12 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 12 - var(--grid-gap));
}
.frame-13,
.width-13 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 13 - var(--grid-gap));
}
.frame-14,
.width-14 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 14 - var(--grid-gap));
}
.frame-15,
.width-15 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 15 - var(--grid-gap));
}
.frame-16,
.width-16 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 16 - var(--grid-gap));
}
.frame-17,
.width-17 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 17 - var(--grid-gap));
}
.frame-18,
.width-18 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 18 - var(--grid-gap));
}
.frame-19,
.width-19 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 19 - var(--grid-gap));
}
.frame-20,
.width-20 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 20 - var(--grid-gap));
}

/* Utility */

.sans {
    font-family: var(--sans);
}

.serif {
    font-family: var(--serif);
}

.mono {
    font-family: courier, monospace;
}

.fancy {
    font-family: "Didot", "Times New Roman", Georgia, Times, serif;
    font-feature-settings: "liga" 1;
}

.circle {
    border-radius: 50%;
}

.mask-circle {
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.small {
    font-size: 0.75em;
}

/*alignment*/

.align-center {
    text-align: center;
}

.align-justify {
    text-align: justify;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

/*
 Main Content Styles 
*/

/* Home Heading Logic */
.home section {
    overflow: hidden;
}
.home .section-scrollover,
.home .section-shoutbox {
    overflow: inherit;
}
.home .section-largeimg .section-hl,
.home .section-mag .section-hl {
    text-align: right;
    transform: translateX(15px);
}
.home .layout-magcarousel .section-hl {
    text-align: right;
    transform: translateX(35px);
}
.home .section-scrollover h1 {
    transform: translateX(-15px);
}
.home .section-largeimg .section-hl {
    transform: translateX(15px);
}
.home .section-cases .section-hl {
    transform: translateX(-35px);
}
#largeimg-block_1b431acd109f9ea06ee510d02523d3a6 .section-hl {
    text-align: left;
    transform: translateX(-15px);
}
.home .layout-cases .section-hl {
    transform: translateX(-15px);
}
@media screen and (min-width: 768px) {
    #largeimg-block_1b431acd109f9ea06ee510d02523d3a6 .section-hl,
    .home .section-units .section-hl,
    .home .layout-cases .section-hl,
    .home .section-mag .section-hl,
    .home .section-scrollover h1,
    .home .section-largeimg .section-hl,
    .home .section-cases .section-hl,
    .home .layout-magcarousel .section-hl {
        transform: translateX(0);
    }
}

/* Contact Graphic */
.section-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
    .home .section-hero,
    .section-hero {
        overflow: visible;
        margin-bottom: 30px;
    }
}
.layout-hero {
    position: relative;
    margin-bottom: 100px;
    min-height: 400px;
}
.layout-hero video {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
@media screen and (min-width: 768px) {
    .layout-hero {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 1300px) {
    .layout-hero {
        margin-bottom: 50px;
    }
}

.video-audio-toggle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: block;
    width: 45px;
    height: 45px;
}
.video-audio-toggle-mute,
.video-audio-toggle-unmute {
    transition: opacity 0.2s;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0; /* ggf. Button-Position anpassen */
}

.video-audio-toggle.is-muted .video-audio-toggle-unmute {
    opacity: 1;
    pointer-events: auto;
    position: static;
}

.video-audio-toggle:not(.is-muted) .video-audio-toggle-mute {
    opacity: 1;
    pointer-events: auto;
    position: static;
}

.hero-sub {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    .hero-sub {
        margin-bottom: 120px;
    }
}
.contact-grp {
    font-family: var(--sans);
    display: block;
    position: absolute;
    right: -29px;
    bottom: -100px;
    width: 165px;
    z-index: 1;
}
.contact-grp-dt {
    display: none;
    z-index: 1;
}
@media screen and (min-width: 1300px) {
    .contact-grp-m {
        display: none;
    }
    .contact-grp-dt {
        display: block;
        position: absolute;
        right: 0;
        top: -160px;
        width: 320px;
        height: 320px;
    }
}
.contact-phoneimg {
    pointer-events: none;
    position: absolute;
    top: -37px;
    right: -30px;
    transform: rotate(-49deg);
    width: 215px;
    max-width: none;
    transition: all 0.2s ease-in-out;
}
.contact-grp-dt .contact-phoneimg {
    width: 390px;
    transform: rotate(0deg);
    top: -120px;
    left: -67px;
}
@media (hover: hover) {
    .contact-grp:hover .contact-phoneimg {
        transform: rotate(68deg);
        top: -89px;
        right: -25px;
    }
    .contact-grp-dt:hover .contact-phoneimg {
        transform: rotate(68deg);
        top: -163px;
        left: -50px;
    }
}

.contact-txt {
    position: absolute;
    font-weight: 900;
    font-size: 15px;
    line-height: 33px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    top: 55%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--white);
}

@media screen and (min-width: 1300px) {
    .contact-txt {
        font-size: 32px;
        top: 200px;
    }
}
/* scrollover */
.scrollover-container {
    position: relative;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .scrollover-container {
        margin-bottom: 50px;
    }
}
.scrollover-item {
    width: 100%;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}
.scrollover-item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}

.scrollover-img-portrait {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
.scrollover-img-landscape {
    opacity: 1;
    position: static;
}

/* Wenn Container "hoch", z.B. aspect-ratio < 1 */
@media (max-aspect-ratio: 4/5) {
    .scrollover-img-portrait {
        opacity: 1;
        position: static;
        pointer-events: auto;
    }
    .scrollover-img-landscape {
        opacity: 0;
        position: absolute;
        pointer-events: none;
    }
}

/* .scrollover-sub {
    margin-bottom: 160px;
} */
/* Units */

.units-media {
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .units-media {
        margin-bottom: 50px;
    }
}
.cases-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.case-thumb-item {
    position: relative;
    flex: 0 0 calc(100%);
}
@media screen and (min-width: 768px) {
    .cases-thumbs {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .case-thumb-item {
        flex: 0 0 calc(50% - 10px);
    }
}

.thumb-img-hover {
    display: block;
    position: absolute;
    top: 0;
    opacity: 1;
}
.cases-thumbs .thumb-img {
    position: relative;
    display: block;
    transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
    .team-item:hover .thumb-img {
        transition: opacity 0.095s ease-out;
    }

    .case-thumb-item:hover .thumb-img {
        opacity: 0;
    }
}
.team-item-img img {
    display: block;
}

.team-item-img {
    aspect-ratio: 1 / 1;
    background: var(--accent); /* rot */
}
.team-item:nth-child(even) .team-item-img {
    background: var(--cfblue); /* blau */
}

@media screen and (min-width: 768px) {
    .team-item-img,
    .team-item:nth-child(even) .team-item-img {
        /* erst mal zurücksetzen */
        background: none;
    }
    .team-item:nth-child(4n + 1) .team-item-img,
    .team-item:nth-child(4n + 4) .team-item-img {
        background: var(--cfblue); /* blau */
    }
    .team-item:nth-child(4n + 2) .team-item-img,
    .team-item:nth-child(4n + 3) .team-item-img {
        background: var(--accent); /* rot */
    }
}

/* cases */
.cases-thumbs {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .cases-thumbs {
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 768px) {
    .layout-cases .cta-container {
        text-align: center;
    }
}
.quoteimg {
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .quoteimg {
        margin-bottom: 0;
    }
}
/* Mag Slide */

/* Adjusted container layout */
.layout-magcarousel,
.layout-casecarousel {
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .layout-magcarousel,
    .layout-casecarousel {
        margin-bottom: 50px;
    }
}
.layout-magcarousel .section-hl,
.layout-casecarousel .section-hl {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .layout-magcarousel .section-hl,
    .layout-casecarousel .section-hl {
        margin-bottom: 50px;
    }
}

.cta-container {
    display: flex;
    justify-content: center;
}

.home .cta-container {
    justify-content: flex-start;
}
/* Swiper container */
.magcarousel,
.casecarousel {
    width: calc(100% - 40px);
    overflow: hidden;
}
@media screen and (min-width: 1275px) {
    .magcarousel,
    .casecarousel {
        width: 100%;
    }
}
.magcarousel-item {
    text-decoration: none;
}
/* Swiper wrapper */
.magcarousel .swiper-wrapper,
.casecarousel .swiper-wrapper {
    display: flex;
}

/* Each slide */
.casecarousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 58 / 32;
}
.magcarousel .swiper-slide {
    aspect-ratio: 58 / 32;
}

/* Slide content */
.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image behavior */
.slide-content img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.slider-nav {
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: calc(100% + 40px);
}
@media screen and (min-width: 1275px) {
    .slider-nav {
        width: calc(100% + 100px);
        left: -50px;
    }
}
@media screen and (min-width: 1400px) {
    .slider-nav {
        width: calc(100% + 200px);
        left: -100px;
    }
}
.slider-nav button:after {
    display: none;
}
.swiper-button svg {
    width: 24px;
    height: 38px;
    display: block;
}
.section-magcarousel h2,
.section-cases h2 {
    margin-bottom: 30px;
}
.section-cases {
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .section-cases {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 768px) {
    .section-magcarousel h2,
    .section-cases h2 {
        margin-bottom: 50px;
    }
}
.casecarousel-slide-content {
    display: flex;
    justify-content: flex-start;
    align-items: unset;
    flex-direction: row;
    position: relative;
    width: 100%;
    /* height: 240px; */
    max-width: 580px;
    background-color: var(--black);
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}
.magcarousel-slide-content {
    position: relative;
    width: 100%;
    max-width: 580px;
    background-color: var(--black);
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.magcarousel-slider-inner h4 {
    font-size: 15px;
    line-height: 15px;
    text-transform: none;
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .magcarousel-slider-inner h4 {
        font-size: 20px;
        line-height: 20px;
    }
}
.casecarousel-slide-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}
.magcarousel-slide-img {
    width: 100%;
    aspect-ratio: 580 / 226;
}

.magcarousel-slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.magcarousel-slider-caption {
    width: 100%;
    aspect-ratio: 58 / 9;
    padding: 0 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (min-width: 450px) {
    .magcarousel-slider-caption {
        aspect-ratio: 58 / 10;
    }
}

.magcarousel-slider-caption p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
}
@media screen and (min-width: 768px) {
    .magcarousel-slider-caption p {
        font-size: 20px;
        line-height: 27px;
    }
}

/* jobs */

.jobs-img,
.largeimg-img,
.midimg-img {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .midimg-caption .col2 {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}
@media screen and (min-width: 768px) {
    .jobs-img,
    .largeimg-img,
    .midimg-img {
        margin-bottom: 50px;
    }
}
.midimg-caption blockquote {
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em;
}

@media screen and (min-width: 768px) {
    .midimg-caption {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .midimg-caption blockquote {
        font-size: 30px;
        line-height: 35px;
        letter-spacing: 0;
        flex: 1 1 auto;
    }
    .midimg-caption .cta {
        flex: 0 0 auto;
    }
}
/* Page-hero */

.section-pagehero {
    overflow: hidden;
    margin-bottom: 80px;
}
.pagehero {
    height: 300px;
    min-height: 300px;
    max-height: 500px;
}
@media screen and (min-width: 768px) {
    .pagehero {
        height: 500px;
        min-height: 300px;
        max-height: 500px;
    }
}
.pagehero img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

/* Pagetxt */
.section-pagetxt {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .section-pagetxt {
        margin-bottom: 50px;
    }
}
.pagetxt p,
.pagetxt h1,
.pagetxt h2,
.pagetxt h3,
.pagetxt h4,
.pagetxt h5,
.pagetxt h6,
.pagetxt blockquote,
.pagetxt a,
.pagetxt ul {
    max-width: var(--w8);
}
.pagetxt h1 {
    max-width: var(--w8);
}
.pagetxt p > em {
    background-color: #e92451;
    color: var(--white);
    padding: 0.1em 0.2em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; /* für Safari */
    display: inline;
    font-style: normal;
    font-weight: 700;
}
/* Team */
.section-teamgrp {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    .section-teamgrp {
        margin-bottom: 160px;
    }
}
@media screen and (min-width: 768px) {
    .teamgrp {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0 20px;
        flex-wrap: wrap;
    }
}
.team-item {
    position: relative;
    width: 246px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 64px;
}

@media screen and (min-width: 768px) {
    .team-item {
        text-align: left;
        margin-bottom: 50px;
        flex: 0 0 calc(50% - 10px);
        margin-left: 0;
        margin-right: 0;
    }
}

.team-item-img {
    position: relative;
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .team-item-img {
        margin-bottom: 20px;
    }
}
.team-item-img img {
    display: block;
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.thumb-img,
.thumb-img-hover {
    transition: opacity 0.095s ease-in-out;
}
.thumb-img-hover {
    position: absolute;
    top: 0;
    opacity: 1;
}

.team-thumb-img {
    transition: opacity 0.28s ease-in-out;
}
.team-thumb-img-hover {
    transition: opacity 0.28s ease-in-out;
    opacity: 0 !important;
}
@media (hover: hover) {
    .team-item:hover .team-thumb-img-hover {
        opacity: 1 !important;
    }
    .team-item:hover .team-thumb-img {
        opacity: 0;
    }
}
@media (hover: none) {
    .team-item.in-view .team-thumb-img-hover {
        opacity: 1 !important;
    }
    .team-item.in-view .team-thumb-img {
        opacity: 0;
    }
}
/* Units */
.section-teaserlarge {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    .section-teaserlarge {
        margin-bottom: 120px;
    }
}
.teaserlarge-img {
    margin-bottom: 30px;
}

.teaserlarge-item {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    .teaserlarge-item {
        margin-bottom: 120px;
    }
    .teaserlarge-item .cta {
        margin-top: 30px;
    }
}

.teaserlarge-txt {
    padding-left: 24px;
    padding-right: 24px;
}

@media screen and (min-width: 970px) {
    .teaserlarge-txt {
        padding-left: 0;
        padding-right: 0;
    }
}
/* Shoutbox */
.section-shoutbox {
    z-index: 1;
    padding-bottom: 0;
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .section-shoutbox {
        min-height: 180px;
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 1400px) {
    .section-shoutbox {
        height: 520px;
    }
}
.shoutbox {
    display: flex;
    justify-content: space-between;
    max-width: 344px;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .shoutbox {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 24px;
        max-width: 684px;
        margin-top: -77px;
    }
}
@media screen and (min-width: 1400px) {
    .shoutbox {
        margin-top: -134px;
    }
}
.shoutbox-item {
    height: 77px;
    max-height: 77px;
    max-width: 174px;
}
@media screen and (min-width: 1400px) {
    .shoutbox-item {
        height: 134px;
        max-height: 134px;
        max-width: 320px;
        flex: 0 0 320px;
    }
}
.shoutbox-item img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}

.shouter {
    display: block;
    position: absolute;
    top: 0;
    right: 20px;
    max-width: 146px;
}

@media screen and (min-width: 1100px) {
    .shouter {
        top: auto;
        max-width: 263px;
        right: 50px;
    }
}
@media screen and (min-width: 1400px) {
    .shouter {
        position: absolute;
        max-width: 435px;
        top: 0;
    }
}
/* Pagetxt with img */

.section-pagetxtsplit {
    margin-bottom: 80px;
}

.roof {
    font-family: var(--sans);
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .roof {
        font-size: 36px;
        line-height: 46px;
    }
}

.section-pagetxtsplit .cta {
    margin-top: 18px;
}

@media screen and (min-width: 768px) {
    .section-pagetxtsplit .cta {
        margin-top: 38px;
    }
}
.splitimg {
    margin-top: 50px;
    margin-bottom: 50px;
}
/* .splitimg-container {
    aspect-ratio: 118 / 60;
    overflow: hidden;
} */
.splitimg-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.splitimg-container img {
    width: 100%;
    max-height: calc(100vw - 40px);
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
@media screen and (min-width: 1100px) {
    .splitimg-container img {
        width: 100%;
        max-height: 1060px;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
    }
}
.splitimg-caption {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 14px;
    padding-top: 18px;
}
@media screen and (min-width: 768px) {
    .splitimg {
        margin-top: 80px;
    }
    .splitimg-caption {
        padding-top: 20px;
        font-size: 17px;
        line-height: 21px;
    }
}
.splitimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
/* Quote */
.section-quote {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .section-quote {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}
.quote blockquote,
.number blockquote {
    width: 100%;
    max-width: 560px;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 23px;
    line-height: 29px;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
    .quote blockquote,
    .number blockquote {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .quote {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
}
.quote blockquote p {
    margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
    .quote blockquote p {
        margin-bottom: 15px;
    }
}
cite {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
}

@media screen and (min-width: 768px) {
    cite {
        font-size: 22px;
        line-height: 38px;
    }
}

/* Number */
.section-number {
    margin-top: 50px;
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .section-number {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}
.bignumber {
    font-family: var(--sans);
    font-weight: 900;
    font-size: 50px;
    line-height: 55px;
    letter-spacing: -0.03em;
}

@media screen and (min-width: 768px) {
    .bignumber {
        font-family: var(--sans);
        font-weight: 900;
        font-size: 72px;
        line-height: 72px;
        letter-spacing: -0.03em;
    }
}

.number-icn {
    margin-bottom: 15px;
    display: inline-block;
}

.number {
    padding-left: 25px;
    /* border-left: 4px solid var(--black); */
}

@media screen and (min-width: 768px) {
    .number {
        padding-left: 50px;
        padding-top: 0;
        padding-bottom: 0;
        /* border-left: 4px solid var(--black); */
    }
}
.number-dbl .number {
    position: relative;
    border-left: none;
    text-align: center;
    max-width: 262px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
}
.number-dbl .number:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    width: 100%;
    height: 4px;
    background-color: var(--black);
}
.number-dbl .number:last-child:after {
    display: none;
}
@media screen and (min-width: 768px) {
    .number-dbl {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: center;
    }
    .number-dbl .number {
        max-width: 410px;
        border-left: 4px solid var(--black);
        padding-left: 40px;
        padding-right: 40px;
        margin-left: 0;
        margin-right: 0;
    }
    .number-dbl .number:after {
        display: none;
    }
    .number-dbl .number:first-child {
        border-left: none;
    }
}

.number-trpl .number {
    position: relative;
    border-left: none;
    text-align: center;
    max-width: 262px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
}
.number-trpl .number:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    width: 100%;
    height: 4px;
    background-color: var(--black);
}
.number-trpl .number:last-child:after {
    display: none;
}
@media screen and (min-width: 1040px) {
    .number-trpl {
        display: flex;
        justify-content: flex-start;
        text-align: center;
    }
    .number-trpl .number {
        max-width: 410px;
        border-left: 4px solid var(--black);
        padding-left: 25px;
        padding-right: 25px;
        margin-left: 0;
        margin-right: 0;
    }
    .number-trpl .number:after {
        display: none;
    }
    .number-trpl .number:first-child {
        border-left: none;
    }
}
.layout-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    width: 100%;
    overflow: hidden;
}

.carousel .swiper-wrapper {
    display: flex;
}

.carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-content img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.filtergrp {
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .filtergrp {
        margin-bottom: 80px;
    }
}
.filtergrp .search {
    border: 4px solid var(--black);
    background-color: var(--white);
    font-family: var(--sans);
    font-weight: 900;
    font-size: 22px;
    line-height: 26px;
    width: 100%;
    padding-left: 8px;
    padding-top: 13px;
    padding-right: 15px;
    padding-bottom: 13px;
    background: var(--white);
}

@media screen and (min-width: 768px) {
    .filtergrp .search {
        padding-left: 20px;
        padding-top: 18px;
        padding-right: 20px;
        padding-bottom: 18px;
    }
}
.filtergrp .search::-webkit-input-placeholder {
    opacity: 1;
    color: var(--black);
}
.filtergrp .search::-moz-placeholder {
    opacity: 1;
    color: var(--black);
}
.filtergrp .search:-ms-input-placeholder {
    opacity: 1;
    color: var(--black);
}
.filtergrp .search::-ms-input-placeholder {
    opacity: 1;
    color: var(--black);
}
.filtergrp .search::placeholder {
    opacity: 1;
    color: var(--black);
}
.searchsubmit {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 19px;
    padding-bottom: 9px;
    padding-left: 15px;
    padding-right: 15px;
    width: 55px;
}

@media screen and (min-width: 768px) {
    .searchsubmit {
        width: 60px;
        right: 10px;
    }
}

/* Filter-Dropdown */

.filter-dropdown {
    width: 100%;
    border: 4px solid var(--black);
    background-color: var(--white);
    font-family: var(--sans);
    font-weight: 900;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -3%;
}
.filter-dropdown:not(:first-child) {
    border-top: none;
}
.filter-dropdown-toggle {
    width: 100%;
    padding-left: 8px;
    padding-top: 8px;
    padding-right: 15px;
    padding-bottom: 8px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 768px) {
    .filter-dropdown-toggle {
        padding-top: 16px;
        padding-bottom: 16px;

        padding-left: 20px;
        padding-right: 20px;
    }
}
.filter-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    transform: rotate(-90deg);
}

.filter-dropdown.open .filter-arrow {
    transform: rotate(-180deg);
}

.filter-dropdown-list {
    display: none;
    flex-direction: column;
    gap: 0;
}

.filter-dropdown.open .filter-dropdown-list {
    display: flex;
}

.filter-item {
    display: block;

    border-top: 4px solid #000;
    background: var(--white);
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.filter-item span {
    display: block;
    padding-left: 8px;
    padding-top: 16px;
    padding-right: 80px;
    padding-bottom: 16px;
}
.filter-item input {
    display: none;
}

/* Active state for selected filters */
.filter-item input:checked + span {
    background: var(--black);
    color: var(--white);
}

.filter-footer {
    border-top: 4px solid var(--black);
    display: flex;
    justify-content: flex-end;
}

.filter-submit {
    display: block;
    width: 50%;
    flex: 0 0 50%;
    margin-left: auto;
    margin-right: 0;
    padding-left: 8px;
    padding-top: 16px;
    padding-right: 80px;
    padding-bottom: 16px;
    text-align: right;

    background: var(--black);
    color: var(--white);
    border: none;
    transition: background 0.2s, color 0.2s;
}
@media (hover: hover) {
    .filter-submit:hover {
        background-color: var(--accent);
    }
}
.digimag-thumb-grp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .digimag-thumb-grp {
        margin-bottom: 50px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}

.layout-noentries {
    margin-left: auto;
    margin-right: auto;
}
.digimag-thumb {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    flex: 0 0 calc(100%);
    max-width: 700px;
    background-color: var(--accent);
    margin-left: auto;
    margin-right: auto;
}
.digimag-thumb[data-bg="black"],
.digimag-thumb[data-bg="black"] .digimag-thumb-caption,
.magcarousel-slide-content[data-bg="black"] {
    background-color: var(--black);
}
.digimag-thumb[data-bg="cfblue"],
.digimag-thumb[data-bg="cfblue"] .digimag-thumb-caption,
.magcarousel-slide-content[data-bg="cfblue"] {
    background-color: var(--cfblue);
}
.digimag-thumb[data-bg="accent"],
.digimag-thumb[data-bg="accent"] .digimag-thumb-caption,
.magcarousel-slide-content[data-bg="accent"] {
    background-color: var(--accent);
}
@media screen and (min-width: 900px) {
    .digimag-thumb {
        display: block;
        position: relative;
        aspect-ratio: 1 / 1;
        flex: 0 0 calc(50% - 10px);
        background-color: var(--accent);
        margin-left: 0;
        margin-right: 0;
    }
}
.digimag-thumb-img {
    display: block;
    aspect-ratio: 700 / 465;
}
.magthumb-img-hover {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.casecarousel-slide-img:hover .magthumb-img-hover {
    opacity: 1;
}

.magthumb-img-hover {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.digimag-thumb-caption {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100px;
    background-color: var(--accent);
    color: var(--white);
    padding-top: 20px;
    padding-bottom: 25px;
    padding-left: 26px;
    padding-right: 26px;
}
@media screen and (min-width: 1100px) {
    .digimag-thumb-caption {
        min-height: 176px;
        padding-top: 58px;
        padding-bottom: 42px;
        padding-left: 50px;
        padding-right: 50px;
    }
}
.digimag-thumb-caption h4 {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    text-transform: none;
}
@media screen and (min-width: 1100px) {
    .digimag-thumb-caption h4 {
        margin-bottom: 0;
    }
    .digimag-thumb-caption p {
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0;
    }
}
.elevator {
    display: block;
    width: 44px;
    height: 44px;
    aspect-ratio: 1/1;
    position: -webkit-sticky;
    position: sticky;
    bottom: 50px;
    left: calc(100% - 68px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 9;
}
@media screen and (min-width: 768px) {
    .elevator {
        left: calc(100% - 112px);
    }
}
.scrolled_a_bit .elevator {
    opacity: 1;
    pointer-events: all;
}

.boldlink-item {
    position: relative;
    display: block;
    color: var(--white);
    width: 100%;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 45px;
    background-color: var(--cfblue);
    color: var(--white);
    width: 100%;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
    text-decoration: none;
}

@media (hover: hover) {
    .boldlink-item:hover {
        color: var(--white);
        background-color: var(--accent);
    }
}

.boldlink-item:after {
    content: "";
    width: 22px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    right: 15px;
    background-image: url(../images/ui/accordion-dropper.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
    .boldlink-item:after {
        width: 24px;
        height: 38px;
    }
}

.styled-txt .boldlink-grp {
    margin-top: 50px;
    margin-left: 0;
}

/* Ansprechpartner */

.styled-txt .ansprechpartner-hl {
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .styled-txt .ansprechpartner-hl {
        margin-bottom: 50px;
    }
}

.ansprechpartner-img {
    margin-left: auto;
    margin-right: auto;
    width: 256px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
    .ansprechpartner-img {
        margin-bottom: 50px;
    }
}
.section-ansprechpartner h3 {
    text-transform: none;
}

/* Logocarousel */
.section-logocarousel {
    overflow: hidden;
    width: 100%;
    background: #fff;
}
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 43px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
    .marquee-wrapper {
        height: 127px;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-bottom: 32px;
    }
}
.marquee-content {
    display: flex;
    gap: 62px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    will-change: transform;
}
@media screen and (min-width: 768px) {
    .marquee-content {
        gap: 64px;
    }
}
.marquee-content li {
    padding-top: 9px;
    padding-bottom: 9px;
}

@media screen and (min-width: 768px) {
    .marquee-content li {
        padding-top: 26px;
        padding-bottom: 26px;
    }
}
.marquee-content li img {
    display: block;
    height: auto;
    max-height: 60px;
    max-width: 160px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .marquee-content li img {
        max-height: 90px;
        max-width: 238px;
    }
}

.cta-loadmore {
    margin-left: auto;
    margin-right: auto;
}
.unitlink-grp {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 25px;
}
@media screen and (min-width: 768px) {
    .unitlink-grp {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        padding-top: 50px;
    }
}
.cta-pill {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    border-radius: 13px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 5.5px;
    padding-bottom: 4.5px;
    text-transform: none;
}
@media screen and (min-width: 768px) {
    .cta-pill {
        font-size: 20px;
        line-height: 32px;
        border-radius: 19px;
        padding-top: 2px;
        padding-bottom: 2px;
    }
}
@media (hover: hover) {
    .cta.cta-pill:hover {
        background-color: var(--black);
        color: var(--white);
    }
}

#cookieModalPreview section.modal-card-body,
#cookieModalParent section.modal-card-body,
#cookieModalChild section.modal-card-body {
    margin-bottom: 0;
    padding-bottom: 60px;
    margin-bottom: -40px;
}
.wpcf7-submit-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.postmeta {
    font-family: var(--sans);
    font-weight: 900;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-top: 40px;
    margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
    .postmeta {
        font-family: Arial Black;
        font-size: 19px;
        line-height: 34px;
        margin-bottom: 40px;
    }
}

.section-pagetxt + .section-teaserlarge {
    margin-top: 80px;
}

.section-cases-overview {
    margin-top: 80px;
    margin-bottom: 130px;
}
@media screen and (min-width: 768px) {
    .section-cases-overview {
        margin-top: 130px;
        margin-bottom: 180px;
    }
}

.page-units .section-teaser {
    margin-top: 100px;
}
@media screen and (min-width: 768px) {
    .page-units .section-teaser {
        margin-top: 180px;
    }
}

/* Damn it, youtube, just make your embeds responsive */
iframe[src*="youtube"] {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 56.5vw;
    display: block;
    border: 0;
}

/* Produkte */
.section-productgrid .section-hl {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .section-productgrid .section-hl {
        margin-bottom: 50px;
    }
}
.productgrid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.product-item {
    text-decoration: none;
    color: var(--white);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 800px) {
    .product-item {
        max-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}
.product-item h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}
@media screen and (min-width: 400px) {
    .product-item h3 {
        font-weight: 900;
        font-size: 40px;
        line-height: 42px;
    }
}

.masked-shape {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 573px;
    aspect-ratio: 1 / 1;
    -webkit-clip-path: polygon(0% 0%, 81.15% 0%, 100% 18.85%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 81.15% 0%, 100% 18.85%, 100% 100%, 0% 100%);
    padding-top: 42px;
    padding-left: 29px;
    padding-right: 29px;
    padding-bottom: 29px;
}
/* @media screen and (min-width: 1000px) {
    .masked-shape {
        padding-top: 77px;
        padding-left: 44px;
        padding-right: 44px;
        padding-bottom: 44px;
    }
} */
[data-color="red"] .masked-shape {
    background-color: #e92451;
}

[data-color="dark-red"] .masked-shape {
    background-color: #af1b3d;
}

[data-color="blue"] .masked-shape {
    background-color: #0b6dc0;
}

[data-color="dark-blue"] .masked-shape {
    background-color: #085290;
}

[data-color="red"]:hover .masked-shape {
    background-color: #af1b3d;
    color: #ed5074;
}

[data-color="dark-red"]:hover .masked-shape {
    background-color: #e92451;
    color: #af1b3d;
}

[data-color="blue"]:hover .masked-shape {
    background-color: #085290;
    color: #3c8acd;
}

[data-color="dark-blue"]:hover .masked-shape {
    background-color: #0b6dc0;
    color: #085290;
}

/* Unit-Interaction */
.animationcontainer {
    background-color: var(--accent);
    max-width: 1280px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.unitinteraction,
.unitanimation {
    width: 100%;
    max-width: 504px;
    margin-left: auto;
    margin-right: auto;
}
.unitinteraction {
    width: 100%;
    max-width: 504px;
    height: 600px;
}
.unitinteraction svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.unitanimation {
    position: absolute;
    inset: 0;
    width: 458px;
    height: 600px;
    max-width: 100%;
    pointer-events: auto;
}

.unitanimation img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 600px;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s linear;
    will-change: opacity;
    top: 50%;
    transform: translateY(-50%);
}

.unitinteraction {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 2;
    transform: translate(-2px, -2px);
}
.layout-unitanimation {
    width: 100%;
    max-width: 452px;
}
.layout-unitanimation .unitanimation {
    z-index: 3;
    /* damit es über der interaction liegt */
    transition: opacity 0.4s;
}

.layout-unitanimation.unit-fadeout .unitanimation {
    opacity: 0;
    pointer-events: none;
}
.layout-unitanimation.unit-fadeout .unitinteraction {
    opacity: 1;
    pointer-events: all;
}

.jobhome-img-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
@media (hover: hover) {
    .jobteaser-imglink:hover .jobhome-img-hover {
        opacity: 1;
    }
}

.jobhome-img-m {
    margin-left: auto;
    margin-right: auto;
}
.jobhome-img,
.jobhome-img-hover {
    display: none;
}
@media screen and (min-width: 768px) {
    .jobhome-img-m {
        display: none;
    }
    .jobhome-img,
    .jobhome-img-hover {
        display: block;
    }
}

.srJobListLocation,
.srJobListDepartment,
.srJobListLocation,
.srJobListDepartment,
.srJobListTitles {
    display: none;
}

.srJobListJobOdd,
.srJobListJobEven {
    position: relative;
    display: block;
    color: var(--white);
    width: 100%;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 45px;
    background-color: var(--cfblue);
    color: var(--white);
    width: 100%;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
    text-decoration: none;
}
.srJobListJobOdd:after,
.srJobListJobEven:after {
    content: "";
    width: 22px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    right: 15px;
    background-image: url(../images/ui/accordion-dropper.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}
.srJobListJobTitle {
    font-family: var(--sans) !important;
    color: var(--white) !important;

    font-weight: 900 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    background-color: transparent !important;
    transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
    .srJobListJobOdd:hover,
    .srJobListJobEven:hover {
        background-color: var(--accent);
    }
}
.unitlink:hover .unitlink-border,
.unitlink:hover .unitlink-plate,
.unitlink:hover .unitlink-txt {
    transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
    .unitlink:hover .unitlink-border {
        stroke: var(--white);
    }
    .unitlink:hover .unitlink-plate {
        fill: var(--black);
    }
    .unitlink:hover .unitlink-txt {
        fill: var(--white);
    }
}

.section-joblist .section-hl {
    margin-bottom: 50px;
}

iframe[src*="open.spotify.com"] {
    width: 100% !important;
    max-width: 520px !important;
}
