@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/roboto-condensed-v31-latin-200.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-200.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 200;
    src: url("../fonts/roboto-condensed-v31-latin-200italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-200italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/roboto-condensed-v31-latin-regular.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-regular.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/roboto-condensed-v31-latin-italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/roboto-condensed-v31-latin-700.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-700.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Roboto Condensed";
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/roboto-condensed-v31-latin-700italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v31-latin-700italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/noto-serif-v33-latin-regular.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-regular.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/noto-serif-v33-latin-italic.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/noto-serif-v33-latin-500.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-500.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/noto-serif-v33-latin-500italic.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-500italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/noto-serif-v33-latin-600.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-600.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: italic;
    font-weight: 600;
    src: url("../fonts/noto-serif-v33-latin-600italic.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-600italic.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/noto-serif-v33-latin-300.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-300.ttf") format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Noto Serif";
    font-style: italic;
    font-weight: 300;
    src: url("../fonts/noto-serif-v33-latin-300italic.woff2") format("woff2"), url("../fonts/noto-serif-v33-latin-300italic.ttf") format("truetype")
}

:root {
    --lightRed: #d89092;
    --red: #a40031;
    --darkRed: #661321;
    --blue: #31486b;
    --grey: #e2e6ea;
    --transparentGrey: rgba(226, 230, 234, 0.8);
    --background: #fff;
    --transparentBackground: rgba(255, 255, 255, 0.2)
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

html,
body {
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3
}

p {
    line-height: 1.618;
    -webkit-hyphens: auto;
    hyphens: auto
}

.wrapper {
    width: min(100rem, 90%);
    margin-inline: auto;
    height: -moz-fit-content;
    height: fit-content;
    display: flex
}

nav {
    position: fixed;
    width: 100%;
    background-color: var(--grey);
    z-index: 9999
}

nav .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 1rem;
    z-index: 10001;
    position: relative
}

nav .burger-menu span {
    width: 2rem;
    height: .25rem;
    background: var(--blue);
    border-radius: 10px;
    transition: all .3s linear;
    position: relative;
    transform-origin: 1px
}

nav .burger-menu.active span:first-child {
    transform: rotate(45deg)
}

nav .burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px)
}

nav .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg)
}

nav ul {
    position: relative;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    gap: 3rem;
    list-style-type: none;
    font-family: "Noto Serif";
    font-weight: 500;
    font-size: 1.5rem;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1rem 0
}

nav ul img {
    position: relative;
    top: .2rem;
    height: 5.5rem
}

nav ul li {
    position: relative;
    transition: all .2s ease-in-out;
    display: flex
}

nav ul li a {
    position: relative;
    transition: all .2s ease-in-out;
    text-decoration: none;
    color: var(--blue);
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
    text-align: center
}

nav ul li a span {
    position: relative;
    transition: all .2s ease-in-out;
    color: var(--red);
    font-style: italic
}

nav ul li a span::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--red);
    z-index: -1;
    transition: transform .2s ease-in-out;
    opacity: .7
}

nav ul li:hover:not(:has(img)) {
    transition: all .2s ease-in-out;
    scale: 1.05
}

nav ul li:hover:not(:has(img)) a {
    transition: all .2s ease-in-out;
    color: var(--red)
}

nav ul li:hover:not(:has(img)) a span {
    transition: all .2s ease-in-out;
    color: var(--blue)
}

nav ul li.dropdown .dropdown-menu {
    position: absolute;
    width: 95vw;
    top: 6rem;
    left: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    background-color: var(--grey);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 10000;
    min-width: 250px;
    padding: .5rem 0;
    margin-top: .5rem
}

nav ul li.dropdown .dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
    transform: none;
    scale: 1
}

nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 400;
    -webkit-hyphens: auto;
    hyphens: auto
}

nav ul li.dropdown .dropdown-menu li a:hover {
    background-color: var(--red);
    color: var(--background)
}

nav ul li.dropdown .dropdown-menu li a:hover span {
    color: var(--background)
}

nav ul li.dropdown .dropdown-menu li:last-child a {
    border-bottom: none
}

nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

@media(max-width: 855px) {
    nav .burger-menu {
        display: flex
    }

    nav ul {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background-color: var(--grey);
        flex-direction: column;
        align-items: center;
        gap: 0;
        transition: left .3s ease-in-out;
        padding: 0;
        z-index: 10000;
        margin: 0;
        box-sizing: border-box
    }

    nav ul.mobile-menu-open {
        left: 0;
        padding: 10rem;
        overflow-y: scroll
    }

    nav ul li a {
        font-size: 20px;
        padding: 1rem;
        display: block
    }

    nav ul li.dropdown .dropdown-menu {
        position: relative;
        opacity: 1;
        top: 0;
        left: .6rem;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease-in-out
    }

    nav ul li.dropdown .dropdown-menu li a {
        font-size: 1.5rem;
        padding: .75rem 2rem;
        color: var(--blue)
    }

    nav ul li.dropdown .dropdown-menu li a:hover {
        background-color: var(--darkRed)
    }

    nav ul li.dropdown.active .dropdown-menu {
        max-height: 350px
    }
}

header {
    position: relative;
    height: 100dvh;
    width: 100%;
    overflow: hidden
}

header .wrapper {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%)
}

header .wrapper h1 {
    color: var(--blue);
    font-family: "Roboto Condensed";
    font-weight: 200;
    font-size: clamp(4rem, 8vw, 10rem)
}

header .wrapper h1 span {
    margin-left: 1%;
    font-family: "Noto Serif";
    display: block;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300
}

header video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

#about {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    background: var(--background);
    padding: 10rem 0
}

#about:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--red);
    z-index: 0
}

#about .wrapper {
    gap: 20vw
}

#about .wrapper article {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 50%;
    z-index: 2
}

#about .wrapper article h2 {
    margin-left: -2rem;
    padding: 0 2rem;
    font-family: "Roboto Condensed";
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 3rem)
}

#about .wrapper article h2 span {
    margin-left: -3rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 3rem;
    display: block;
    font-family: "Noto Serif";
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase
}

#about .wrapper article p {
    position: relative;
    font-family: "Roboto Condensed"
}

#about .wrapper article:nth-child(1) {
    color: var(--blue)
}

#about .wrapper article:nth-child(1) h2 span {
    background-color: var(--red);
    color: var(--background)
}

#about .wrapper article:nth-child(1) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--red), 1.5rem 1.5rem 0 0 var(--lightRed);
    rotate: 180deg
}

#about .wrapper article:nth-child(1) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--lightRed), 1.5rem 1.5rem 0 0 var(--red)
}

#about .wrapper article:nth-child(2) {
    color: var(--background)
}

#about .wrapper article:nth-child(2) h2 {
    font-style: italic
}

#about .wrapper article:nth-child(2) h2 span {
    color: var(--blue);
    background: var(--grey)
}

#about .wrapper article:nth-child(2) p:not(.noDeco) {
    font-style: italic
}

#about .wrapper article:nth-child(2) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--grey), 1.5rem 1.5rem 0 0 var(--background);
    rotate: 180deg
}

#about .wrapper article:nth-child(2) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--background), 1.5rem 1.5rem 0 0 var(--grey)
}

@media(max-width: 950px) {
    #about:before {
        opacity: 0
    }

    #about .wrapper {
        flex-direction: column;
        gap: 10rem
    }

    #about .wrapper article {
        width: calc(100% - 5rem);
        margin-inline: auto
    }

    #about .wrapper article:nth-child(2) {
        position: relative
    }

    #about .wrapper article:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 130%;
        background: var(--red);
        z-index: -1
    }
}

#cta {
    position: relative;
    height: 100dvh;
    display: flex
}

#cta img {
    width: min(88rem, 100%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    margin: 0 auto
}

#cta .wrapper {
    position: absolute;
    left: 50%;
    bottom: 20%;
    gap: 2rem;
    transform: translate(-50%, -50%);
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    white-space: nowrap
}

@media(max-width: 1450px) {
    #cta .wrapper {
        flex-direction: column;
        gap: 4rem;
        bottom: 5%
    }
}

#cta .wrapper img {
    position: relative;
    width: auto;
    height: 8rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin: unset;
    left: 1.5rem
}

@media screen and (max-width: 528px) {
    #cta .wrapper {
        bottom: 25%
    }
}

#cta .wrapper h2 {
    text-transform: uppercase;
    color: var(--background);
    font-family: "Roboto Condensed";
    background: linear-gradient(to bottom, var(--red) 50%, transparent 50%);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 3rem
}

#cta .wrapper h2 span {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--blue);
    font-family: "Noto Serif"
}

#cta .wrapper h2 span br {
    display: none
}

@media screen and (max-width: 528px) {
    #cta .wrapper h2 span br {
        display: block
    }
}

#translations {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    padding: 10rem 0
}

#translations:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--red);
    z-index: -2
}

#translations .wrapper {
    gap: 20vw
}

#translations .wrapper article {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 50%;
    z-index: 2
}

#translations .wrapper article h2 {
    margin-left: -2rem;
    padding: 0 2rem;
    font-family: "Roboto Condensed";
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 3rem)
}

#translations .wrapper article h2 span {
    margin-left: -3rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 3rem;
    display: block;
    font-family: "Noto Serif";
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase
}

#translations .wrapper article p {
    position: relative;
    font-family: "Roboto Condensed"
}

#translations .wrapper article:nth-child(1) {
    color: var(--blue)
}

#translations .wrapper article:nth-child(1) h2 span {
    background-color: var(--red);
    color: var(--background)
}

#translations .wrapper article:nth-child(1) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--red), 1.5rem 1.5rem 0 0 var(--lightRed);
    rotate: 180deg
}

#translations .wrapper article:nth-child(1) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--lightRed), 1.5rem 1.5rem 0 0 var(--red)
}

#translations .wrapper article:nth-child(2) {
    color: var(--background)
}

#translations .wrapper article:nth-child(2) h2 {
    font-style: italic
}

#translations .wrapper article:nth-child(2) h2 span {
    color: var(--blue);
    background: var(--grey)
}

#translations .wrapper article:nth-child(2) p {
    font-style: italic
}

#translations .wrapper article:nth-child(2) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--grey), 1.5rem 1.5rem 0 0 var(--background);
    rotate: 180deg
}

#translations .wrapper article:nth-child(2) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--background), 1.5rem 1.5rem 0 0 var(--grey)
}

@media(max-width: 950px) {
    #translations:before {
        opacity: 0
    }

    #translations .wrapper {
        flex-direction: column;
        gap: 10rem
    }

    #translations .wrapper article {
        width: calc(100% - 5rem);
        margin-inline: auto
    }

    #translations .wrapper article:nth-child(2) {
        position: relative
    }

    #translations .wrapper article:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 130%;
        background: var(--red);
        z-index: -1
    }
}

#cards {
    position: relative;
    padding: 10rem 0
}

#cards::before {
    position: absolute;
    content: "";
    height: auto;
    background: url(../images/skizze.svg);
    background-size: fill;
    background-position: center;
    top: -80%;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 188%;
    rotate: -3deg;
    z-index: -1;
    opacity: .6
}

#cards .wrapper .parent {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6rem
}

@media(max-width: 1280px) {
    #cards .wrapper .parent {
        display: flex;
        flex-direction: column;
        gap: 6rem
    }

    #cards .wrapper .parent div {
        width: calc(100% - 3rem);
        margin-inline: auto
    }
}

#cards .wrapper .parent div {
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all .2s ease-in-out
}

#cards .wrapper .parent div h3 {
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-family: "Noto Serif";
    color: var(--blue);
    -webkit-hyphens: auto;
    hyphens: auto
}

#cards .wrapper .parent div:hover {
    transition: all .2s ease-in-out;
    scale: 1.02;
    cursor: pointer
}

#cards .wrapper .parent div:hover h3 {
    transition: all .2s ease-in-out;
    color: var(--darkRed)
}

#cards .wrapper .parent div:nth-child(1) {
    grid-area: 1/1/2/2;
    background: url(../images/technische_dokumentation.webp);
    background-size: cover;
    background-position: center
}

#cards .wrapper .parent div:nth-child(2) {
    grid-area: 1/2/2/3;
    background: url(../images/patentuebersetzung.webp);
    background-size: cover;
    background-position: center
}

#cards .wrapper .parent div:nth-child(3) {
    grid-area: 2/1/3/2;
    background: url(../images/ausschreibungsunterlagen.webp);
    background-size: cover;
    background-position: center
}

#cards .wrapper .parent div:nth-child(4) {
    grid-area: 2/2/3/3;
    background: url(../images/marketingmaterialien.webp);
    background-size: cover;
    background-position: center
}

#targetgroup {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    padding: 10rem 0
}

#targetgroup:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--red);
    z-index: -2
}

#targetgroup .wrapper {
    gap: 20vw
}

#targetgroup .wrapper article {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 50%;
    z-index: 2
}

#targetgroup .wrapper article h2 {
    margin-left: -2rem;
    padding: 0 2rem;
    font-family: "Noto Serif";
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem)
}

#targetgroup .wrapper article p {
    position: relative;
    font-family: "Roboto Condensed"
}

#targetgroup .wrapper article:nth-child(1) {
    z-index: 3;
    color: var(--blue)
}

#targetgroup .wrapper article:nth-child(1) h2 {
    color: var(--red)
}

#targetgroup .wrapper article:nth-child(1) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--red), 1.5rem 1.5rem 0 0 var(--lightRed);
    rotate: 180deg
}

#targetgroup .wrapper article:nth-child(1) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--lightRed), 1.5rem 1.5rem 0 0 var(--red)
}

#targetgroup .wrapper article:nth-child(1) figure {
    position: relative;
    left: 2rem
}

#targetgroup .wrapper article:nth-child(1) figure::before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: -5rem;
    width: 3.5rem;
    aspect-ratio: 1.3/1;
    background: url(../images/quote1.svg);
    background-size: cover;
    background-position: center
}

#targetgroup .wrapper article:nth-child(2) {
    z-index: 2;
    color: var(--background)
}

#targetgroup .wrapper article:nth-child(2) picture {
    cursor: none;
    pointer-events: none;
    position: absolute;
    width: 28vw;
    height: auto;
    left: -24vw;
    bottom: -12%;
    overflow: hidden
}

#targetgroup .wrapper article:nth-child(2) picture img {
    width: 100%;
    height: auto
}

#targetgroup .wrapper article:nth-child(2) h2 {
    font-style: italic
}

#targetgroup .wrapper article:nth-child(2) h2 span {
    color: var(--blue);
    background: var(--grey)
}

#targetgroup .wrapper article:nth-child(2) p {
    font-style: italic
}

#targetgroup .wrapper article:nth-child(2) p:not(.noDeco)::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-left: .75rem solid rgba(0, 0, 0, 0);
    border-top: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--grey), 1.5rem 1.5rem 0 0 var(--background);
    rotate: 180deg
}

#targetgroup .wrapper article:nth-child(2) p:not(.noDeco)::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 2rem;
    aspect-ratio: 1;
    border-top: .75rem solid rgba(0, 0, 0, 0);
    border-left: .75rem solid rgba(0, 0, 0, 0);
    box-shadow: .75rem .75rem 0 0 var(--background), 1.5rem 1.5rem 0 0 var(--grey)
}

#targetgroup .wrapper article:nth-child(2) figure {
    position: relative;
    right: 2rem
}

#targetgroup .wrapper article:nth-child(2) figure::before {
    content: "";
    position: absolute;
    top: -3rem;
    right: -5rem;
    width: 3.5rem;
    aspect-ratio: 1.3/1.01;
    background: url(../images/quote2.svg);
    background-size: cover;
    background-position: center;
    overflow: visible
}

#targetgroup .wrapper article figure blockquote p {
    font-family: "Noto Serif";
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic
}

#targetgroup .wrapper article figure figcaption p {
    padding: 2rem;
    font-family: "Noto Serif";
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-left: -2rem;
    text-transform: uppercase
}

@media(max-width: 950px) {
    #targetgroup:before {
        opacity: 0
    }

    #targetgroup .wrapper {
        flex-direction: column;
        gap: 10rem
    }

    #targetgroup .wrapper article {
        width: calc(100% - 5rem);
        margin-inline: auto
    }

    #targetgroup .wrapper article:nth-child(2) {
        position: relative
    }

    #targetgroup .wrapper article:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 130%;
        background: var(--red);
        z-index: -1
    }

    #targetgroup .wrapper article:nth-child(2) picture {
        display: none
    }
}

#contact {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    background: var(--background);
    padding: 10rem 0
}

#contact:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--red);
    z-index: 0
}

#contact .wrapper {
    gap: 20vw
}

#contact .wrapper article {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 50%;
    z-index: 2
}

#contact .wrapper article h2 {
    margin-left: -2rem;
    padding: 0 2rem;
    font-family: "Roboto Condensed";
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 3rem)
}

#contact .wrapper article h2 span {
    margin-left: -3rem;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 3rem;
    display: block;
    font-family: "Noto Serif";
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase
}

#contact .wrapper article p {
    position: relative;
    font-family: "Roboto Condensed"
}

#contact .wrapper article iframe {
    width: 100%;
    height: 770px;
    overflow: hidden;
    border: none
}

#contact .wrapper article:nth-child(1) {
    color: var(--blue)
}

#contact .wrapper article:nth-child(1) h2 span {
    background-color: var(--red);
    color: var(--background)
}

#contact .wrapper article:nth-child(2) {
    color: var(--background)
}

#contact .wrapper article:nth-child(2) h2 {
    font-style: italic
}

#contact .wrapper article:nth-child(2) h2 span {
    color: var(--blue);
    background: var(--grey)
}

@media(max-width: 950px) {
    #contact:before {
        opacity: 0
    }

    #contact .wrapper {
        flex-direction: column;
        gap: 10rem
    }

    #contact .wrapper article {
        width: calc(100% - 5rem);
        margin-inline: auto
    }

    #contact .wrapper article:nth-child(2) {
        position: relative
    }

    #contact .wrapper article:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 130%;
        background: var(--red);
        z-index: -1
    }
}

footer {
    padding: 5rem 0 7rem 0;
    background: var(--grey)
}

footer .wrapper {
    flex-direction: column;
    gap: 2rem
}

footer .wrapper h2 {
    margin-left: -2rem;
    padding: 0 2rem;
    font-family: "Roboto Condensed";
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--blue)
}

footer .wrapper .footerContent {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between
}

footer .wrapper .footerContent p {
    color: var(--red);
    position: relative;
    font-family: "Noto Serif";
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem)
}

footer .wrapper .footerContent p a {
    color: var(--red);
    text-decoration: none
}

footer .wrapper .footerContent p a:hover {
    text-decoration: underline
}

footer .legal {
    z-index: 9999;
    position: fixed;
    bottom: 0;
    background: var(--darkRed);
    width: 100%;
    padding: .5rem
}

footer .legal p {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    color: var(--background);
    font-family: "Noto Serif";
    font-weight: 400;
    font-size: 1rem
}

footer .legal p a {
    color: var(--background);
    text-decoration: none
}

footer .legal p a:hover {
    text-decoration: underline
}

@media(max-width: 726px) {
    nav ul li {display: block;}
    
    footer .wrapper .footerContent {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start
    }

    footer .wrapper .footerContent p {
        width: 100%;
        text-align: left
    }
}

div.popup:nth-child(12) > div:nth-child(1) > div:nth-child(2) > p:nth-child(1),
div.popup:nth-child(13) > div:nth-child(1) > div:nth-child(2) > p:nth-child(1),
div.popup:nth-child(14) > div:nth-child(1) > div:nth-child(2) > p:nth-child(1) {
    display: none
}

div.popup.fade-in {
    background-color: var(--transparentBackground);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

div.popup.fade-out {
    background-color: var(--transparentBackground);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

div.popup:nth-child(15) > div:nth-child(1) > div:nth-child(2) > p:nth-child(1),
div.popup:nth-child(11) > div:nth-child(1) > div:nth-child(2) > p {
    display: none
}

div.popup-header {
    display: none
}

div.popup-body {
    margin: unset !important;
    height: 100%
}

div.popup.fade-in > div:nth-child(1),
div.popup.fade-out > div:nth-child(1) {
    width: calc(100vw - 20vh);
    height: 80vh;
    border-radius: unset;
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, .2)
}

@media(max-width: 1070px) {

    div.popup.fade-in > div:nth-child(1),
    div.popup.fade-out > div:nth-child(1) {
        width: calc(100vw - 5vh);
        height: 95vh
    }
}

.popup-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--red);
    z-index: 1000;
    transition: color .3s ease
}

.popup-close-btn:hover {
    color: var(--blue)
}

.popup-close-btn::before {
    content: "×"
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative
}

.container p {
    margin: 0 !important;
    padding: 0 !important
}

.container .heading {
    display: flex;
    gap: 1rem;
    position: relative;
    height: 25%;
    background: url("../images/technische_dokumentation.webp");
    background-size: cover;
    background-position: center;
    padding: 2rem;
    justify-content: flex-start;
    align-items: flex-end
}

.container .heading h2 {
    margin: 0 !important;
    font-family: "Roboto Condensed";
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--blue)
}

.container .exp {
    display: flex;
    height: 75%;
    position: relative;
    overflow-x: hidden
}

@media(max-width: 1070px) {
    .container .exp {
        flex-direction: column;
        overflow-y: scroll
    }

    .container .exp::after {
        display: none
    }

    .container .exp article {
        width: calc(100% - 8rem) !important;
        margin-inline: auto
    }

    .container .exp article:nth-child(2) {
        position: relative
    }

    .container .exp article:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% + 4rem);
        height: calc(100% + 4rem);
        background: var(--red);
        z-index: -1
    }
}

.container .exp::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--red);
    z-index: -1
}

.container .exp article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
    padding: 4rem;
    text-align: left
}

.container .exp article h3 {
    margin: 0 !important;
    font-family: "Noto Serif";
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--red);
    -webkit-hyphens: auto;
    hyphens: auto
}

.container .exp article p {
    -webkit-hyphens: auto;
    hyphens: auto;
    margin: 0 !important;
    font-family: "Roboto Condensed";
    color: var(--blue);
    font-size: 1rem
}

.container .exp article:nth-child(2) h3,
.container .exp article:nth-child(2) p {
    font-style: italic;
    color: var(--background)
}

div.popup:nth-child(12) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    background: url("../images/patentuebersetzung.webp");
    background-size: cover;
    background-position: center
}

div.popup:nth-child(13) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    background: url("../images/ausschreibungsunterlagen.webp");
    background-size: cover;
    background-position: center
}

div.popup:nth-child(14) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    background: url("../images/marketingmaterialien.webp");
    background-size: cover;
    background-position: center
}

.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    z-index: 9999;
    align-items: flex-end
}

.floating-buttons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey);
    color: var(--red);
    border: 2px solid var(--red);
    text-decoration: none;
    transition: all .3s ease
}

.floating-buttons a:hover {
    background-color: var(--blue);
    color: var(--background);
    border: 2px solid var(--blue);
    transform: scale(1.08)
}

.floating-buttons img {
    border: 2px solid var(--red);
    position: relative;
    width: auto;
    height: 64px
}

div.popup:nth-child(16) > div:nth-child(1) > div:nth-child(2) > p:nth-child(1) {
    display: none
}

#dsa-save-button,
#dsa-check-all {
    white-space: nowrap
}

.dsa-cookie-notice-form input[type=checkbox] + label::before {
    width: 15px;
    height: 15px;
    border: 2px solid var(--blue);
    background-color: var(--blue);
    display: block;
    content: "";
    margin: 10px auto
}

.dsa-cookie-notice-form input[type=checkbox]:checked + label::before,
.dsa-cookie-notice-form input[type=checkbox]:disabled + label::before {
    box-shadow: inset 0 0 0 3px var(--background);
    background-color: var(--blue)
}

.cookie-edit {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 3rem;
    left: 25px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
    z-index: 1000000;
    cursor: pointer
}

.cookie-edit:hover {
    background-color: #c3c3c3
}

.cookie-choices {
    border: none !important
}

.cookie-powered-by > p:nth-child(2) {
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin-inline: auto !important
}

body:has(.cookie-overlay-dsa.show-cookie) {
    overflow: hidden !important
}

body.cookie-active {
    overflow: hidden !important
}

/*# sourceMappingURL=main.min.css.map */
