body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
	.iphone-container-wrapper {
      margin: 0 0 0 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height:80vh;
      max-height:720px;
    }

    .iphone-container {
      height:80vh;
      max-height:720px;
      aspect-ratio: 1 / 2;
      background-image: url('../../files/portfolio/iphone.png');
      background-size: contain;
      background-repeat: no-repeat;
      position: relative;
    }

    .video-container {
      position: absolute;
      top: 2.25%;
      left: 5.85%;
      right: 5.85%;
      height:95.5%;
      overflow: hidden;
      border-radius: 3.75vh;
      background-color: #000;
      cursor: pointer;
    }

    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hidden {
      display: none;
    }

    .progress-indicator {
      position: absolute;
      top: 4%;
      left: 12%;
      right: 12%;
      display: flex;
      justify-content: space-between;
    }

    .progress-segment {
      flex-grow: 1;
      height: 3px;
      background-color: rgba(255, 255, 255, 0.25);
      margin-right: 2px;
      border-radius: 5px;
    }

    .progress-segment:last-child {
      margin-right: 0;
    }

    .progress-segment.active {
      background-color: rgba(255, 255, 255, 0.5);
    }

    .mute-button{
    	width:40px;
    	text-align:center;
        position:absolute;
        bottom:5%;
        right:10%;
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        padding: 5px;
    }

@font-face {
    font-family: "Inter";
    font-weight: 200;
    src:
        local("Inter"),
        url("../../files/fonts/Inter-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-weight: 400;
    src:
        local("Inter"),
        url("../../files/fonts/Inter-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-weight: 900;
    src:
        local("Inter"),
        url("../../files/fonts/Inter-Black.ttf") format("truetype");
}
/* Variables */

:root {
    --dark-gray: rgba(255, 255, 255, .25);
    --middle-gray: rgba(255, 255, 255, .5);
    --light-gray: rgba(255, 255, 255, .75);
    --yellow: #F5DF4D;
}

/* Allgemein */

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: #FFF;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.block {
    overflow: visible !important;
}

.ce_headline {
    max-width: 1900px;
    margin: 0 auto;
}

/* Text */

h1 {
    font-size: 5em;
    margin: 0 0 40px 0;
    line-height: 1.1em;
}

h2 {
    font-size: 3em;
    margin: 0 0 40px 0;
}

h3 {
    font-size: 1.5em;
    margin: 0 0 40px 0;
}

h4 {
    font-size: 1em;
    margin: 0 0 40px 0;
}

p {
    font-size: 1.5em;
    margin: 0 0 40px 0;
}

main ul {
    margin-bottom: 40px;
}

main li {
    font-size: 1.5em;
    margin: 0 0 20px 0;
}

a {
    color: #FFF;
}

ol {
    list-style-type: lower-alpha;
}

/* Navigation */

header {
    background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}

header .inside {
    width: calc(100% - 60px);
    padding: 0px 20px 0px 40px;
    max-width: 1920px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
}

#logo {
    font-size: 5em;
    line-height: 1em;
    font-weight: 900;
    text-decoration: none;
    display: block;
    padding: 40px 0px;
}

.mobile {
    display: none;
}

.mod_navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mod_navigation ul {
    display: block;
    margin: 0;
    padding: 0;
}

.mod_navigation ul li {
    display: inline-block;
    font-weight: 900;
    position: relative;
}

.mod_navigation ul li a {
    text-decoration: none;
    position: relative;
}

.mod_navigation ul li a span {
    padding: 20px;
}

.mod_navigation ul li a::after,
.mod_navigation ul li .mobileButton::after {
    position: absolute;
    left: 20px;
    display: block;
    content: "";
    width: 0px;
    height: 4px;
    background-color: #FFF;
    transition: all 0.25s ease-in-out;
}

.mod_navigation ul li a.active::after,
.mod_navigation ul li a.trail::after,
.mod_navigation ul li.trail .mobileButton::after {
    top: calc(50% - 1px) !important;
    width: calc(100% - 40px) !important;
}

.mod_navigation ul li a:hover::after {
    width: calc(100% - 40px);
}

.mod_navigation ul.level_2 {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    gap: 20px;
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 20px;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
}

.mod_navigation ul.level_2 a span,
.mobileButton {
    padding: 0px 20px;
    display: inline-block;
    position: relative;
}

.mod_navigation ul li:hover>ul.level_2,
.mod_navigation ul li a:hover+ul.level_2,
.mod_navigation ul li ul.level_2:hover {
    cursor: pointer;
    animation-name: hide;
    animation-duration: 0.25s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    cursor: pointer;
}

.mobileButton {
    display: none;
}

@keyframes hide {
    0% {
        max-height: 0px;
    }

    1% {
        max-height: 100vh;
        opacity: 0;
        filter: blur(1px);
    }

    100% {
        max-height: 100vh;
        opacity: 1;
        filter: blur(0);
    }
}

/* Hero */

#hero {
    height: 100svh;
    margin: 0 0 160px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    width: calc(100% - 80px);
}

#hero .ce_text {
    padding: 0;
    margin: 0;
}

#hero .ce_image,
#hero .video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -5;
    opacity: .5;
}

#hero .ce_image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .heading {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;

    h1 {
        max-width: 960px;
    }

    p {
        max-width: 960px;
        margin-top: -10px;
    }
}

#hero .pbutton {
    justify-content: start;
}

#hero .inside {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}

#hero h1 {
    background: #ff9966;
    background: -webkit-linear-gradient(to left, #ff5e62, #ff9966);
    background: linear-gradient(to left, #ff5e62, #ff9966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Basics */

.mod_article {
    width: calc(100% - 80px);
    margin: 0 auto 0 auto;
    padding: 0 40px;
}

.inside .mod_article:first-of-type:not(#hero) {
    padding-top: 160px;
}

.ce_text {
    margin: 0 auto 160px auto;
    max-width: 960px;
}

.inside .mod_article>.ce_text {
    margin-left: auto;
    margin-right: auto;
}

.inside .mod_article>div.ce_text:first-of-type {
    margin-top: 80px;
}

/* Grid */

.grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    max-width: 1900px;
    margin: 0 auto;
}

.grid.third {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 160px;
}

.grid.half {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    margin-bottom: 160px;
}

.grid.half h2:first-of-type {
    margin-top: 26px;
}

.grid.half h3:first-of-type {
    margin: 0px 0px 5px 0px;
}

.grid.third .wide {
    grid-column-end: span 2;
}

.grid .pbutton {
    grid-column-start: 1;
    grid-column-end: span 6;
    margin-top: 20px !important;
    margin-bottom: 160px !important;
}

.grid .wide-3 {
    grid-column-end: span 3;
}

.grid .wide-3.center {
    text-align: center;
    max-width: 960px;
    margin-bottom: 0;
}

.grid .right {
    text-align: right;
    max-width: 960px;
    margin-bottom: 0;
}

.grid .ce_text {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
}

.grid h1 {
    margin: 0px;
}

.grid .ce_text h2 {
    margin: 40px 0px;
}

.grid .ce_image {
    justify-self: stretch;
    position: relative;
}



/* Newslist */

.mod_newslist>div {
    grid-column-end: span 2;
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.layout_latest {
    transition: opacity 0.3s, transform 0.3s;
}

.mod_newslist>.bigger {
    grid-row-end: span 2;
    padding-bottom: calc(112.5% + 20px);
}

.mod_newslist>div .inside {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.mod_newslist>div a {
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mod_newslist>div .image_container,
.mod_newslist>div .inside img,
.mod_newslist>div .inside video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.mod_newslist div .image_container {
    transition: transform 0.25s ease-in-out;
    z-index: -5;
}

.mod_newslist div:hover .image_container {
    transform: scale(1.05);
    z-index: -5;
}

.mod_newslist>div .inside img {
    z-index: -10;
}

.mod_newslist>div .inside video {
    z-index: -5;
    left: -1%;
    top: -1%;
    width: 102%;
    height: 102%;
}

.mod_newslist>div h3 {
    z-index: 0;
    opacity: 1;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: calc(102% - 20px) !important;
    height: 102% !important;
    left: -1%;
    top: -1%;
    padding: 0px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.mod_newslist>div h3 .subheadline {
    font-size: 0.66em;
    font-weight: 400;
}

.mod_newslist>div h3 .subheadline.client {
    font-size: 0.66em;
    font-weight: 700;
}

/* Eventlist */

.mod_eventlist {
    margin-bottom: 160px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.mod_eventlist h1 {
    grid-column-end: span 3;
}

.mod_eventlist h3 {
    margin: 0;
}

.mod_eventlist a {
    text-decoration: none;
}

.mod_eventlist .image {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 20px;
    background-size: 100%;
    background-position: center center;
    margin-bottom: 40px;
    transition: all 0.25s ease-in-out;
}

.mod_eventlist a:hover .image {
    background-size: 105%;
}

.mod_eventlist time {
    margin-bottom: 10px;
    display: block;
}

.event.split img {
    border-radius: 20px;
}

.event .info {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.event .info i {
    width: 30px;
    text-align: center;
    padding: 10px 10px 10px 0px;
}

.event.layout_full+.layout_full {
    margin-top: 40px;
}

/* Clients */

#clients {
    padding: 160px 40px;
    background-color: #FFF;
    color: #000;
    position: relative;
    left: -40px;
    width: 100%;
    margin-bottom: 160px;
    max-width: 100%;
}

#clients .text {
    max-width: 1920px;
    margin: 0 auto;
}

#clients h1,
#clients h2 {
    margin: 0px 0px 80px 0px !important;
}

#clients p {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-gap: 40px;
    place-items: center;
}

#clients img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* Team */

.team {
    padding: 160px 40px !important;
    background-color: #FFF;
    color: #000;
    position: relative;
    left: -40px;
    width: 100%;
    margin-bottom: 0px;
    max-width: 100%;
}

.team .inside {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 40px;
    place-items: top;
    max-width: 1920px;
}

.team .member {
    width: 100%;
}

.team img {
    width: 100%;
    border-radius: 20px;
}

.team p {
    margin: 20px 0px;
}

.team a {
    color: #000;
}

/* Contact */
.ce_text.contact {
    width: 100%;
    display: flex;
    place-items: center;
    padding: 0 !important;
    gap: 40px;
    margin: 0px auto 0px auto !important;
    min-height: calc(100svh - 320px);
}

.ce_text.contact>div,
.ce_text.contact>figure {
    width: 50%;
    align-self: center;
    justify-self: center;
}

.ce_text.contact>figure {
    text-align: center;
}

.ce_text.contact>figure img {
    border-radius: 20px;
    max-height: calc(100vh - 240px);
}

.ce_text.contact p:last-of-type {
    margin: 0 0 0 -10px;
}

.ce_text.contact p:last-of-type a {
    padding: 10px;
}

/* Projects */

.layout_full {
    max-width: 1900px;
    margin: 0 auto 0 auto;
}

.herovideo {
    margin: 80px auto 160px auto;
    max-width: 960px;
}

.herovideo video {
    width: 100%;
}

.layout_full>.ce_text {
    margin-top: 80px !important;
}

.layout_full .ce_text {
    max-width: 960px;
    margin: 0 0 40px 0;
}

.layout_full .ce_text p {
    margin: 0 0 20px 0;
}

.layout_full #toggleButton {
    cursor: pointer;
}

.layout_full #tbodyCredits {
    height: 0px;
    overflow: hidden;
    transition: padding 0.5s ease-in-out, opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
    opacity: 0;
    filter: blur(1px);
    display: inline-block;
    padding: 0;
    margin: 0;
}

.layout_full #tbodyCredits td {
    padding: 10px 40px 10px 0px;
    vertical-align: top;
}

.layout_full #tbodyCredits.expanded {
    height: auto;
    opacity: 1;
    filter: blur(0px);
}

.layout_full .imagegrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    place-items: stretch;
}

.layout_full .ce_text+.imagegrid,
.layout_full .ce_table+.imagegrid {
    margin-top: 160px;
}

.layout_full .imagegrid .image_container,
.layout_full .imagegrid .image_container img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layout_full .imagegrid .wide {
    grid-column-end: span 2;
}

.layout_full .imagegrid .big {
    grid-row-end: span 2;
}

.imagegrid+.imagegrid {
    margin-top: 80px;
}

#prevnextdesktop {
    margin-top: 80px;
    margin-bottom: 40px;
    width: 100%;
    display: block;
    text-align: center;
}

#prevnextmobile {
    display: none;
}

#prevnextdesktop a,
#prevnextmobile a {
    color: var(--yellow);
    padding: 0px 10px;
    display: inline-block;
}

p.back {
    display: none;
}

.layout_full.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 40px;
    align-items: center;
    place-items: center;
}

.layout_full.split .wide6 {
    grid-column-end: span 2;
}

.layout_full.split #prevnextdesktop {
    margin-top: 40px;
}

/* Forms */
.formbody .widget {
    margin-top: 20px;
}

.formbody label {
    padding-right: 20px;
    font-size: 1.5em;
}

.formbody .widget-checkbox fieldset {
    border: 0;
    padding: 20px 0px;
}

input[type="text"],
input[type="email"],
input[type="number"] {
    font-size: 1.5em;
    line-height: 1em;
    padding: 20px 40px;
    background-color: #FFF;
    border: solid 2px #FFF;
    border-radius: 40px;
    outline: none;
    transition: border 0.1s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
    border: solid 2px #f48e09;
}

.submit {
    font-size: 1.5em;
    line-height: 1em;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0);
    border: solid 2px #FFF;
    color: #FFF;
    border-radius: 40px;
    outline: none;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

.submit:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #000;
}

.submit i {
    position: relative;
    left: -12px;
    top: 1px;
}

.pbutton {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin: 40px 0px;
}

.landingpage .pbutton {
    justify-content: start;
}

.landingpage #contact .pbutton {
    justify-content: center;
}

.pbutton a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 20px 40px;
    font-weight: bold;
    background-color: #FFF;
    border-radius: 40px;
    border: 2px solid #FFF;
    cursor: pointer;

    em {
        padding-right: 15px;
    }
}

.pbutton.ghost a,
.pbutton a.ghost {
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    padding: 20px 40px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px;
    border: 2px solid #FFF;
    transition: all 0.2s ease-in-out;
}

.pbutton.ghost a:hover,
.pbutton a.ghost:hover {
    color: #000;
    background-color: #FFF;
}

/* Rent */

.rent .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rent .grid img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.rent .grid>div {
    margin-bottom: 0;
}

.rent .ce_headline {
    margin: 80px auto 40px auto;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 00px;
}

.button-container+.button-container {
    margin-top: 20px;
}

.button-container+.mod_newslist {
    margin-top: 80px;
}

.button-container p {
    font-size: 0.8em;
    margin: 0;
}

.filter-btn {
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px 10px 15px;
    font-weight: bold;
    background-color: #000;
    border-radius: 40px;
    border: 2px solid #FFF;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.filter-btn i {
    transform: scale(1.25) translate(0, -0.5px) rotate(0deg);
    margin-right: 10px;
    transition: transform 0.2s ease-in-out;
}

.filter-btn:hover {
    color: #000;
    background-color: #FFF;
}

.filter-btn.selected {
    color: #000;
    background-color: #FFF;

    i {
        transform: scale(1.25) translate(0px, 0px) rotate(45deg);
    }
}

.button-container #search {
    font-size: 1em;
    line-height: 1em;
    padding: 10px 20px;
    background-color: #FFF;
    border: solid 2px #FFF;
    border-radius: 40px;
    outline: none;
    transition: border 0.1s ease-in-out;
}

.button-container #search:focus {
    border: solid 2px #f48e09;
}

/* Landingpage */

.landingpage .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 160px;
}

.landingpage .grid>div {
    overflow: hidden;
    justify-self: stretch;
    position: relative;
}

.landingpage .grid .wide-3.center {
    margin: 0 auto !important;
}

.landingpage .grid .wide-3.center+.center {
    margin-top: 160px !important;
}

.landingpage #work.grid {
    margin-bottom: 0;
}

.grid>div.ce_image .image_container,
.grid>div.ce_image picture {
    height: 100%;
}

.grid>.ce_image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid>.ce_text img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.landingpage .grid .wide {
    grid-column-end: span 2;
}

.landingpage .grid+.ce_text {
    padding-top: 160px;
}

.landingpage .grid.no-margin {
    margin-bottom: 0;
}

.landingpage>.ce_text:first-child:not(#clients) {
    padding-top: 0px !important;
}

.landingpage>.ce_text:not(#clients) {
    max-width: 960px !important;
    margin: 0 auto 160px auto !important;
}

.landingpage>.ce_text:not(#clients).small p {
    font-size: 1em;
    margin: 0 0 20px 0;
}

.landingpage #clients {
    margin-top: -160px;
}

.landingpage .grid .ce_text:not(.wide-3) {
    border-radius: 20px;
    background: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.053658963585434205) 0%, rgba(255, 255, 255, 0.10127801120448177) 100%);
    overflow: hidden;
    margin-bottom: 0px;
}

.landingpage .grid .ce_text#base {
    padding: 40px 40px 0 40px;
    width: calc(100% - 80px);
    border-radius: 20px;
    background: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.053658963585434205) 0%, rgba(255, 255, 255, 0.10127801120448177) 100%);
    overflow: hidden;
}

.landingpage .grid .ce_text:not(.wide-3) .text {
    padding: 40px 40px 0px 40px;
}

.landingpage .grid .ce_text:not(.wide-3) .text>h2 {
    margin-top: 0px;
}

.landingpage .grid .ce_text .image_container {
    aspect-ratio: 16 / 9;
    height: auto !important;
    border-radius: 0 !important;
    position: relative;
}

.landingpage .grid .ce_text .image_container video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.landingpage .grid #contact.ce_text .image_container {
    aspect-ratio: auto;
}

.landingpage .grid #contact.ce_text p:first-child {
    margin-bottom: 20px;
}

.landingpage .grid .ce_text .image_container img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.landingpage .grid #contact.ce_text .image_container img {
    border-radius: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

.landingpage .grid .main {

    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;

    .text {
        width: 50%;
    }

    figure.image_container {
        width: 50%;
    }

    img {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

}

.landingpage .grid .price {
    font-size: 1.6em;
    background: #ff9966;
    background: -webkit-linear-gradient(to left, #ff5e62, #ff9966);
    background: linear-gradient(to left, #ff5e62, #ff9966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#landingpage h1 {
    background: #ff9966;
    background: -webkit-linear-gradient(to left, #ff5e62, #ff9966);
    background: linear-gradient(to left, #ff5e62, #ff9966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

#landingpage h1+.text {
    margin-top: 30px;
}

#hero.landingpage h1 {
    margin-bottom: 30px;
}

.landingpage .grid .info {
    color: var(--middle-gray);
}

.landingpage #clients h2 {
    font-size: 5em;
}

.landingpage .mod_faqlist {
    width: 100%;
    max-width: 100%;
}


.landingpage .mod_faqlist h1 {
    text-align: center;
}

.landingpage .faqlist a {
    justify-content: center;
    font-size: 1.5em;
    text-align: center;
}

.landingpage .mod_newslist.grid {
    margin-top: 80px;
    margin-bottom: 160px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.landingpage .no-margin+.mod_newslist.grid {
    margin-top: 40px;
}

.landingpage #prevnextdesktop {
    display: none;
}

.landingpage>.ce_text:not(#clients).small {
    padding: 0;
    font-size: 0.8em;
    color: var(--dark-gray);
}


/* Subscribe */

.mod_subscribe {
    margin-bottom: 40px;
}

.mod_subscribe .formbody {
    display: flex;
    gap: 20px;
}

/* Jobs */

.mod_article.jobs {
    padding-bottom: 120px !important;
}

.mod_article.jobs .ce_text {
    max-width: 960px;
}

.ce_accordion .toggler {
    cursor: pointer;
}

.ce_accordion .toggler i {
    transform: rotate(-90deg) scale(0.6);
    transition: transform 0.2s ease-in-out;
}

.ce_accordion .toggler.ui-accordion-header-active i {
    transform: rotate(0deg) scale(0.6);
}

.ce_accordion .pbutton {
    justify-content: start;
}

/* FAQ */

.mod_faqlist,
.mod_faqreader {
    max-width: 960px;
    margin: 80px auto;
}

.mod_faqreader h1 {
    margin-bottom: 80px;
}

.faqlist {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 80px;
}

.faqlist a {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    vertical-align: middle;
    align-self: stretch;
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.053658963585434205) 0%, rgba(255, 255, 255, 0.10127801120448177) 100%);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.faqlist a:hover {
    background: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10127801120448177) 0%, rgba(255, 255, 255, 0.2497373949579832) 100%);
}

.mod_faqreader img {
    border-radius: 20px;
}

/* Footer */

footer {
    width: calc(100% - 80px);
    padding: 40px;
    font-size: 0.8em;
    color: var(--dark-gray);
}

footer .inside {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1900px;
    margin: 0 auto;
    align-items: center;
}

footer .social {
    text-align: center;
}

footer .lang {
    text-align: right;
}

footer a,
footer strong {
    text-decoration: none;
    color: var(--dark-gray);
    transition: color 0.2s ease-in-out;
    padding: 10px;
}

footer a:hover {
    color: var(--middle-gray);
}

footer .mod_changelanguage li {
    display: inline-block;

    .active {
        font-weight: 900;
    }

}
@media only screen and (max-width: 1280px) {

    /* Text */

    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 2em;
    }

    .landingpage #clients h1,
    .landingpage #clients h2 {
        font-size: 4em;
    }

    h3 {
        font-size: 1.25em;
    }

    h4 {
        font-size: 1em;
    }

    p {
        font-size: 1.25em;
    }

    main li {
        font-size: 1.25em;
    }

    /* Menu */
    header .inside {
        width: 100%;
        padding: 0px;
    }

    #logo {
        display: none;
    }

    #toggleMenu {
        display: block;
        position: absolute;
        right: 15px;
        top: 23px;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 105;
    }

    #toggleMenu span {
        display: block;
        position: absolute;
        background-color: #FFF;
        height: 2px;
        border-radius: 2px;
        transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        left: 0px;
    }

    #toggleMenu span:nth-child(1) {
        top: 10%;
        width: 30%;
    }

    #toggleMenu.expanded {
        span:nth-child(1) {
            transform: rotate(45deg) translate(0px, 11px);
            left: 5px;
            width: 100%;
        }

        span:nth-child(2) {
            width: 0px;
        }

        span:nth-child(3) {
            transform: rotate(-45deg) translate(0px, -11px);
            left: 5px;
            width: 100%;
        }
    }

    #toggleMenu span:nth-child(2) {
        top: 50%;
        width: 100%;
    }

    #toggleMenu span:nth-child(3) {
        top: 90%;
        width: 60%;
    }

    @keyframes bounce {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    .mobile {
        display: block;
    }

    .mobile a {
        text-decoration: none;
        font-weight: 900;
        display: block;
        padding: 20px;
        font-size: 1.5em;
        position: relative;
        z-index: 105;
    }

    .mod_navigation {
        display: flex;
        align-items: center;
        position: fixed;
        left: 0;
        top: -100dvh;
        width: 100%;
        height: 100dvh;
        margin: 0;
        padding: 0;
        z-index: 100;
        background-color: #000;
        transition: top 1s cubic-bezier(.39, 0, .14, 1);
    }

    .mod_navigation.expanded {
        top: 0px;
    }

    .mod_navigation ul li {
        display: block;
        text-align: center;
        opacity: 0;
        transition: all 0.75s cubic-bezier(.39, 0, .14, 1);
        filter: blur(5px);
        transform: translateY(-50px);
    }

    .mod_navigation.expanded ul li {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0px);
    }

    .mod_navigation ul li a,
    .mobileButton {
        display: inline-block;
        font-size: 1.5em;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mod_navigation ul li a span {
        padding: 20px 0px;
    }

    .mod_navigation ul.level_2 {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        opacity: 0;
        filter: blur(1);
        max-height: 0px;
        padding: 0;
    }

    .mod_navigation ul.level_2 a span {
        padding: 0px;
    }

    .mod_navigation ul li:hover>ul.level_2,
    .mod_navigation ul li a:hover+ul.level_2,
    .mod_navigation ul li ul.level_2:hover {
        animation-name: none;
    }

    .mod_navigation .submenu>a {
        display: none;
    }

    .mobileButton {
        display: block;
    }

    .mobileButton i {
        position: relative;
        top: 1px;
        left: 5px;
        transition: transform 0.2s ease-in-out;
        display: inline-block;
    }

    .mobileButton.expanded+ul.level_2 {
        max-height: 150px;
        opacity: 1;
        filter: blur(0);
    }

    .mobileButton.expanded i {
        transform: rotate(180deg);
    }

    /* Landingpage */

    .landingpage.mobile {
        width: 100%;
        text-align: center;
    }

}
@media only screen and (max-width: 720px) {

    /* Text */

    h1 {
        font-size: 2em;
        margin: 0 0 40px 0;
        line-height: 1em;
    }

    h2 {
        font-size: 1.5em;
        margin: 0 0 20px 0;
    }

    h3 {
        font-size: 1em;
        margin: 0 0 20px 0;
    }

    h4 {
        font-size: 1em;
        margin: 0 0 20px 0;
    }

    p {
        font-size: 1em;
        margin: 0 0 20px 0;
    }

    main li {
        font-size: 1em;
    }

    /* Allgemeines */

    #hero {
        height: 90dvh;
        margin-bottom: 80px;
        width: calc(100% - 40px);
    }

    .mod_article {
        width: calc(100% - 40px);
        padding: 0 20px;
    }

    .inside .mod_article:first-of-type:not(#hero) {
        padding-top: 70px;
    }

    .inside .mod_article>div.ce_text:first-of-type {
        margin-top: 40px;
    }

    .ce_text {
        margin-bottom: 80px;
    }

    #hero .pbutton {
        flex-direction: column;
        gap: 10px;
    }

    /* Grid */

    .grid {
        display: flex;
        flex-direction: column;
    }

    .grid.third {
        margin-bottom: 80px;
    }

    .grid .pbutton {
        margin: 0px auto 80px auto !important;
    }

    .grid .ce_text h2 {
        margin: 20px 0px;
    }

    /* Projekte */

    .layout_full>.ce_text {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .herovideo {
        width: 100%;
        margin: 0 0 40px 0;
        padding: 0;
    }

    .layout_full .imagegrid {
        display: flex;
        flex-direction: column;
    }

    .layout_full .ce_text+.imagegrid {
        margin-top: 20px;
    }

    .layout_full .ce_table+.imagegrid {
        margin-top: 50px;
    }

    .layout_full.split {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #prevnextdesktop {
        display: none;
    }

    #prevnextmobile {
        display: block;
        width: 100%;
        padding: 40px 0 20px 0;
        text-align: center;
    }

    /* Clients */

    #clients {
        padding: 80px 20px 80px 20px;
        width: calc(100% + 40px);
        left: -20px;
        margin-bottom: 80px !important;
    }

    #clients p {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Contact */

    .ce_text.contact {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .ce_text.contact>div,
    .ce_text.contact>figure {
        width: 100%;
    }

    .ce_text.contact .text {
        padding: 40px 0 40px 0;
    }

    /* Team */

    .ce_text.team {
        width: 100%;
        padding: 80px 20px !important;
        margin-bottom: 0;
        left: -20px;
    }

    .team .inside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .team .inside P:last-child {
        font-size: 0.8em;
    }

    /* Form */

    .mod_subscribe {
        width: 100%;
    }

    .mod_subscribe .formbody {
        flex-direction: column;
        width: 100%;
    }

    .widget {
        width: 100%;
    }

    .formbody label {
        font-size: 1em;
    }

    input[type="text"],
    input[type="email"] {
        font-size: 1em;
        width: calc(100% - 84px);
        text-align: center;
    }

    .submit {
        width: 100%;
        font-size: 1em;
        width: 100%;
    }

    /* Events */

    .mod_eventlist {
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
    }

    .mod_eventlist h1 {
        margin-bottom: 0;
    }

    .mod_eventlist .image {
        margin-bottom: 20px;
    }

    .event.layout_full.split {
        flex-direction: column-reverse;
    }

    .event .info {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .event.layout_full h1 {
        margin: 20px 0px;
    }

    /* Rent */
    .button-container {
        margin-top: 40px;
    }

    .button-container p {
        width: 100%;
        text-align: center;
    }

    .filter-btn:focus,
    .filter-btn:hover {
        color: #FFF;
        background-color: #000;
    }

    .filter-btn.selected {
        color: #000 !important;
        background-color: #FFF !important;
    }

    /* landingpage */

    #hero.landingpage h1 {
        margin-bottom: 15px;
    }

    .landingpage .grid {
        margin-bottom: 0px;
    }

    #landingpage,
    #landingpage.landingpage .grid .wide-3.center {
        text-align: center;

        li {
            display: block;
        }

    }

    .landingpage #clients h1,
    .landingpage #clients h2 {
        font-size: 2em;
    }

    .grid+.grid {
        margin-top: 80px;
    }

    .landingpage .pbutton {
        margin: 20px 0px;
        flex-direction: column;
        gap: 10px;

        a {
            padding: 20px;
            width: auto;
        }

    }

    .landingpage #contact .pbutton {
        text-align: center;
    }

    .landingpage .grid .ce_text:not(.wide-3) .text {
        padding: 20px 20px 0px 20px;
    }

    .landingpage .grid .ce_text:not(.wide-3) {
        margin-bottom: 0px;
    }

    .landingpage .grid .wide-3.center {
        margin-top: 80px;
        text-align: left;
    }

    .landingpage .grid .wide-3.center+.center {
        margin-top: 80px;
    }

    .landingpage .grid ul {
        margin: 40px 0px;
        padding-left: 20px;
    }

    .landingpage #clients {
        margin-top: 80px;

        h2 {
            font-size: 2em;
        }
    }

    .landingpage>#clients {
        margin-top: -80px;
    }

    .landingpage .mod_newslist.grid {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .landingpage .faqlist {
        margin-top: 40px;
    }

    .landingpage .faqlist a {
        font-size: 1em;
    }

    /* FAQ */

    .faqlist {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .mod_faqlist,
    .mod_faqreader {
        margin: 40px auto;
    }

    .mod_faqreader h1 {
        margin-bottom: 40px;
    }

    .faqlist a {
        display: block;
    }

    /* Footer */

    footer {
        padding: 20px 0;
        width: 100%;
    }

    footer .inside {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer .lang {
        text-align: center;
    }

    .mod_changelanguage ul {
        margin: 0;
        padding: 0;
    }

}
