<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 Theme Name: BackNine
 Theme URI: https://www.atrox.ch
 Version: 1.0
 Description: 
 Template: wps
 Author: Michael Ligabue | Atrox AG
 Text Domain: cdt
*/

/* Font Face */
@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-Light.ttf);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-ExtraBold.ttf);
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(/wp-content/themes/cdt/assets/fonts/Montserrat-Black.ttf);
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url(/wp-content/themes/cdt/assets/fonts/Newsreader_14pt-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url(/wp-content/themes/cdt/assets/fonts/Newsreader_14pt-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url(/wp-content/themes/cdt/assets/fonts/Newsreader_14pt-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url(/wp-content/themes/cdt/assets/fonts/Newsreader_14pt-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/* General */
:root {
    --cdt-primary-font: "Newsreader", serif;
    --cdt-secondary-font: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cdt-primary-font);
    font-size: 18px;
    line-height: 1.555555;
    font-weight: normal;
    color: var(--black-color);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    position: relative;
    font-family: var(--cdt-secondary-font);
    hyphens: auto;
}

h1,
.entry-content&gt;h2,
.cdt-reference h2 {
    margin: 60px 0 30px;
    font-size: 22px;
    line-height: 1.22223;
    font-weight: 600;
    color: var(--beige-color);
    text-transform: uppercase;
}

h1&gt;strong,
.entry-content&gt;h2&gt;strong,
.cdt-reference h2&gt;strong {
    display: block;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    color: var(--black-color);
}

h1:after,
.entry-content&gt;h2:after,
.entry-content&gt;h3:after,
.cdt-reference h2:after {
    display: block;
    position: absolute;
    content: "";
    bottom: -0.5em;
    left: 0;
    width: 90px;
    height: 2px;
    background-color: var(--beige-color);
}

h1.has-text-align-center:after,
.entry-content&gt;h2.has-text-align-center:after,
.entry-content&gt;h3.has-text-align-center:after {
    left: 50%;
    transform: translateX(-50%);
}

h1.has-text-align-right:after,
.entry-content&gt;h2.has-text-align-right:after,
.entry-content&gt;h3.has-text-align-right:after {
    left: auto;
    right: 0;
}

.post-edit-link {
    display: none;
}

.entry-content&gt;h3 {
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    color: var(--black-color);
    text-transform: uppercase;
}

img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.cdt-post_archive__single video{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 800px;
}

/* Site Header */
.site-header {
    display: grid;
    position: fixed;
    grid-template-columns: 1fr;
    padding: 0 23px;
    width: 100%;
    top: 0;
    background-color: var(--white-color);
    border-bottom: 3px solid var(--beige-color);
    z-index: 100;
}

.site-header&gt;.column-3,
.site-header&gt;.column-4 {
    display: none;
}

.site-header&gt;.column-1 {
    position: absolute;
    top: 9px;
    left: 23px;
    z-index: 20;
}

.site-header&gt;.column-2 {
    display: grid;
    justify-content: center;
}

.nav-menu {
    width: max-content;
}

/* Nav Menu Desktop / Tablet */
@media screen and (min-width: 810px) {
    .nav-menu-header {
        display: none;
    }

    .nav-menu .menu {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 43px;
    }

    .nav-menu .menu&gt;.menu-item&gt;a {
        display: flex;
        position: relative;
        height: 55px;
        align-items: center;
        color: inherit;
        text-decoration: none;
        font-family: var(--cdt-secondary-font);
        font-size: 20px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .nav-menu .menu&gt;.menu-item.current-menu-item&gt;a {
        font-weight: bold;
    }

    .nav-menu .menu&gt;.menu-item&gt;a:after {
        display: block;
        position: absolute;
        content: "";
        bottom: 9px;
        left: 50%;
        height: 2px;
        width: 0;
        transform: translateX(-50%);
        background-color: var(--beige-color);
        transition: all 0.5s ease-in-out;
    }

    .nav-menu .menu:not(:hover)&gt;.menu-item.current-menu-item&gt;a:after,
    .nav-menu .menu&gt;.menu-item&gt;a:hover:after {
        width: 50px;
    }
}

/* Responsive Menu Tablet */
@media screen and (min-width: 810px) and (max-width: 1120px) {
    .nav-menu .menu {
        gap: 30px;
    }

    .nav-menu .menu&gt;.menu-item&gt;a {
        font-size: 18px;
    }
}

/* Responsive Menu Mobile */
@media screen and (max-width: 809px) {
    .site-header {
        padding: 0 15px 0 23px;
    }

    .site-header&gt;.column-2 {
        display: grid;
        justify-content: flex-end;
    }

    .nav-menu-icon {
        display: block;
        padding: 0;
        background-color: transparent;
        border: none;
        height: 55px;
        cursor: pointer;
    }

    .nav-menu-icon .wps-svg-icon {
        display: none;
    }

    .nav-menu-icon-open {
        display: flex;
        flex-direction: column;
        height: 18px;
        width: 30px;
        justify-content: space-between;
        align-items: flex-end;
    }

    .nav-menu-icon-open:before,
    .nav-menu-icon-open:after {
        content: "";
    }

    .nav-menu-icon-open:before,
    .nav-menu-icon-open:after,
    .nav-menu-icon-open&gt;.wps-svg {
        display: block;
        position: relative;
        height: 2px;
        background-color: var(--black-color);
        transition: all 0.5s ease-in-out;
    }

    .nav-menu-icon-open:before,
    .nav-menu-icon:hover .nav-menu-icon-open:after,
    .nav-menu-icon:hover .nav-menu-icon-open&gt;.wps-svg {
        width: 100%;
    }

    .nav-menu-icon-open&gt;.wps-svg {
        width: 15px;
    }

    .nav-menu-icon-open:after {
        width: 26px;
    }

    .nav-menu-icon-close {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--cdt-secondary-font);
        font-size: 14px;
        line-height: 1.2857;
        text-transform: uppercase;
        color: var(--black-color);
    }

    .nav-menu-icon-close,
    .nav-menu-icon-open {
        transition: all 0.5s ease-in-out 0.5s;
    }

    .nav-menu:not(.nav-menu-active) .nav-menu-icon-close,
    .nav-menu.nav-menu-active .nav-menu-icon-open {
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

    .nav-menu.nav-menu-active .nav-menu-icon-open {
        height: 6px;
    }

    .nav-menu nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: calc(100% + 3px);
        right: -15px;
        height: calc(100vh - 100% - 3px);
        width: 100vw;
        background-color: var(--white-color);
        padding: 117px 23px;
        overflow: auto;
        transform: scaleX(1);
        transition:
            opacity 0.7s ease-in-out,
            transform 0.7s step-start;
        transform-origin: right top;
    }

    .nav-menu:not(.nav-menu-active) nav {
        transform: scaleX(0);
        opacity: 0;
        transition:
            opacity 0.7s ease-in-out 0.7s,
            transform 0.7s step-end 0.7s;
    }

    .nav-menu nav:after {
        display: block;
        position: fixed;
        content: "";
        bottom: 0;
        left: 0;
        width: 58%;
        height: 46%;
        background-image: url(/wp-content/themes/cdt/assets/svg/menu-bg.svg);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
        transition: all 0.6s ease-out;
    }

    .nav-menu:not(.nav-menu-active) nav:after {
        transform: translateX(-100%);
        transition: all 0.3s ease-in;
    }

    .nav-menu nav .menu {
        display: flex;
        flex-direction: column;
        gap: 14px;
        list-style: none;
        margin: 0;
        padding: 0;
        transition: all 0.7s ease-in-out 0.7s;
    }

    /*
    .nav-menu:not(.nav-menu-active) nav .menu {
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.7s ease-in-out; 
    }
*/
    .nav-menu nav .menu&gt;.menu-item-19 {
        transition: all 0.6s ease-out 0.3s;
    }

    .nav-menu nav .menu&gt;.menu-item-20 {
        transition: all 0.6s ease-out 0.6s;
    }

    .nav-menu nav .menu&gt;.menu-item-22 {
        transition: all 0.6s ease-out 0.9s;
    }

    .nav-menu nav .menu&gt;.menu-item-21 {
        transition: all 0.6s ease-out 1.2s;
    }

    .nav-menu:not(.nav-menu-active) nav .menu&gt;.menu-item {
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.15s ease-in;
    }

    .nav-menu nav .menu&gt;.menu-item&gt;a {
        display: block;
        position: relative;
        font-family: var(--cdt-secondary-font);
        font-size: 30px;
        line-height: 1.233333;
        color: inherit;
        text-decoration: none;
        text-transform: uppercase;
    }

    .nav-menu nav .menu&gt;.menu-item.current-menu-item&gt;a {
        font-weight: bold;
    }

    .nav-menu .menu&gt;.menu-item&gt;a:after {
        display: block;
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0;
        height: 2px;
        width: 0;
        background-color: var(--beige-color);
        transition: all 0.5s ease-in-out;
    }

    .nav-menu .menu:not(:hover)&gt;.menu-item.current-menu-item&gt;a:after,
    .nav-menu .menu&gt;.menu-item&gt;a:hover:after {
        width: 50px;
    }
}

/* Content */
main {
    min-height: 100vh;
    width: 100%;
    padding-top: 58px;
    z-index: 5;
}

.entry-content,
.cdt-reference .post-header {
    width: 1166px;
    max-width: 100%;
    padding: 0 23px;
    margin: 0 auto;
}

@media screen and (max-width: 1165px) {
    .entry-content {
        width: 846px;
    }
}

@media screen and (max-width: 845px) {
    .entry-content {
        width: 543px;
    }
}

/* Site Footer */
.site-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1188px;
    max-width: 100%;
    padding: 39px 34px;
    margin: 0 auto;
    color: var(--white-color);
    gap: 40px;
}

.site-footer:before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background-color: var(--beige-color);
}

.site-footer p,
.site-footer h3 {
    margin: 0;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

#site-footer-widget-area-1 {
    font-size: 16px;
}

#site-footer-widget-area-1 h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33333;
}

#site-footer-widget-area-2 {
    font-size: 14px;
    line-height: 1.3333;
    text-align: right;
}

#site-footer-widget-area-2 strong {
    font-family: var(--cdt-secondary-font);
    font-weight: 600;
}

.wp-block-social-links {
    margin: 0 0 7px;
    justify-content: flex-end;
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
    height: 34px;
    width: 34px;
}

/* Cover */
.wp-block-cover,
.wp-block-cover-image {
    min-height: 100vh;
}

/* Post archive large */
.cdt-news-large {
    display: grid;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 79px;
    margin-bottom: 135px;
}

.cdt-news-large .cdt-alt-thumbnail {
    display: none;
}

.cdt-news-large .post-thumbnail:not(:empty) {
    margin-bottom: 40px;
}

.cdt-news-large .post-thumbnail&gt;img {
    display: block;
}

.cdt-news-large .post-title {
    margin: 0 0 47px;
    text-transform: uppercase;
}

.cdt-news-large .post-title:after {
    display: block;
    position: absolute;
    content: "";
    bottom: -0.8em;
    left: 50%;
    width: 90px;
    margin-left: -45px;
    height: 2px;
    background-color: var(--beige-color);
}

.cdt-news-large .post-title h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--black-color);
}

.cdt-news-large .post-title .cdt-post-subtitle {
    font-size: 20px;
    font-family: var(--cdt-secondary-font);
    line-height: 1.2;
    font-weight: 600;
    color: var(--beige-color);
    text-transform: uppercase;
}

.cdt-news-large .cdt-post-archive_excerpt&gt;p:first-child {
    margin-top: 0;
}

.cdt-news-large .cdt-post-archive_excerpt&gt;p:last-child {
    margin-bottom: 0;
}

.cdt-news-large .cdt-post-archive_excerpt {
    margin-bottom: 15px;
}

.cdt-news-large .post-date {
    font-size: 14px;
    line-height: 19px;
    font-family: var(--cdt-secondary-font);
    color: var(--beige-color);
}

.cdt-news-large .read-more,
.cdt-more-clients {
    margin-top: 20px;
}

.cdt-news-large .read-more&gt;a,
.cdt-more-clients a {
    display: inline-flex;
    box-sizing: border-box;
    height: 39px;
    max-width: 100%;
    padding: 0 30px;
    border: 2px solid var(--beige-color);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--cdt-secondary-font);
    color: var(--black-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.cdt-more-clients a {
    border-radius: 0;
    background-color: transparent;
}

.cdt-news-large .read-more&gt;a:hover,
.cdt-more-clients a:hover {
    background-color: var(--beige-color);
    color: var(--white-color);
}

/* Post archive grid */
.cdt-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 110px;
}

.cdt-news-grid .post-thumbnail&gt;img {
    display: none;
}

.cdt-news-grid .cdt-alt-thumbnail img {
    display: block;
}

.cdt-news-grid .cdt-post-archive_excerpt {
    display: none;
}

.cdt-news-grid .post-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 49px 40px;
    z-index: 20;
    color: var(--white-color);
}

.cdt-news-grid .post-title:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    transition: all 0.5s ease-in-out;
    mix-blend-mode: multiply;
}

.cdt-news-grid article:not(:hover) .post-title:before {
    height: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out 0.5s;
}

.cdt-news-grid .post-title h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white-color);
}

.cdt-news-grid .post-title h3:before {
    display: block;
    position: absolute;
    content: "";
    bottom: -0.9em;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--beige-color);
}

.cdt-news-grid .post-title .cdt-post-subtitle {
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: var(--cdt-secondary-font);
    line-height: 1;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
}

.cdt-news-grid .post-title h3,
.cdt-news-grid .post-title .cdt-post-subtitle {
    transition: all 0.5s ease-in-out 0.5s;
}

.cdt-news-grid article:not(:hover) .post-title h3,
.cdt-news-grid article:not(:hover) .post-title .cdt-post-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.cdt-news-grid footer,
.cdt-news-grid footer .read-more,
.cdt-news-grid footer .read-more a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}

.cdt-news-grid footer .post-date {
    display: none;
}

.cdt-news-grid footer .read-more a {
    display: block;
    color: transparent;
}

.cdt-news-grid article {
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
}

.cdt-news-grid:not(.cdt-post-archive-loading) .cdt-loading-icon {
    opacity: 0;
}

.cdt-news-grid .cdt-loading-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.cdt-post-archive__more {
    display: flex;
    justify-content: center;
    margin-top: 82px;
    grid-column: 1 / span 3;
}

.cdt-post-archive__more-link {
    display: block;
    box-sizing: border-box;
    height: 39px;
    max-width: 100%;
    padding: 0 30px;
    background-color: transparent;
    color: var(--black-color);
    border: 2px solid var(--beige-color);
    font-family: var(--cdt-secondary-font);
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.cdt-post-archive__more-link:hover {
    background-color: var(--beige-color);
    color: var(--white-color);
}

.cdt-news-grid.cdt-post-archive-loading .cdt-post-archive__more-link {
    opacity: 0;
}

/* Post Single */
.single-post .post-header {
    width: 1166px;
    max-width: 100%;
    padding: 0 23px;
    margin: 0 auto;
}

.single-post .post-header&gt;.post-thumbnail&gt;.cdt-alt-thumbnail {
    display: none;
}

.single-post .post-header&gt;.breadcrumbs {
    display: none;
}

.single-post .post-header&gt;.post-title {
    font-family: var(--cdt-secondary-font);
}

.single-post .post-header&gt;.post-title&gt;span {
    margin: 60px 0 30px;
    font-size: 20px;
    line-height: 1.22223;
    font-weight: 600;
    color: var(--beige-color);
    text-transform: uppercase;
}

.single-post .post-header&gt;.post-title&gt;h1 {
    margin: 0;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    color: var(--black-color);
}

.single-post .post-header&gt;.post-title {
    margin-top: 40px;
}

.single-post .post-header&gt;.post-title&gt;h1:after {
    margin: 12px 0 20px;
}

.single-post .post-header&gt;.post-meta&gt;a {
    display: none;
}

.single-post .post-header&gt;.post-meta&gt;.post-date {
    color: var(--beige-color);
    margin-top: 40px;
}

.single-post .post-header&gt;.post-meta&gt;.post-categories {
    display: none;
}

.single-post .entry-content a {
    text-decoration: none;
    color: var(--beige-color);
    opacity: 1;
}

.single-post .entry-content a:hover {
    text-decoration: underline;
}

.postid-3387 .post-thumbnail video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 800px;
}

/* Loading Icon */
.cdt-loading-icon {
    display: block;
    position: relative;
    width: 38px;
    height: 38px;
    pointer-events: none;
}

.cdt-loading-icon&gt;span {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    margin: 4px;
    border: 4px solid var(--beige-color);
    border-radius: 50%;
    animation: cdt-loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--beige-color) transparent transparent transparent;
}

.cdt-loading-icon&gt;span:nth-child(1) {
    animation-delay: -0.45s;
}

.cdt-loading-icon&gt;span:nth-child(2) {
    animation-delay: -0.3s;
}

.cdt-loading-icon&gt;span:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes cdt-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Portfolio */
.cdt-reference-portfolio-gallery {
    margin: 40px 0 150px;
}

.cdt-reference-portfolio-gallery:not(.cdt-reference-portfolio-gallery-loaded) .cdt-reference-portfolio-gallery__images {
    opacity: 0;
}

.cdt-reference-portfolio-gallery__images {
    width: 1920px;
    max-width: 100vw;
    left: calc(50% - 50vw);
    height: 0;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 50;
}

@media screen and (min-width: 1920px) {
    .cdt-reference-portfolio-gallery__images {
        left: calc(50% - 960px);
    }
}

.cdt-reference-portfolio-gallery__images.cdt-reference-portfolio-gallery__has-mouseover .cdt-reference-portfolio-gallery-image:not(:hover) img {
    opacity: 0.5;
    filter: blur(20px);
}

.cdt-reference-portfolio-gallery-image {
    width: calc((100% - 100px) / 5);
    float: left;
    margin: 0 10px 20px;
}

.cdt-reference-portfolio-gallery-image:not([data-slugs="ref"]) .cdt-reference-portfolio-gallery-image__meta {
    display: none;
}

.cdt-reference-portfolio-gallery-image img {
    display: block;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.cdt-reference-portfolio-gallery-image__img-large {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cdt-reference-portfolio-gallery-image:hover .cdt-reference-portfolio-gallery-image__img-large {
    z-index: 110;
    /* border: 20px solid var(--white-color);*/
}

.cdt-reference-portfolio-gallery-image__meta {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    text-align: center;
    z-index: 150;
    transition: opacity 0.4s ease-in-out;
}

.cdt-reference-portfolio-gallery-image:not(:hover) .cdt-reference-portfolio-gallery-image__meta {
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0.4s;
}

.cdt-reference-portfolio-gallery-image__meta h3 {
    display: block;
    margin-top: 0;
    opacity: 1;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
    transition: all 0.4s ease-in-out 0.3s;
}

.cdt-reference-portfolio-gallery-image:not(:hover) .cdt-reference-portfolio-gallery-image__meta h3 {
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.cdt-reference-portfolio-gallery-image__more a {
    display: inline-flex;
    box-sizing: border-box;
    height: 30px;
    max-width: 100%;
    padding: 0 20px;
    border: 2px solid var(--beige-color);
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: var(--cdt-secondary-font);
    color: var(--black-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.cdt-reference-portfolio-gallery-image__img .cdt-reference-portfolio-gallery-image__video{
    width: 100%;
}

.cdt-reference-portfolio-gallery-image__video video{
    width: 100%;
}

/* Responsive Portfolio Gallery Mouseover */
@media screen and (min-width: 1120px) and (max-width: 1400px) {
    .cdt-reference-portfolio-gallery-image__meta {
        padding: 20px 10px;
    }

    .cdt-reference-portfolio-gallery-image__more a {
        padding: 0 10px;
        font-size: 12px;
    }

    .cdt-reference-portfolio-gallery-image__meta h3 {
        font-size: 16px;
    }
}

.cdt-reference-portfolio-gallery-image__more {
    opacity: 1;
    transform: none;
    transition: all 0.4s ease-in-out 0.3s;
}

.cdt-reference-portfolio-gallery-image:not(:hover) .cdt-reference-portfolio-gallery-image__meta .cdt-reference-portfolio-gallery-image__more {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.cdt-reference-portfolio-gallery-image__more a:hover {
    background-color: var(--beige-color);
    color: var(--white-color);
}

.cdt-reference-protfolio-gallery-image__hover-area {
    position: absolute;
    height: 50%;
    width: 50%;
    left: 25%;
    top: 25%;
}

.cdt-reference-portfolio-next-page-limitter {
    position: absolute;
    bottom: 200px;
}

.cdt-reference-portfolio-gallery__ajax .cdt-reference-protfolio-gallery-image img {
    transition: opacity .2s ease-in-out;
}

.cdt-reference-portfolio-gallery__ajax .cdt-reference-portfolio-gallery-image img:not(.cdt-reference-portfolio-img-is-loaded) {
    opacity: 0;
}

.cdt-reference-portfolio-loading-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--beige-color);
    z-index: 150;
    transition: opacity .3s ease-in-out;
}

.cdt-reference-portfolio-loading-bar:before {
    display: block;
    position: absolute;
    content: '';
    height: 100%;
    width: 40%;
    background-color: rgba(0, 0, 0, .5);
    animation-name: cdt-loading-bar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes cdt-loading-bar {
    0% {
        left: 0;
        width: 10%;
    }

    25% {
        width: 40%;
    }

    50% {
        left: 100%;
        width: 10%;
        transform: translateX(-100%);
    }

    75% {
        width: 40%;
    }

    100% {
        left: 0;
        width: 10%;
    }
}

.cdt-reference-portfolio-gallery__ajax:not(.cdt-reference-portfolio__loading) .cdt-reference-portfolio-loading-bar {
    opacity: 0;
}

/* Portfolio Filter */
.cdt-reference-portfolio-gallery-filter {
    margin: 1em 0 55px;
    font-family: var(--cdt-secondary-font);
}

.cdt-reference-portfolio-gallery-filter ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cdt-reference-portfolio-gallery-filter&gt;ul&gt;li&gt;span {
    display: flex;
    height: 39px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--beige-color);
    cursor: pointer;
    line-height: 1;
    padding: 0 30px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.cdt-reference-portfolio-gallery-filter&gt;ul&gt;li&gt;span:hover,
.cdt-reference-portfolio-gallery-filter&gt;ul&gt;li.cdt-reference-portfolio-gallery-filter-active&gt;span {
    background-color: var(--beige-color);
    color: var(--white-color);
}

/*.cdt-reference-portfolio-gallery-filter &gt; ul &gt; li.cdt-reference-portfolio-gallery-filter-active &gt; span,
.cdt-reference-portfolio-gallery-filter ul &gt; li &gt; ul &gt; li.cdt-reference-portfolio-gallery-filter-active &gt; span {
    font-weight: bold;
}*/

.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    padding-top: 15px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
    transition:
        opacity 0.5s ease-in-out,
        z-index 0.5s step-start;
}

.cdt-reference-portfolio-gallery-filter ul&gt;li:not(.cdt-reference-portfolio-gallery-filter-active)&gt;ul {
    opacity: 0;
    z-index: -1;
    transition:
        opacity 0.5s ease-in-out,
        z-index 0.5s step-end;
}

.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li&gt;span {
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li&gt;span:after {
    display: block;
    position: absolute;
    content: "";
    bottom: -0.5em;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--beige-color);
    transition: all 0.5s ease-in-out;
}

.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li&gt;span:hover,
.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li.cdt-reference-portfolio-gallery-filter-active&gt;span {
    font-weight: 600;
}

.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li&gt;span:hover:after,
.cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul&gt;li.cdt-reference-portfolio-gallery-filter-active&gt;span::after {
    left: calc(50% - 15px);
    width: 30px;
}

/* Single Reference */
.cdt-reference h2 {
    font-size: 16px;
    font-weight: bold;
}

.cdt-reference h2&gt;strong {
    font-size: 30px;
    font-weight: 900;
}

.cdt-reference h2 span {
    font-weight: 600;
}

.cdt-reference .entry-content {
    display: grid;
    grid-template-areas:
        "intro services"
        "review services";
    grid-template-columns: 645px 360px;
    gap: 0 115px;
}

@media screen and (max-width: 1165px) {
    .single-cdt-reference .entry-content {
        width: 100%
    }
}

.cdt-reference-intro {
    grid-area: intro;
    margin-top: 42px;
}

.cdt-reference-review {
    grid-area: review;
}

.cdt-reference-intro {
    grid-row: 1;
}

.cdt-reference-services {
    grid-area: services;
}

.cdt-reference-tags {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
}

.cdt-reference-tag:before {
    content: "#";
}

.cdt-reference-tag {
    display: flex;
}

.cdt-reference-url {
    margin-top: 20px;
}

.cdt-reference-url&gt;a {
    font-family: var(--cdt-secondary-font);
    font-size: 16px;
    text-decoration: none;
    color: var(--beige-color);
}

.cdt-reference-url&gt;a:hover {
    text-decoration: underline;
}

.cdt-reference-service-list {
    display: flex;
    /* justify-content: space-between; */
    width: 100%;
    margin-bottom: 10px;
    align-items: flex-start;
}

.cdt-reference-service {
    display: block;
    flex: 0 0 auto;
    margin-right: 30px;
}

.cdt-reference-review-title {
    font-family: var(--cdt-secondary-font);
    font-weight: 600;
    color: var(--beige-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.cdt-reference-review-autor {
    font-family: var(--cdt-secondary-font);
    font-weight: 500;
    line-height: 1;
}

.cdt-reference-review-autor span {
    display: block;
    font-size: 16px;
}

/* Logo Archive */
.cdt-logos-archive {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
    margin: 60px 0 0;
}

.cdt-logos-archive img {
    display: block;
}

.cdt-logo-single a,
.cdt-logo-slider-single a {
    display: block;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* Logo slider */
.cdt-logo-slider {
    display: flex;
    gap: 20px;
    width: 100%;
}

.cdt-logo-slider-canvas {
    width: 360px;
    height: 270px;
    flex: 0 0 auto;
    overflow: hidden;
}

.cdt-logo-slider-single {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.7s ease-in-out;
}

.cdt-logo-slider-single:not(.cdt-logo-slider-single__active) {
    transform: translateY(100%);
    opacity: 0;
}

.cdt-logo-slider-single.cdt-logo-slider-single__out {
    transform: translateY(-100%);
}

/* Services */
.cdt-service-icons&gt;.wp-block-column {
    transition: all 0.3s ease-out;
    padding: 30px;
}

.cdt-service-icons&gt;.wp-block-column:hover {
    transform: scale(1.1);
}

/*
.cdt-service-icons&gt;.wp-block-column&gt;figure {
    display: flex;
    justify-content: center;
}
*/

.cdt-service-icons&gt;.wp-block-column&gt;figure&gt;a {
    display: block;
}

.cdt-service-columns h2 {
    margin: 10px 0 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--beige-color);
}

.cdt-service-columns h2 strong {
    font-size: 30px;
    font-weight: 900;
    color: var(--black-color);
}

.cdt-service-columns h2 strong:after {
    display: block;
    position: relative;
    content: "";
    height: 2px;
    width: 90px;
    margin: 12px 0 20px;
    background-color: var(--beige-color);
}

div.cdt-service-columns:nth-of-type(even)&gt;div:last-of-type {
    display: flex;
    align-items: flex-end;
}

.cdt-service-columns&gt;.wp-block-column&gt;figure {
    position: relative;
    z-index: 3;
}

.cdt-service-columns&gt;.wp-block-column&gt;figure:first-of-type {
    position: absolute;
    z-index: 2;
}

.cdt-service-columns.wp-container-8&gt;.wp-block-column&gt;figure {
    margin-top: 100px;
}

.cdt-service-columns.wp-container-18&gt;.wp-block-column&gt;figure {
    margin-top: 230px;
}

.cdt-service-columns.wp-container-23&gt;.wp-block-column&gt;figure {
    margin-top: 40px;
}

.cdt-service-columns&gt;.wp-block-column&gt;figure:first-of-type {
    mix-blend-mode: multiply;
}


.cdt-service-columns.wp-container-14&gt;div:first-of-type&gt;figure {
    width: 70%;
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container {
    width: 1120px;
}

.wp-block-group.alignfull.has-beige-background-color:nth-of-type(odd)&gt;.wp-block-group__inner-container {
    width: 550px;
    margin-left: calc((100vw - 1205px) /2) !important;
}

.wp-block-group.alignfull.has-beige-background-color:nth-of-type(even)&gt;.wp-block-group__inner-container {
    width: 550px;
    margin-left: calc(50% + 10px) !important;
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;figure:first-of-type {
    position: absolute;
    left: -130px;
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;h3 {
    padding-top: 30px;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--white-color);
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;h3:after {
    display: block;
    position: relative;
    content: "";
    height: 2px;
    width: 60px;
    margin: 12px 0 20px;
    background-color: var(--white-color);
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;p {
    width: 550px;
    color: var(--white-color);
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container .wp-block-button&gt;a {
    display: inline-flex;
    box-sizing: border-box;
    height: 39px;
    max-width: 100%;
    padding: 0 30px;
    border: 2px solid var(--white-color);
    border-radius: 0;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--cdt-secondary-font);
    background-color: var(--beige-color);
    color: var(--white-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container .wp-block-button&gt;a:hover {
    background-color: var(--white-color);
    color: var(--beige-color);
}


.cdt-service-columns.wp-container-9&gt;div:last-of-type {
    margin-bottom: -200px;
}

.cdt-service-columns.wp-container-14&gt;div:first-of-type {
    margin-bottom: -100px;
}

.cdt-service-columns.wp-container-19&gt;div:last-of-type {
    margin-bottom: -100px;
}

.cdt-service-columns.wp-container-24&gt;div:first-of-type {
    margin-bottom: -200px;
}


/* Employees */
.cdt-employee {
    display: flex;
    margin-top: 60px;
}

.cdt-employee:not(:last-of-type) {
    padding-bottom: 60px;
}

.cdt-employee:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.cdt-employee&gt;div {
    flex: 0 1 auto;
    width: 550px;
}

.cdt-employee&gt;.cdt-employee-portrait&gt;figure {
    width: calc(100vw / 2 - 30px);
    height: auto;
    position: absolute;
    right: 30px;
}

.cdt-employee:nth-of-type(2n)&gt;.cdt-employee-portrait&gt;figure {
    left: 30px;
}

.cdt-employee:nth-of-type(2n-1)&gt;div:nth-of-type(1),
.cdt-employee:nth-of-type(2n)&gt;div:nth-of-type(2) {
    margin-right: 10px;
}

.cdt-employee:nth-of-type(2n-1)&gt;div:nth-of-type(2),
.cdt-employee:nth-of-type(2n)&gt;div:nth-of-type(1) {
    margin-left: 10px;
}

.cdt-employee-img&gt;.cdt-employee-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transition: opacity 0.4s linear;
}

.cdt-employee-img&gt;.cdt-employee-overlay:hover {
    opacity: 0;
}

.cdt-employee-details {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.cdt-employee-details&gt;h3 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.cdt-employee-details&gt;h3:after {
    display: block;
    position: relative;
    content: "";
    height: 2px;
    width: 90px;
    margin: 12px 0 20px;
    background-color: var(--beige-color);
}

.cdt-employee-function {
    font-family: var(--cdt-secondary-font);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: var(--beige-color);
}

.cdt-employee-details&gt;blockquote {
    position: relative;
    margin: 40px 0 30px 0;
    font-family: var(--cdt-secondary-font);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    order: 2;
}

.cdt-employee-details&gt;blockquote:before {
    display: block;
    position: relative;
    content: "";
    height: 100%;
    width: 30px;
    height: 34px;
    background-image: url(/wp-content/themes/cdt/assets/svg/icon-quote.svg);
    background-repeat: no-repeat;
}

.cdt-employee-details&gt;blockquote&gt;.cdt-employee-family {
    color: var(--beige-color);
}

.cdt-employee-details&gt;.cdt-employee-contact&gt;a {
    text-decoration: none;
    color: var(--black-color);
    transition: opacity 0.2s ease-in-out;
}

/*
.cdt-employee-details &gt; .cdt-employee-contact &gt; a:hover {
    opacity: .6;
}
*/
.cdt-employee-details&gt;.cdt-employee-contact&gt;a:not(:last-of-type) {
    padding-right: 1em;
    border-right: 1px solid var(--black-color);
    margin-right: 1em;
}
/*
.cdt-employee-list&gt;.cdt-employee:nth-of-type(3)&gt;.cdt-employee-details&gt;.cdt-employee-contact&gt;a {
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
}
*/
.cdt-employee-meta&gt;a {
    display: flex;
    text-decoration: none;
    align-items: center;
}

.cdt-employee:nth-of-type(2n) .cdt-employee-meta&gt;a {
    flex-direction: row-reverse;
}

.cdt-employee-meta&gt;a&gt;span {
    margin: 0 0 0 10px;
}

.cdt-employee:nth-of-type(2n) .cdt-employee-meta&gt;a&gt;span {
    margin: 0 10px 0 0;
}

.cdt-employee .cdt-scratch-off,
.cdt-employee:nth-of-type(2n) .cdt-scratch-off {
    display: flex;
}

.cdt-employee .cdt-scratch-off {
    justify-content: flex-end;
}

.cdt-employee:nth-of-type(2n) .cdt-scratch-off {
    justify-content: flex-start;
}

.page-id-10 .wp-block-group&gt;.wp-block-group__inner-container&gt;h2&gt;strong {
    font-size: 2.7777777em;
    color: var(--white-color);
}

.page-id-10 .wp-block-group&gt;.wp-block-group__inner-container&gt;h2:after {
    display: none;
}

/* Quote Family */
h2.cdt-quote-family {
    display: block;
    margin: 0 auto;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--black-color);
    /* border-width: calc(9 / 1920 * 100vw);
    border-color: var(--beige-color);
    border-style: solid; */
}

h2.cdt-quote-family&gt;strong {
    display: inline-block;
    color: var(--beige-color);
}

h2.cdt-quote-family:before {
    display: block;
    position: relative;
    content: "";
    width: calc(150 / 1920 * 100vw);
    height: calc(100 / 1920 * 100vw);
    margin: 0 auto;
    top: -40px;
    background-size: cover;
    background-image: url(/wp-content/themes/cdt/assets/svg/quote-family.svg);
}

h2.cdt-quote-family:after {
    display: none;
}

/* Social Media Links */
.page-id-10 .entry-content a {
    text-decoration: none;
    color: var(--beige-color);
}

.page-id-10 .entry-content a:hover {
    text-decoration: underline;
}

/* Blocks */
:where(.wp-block-columns.is-layout-flex) {
    gap: 20px;
}

/* Modals */
.cdt-modal {
    display: flex;
    flex-direction: column;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--beige-color);
    color: var(--white-color);
    z-index: 250;
    transition:
        opacity 0.4s ease-in-out,
        transform 0.4s step-start;
    pointer-events: none;
}

.cdt-modal:not(.cdt-modal__active) {
    opacity: 0;
    transform: scale(0, 0);
    transition:
        opacity 0.4s ease-in-out 0.4s,
        transform 0.4s step-end 0.4s;
}

.cdt-modal__close {
    display: none;
}

/* Cookie Banner */
.cmplz-cookiebanner {
    font-family: var(--cdt-secondary-font);
}

.cmplz-cookiebanner .cmplz-title {
    font-weight: 700 !important;
    text-transform: uppercase;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    height: 30px !important;
    padding: 5px 15px !important;
    line-height: 1 !important;
    text-transform: uppercase;
    font-family: var(--cdt-secondary-font);
    font-size: 14px !important;
}

/* Scroll-to-Top */

.scroll-to-top {
    position: sticky;
    bottom: 0;
    margin-top: 64px;
    line-height: 0;
    z-index: 80;
}

.scroll-to-top.scroll-to-top-active&gt;img {
    min-width: 60px;
    min-height: 19px;
    right: 32px;
    opacity: 1;
    transform: none;
}

.scroll-to-top&gt;img {
    display: block;
    position: absolute;
    right: 0px;
    bottom: 48px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scaleX(100%);
}


/* Datenschutz */
.page-id-3 h2:after {
    width: 60px;
}

.page-id-3 h2 strong {
    font-size: 30px;
}

.page-id-3 h3 {
    margin: 40px 0 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--beige-color);
}

.page-id-3 h3:after {
    display: none;
}

.page-id-3 a {
    color: var(--beige-color);
    text-decoration: none;
}

.page-id-3 a:hover {
    text-decoration: underline;
}


/* Page Videografie */
.page-id-3707 .entry-content p &gt; a {
    color: var(--beige-color);
    text-decoration: none;
}

.page-id-3707 .entry-content p &gt; a:hover {
    text-decoration: underline;
}

.page-id-3707 .cdt-video-steps &gt; .wp-block-group__inner-container {
    width: 1120px !important;
    margin-left: 0 !important;
}

.page-id-3707 .cdt-video-steps &gt; .wp-block-group__inner-container h1 strong {
    color: var(--white-color);
}

.page-id-3707 .cdt-video-steps &gt; .wp-block-group__inner-container h1:after {
    background-color: var(--white-color);
}

.page-id-3707 .cdt-h2-only-beige {
    margin-bottom:0;
}

.page-id-3707 .cdt-h2-only-beige:after {
    display: none;
}


.cdt-mehr-erfahren {
    margin-top: 20px;
}

.cdt-mehr-erfahren a {
    display: inline-flex;
    box-sizing: border-box;
    height: 39px;
    max-width: 100%;
    padding: 0 30px;
    border: 2px solid var(--beige-color);
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--cdt-secondary-font);
    color: var(--black-color);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
}

.cdt-mehr-erfahren a:hover {
    background-color: var(--beige-color) !important;
    color: var(--white-color) !important;
    text-decoration: none !important;
}

/* Responsive Tablet */
@media screen and (max-width: 1120px) {

    /* Services Front */
    .cdt-services-front {
        flex-wrap: nowrap !important;
        gap: 2px;
    }

    /* News Archive */
    .cdt-news-grid {
        gap: 3px;
    }

    .cdt-news-grid&gt;.cdt-post_archive__single&gt;header&gt;.post-title {
        display: none;
    }

    .cdt-post-archive__more {
        margin-top: 20px;
    }

    /* Service */
    .cdt-service-columns {
        display: block !important;
    }

    .cdt-service-columns&gt;figure {
        margin-top: 400px;
    }


    .wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;figure:first-of-type {
        position: relative;
        left: 0;
    }

    .wp-block-group.alignfull.has-beige-background-color:nth-of-type(odd)&gt;.wp-block-group__inner-container {
        width: 100%;
        margin-left: 0 !important;
    }

    .wp-block-group.alignfull.has-beige-background-color:nth-of-type(even)&gt;.wp-block-group__inner-container {
        width: 100%;
        margin-left: 0 !important;
    }

    .wp-block-group.alignfull.has-beige-background-color:nth-of-type(odd)&gt;.wp-block-group__inner-container,
    .wp-block-group.alignfull.has-beige-background-color&gt;.wp-block-group__inner-container&gt;p {
        width: 100%;
    }

    .cdt-service-columns.wp-container-14&gt;div:first-of-type&gt;figure {
        width: 50%;
    }

    .cdt-service-columns.wp-container-14&gt;div:first-of-type {
        margin-bottom: 0;
    }

    .cdt-service-columns.wp-container-24&gt;div:first-of-type {
        margin-bottom: 0;
    }

    /* Kunden Logos */
    .cdt-logos-archive {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Gallery */
    .cdt-reference-portfolio-gallery-image {
        width: calc((100% - 30px) / 3);
        float: left;
        margin: 0 5px 10px;
    }

    .cdt-reference-portfolio-gallery-image__meta {
        opacity: 0;
    }

    .cdt-reference-portfolio-gallery-image:not(:hover) .cdt-reference-portfolio-gallery-image__meta {
        opacity: 0;
    }

    .cdt-reference-portfolio-gallery-image__meta h3 {
        display: none;
    }

    .cdt-reference-portfolio-gallery-image__more a {
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .cdt-reference-portfolio-gallery-image__more {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    /* Single Reference */
    .cdt-reference .entry-content {
        display: block;
    }

    /* Employees */
    .cdt-employee {
        display: block;
        align-items: center;
    }

    .cdt-employee-details {
        padding-top: 0;
    }

    .cdt-employee&gt;.cdt-employee-portrait&gt;figure {
        position: relative;
        width: 100%;
        right: auto;
        left: auto;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .cdt-employee-details&gt;blockquote,
    .single-post .entry-content {
        font-size: 18px;
    }

    .cdt-employee:not(:last-of-type) {
        padding-bottom: 10px;
    }


}

/* Responsive Mobile */
@media screen and (max-width: 767px) {
    h1 strong {
        font-size: 35px;
    }

    .entry-content&gt;h2 {
        font-size: 18px;
    }

    .entry-content&gt;h2 strong {
        font-size: 28px;
    }

    .entry-content&gt;h3 {
        font-size: 28px;
        margin-top: 0;
    }

    /* Footer */
    .site-footer {
        align-items: flex-end;
        padding: 20px 20px 40px;
        gap: 20px;
    }

    #site-footer-widget-area-1 {
        font-size: 12px;
    }

    #site-footer-widget-area-1 h3 {
        font-size: 16px;
    }

    #site-footer-widget-area-2 {
        font-size: 12px;
        line-height: 1.555555;
    }

    /* Cover */
    .wp-block-cover video.wp-block-cover__video-background {
        height: auto;
    }

    .wp-block-cover,
    .wp-block-cover-image {
        min-height: 0;
        height: calc(1080 / 1920 * 100vw);
    }

    /* Spacer */
    .wp-block-spacer {
        height: 40px !important;
    }

    .home .wp-block-spacer {
        height: 0 !important;
    }

    /* Services Front */
    .cdt-services-front {
        flex-wrap: wrap !important;
        gap: 2px;
    }

    .cdt-services-front&gt;.wp-block-column {
        min-width: calc((100vw - 20px) /2);
    }

    .cdt-services-front&gt;.wp-block-column&gt;figure {
        width: 100%;
        margin-bottom: 0;
    }

    /* News Archive */
    .cdt-news-large .post-title h3 {
        font-size: 23px;
    }

    .cdt-news-large .post-title .cdt-post-subtitle {
        font-size: 18px;
    }

    .cdt-post-archive.cdt-news-large {
        margin-bottom: 60px;
    }

    /* News Single */
    .single-post .post-thumbnail {
        width: 100vw;
        margin-left: -23px;
    }

    .single-post .post-header&gt;.post-title&gt;h1 {
        font-size: 35px;
    }

    .single-post .post-header&gt;.post-title&gt;h1::after {
        margin: 0;
    }

    /* Service Icons */
    .cdt-service-icons&gt;.wp-block-column {
        width: auto;
        padding: 0;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)&gt;.wp-block-column {
        flex-basis: 0 !important;
    }

    /*
    .cdt-service-icons&gt;.wp-block-column&gt;figure {
        display: flex !important;
        flex-wrap: nowrap;
    }
*/
    /* Services */
    .cdt-service-columns.wp-container-14&gt;div:first-of-type&gt;figure {
        width: 70%;
    }

    /* Logo slider */
    .cdt-logo-slider {
        gap: 10px;
    }

    .cdt-logo-slider-canvas {
        width: 154px;
        height: 112px;
    }

    .cdt-logo-slider-front&gt;div:last-of-type&gt;.cdt-logo-slider&gt;div:last-of-type {
        display: none;
    }

    /* References Filter*/
    .cdt-reference-portfolio-gallery-filter&gt;ul&gt;li&gt;span {
        height: 25px;
        padding: 0 10px;
        font-size: 14px;
    }

    .cdt-reference-portfolio-gallery-filter ul {
        gap: 10px;
    }

    .cdt-reference-portfolio-gallery-filter ul&gt;li&gt;ul {
        font-size: 10px;
    }

    /* Gallery */
    .cdt-reference-portfolio-gallery-image {
        width: calc((100% - 8px) / 2);
        float: left;
        margin: 0 2px 4px;
    }

    /* Employees */
    .cdt-employee&gt;.cdt-employee-portrait {
        width: 100vw;
        margin-left: -23px !important;
    }

    .cdt-employee&gt;.cdt-employee-details {
        width: 100%;
        margin-left: 0;
    }

    .cdt-employee-details&gt;h3:after {
        background-color: transparent;
    }

    .cdt-employee-contact:before {
        display: block;
        position: absolute;
        content: "";
        width: 100vw;
        height: calc(100% + 40px);
        margin: 0 0 0 -23px;
        top: -20px;
        background-color: var(--beige-color);
        z-index: -1;
    }

    .cdt-employee:nth-of-type(2n-1)&gt;div:nth-of-type(2),
    .cdt-employee:nth-of-type(2n)&gt;div:nth-of-type(1) {
        margin-left: 0;
    }

    .cdt-employee&gt;.cdt-employee-details&gt;.cdt-employee-contact&gt;a {
        display: block;
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
        color: var(--white-color);
    }

    h2.cdt-quote-family {
        display: none;
    }

    /*
    h2.cdt-quote-family::before {
        width: calc(300 / 1920 * 100vw);
        height: calc(200 / 1920 * 100vw);
        top: 0;
    }

    .entry-content &gt; h2.cdt-quote-family strong {
        font-size: 18px;
    }
    */

    .cdt-employee-portrait.cdt-animate.cdt-animate-slide-left.cdt-animate-active {
        left: calc(((100vw - 100%) / 2) * -1);
    }

    .cdt-employee-portrait.cdt-animate.cdt-animate-slide-right.cdt-animate-active {
        right: calc(((100vw - 100%) / 2) * -1);
    }

    .cdt-employee:nth-of-type(2n)&gt;.cdt-employee-portrait&gt;figure {
        left: 0;
    }

    .cdt-employee&gt;.cdt-employee-details&gt;.cdt-employee-function {
        font-size: 14px;
    }

    .cdt-employee&gt;.cdt-employee-details&gt;h3 {
        font-size: 24px;
    }


    /* Cookie Banner */
    .cmplz-cookiebanner .cmplz-header {
        grid-template-columns: 1fr 100px !important;
    }

    .cmplz-cookiebanner .cmplz-header&gt;.cmplz-title {
        grid-column-start: 1 !important;
    }

    /* Scroll-to-Top */
    .scroll-to-top.scroll-to-top-active&gt;img {
        min-width: 40px;
        min-height: 13px;
        right: 20px;
    }



}</pre></body></html>