html {
    scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body { 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; 
    overflow-y: scroll; 
    font-family: "Brandon Grotesque";
    font-weight: 400;
    font-size: 33px;
    line-height: 38px;
    letter-spacing: 0.66px;
    color: #1C252C;
}
input, button, .btn { font-family: "Brandon Grotesque"; }
a { text-decoration: none; color: #1C252C; }
header {
    margin: 4rem 0 .5rem;
    margin: 0;
}
.frame-space-before-extra-small header { margin-top: 0; }
h1 {
    padding-top: 3rem;
    font-weight: 900;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: 1.2px;
    color: #1C252C;
    text-transform: uppercase;
    margin: 0;
}
h2 {    
    font-weight: 700;
    font-size: 37px;
    line-height: 42px;
    letter-spacing: 1.48px;
    color: #1C252C;
    text-transform: uppercase;
    margin: 0;
}
h1 + h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.8px;
    color: #1C252C;
    margin: 0;
}
h5 { 
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.8px;
    color: #1C252C;
}
p + h5 { margin: -31px 0 35px; }
.imprintS {
    font-size: 85%;
    line-height: 125%;
}
.imprintXS {
    font-size: 50%;
    line-height: 110%;
    letter-spacing: 0;
}

.nav {
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 100%; 
    z-index: 10; 
    padding: 7px 30px 7px 20px;
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    pointer-events: none;
}
.body-scroll .nav { padding: 5px 10px; }
.open .body-scroll .nav { padding: 10px 30px 10px 20px; }
.open .nav { padding-right: 30px }
.nav-collapse {
    opacity: 1; 
    position: fixed;   
    top: 0; 
    right: -100%;
    width: 100%; 
    height: 100%;
    background: #CAE2EC;
    overscroll-behavior: contain;   
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; 
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all .8s ease-in-out; 
    -moz-transition: all .8s ease-in-out; 
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 9;
}
.nav-collapse::before,
.nav-collapse::after {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    position: absolute;
    background: #fff;
    top: 0;
}
.nav-collapse::before { left: 0; }
.nav-collapse::after { right: 0; }
.open .nav-collapse {  
    right: 0;    
    
}
.menu,
.menu li { list-style: none; margin: 0; padding: 0; text-align: center; }
.menu li { padding: 5px 0 }
.menu li a {
    text-align: center;
    font-weight: 700;
    font-size: 100px;
    line-height: 114px;
    letter-spacing: 2px;
    color: #1C252C;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
}
.menu li a span { position: relative; z-index: 2; }


.nav-toggler { 
    border: 0 none; 
    padding: 0; 
    margin: 0; 
    background: transparent;
    width: 30px; 
    height: 30px;
    cursor: pointer;
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; 
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transform-origin: top right;
    pointer-events: initial;
    transform: scale(0.7);
}
.body-scroll .nav-toggler {
    transform: scale(0.7);
}
.open .body-scroll .nav-toggler {
    transform: scale(1);
}
.nav-toggler:focus {
    outline: none;
}
.nav-toggler span { 
    display: block; 
    width: 30px; 
    height: 4px; 
    background: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    /*backdrop-filter: blur(20px) invert(100%) brightness(120%);*/
}
.open .nav-toggler span:first-child {
    margin-top: 13px;
    transform: rotate(45deg);
}
.open .nav-toggler span:last-child {
    margin-bottom: 13px;
    transform: rotate(-45deg);
}
.open .nav-toggler span,
.body-scroll .nav-toggler span {
    background: #1C252C;
    backdrop-filter: none;
}
.open .nav-toggler span:nth-child(2) {
    width: 0;
    margin: -10px 0;
}
.logo { 
    background: url(../Images/logo-white.svg) no-repeat center; 
    background-size: contain;
    width: 100px;
    height: 44px; 
    display: block;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transform-origin: top left;
    pointer-events: initial;
}
.open nav .logo,
.body-scroll nav .logo { background-image: url(../Images/logo-black.svg); }
.body-scroll nav .logo { transform: translateX(0) scale(0.75); }
.body-scroll.body-scroll-logo nav .logo { transform: translateX(-300px) scale(0.75); }
.open .body-scroll nav .logo { transform: translateX(0) scale(1); }
.image { 
    display: block; 
    width: 100%; 
    height: auto; 
    padding: 0; 
    margin: 0; 
}
.image-embed-item { 
    margin: 0 auto;
    display: block; 
    max-width: 100%; 
    height: auto; 
}
.frame {
    padding: 0 8px 8px;
    overflow: hidden;
}
.ce-gallery[data-ce-columns="2"] .ce-row,
.ce-gallery[data-ce-columns="3"] .ce-row,
.projects {
    position: relative;
    overflow: hidden;
    display: -ms-flexbox; 
    display: flex;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;          
    margin: 0 -4px;
}
.ce-gallery[data-ce-columns="3"] .ce-column,
.project {
    position: relative;
    width: 33.333333%;
    padding: 0 4px;    
}
.projects { display: block; margin-bottom: -8px; }
.project.hidden { opacity: 0; pointer-events: none; }
.project { 
    float: left;
    width: 50%;
    margin-bottom: 8px;
    overflow: hidden;
    opacity: 1;
}
.ce-gallery[data-ce-columns="2"] .ce-column { padding: 0; position: relative; width: 50%; }
.ce-gallery[data-ce-columns="2"] .ce-column::before,
.ce-gallery[data-ce-columns="2"] .ce-column::after {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    position: absolute;
    background: #fff;
    top: 0;
    z-index: 1;
}
.ce-gallery[data-ce-columns="2"] .ce-column::before { left: 0; }
.ce-gallery[data-ce-columns="2"] .ce-column::after { right: 0; }
.frame-layout-6 .ce-gallery[data-ce-columns="2"] .ce-column:first-child,
.frame-layout-5 .ce-gallery[data-ce-columns="2"] .ce-column:last-child {
    width: 58.45%;
}
.frame-layout-6 .ce-gallery[data-ce-columns="2"] .ce-column:last-child,
.frame-layout-5 .ce-gallery[data-ce-columns="2"] .ce-column:first-child {
    width: 41.55%;
}
.frame-layout-8 .ce-gallery[data-ce-columns="2"] .ce-column:first-child,
.frame-layout-7 .ce-gallery[data-ce-columns="2"] .ce-column:last-child {
    width: 66.666666%;
    position: relative;
}
.frame-layout-6 .ce-gallery[data-ce-columns="2"] .ce-column:first-child .image,
.frame-layout-5 .ce-gallery[data-ce-columns="2"] .ce-column:last-child .image,
.frame-layout-8 .ce-gallery[data-ce-columns="2"] .ce-column:first-child .image,
.frame-layout-7 .ce-gallery[data-ce-columns="2"] .ce-column:last-child .image { position: relative; width: 100%; height: 100%; }
.frame-layout-6 .ce-gallery[data-ce-columns="2"] .ce-column:first-child img,
.frame-layout-5 .ce-gallery[data-ce-columns="2"] .ce-column:last-child img,
.frame-layout-8 .ce-gallery[data-ce-columns="2"] .ce-column:first-child img,
.frame-layout-7 .ce-gallery[data-ce-columns="2"] .ce-column:last-child img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto;
    width: auto;
    min-height: 100%;
    min-width: 100%;
}
.frame-layout-8 .ce-gallery[data-ce-columns="2"] .ce-column:last-child,
.frame-layout-7 .ce-gallery[data-ce-columns="2"] .ce-column:first-child {
    width: 33.333333%;
}
.thumbnail {
    width: 100%;
    padding-bottom: 100%;
    background-color: #f1f1f1;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.text { 
    padding: 10px 15px 10px 10px;
    top: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}
.text.fixed { position: fixed; width: calc(50% - 4px); }
.text.bottom { position: absolute; top: auto; bottom: 0; }
.text h3 {
    font-size: 20px;
    line-height: 29px;
    font-weight: 200;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}
.text h2 {
    text-align: left;
    font-weight: 700;
    font-size: 37px;
    line-height: 53px;
    letter-spacing: 1.48px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}
.project img { width: 100%; height: auto; }
.project a { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; 
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.project a:hover { background: rgba(0,0,0,0.3); }
.project.hide { display: none; opacity: 0; height: 0; padding: 0; }
footer {
    padding: 44px 0;
    background: #1C252C;
    color: #fff;
    margin: 0 8px;
}
footer a { color: #fff; text-decoration: none; white-space: nowrap; }
footer .logo { width: 124px; height: 55px; margin-bottom: 25px; 
    background: url(../Images/logo-white.svg) no-repeat center!important; 
    background-size: 124px 55px; }
footer h4 {
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 15px;
    min-width: 113px;
}
footer p { 
    margin: 0 0 15px; 
    font-size: 15px; 
    line-height: 22px;
    letter-spacing: 0.6px; 
}
.wrap {
    display: -ms-flexbox; 
    display: flex;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;    
}
.col {
    padding: 4px;
    width: 100%;
}
.cols {
    display: -ms-flexbox; 
    display: flex;    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 4px 8px;
}
.cols .col { padding: 0 4px; position: relative; overflow: hidden; }
.cols-0 .col { width: 33.33333%; }
.cols-1 .col-1 { width: 41.55%; }
.cols-1 .col-2 { width: 58.45%; }
.cols-1 .col-3 { display: none; }
.cols-2 .col-1 { width: 58.45%; }
.cols-2 .col-2 { width: 41.55%; }
.cols-2 .col-3 { display: none; }
.cols video { width: 100%; height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); object-fit: cover;  }
.video-wrap { width: 100%; height: 100%; overflow: hidden; position: relative; }
footer .col { padding: 4px 25px; }
footer .col:last-child a { text-decoration: underline; }
.footer-menu { margin-left: auto; }
.col-4 { width: 33.333333%; }
.col-6 { width: 50%; }
.text-uppercase { text-transform: uppercase; }
.text-center,
.ce-headline-center { text-align: center; }
.container-fluid { position: relative; z-index: 0; }
.container-fluid p { padding: 0 41px; margin: 2.75rem 0 3rem; }
.container-fluid header + .ce-textpic p { margin-top: 0; }
.container-fluid .frame-space-after-extra-small header + .ce-textpic p { margin-bottom: 1.5rem; }
.frame-layout-1 { background: #FBE1E5; padding: 1px; margin: 0 8px 8px; }
.frame-layout-2 { background: #F7F7F7; padding: 1px; margin: 0 8px 8px; }
.frame-layout-3 { background: #D1E8DF; padding: 1px; margin: 0 8px 8px; }
.frame-layout-11 { background: #cae2ec; padding: 1px; margin: 0 8px 8px; }
.frame-stats h2 { margin-top: 32px; margin-bottom: 0; letter-spacing: 1.2px; }
.frame-stats p  { margin-top: 0; margin-bottom: 0; }
.frame-stats .col-lg-4:last-child p { margin-bottom: 38px; }
.container-fluid .col p { padding: 0; }
.owl-prev,
.owl-next  { width: 12px; height: 20px; margin-bottom: -10px; bottom: 50%; position: absolute; display: block; border: 0 none; background: url(../Images/arow_black.svg) no-repeat!important; background-size: contain; z-index: 10; }
.owl-prev span,
.owl-next span { display: none; }
.owl-prev { left: 15px; }
.owl-next { transform: matrix(-1, 0, 0, -1, 0, 0); right: 15px; }
.owl-prev:focus,
.owl-next:focus { outline: none; }
.owl-loaded .owl-stage-outer { z-index: 1; }
figure { position: relative; }
figcaption {
    opacity: 0;
    width: 90%;
    position: absolute; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%,-33%); 
    display: block; 
    text-align: center;
    font-weight: 900;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: 1.2px;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
}
.frame-layout-10 figcaption {
    color: #000;
}
figcaption.fixed { position: fixed; left: 50%;  top: 50%; transform: translate(-50%,-50%); }
figcaption.bottom { top: 100%; transform: translate(-50%,-100%); }
figcaption.opacity-1 { opacity: 1; }
.row { overflow: hidden; }
.frame-layout-9 { width: 100%; padding: 0 8px 8px; }
.frame-layout-9 .ce-textpic { position: relative; }
.frame-layout-9 .ce-bodytext { 
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 40px);
}
.frame-layout-9 h2 {
    text-align: center;
    font-weight: 700;
    font-size: 37px;
    line-height: 42px;
    letter-spacing: 1.48px;
    color: #1C252C;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.frame-layout-9 h3 {
    text-align: center;
    font-weight: 400;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0.68px;
    color: #1C252C;
    text-transform: uppercase;
    margin: 0;
}
.container-fluid .frame-layout-9 p { padding: 0 20px; margin: 0 0 15px; display: none; }

/*typo3 spacers*/

.frame-space-before-extra-small { margin-top: .5em; }
.frame-space-after-extra-small { margin-bottom: .5em; }
.frame-space-before-small { margin-top: 1em; }
.frame-space-after-small { margin-bottom: 1em; }
.frame-space-before-medium { margin-top: 1.5em; }
.frame-space-after-medium { margin-bottom: 1.5em; }
.frame-space-before-large { margin-top: 2em; }
.frame-space-after-large { margin-bottom: 2em; }
.frame-space-before-extra-large { margin-top: 2.5em; }
.frame-space-after-extra-large { margin-bottom: 2.5em; }

.frame-two-column-text { padding: 0 40px; }
.frame-layout-1.frame-two-column-text { padding: 79px 40px; }
.frame-layout-1.frame-two-column-text p { padding: 0; margin: 0; font-size: 20px; line-height: 30px; letter-spacing: 0.4px; }
.btn {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.48px;
    color: #1C252C;
    text-transform: uppercase;
    border: 0 none;
    background: transparent;
    cursor: pointer;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.btn:focus,
.btn:hover {
    outline: none;
}
.btn-filter::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: -100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1;
    
}
.btn-filter::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; right: -100%;
    transition: right .3s ease-in-out;
    z-index: 1;   
}
.btn-filter:hover::before {
    left: 0;
}
.btn-filter:hover::after {
    right: 0;
}
.btn-filter {
    text-align: center;
    font-weight: 500;
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 1.04px;
    color: #000000;
    text-transform: uppercase;
    padding: 6px 11px;
    border: 4px solid #fff;
    margin: 4px;
}

.btn-services.active, .btn-services:hover,
.services .btn { background: #FBE1E5; border-color: #FBE1E5; }
.btn-sectors.active, .btn-sectors:hover,
.sectors .btn { background: #D1E8DF; border-color: #D1E8DF; }
.btn-clients.active, .btn-clients:hover,
.clients .btn { background: #FDF9D8; border-color: #FDF9D8; }

.filter .btn:hover { background: #fff; }
.filter .btn.active { background: #fff; pointer-events: none; }
.services .btn:hover,
.services .btn.active { border-color: #FBE1E5; }
.sectors .btn:hover,
.sectors .btn.active { border-color: #D1E8DF; }
.clients .btn:hover,
.clients .btn.active { border-color: #FDF9D8; }

.wrap.filter {
    font-size: 0;
    line-height: 0;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 25px;
}
.tabs .wrap { display: none; }
.tabs { -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
.tabs.off { pointer-events: none; opacity: 0.5; transition: none; }

.container-fluid .frame-two-column-text h2 { margin: 0 0 2rem; }
.container-fluid .frame-two-column-text p { padding: 0; margin: 0 0 2rem; }

/*Fonts mobile
*/
.menu li a { font-size: 33px; line-height: 38px; }
body { font-size: 20px; line-height: 26px; }
h1, figcaption, .frame-stats h2 { font-size: 30px; line-height: 34px; }
h2, .frame-layout-9 h2, .text h2 { font-size: 20px; line-height: 24px; }
.text h2 { font-size: 14px; line-height: 18px; letter-spacing: 1px; }
.pb .text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80%; text-align: center; padding: 0; }
.pb .text h3,
.pb .text h2 { text-align: center; color: #1C252C }
.frame-layout-9 h3 { font-size: 28px; line-height: 32px; }
h1 + h2, h5, .frame-layout-1.frame-two-column-text p, .text h3 { font-size: 16px; line-height: 20px; }

.contact { padding: 25px; text-align: center; }
.contact img { border-radius: 100%; margin: 0 auto 32px; display: block; }
.contact a { white-space: nowrap; }
.contact h2 { margin-bottom: 20px; }
.contact p { margin: 0; padding: 10px 0; }
.contact .col { padding: 32px 0; }
.container-fluid .contact .col p { margin: 0; }
table {  break-inside: avoid-column; border: 0 none; }

.frame-testimonies { position: relative; padding: 30px; width: calc(100vw - 16px); }
.frame-testimonies .ce-gallery { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0; }
.frame-testimonies .ce-bodytext { position: relative; z-index: 1; }
.container-fluid .frame-testimonies p { margin: 30px 0; padding: 0 10px; }
.video { margin: 0; display: block; }
video { max-width: 100%; display: block; }
video.fullwidth { width: 100%; }
.thumbnail video { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); min-width: 100%; height: 100%; max-width: initial; z-index: 0; }
.gallery-js {
    position: relative;
}
.gallery { 
    white-space: normal;
    font-size: 0; 
    line-height: 0;
    display: inline-block;
    cursor: grab;
}
.gallery-js::before {
    content: "";
    position: absolute;   
    top: 0;
    bottom: 0;
    right: 0;
    border-right: 8px solid #fff;
    z-index: 10;
}
.gallery-js::after {
    content: "";
    position: absolute;   
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 8px solid #fff;
    z-index: 10;
}
.gallery { white-space: nowrap; position: relative; }
.gallery img { display: block; position: absolute; top: 50%; left: 0; transform: translate(0,-50%); height: auto; width: 100%; z-index: 0; }
.gallery span::before {
    content: "";
    position: relative;
    z-index: 1;
    border-right: 8px solid #fff;
    border-bottom: 8px solid #fff;
    z-index: 1;
    display: block;    
    width: 33.333vw;
    height: 33.333vw;
    box-sizing: border-box;
}
.gallery span.wide::before {
    width: 66.666vw;
}
.gallery::-webkit-scrollbar {
    display: none;
}
.controls { font-size: 0; }
.prev { opacity: .75; transition: all .3s ease-in-out; position: absolute; top: 50%; margin-top: -30px; left: 15px; height: 0; width: 0; box-sizing: content-box; border-width: 40px 20px 40px 0; border-style: solid; border-color: transparent #fff transparent transparent; }
.next { opacity: .75; transition: all .3s ease-in-out; position: absolute; top: 50%; margin-top: -30px; right: 15px; height: 0; width: 0; box-sizing: content-box; border-width: 40px 0 40px 20px; border-style: solid; border-color: transparent transparent transparent #fff; }
.next.disabled,
.prev.disabled {
    opacity: 0;
}
.gallery .row { margin: 0; padding: 0; font-size: 0; line-height: 0; white-space: nowrap; position: absolute; bottom: 0; left: 0; }
.category { margin: 0 -4px 8px; }
.category .btn { width: 100%; }
.category .col { padding: 0 4px; width: 33.3333% }
.video { height: 100%; position: relative; overflow: hidden; }
.video-embed { height: 100%; padding-left: 177.778%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.owl-stage-outer { margin: 0; overflow: hidden; }
.owl-item .frame-testimonies { min-height: 100%; height: 100%; margin: 0; display: flex; align-items: center; justify-content: center; }
iframe { width: 100%; height: 100%; position: absolute; border: 0 none; top: 0; left: 0; }
.owl-loaded .owl-stage { display: flex; }
.frame-layout-4 .ce-row,
.frame-layout-4 .ce-inner { width: 100%; }
.frame-layout-4 .owl-loaded .owl-stage { display: block; }
.bread_link_small.active { display: none; }
[lang="de"] .en,
[lang="en"] .de { display: none; }
.testimonies-slider {
    margin: 0 8px 8px;
    width: calc(100% - 16px);
}
.gallery .owl-stage { height: 33.333vw; position: relative;  }
.gallery .owl-stage .owl-item { 
    position: absolute; 
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
@media only screen and (min-width: 375px) {
    .container-fluid .frame-layout-9 p { display: block; }
}
@media only screen and (min-width: 667px) {
    .frame-layout-9 { float: left; width: 50%; padding: 0 4px 8px; }
    .frame-layout-9:nth-of-type(even) { padding-left: 8px; } 
    .frame-layout-9:nth-of-type(odd) { padding-right: 8px; }   
    /*Fonts tablet small
    */
    .menu li a { font-size: 45px; line-height: 47px; }
    body { font-size: 26px; line-height: 30px; }
    h1, figcaption, .frame-stats h2 { font-size: 38px; line-height: 44px; }
    h2, .btn, .frame-layout-9 h2, .text h2 { font-size: 26px; line-height: 30px; }
    .frame-layout-9 h3 { font-size: 32px; line-height: 38px; }
    .btn-filter { font-size: 20px; line-height: 36px; padding: 8px 23px; }
    h1 + h2, h5, .frame-layout-1.frame-two-column-text p, .text h3 { font-size: 20px; line-height: 29px; }
    figcaption { transform: translate(-50%,-50%); }
    .col-xs-6 { width: 50%; }
}
@media only screen and (min-width: 768px) { 
    .col-sm-6 { width: 50%; }
    .contact img { margin: 0 auto 22px; }
    .owl-prev { left: 25px; }
    .owl-next { right: 25px; }    
    .owl-prev,
    .owl-next  {width: 24.5px; height: 39px; margin-bottom: -19px; }
    .nav-toggler { 
        width: 40px; 
        height: 40px;
        transform: scale(1);
    }
    .body-scroll .nav-toggler {
        transform: scale(0.7);
    }
    .open .body-scroll .nav-toggler {
        transform: scale(1);
    }
    .nav-toggler span { 
        display: block; 
        width: 40px; 
        height: 7px; 
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }    
    .open .nav-toggler span:first-child {
        margin-top: 16px;
        transform: rotate(45deg);
    }
    .open .nav-toggler span:last-child {
        margin-bottom: 16px;
        transform: rotate(-45deg);
    }
    .open .nav-toggler span:nth-child(2) {
        width: 0;
    }
    header {
        margin: 3rem 0 1rem;
        margin: 0;
    }
    .frame-type-textpic h2 {
        margin: 3rem 0 2rem;
    }
    .frame-type-textpic.frame-space-before-extra-small h2 {
        margin: 0 0 2rem;
    }
    .container-fluid .frame-two-column-text h2 { margin: 0 0 1rem; }
    .container-fluid .frame-two-column-text p { margin: 0 0 3rem; }    
}
@media only screen and (min-width: 960px) {
    header {
        margin: 4rem 0 1.25rem;
        margin: 0;
    }
    .container-fluid .frame-two-column-text h2 { margin: 0 0 1rem; }
    .container-fluid .frame-two-column-text p { margin: 0 0 4rem; }
    h1 { padding-top: 5rem; }
    .container-fluid header + .ce-textpic p { margin-bottom: 79px; }
    h1 + h2 { margin-bottom: 25px; }
    .contact { padding: 76px 60px 86px; }
    .contact .wrap { max-width: 1370px; margin: 0 auto; }    
    .contact .col { padding: 0 25px; }
    .contact h2 { margin-bottom: 40px; }
    .container-fluid .contact .col p { padding: 10px 0; display: block; width: 100%; float: left; }
    .col-lg-2 { width: 16.66666665%; }
    .col-lg-4 { width: 33.33333333% }
    .col-lg-auto { width: auto; }
    .project, 
    .text.fixed { width: 33.33%; }    
    footer .logo { float: right; } 
    .container-fluid p { padding: 0 141px; margin: 3.75rem 0 4rem; }
    .container-fluid .contact p { margin: 2.75rem 0 4rem; }
    .frame-two-column-text { column-count: 2; column-gap: 30px; padding: 0 60px 15px; display: flex; justify-content: space-between; }
    .frame-two-column-text table { max-width: 49%; }
    .frame-layout-1.frame-two-column-text { column-count: 2; column-gap: 10px; }
    .frame-layout-1.frame-two-column-text p { padding: 0; margin: 0; }
    .text { padding: 20px 20px 10px 20px; }
    .logo { width: 256px; height: 113px; }
    .nav { padding: 38px 73px 38px 36px; }
    .body-scroll .nav { padding: 15px 30px; }
    .open .body-scroll .nav { padding: 38px 73px 38px 36px; }
    .open .nav { padding-right: 73px }
      
    .menu li a { padding: 15px; }
    footer .col { padding: 4px; }
    .frame-layout-9 h2, .frame-layout-9 h3 { margin-bottom: 25px; }
    .frame-stats h2 { margin-top: 124px; }
    .frame-stats p  { margin-top: 0; margin-bottom: 132px; }
    /*Fonts tablet big
    */
    .menu li a { font-size: 80px; line-height: 90px; }
    body { font-size: 33px; line-height: 38px; }
    h1, figcaption, .frame-stats h2 { font-size: 60px; line-height: 65px; }
    h2, .btn, .frame-layout-9 h2, .text h2 { font-size: 37px; line-height: 42px; }
    .frame-layout-9 h3 { font-size: 34px; line-height: 40px; }
    .btn-filter { font-size: 26px; line-height: 37px; }
    h1 + h2, h5, .frame-layout-1.frame-two-column-text p, .text h3 { font-size: 20px; line-height: 29px; }
    .frame-testimonies { position: relative; padding: 86px 30px 65px; }
    .container-fluid .frame-testimonies p { margin: 60px 0; }
    .btn { padding: 40px; }
    .btn-filter { padding: 12px 27px; }
    p + h5 { margin: -3.75rem 0 79px; }
    .wrap.filter { padding: 25px 50px; }
    .gallery .owl-nav { display: block; }
    .menu li a::before {
        content: '';
        background: #fff;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;    
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -ms-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }
    .menu li a::before { left: -100%; }
    .menu li a:hover::before { left: 0; }
}
@media only screen and (min-width: 1200px) {

    .frame-layout-9 h2, .frame-layout-9 h3 { margin-bottom: 45px; }
    .contact { padding: 76px 60px 86px; }
    /*Fonts desktop
    */
    .menu li a { font-size: 100px; line-height: 114px; }
    body { font-size: 33px; line-height: 38px; }
    h1, figcaption, .frame-stats h2 { font-size: 60px; line-height: 65px; }
    h2, .btn, .frame-layout-9 h2, .text h2 { font-size: 37px; line-height: 42px; }
    .frame-layout-9 h3 { font-size: 34px; line-height: 40px; }
    .btn-filter { font-size: 26px; line-height: 37px; }
    h1 + h2, h5, .frame-layout-1.frame-two-column-text p, .text h3 { font-size: 20px; line-height: 29px; }
    .container-fluid .frame-testimonies p { margin: 71px 0 79px; padding: 0 131px; }
    .owl-prev { left: 50px; }
    .owl-next { right: 50px; }
    .prev { margin-top: -45px; left: 30px; height: 0; width: 0; box-sizing: content-box; border-width: 60px 20px 60px 0; border-style: solid; border-color: transparent #fff transparent transparent; }
    .next {  margin-top: -45px; right: 30px; height: 0; width: 0; box-sizing: content-box; border-width: 60px 0 60px 20px; border-style: solid; border-color: transparent transparent transparent #fff; }
    /*typo3 spacers*/
    .frame-space-before-extra-small { margin-top: .75em; }
    .frame-space-after-extra-small { margin-bottom: .75em; }
    .frame-space-before-small { margin-top: 1.5em; }
    .frame-space-after-small { margin-bottom: 1.5em; }
    .frame-space-before-medium { margin-top: 2.25em; }
    .frame-space-after-medium { margin-bottom: 2.25em; }
    .frame-space-before-large { margin-top: 3em; }
    .frame-space-after-large { margin-bottom: 3em; }
    .frame-space-before-extra-large { margin-top: 3.75em; }
    .frame-space-after-extra-large { margin-bottom: 3.75em; }
    
}
@media only screen and (min-width: 1400px) {
    .container-fluid .frame-layout-9 p { padding: 0 131px; }
    .frame-two-column-text { column-count: 2; column-gap: 60px; padding: 0 131px 40px; }
    .frame-layout-1.frame-two-column-text { column-count: 2; column-gap: 20px; padding: 109px 131px; }
    .wrap.filter { padding: 70px 131px 110px; }
    .frame-testimonies { position: relative; padding: 86px 131px 65px; }
    .container-fluid .contact .col p { padding: 10px 0; display: block; float: left; width: 100%; max-width: calc(100% - 172px); }
    .frame-space-before-extra-small { margin-top: 1em; }
    .frame-space-after-extra-small { margin-bottom: 1em; }
    .frame-space-before-small { margin-top: 2em; }
    .frame-space-after-small { margin-bottom: 2em; }
    .frame-space-before-medium { margin-top: 3em; }
    .frame-space-after-medium { margin-bottom: 3em; }
    .frame-space-before-large { margin-top: 4em; }
    .frame-space-after-large { margin-bottom: 4em; }
    .frame-space-before-extra-large { margin-top: 5em; }
    .frame-space-after-extra-large { margin-bottom: 5em; }
    .contact img { margin: 0 32px 0 0; float: left; }
    .contact .col p { text-align: left; }
}
@media only screen and (min-width: 1600px) {
    .contact { padding: 76px 133px 86px; }
}
@media only screen and (min-width: 1921px) {
    .image-embed-item { width:100%; }
}
@media only screen and (max-width: 767px) {
   
    figcaption, 
    figcaption.fixed,
    figcaption.bottom { position: absolute; left: 50%;  top: 50%!important; transform: translate(-50%,-50%); }

    .frame-type-textpic h2 { margin: 1.5em 0 .5em; }
    figcaption { font-size: 21px; line-height: 28px; }

}


.CookieDeclaration p {
    padding: 0;
    margin: 0;
}
a#CookieDeclarationChangeConsentChange {
    text-decoration: underline;
}