              /*00000000 0000000000000000000     0000 00000000000    000000     00000000                  
               00    000 00   000   00  000       00   000     0000    000   0000     0000                
              0000     0 0    000    0  000       00   000       000   000  0000       0000               
               000000         000       000       00   000        000  000  000         0000              
                 0000000      000       000       00   000        000  000  000          000              
                    00000     000       000       00   000        000  000  000          000              
              00      000     000       000       00   000       000   000  0000        000               
              0000    000     000       0000    000    000     0000    000   00000    0000                
               000000000     000000       00000000    00000000000    000000    000000000                  
                                      
  0000000000     000000 000000000000  0000000000     00000000000    000000    000000000  000000   000000  
   000   000000    000   0000    000   000   000000    000  00000    000    00000   0000  000       000   
   000       000   000   0000      00  000       000   000    0000   000   000        00  000       000   
   000        000  000   0000    0     000        000  000    000    000  000          0  000       000   
   000        000  000   000000000     000        000  000000000     000  000             0000000000000   
   000        000  000   0000    0     000        000  000  0000     000  000             000       000   
   000       000   000   0000       0  000       000   000   0000    000  0000         0  000       000   
   000     0000    000   0000     000  000     0000    000    0000   000   0000000 00000  000       000   
  00000000000    000000 0000000000000 00000000000    000000    00000000000   000000000   000000   000000  
                                      www.studiodiedrich.com                                          */



/* ##############   PRESETS   ############## */
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --sd_c-black: #000;
    --sd_c-white: #fff;
    --sd_c-lightgrey: #F3F3F3;
    --sd_c-middlegrey: #CDCDCD;
    --sd_c-grey: #929292;
    --sd_c-darkgrey: #686868;
    --sd_c-textgrey: #313131;
    --sd_c-highlight: #E1FF41;
    --sd_f-size-h1: clamp(50px, 8vw, 150px);
    --sd_f-size-h2: 40px;
    --sd_f-size-h3: 30px;
    --sd_f-size-h4: 15px;
    --sd_f-size-p: 14px;
    --sd_f-size-p-l: 14px;
    --sd_f-size-p-huge: clamp(150px, 12vw, 270px);
    --sd_f-line-height: 1.1;
    --sd_space-xs: 5px;
    --sd_space-s: 10px;
    --sd_space-m: 15px;
    --sd_space-l: 20px;
    --sd_space-xl: 30px;
    --sd_space-xxl: 60px;
    --sd_space-xxxl: 100px;
    --sd_max-width: 1800px;
    --sd_app-height: 100vh;
    --sd_dyn-app-height: 100vh;
    --sdn-toggle-height: 36px;
    --sdn-toggle-width: 83px;
    --sd-nav-height: 86px;
    --sd_transition-normal: all .3s ease-in-out;
    --sd_transition-short: all .2s ease-in-out;
    --sd_transition-very-short: all .1s ease-in-out;
    --sd_transition-lazyload: filter .3s ease-in-out .3s, opacity .3s ease-in-out;
    --sd_border-black: 1px solid #000;
    --sd_border-grey: 1px solid #929292;
    --sd_border-white: 1px solid #fff;
    --sd_border-radius: 10px;
    --sd_border-radius-s: 5px;
}

::selection {
    color: var(--sd_c-grey);
    background: var(--sd_c-highlight);
}

@font-face {
    font-family:'NON-Natural-Grotesk';
    src: url('../fonts/NON Natural Grotesk_TrialVersion-Regular.woff2') format('woff2'),
         url('../fonts/NON Natural Grotesk_TrialVersion-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family:'SuisseIntl-Medium';
    src: url('../fonts/SuisseIntl-Medium.woff2') format('woff2'),
         url('../fonts/SuisseIntl-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    min-height: 100%;
}

html {
    font-family: "NON-Natural-Grotesk", sans-serif;
    background: var(--sd_c-white);
    overflow-x: hidden;
}

body {
    font-family: "NON-Natural-Grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--sd_c-white);
    font-size: var(--sd_f-size-p);
    line-height: var(--sd_f-line-height);
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-style: normal;
    font-size: var(--sd_f-size-p);
    color: var(--sd_c-textgrey);
}

p a {
    color: var(--sd_c-textgrey);
}

.p-l {
    font-family: "NON-Natural-Grotesk", sans-serif;
    font-size: var(--sd_f-size-p-l);
    text-transform: uppercase;
}

.p-huge {
    font-family: "NON-Natural-Grotesk", sans-serif;
    font-size: var(--sd_f-size-p-huge);
    text-transform: uppercase;
}

h1, h2, h3, h4 {
    font-family: "NON-Natural-Grotesk", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
}

h2, h3 {
    color: var(--sd_c-grey);
}

h1 {
    font-size: var(--sd_f-size-h1);
    color: var(--sd_c-white);
}

h2 {
    font-size: var(--sd_f-size-h2);
}

h3 {
    font-size: var(--sd_f-size-h3);
}

h4 {
    font-size: var(--sd_f-size-h4);
    color: var(--sd_c-textgrey);
}

a {
    font-size: var(--sd_f-size-p);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

a,
a p,
.link-hover,
.link-hover a,
.link-hover p {
    transition: var(--sd_transition-normal);
}

.link-hover:hover,
a.link-hover:hover,
.link-hover:hover p,
a.link-hover:hover p {
    color: var(--sd_c-highlight);
}

.sd_button,
.sdn-toggle {
    transition: var(--sd_transition-normal);
    border-radius: var(--sd_border-radius-s);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-color: rgba(146, 146, 146, 0.38);
    padding: var(--sd_space-xs) var(--sd_space-xs) calc(var(--sd_space-xs) - 1px) var(--sd_space-xs);
}

.sd_button p,
.sdn-toggle p.sdn-nav-btn {
    padding: var(--sd_space-xs);
    transition: var(--sd_transition-normal);
    border-radius: var(--sd_border-radius-s);
    color: var(--sd_c-white);
}

.sd_button:hover:not(.no-hover) p,
.sdn-toggle:hover p.sdn-nav-btn:not(.sdn-toggle.is-active p.sdn-nav-btn) {
    background-color: var(--sd_c-black);
    color: var(--sd_c-white);
}

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

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

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

.bg-highlight {
    background-color: var(--sd_c-highlight);
}

.bg-black {
    background-color: var(--sd_c-black);
}

.bg-white {
    background-color: var(--sd_c-white);
}

.bg-grey {
    background-color: var(--sd_c-grey);
}

.bg-lightgrey {
    background-color: var(--sd_c-lightgrey);
}

.bg-darkgrey {
    background-color: var(--sd_c-darkgrey);
}

.hidden {
    display: none !important;
}

img {
    vertical-align: bottom;
    width: 100%;
}

.img-wrapper {
    overflow: hidden;
}

li {
    list-style: none;
}

.mobile-only {
    display: none !important;
}

.top-border {
    border-top: var(--sd_border-grey);
}

.swiper-pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0 !important;
}

.swiper-scrollbar {
    background: var(--sd_c-middlegrey) !important;
    height: 2px !important;
    border-radius: 10px;
    max-width: 600px;
    position: relative !important;
    width: 100% !important;
    transform-origin: left center;
    left: 0 !important;
    right: 0 !important;
}

.swiper-scrollbar-drag {
    background: var(--sd_c-darkgrey) !important;
}

.lazy-image {
    width: 100%;
    height: auto;
    filter: blur(10px);
    transition: var(--sd_transition-lazyload);
    opacity: 0;
}

.lazy-image.loaded {
    filter: blur(0);
    opacity: 1;
}

/* ##############   PRESETS   ############## */

/* ##############   GENERAL   ############## */

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: var(--sd_app-height);
}


/* ------[ SD NAV ]------ */

.sd_nav {
    padding: var(--sd_space-xl);
    width: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
}

.sd_nav nav {
    display: flex;
    gap: var(--sd_space-s);
    flex-direction: column;
}

.sdn-logo {
    width: 280px;
}

.sdn-logo svg {
    width: 100%;
}

.sd_nav .sdn-toggle {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.sd_nav .sdn-toggle p {
    display: flex;
    align-items: center;
    gap: var(--sd_space-xs);
}

.sdn-nav-btn {
    display: flex;
    align-items: end;
    cursor: pointer;
}

.sdn-menu {
    position: relative;
}

.sdn-menu .sdn-toggle {
    max-height: var(--sdn-toggle-height);
    max-width: var(--sdn-toggle-width);
    overflow: hidden;
    transition: all 0.4s ease-in-out .2s;
}

.sdn-menu .sdn-toggle.is-active {
    max-height: calc(var(--sdnm-nav-height) + var(--sdn-toggle-height));
    max-width: calc(var(--sdnm-nav-width) + var(--sd_space-s));
    transition: all 0.4s ease-in-out;
}

.sdnm-nav {
    padding: calc(var(--sd_space-m) + var(--sd_space-s));
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--sd_space-xxl));
}

.sdnm-nav ul,
.sdnm-nav .sdnm-nav-bottom {
    opacity: 0;
    transition: var(--sd_transition-normal);
}

.sdnm-nav.is-active ul,
.sdnm-nav.is-active .sdnm-nav-bottom {
    opacity: 1;
    transition: var(--sd_transition-normal) .4s;
}

.sdnm-nav-bottom {
    display: flex;
    gap: calc(3 * var(--sd_space-xl));
}

.sdnmb-col {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sdnm-nav-bottom h4,
.sdnm-nav-bottom p {
    color: var(--sd_c-white);
    white-space: nowrap;
}

.sdnm-nav-bottom p {
    margin-bottom: var(--sd_space-xl);
}

.sdn-link_first-level h3 {
    color: var(--sd_c-white);
}

/* ---^--- SD NAV ---^--- */

/* ##############   GENERAL   ############## */

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sd_module,
.block,
.m-w {
    max-width: var(--sd_max-width);
    width: 100%;
}

.sd_block:not(.full) {
    margin: 0 var(--sd_space-xl);
}

.block:not(.no-fade), 
.sd_module:not(.no-fade) {
    opacity: 0;
    transition: all 0.4s ease-out;
}

.block.fade-in,
.sd_module.fade-in {
    opacity: 1;
}


/* ------[ MODULES ]------ */

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

.sdm-hero.home {
    background-color: var(--sd_c-black);
    width: 100%;
    border-radius: 0 0 var(--sd_border-radius) var(--sd_border-radius);
    height: var(--sd_app-height);
    padding: var(--sd_space-l);
}

.sdm-hero.project {
    margin-top: var(--sd-nav-height);
    margin-bottom: var(--sd_space-xl);
    padding: 0 var(--sd_space-xl);
    width: 100%;
    height: calc(var(--sd_dyn-app-height) - var(--sd-nav-height) - var(--sd_space-xl));
}

.sdmh-project-head,
.project-visual {
    width: 100%;
    height: 100%;
}

.sdmh-project-head {
    border-radius: var(--sd_border-radius);
    overflow: hidden;
    margin: 0 var(--sd_space-xl);
}

.sdmh-project-head img,
.sdmh-project-head video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sdmh-project-intro {
    padding: 0 var(--sd_space-xl) 150px var(--sd_space-xl);
}

.sdpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sd_space-xl);
    padding-top: var(--sd_space-m);
}


.sdm-hero.page {
    padding: 0 var(--sd_space-xl) 0 var(--sd_space-xl);
}

.sdmh-page-head {
    border-radius: var(--sd_border-radius);
    background-color: var(--sd_c-black);
    height: 50vh;
    margin-top: var(--sd-nav-height);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sdmh-page-head h2 {
    color: var(--sd_c-white);
}

/* ---^--- MODULES ---^--- */


/* ------[ BLOCKS ]------ */


/* ------[ INTRO-BLOCK ]------ */

.sd_intro-block {
    padding: var(--sd_space-l) 0 200px 0;
}

.sd_intro-block.subpage {
    padding: var(--sd_space-l) 0 100px 0;
}

.sd_intro-block:not(.subpage) h2 {
    max-width: calc(var(--sd_max-width) / 4 * 3);
}

/* ---^--- INTRO-BLOCK ---^--- */

/* ------[ PROJECT-SLIDER-BLOCK ]------ */

.block-type-project-slider-block {
    overflow: hidden;
}

.sd-head {
    padding: var(--sd_space-m) 0;
    margin-bottom: 150px;
}

.sd-psb-slider {
    overflow: visible !important;
}

.sd-psb-slider .swiper-slide {
    aspect-ratio: 1/1;
}

.psb-container.bg-highlight {
    height: 80%;
    transition: var(--sd_transition-normal);
}

.psb-container.bg-highlight:hover {
    background-color: var(--sd_c-black);
}

.psb-container {
    width: 100%;
    height: 100%;
    border-radius: var(--sd_border-radius);
    overflow: hidden;
    position: relative;
}

.psb-container img,
.psb-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.psb-container {
    position: relative;
    overflow: hidden;
}

.psb-container:not(.bg-highlight)::before,
.psb-container:not(.bg-highlight)::after,
.sdrb-tile:not(.bg-highlight)::before,
.sdrb-tile:not(.bg-highlight)::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 30%;
    transition: var(--sd_transition-normal);
    pointer-events: none;
    z-index: 1;
}

.psb-container:not(.bg-highlight)::before,
.sdrb-tile:not(.bg-highlight)::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,0));
}

.psb-container:not(.bg-highlight)::after,
.sdrb-tile:not(.bg-highlight)::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
}

.psb-container:hover:not(.bg-highlight)::before {
    filter: invert(1);
}

.psb-container:hover:not(.bg-highlight)::after {
    filter: invert(1);
}

.psbc-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--sd_transition-normal);
    padding: var(--sd_space-m);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.psbct-bottom {
    display: flex;
    justify-content: space-between;
    gap: var(--sd_space-m);
    align-items: end;
}

.psb-container .sd_button {
    opacity: 0;
}

.psb-container:hover .sd_button {
    opacity: 1;
}

.psb-container .psbc-text h3,
.psb-container .psbc-text p {
    transition: var(--sd_transition-normal);
}

.psbc-text h3:not(.bg-highlight .psbc-text h3) {
    color: var(--sd_c-lightgrey);
}

.bg-highlight .psbc-text h3 {
    color: var(--sd_c-textgrey);
}

.psbc-text:not(.bg-highlight .psbc-text) h3,
.psbc-text:not(.bg-highlight .psbc-text) p {
    color: var(--sd_c-white);
}

.psb-container:hover:not(.bg-highlight) .psbc-text h3,
.psb-container:hover:not(.bg-highlight) .psbc-text p:not(.sd_button p) {
    color: var(--sd_c-black);
}

.psb-container.bg-highlight:hover .psbc-text h3,
.psb-container.bg-highlight:hover .psbc-text p:not(.sd_button p) {
    color: var(--sd_c-white);
    transition: var(--sd_transition-normal);
}

/* ---^--- PROJECT-SLIDER-BLOCK ---^--- */

/* ------[ SERVICES-TEASER-BLOCK ]------ */

.sd_services-teaser-block {
    background-color: var(--sd_c-black);
    border-radius: var(--sd_border-radius);
    display: flex;
    position: relative;
}

.sd_services-teaser-block h3.active,
.sd_services-teaser-block p {
    color: var(--sd_c-white);
}

.sdst-nav,
.sdst-content {
    width: 50%;
    padding: 110px var(--sd_space-xl) var(--sd_space-xl) var(--sd_space-xl);
}

.sdst-nav {
    position: sticky;
    top: 0;
    height: var(--sd_app-height);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.sdst-content {
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xxl);
}

.sdst-content-item {
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xl);
    align-items: start;
}

/* ---^--- SERVICES-TEASER-BLOCK ---^--- */

/* ------[ ABOUT-TEASER-BLOCK ]------ */

.sd_about-teaser-block {
    padding: var(--sd_space-xl) 0;
}

.sd_about-teaser-block .sd-head {
    margin-bottom: var(--sd_space-m);
}

.sdatb-body {
    height: 60vh;
    min-height: 550px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sdatb-tile {
    position: absolute;
    cursor: grab;
    user-select: none;
    border-radius: var(--sd_border-radius);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    hyphens: auto;
}

.grid.array-container::before {
  opacity: 1;
  top: calc(1rem);
  right: calc(1rem - 1px);
  bottom: calc(1rem - 1px);
  left: calc(10rem);
  border: 1px dotted currentColor;
  box-shadow: none;
}

.sdatb-tile[data-type="image"] .sdatbt-img {
    overflow: hidden;
    border-radius: var(--sd_border-radius);
}

.sdatb-tile.ver-img {
    max-width: 350px;
}

.sdatb-tile img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}

.sdatbt-img video {
    width: 100%;
    height: 100%;
    display: block;
}

.sdatb-tile[data-type="quote"] {
    background-color: var(--sd_c-grey);
    padding: var(--sd_space-l);
}

.sdatb-tile[data-type="quote"] h3 {
    color: var(--sd_c-white);
}

.sdatb-tile[data-type="text"] {
    background-color: var(--sd_c-highlight);
    padding: var(--sd_space-l);
}

.sdatb-tile[data-type="text"] h4,
.sdatb-tile[data-type="text"] p {
    color: var(--sd_c-darkgrey);
}

.sdatb-tile[data-type="text"] h4 {
    padding: var(--sd_space-s) 0;
    margin-bottom: var(--sd_space-xxl);
}

/* ---^--- ABOUT-TEASER-BLOCK ---^--- */

/* ------[ TILES-BIG-BLOCK ]------ */

.sd_tiles-big-block {
    display: flex;
    flex-direction: column;
    gap: calc(var(--sd_space-xl) + var(--sd_space-l));
}

.sdtb-head {
    padding: var(--sd_space-s) 0;
    width: 50%;
}

.sdtb-head.services-tiles {
    width: 100%;
}

.sdtb-tiles {
    display: flex;
    align-items: end;
    gap: var(--sd_space-m);
    min-height: 600px;
    overflow-x: scroll;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    margin-bottom: var(--sd_space-xxxl);
}

.sdtb-tiles.services-tiles {
    min-height: 320px;
}

.sdtb-tiles .swiper-wrapper {
    min-height: 300px;
    align-items: end;
}

.sdtb-tiles::-webkit-scrollbar {
    display: none;
}

.sd-tile {
    border-radius: var(--sd_border-radius);
    padding: var(--sd_space-m);
    flex: 1;
    margin-right: var(--sd_space-m);
}

.sd-tile.big {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 200px;
    transition: var(--sd_transition-normal);
    min-height: 500px;
    min-width: 500px;
}

.services-tiles .sd-tile.big {
    min-height: 260px;
}

.sd-tile.big.tall {
    min-height: 600px;
}

.services-tiles .sd-tile.big.tall {
    min-height: 300px;
}

.sd-tile.bg-darkgrey h4 {
    color: var(--sd_c-white);
}

/* ---^--- TILES-BIG-BLOCK ---^--- */

/* ------[ TILES-SMALL-BLOCK ]------ */

.block-type-tiles-small-block {
    display: flex;
    justify-content: end;
}

.sd_tiles-small-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xl);
}

.sd_tiles-small-block .sdtb-head {
    width: 100%;
}

.sdts-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--sd_space-m);
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: var(--sd_space-xxxl);
}

.sd-tile.small {
    width: 100%;
    min-width: var(--sd_space-xxxl);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    transition: var(--sd_transition-very-short);
}

.sd-tile.small:hover {
    transform: scale(1.1);
}

/* ---^--- TILES-SMALL-BLOCK ---^--- */

/* ------[ TEXT-BLOCK ]------ */

.sd_text-block .sdpi-grid {
    margin-bottom: var(--sd_space-xxxl);
    padding-top: var(--sd_space-xl);
}

/* ---^--- TEXT-BLOCK ---^--- */

/* ------[ MARQUEE-BLOCK ]------ */

.sdmb-wrapper {
    overflow: hidden;
    display: flex;
    margin-bottom: var(--sd_space-xxxl);
}

.smbw-inner {
    display: flex;
    animation: marquee 20s linear infinite;
    gap: 100px;
}

.smbw-inner .spacer {
  width: 100px;
  flex-shrink: 0;
}


@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---^--- MARQUEE-BLOCK ---^--- */

/* ------[ REFERENCES-BLOCK ]------ */

.block-type-references-block {
    margin-bottom: calc(var(--sd_space-xl) + var(--sd_space-l));
}

.sdrb-body {
    height: 120vh;
    min-height: 1500px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sdrb-tile {
    position: absolute;
    cursor: grab;
    user-select: none;
    border-radius: var(--sd_border-radius);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    aspect-ratio: 5/4;
}

.sdrb-tile .psbc-text .psbct-desc {
    color: var(--sd_c-white);
}

.grid.array-container::before {
  opacity: 1;
  top: calc(1rem);
  right: calc(1rem - 1px);
  bottom: calc(1rem - 1px);
  left: calc(10rem);
  border: 1px dotted currentColor;
  box-shadow: none;
}

.sdrb-tile[data-type="image"] .sdrbt-img {
    overflow: hidden;
    border-radius: var(--sd_border-radius);
}

.sdrb-tile.ver-img {
    max-width: 350px;
}

.sdrb-tile img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}
.sdrbt-img {
    height: 100%;
}

.sdrbt-img img,
.sdrbt-img video {
    object-fit: cover;
    height: 100%;
}

.sdrbt-img video {
    width: 100%;
    height: 100%;
    display: block;
}

.sdrb-tile[data-type="quote"] {
    background-color: var(--sd_c-grey);
    padding: var(--sd_space-l);
}

.sdrb-tile[data-type="quote"] h3 {
    color: var(--sd_c-white);
}

.sdrb-tile[data-type="text"] {
    background-color: var(--sd_c-highlight);
    padding: var(--sd_space-l);
}

.sdrb-tile[data-type="text"] h4,
.sdrb-tile[data-type="text"] p {
    color: var(--sd_c-darkgrey);
}

.sdrb-tile[data-type="text"] h4 {
    padding: var(--sd_space-s) 0;
    margin-bottom: var(--sd_space-xxl);
}

/* ---^--- REFERENCES-BLOCK ---^--- */

/* ------[ SKILLSET-BLOCK ]------ */

.sd_skillset-block {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--sd_space-xxl);
}

.sdsk-right .sdtb-head,
.sdsk-right .sdskr-skills {
    width: 100%;
}

.sdskr-facts {
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xxxl);
}

.sdskrf-item .p-huge {
    margin-top: var(--sd_space-xl);
}

.sdsk-right .sdskr-skills {
    margin-top: calc(var(--sd_space-xl) + var(--sd_space-l));
    margin-bottom: var(--sd_space-xxxl);
}

.sdskr-skills {
    display: flex;
    flex-direction: column;
}

.sdskrs-item {
    padding: var(--sd_space-s) 0;
}

.sdskrs-item h4 {
    color: var(--sd_c-darkgrey);
}

.sdsk-right .sdts-tiles {
    margin-top: var(--sd_space-l);
}

/* ---^--- SKILLSET-BLOCK ---^--- */

/* ------[ SERVICE-BLOCK ]------ */

.block-type-service-block {
    margin-bottom: var(--sd_space-xl);
}

.sd-tile.sd-seb {
    padding: var(--sd_space-xl);
}

.sd-seb-top {
    display: flex;
    justify-content: space-between;
}

.sd-sebt-text {
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xl);
}

.sd-sebt-text p,
.sd-seb-bottom p {
    color: var(--sd_c-darkgrey);
}

.sd-sebt-lottie .sdst-media {
    max-width: 420px;
}

.sd-seb-bottom {
    display: flex;
    flex-direction: column;
    gap: calc(var(--sd_space-l) + var(--sd_space-l));
    max-width: 880px;
    padding-top: var(--sd_space-s);
}

.sd-tile.sd-seb {
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    gap: var(--sd_space-xxxl);
}

.sd-seb.sd-tile.bg-darkgrey h3,
.sd-seb.sd-tile.bg-darkgrey h4,
.sd-seb.sd-tile.bg-darkgrey p,
.sd-seb.sd-tile.bg-black h3,
.sd-seb.sd-tile.bg-black h4,
.sd-seb.sd-tile.bg-black p {
    color: var(--sd_c-white);
}

.sd-seb.sd-tile.bg-darkgrey .top-border,
.sd-seb.sd-tile.bg-black .top-border {
    border-top: var(--sd_border-white);
}

/* ---^--- SERVICE-BLOCK ---^--- */

/* ------[ CLIENT-LIST-BLOCK ]------ */

.sd_client-list-block .sdtb-head {
    width: 100%;
    margin-bottom: calc(var(--sd_space-xl) + var(--sd_space-l));
}

.sdcl-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(20, 1fr);
    grid-auto-flow: column;
    gap: 0 var(--sd_space-m);
    margin-bottom: var(--sd_space-xxxl);
}

.sdcll-item {
    display: flex;
    gap: calc(var(--sd_space-xl) + var(--sd_space-xl));
}

.sdcll-letter {
    width: 30px;
}

.sdcl-list h3 {
    color: var(--sd_c-middlegrey);
    transition: var(--sd_transition-very-short);
    cursor: default;
}

.sdcl-list h3:hover {
    color: var(--sd_c-darkgrey);
}

/* ---^--- CLIENT-LIST-BLOCK ---^--- */

/* ------[ CONTACT-BLOCK ]------ */

.block-type-contact-block {
    margin-bottom: var(--sd_space-l);
}

.sd_contact-block {
    border-radius: var(--sd_border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--sd_space-l) + var(--sd_space-xl)) var(--sd_space-xl);
}

.sd_contact-block h2 {
    color: var(--sd_c-darkgrey);
}

/* ---^--- CONTACT-BLOCK ---^--- */

/* ---^--- BLOCKS ---^--- */


/* ##############   FOOTER   ############## */

.sd-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 350px var(--sd_space-xl);
    padding: var(--sd_space-xl);
    background-color: var(--sd_c-black);
    margin-top: var(--sd_space-xl);
    border-radius: var(--sd_border-radius) var(--sd_border-radius) 0 0;
}

.sd-footer h4 {
    color: var(--sd_c-white);
}

.sdf-nav {
    display: flex;
    justify-content: end;
    align-items: start;
    gap: calc(3 * var(--sd_space-xl));
}

.sdf-legal-nav {
    align-items: end;
}

.sdf-contact {
    display: flex;
    gap: var(--sd_space-xl);
    justify-content: space-between;
}

.sdf-contact .sdfc-col {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sdf-contact p {
    margin-bottom: var(--sd_space-xl);
    color: var(--sd_c-darkgrey);
}

/* ##############   FOOTER   ############## */

/* ##############   COOKIE   ############## */

#cookie-banner {
    max-width: 420px;
    border: var(--sd_border);
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: var(--sd_c-white);
    padding: var(--sd_space-m);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--sd_space-m);
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
  
/* ##############   COOKIE   ############## */



/* ==============   MOBILE   ============== */


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

    /* ------[ CLIENT-LIST-BLOCK ]------ */

    .sdcl-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: calc(var(--sd_space-xl) + var(--sd_space-l));
    }

    .sdcll-item {
        gap: calc(var(--sd_space-xl) + var(--sd_space-l));
    }

    /* ---^--- CLIENT-LIST-BLOCK ---^--- */

    /* ------[ SERVICE-BLOCK ]------ */

    .block-type-service-block {
        margin-bottom: var(--sd_space-l);
    }

    .sd-seb-top {
        flex-direction: column;
        gap: var(--sd_space-xl);
    }

    .sd-sebt-lottie .sdst-media,
    .sd-seb-bottom {
        max-width: none;
    }

    /* ---^--- SERVICE-BLOCK ---^--- */
}

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


    :root {
        --sd_f-size-h1: clamp(30px, 8vw, 60px);
        --sd_f-size-h2: clamp(30px, 6vw, 40px);
        --sd_f-size-h3: clamp(20px, 6.7vw, 30px);
        --sd_f-size-p-huge: clamp(90px, 24vw, 270px);
    }

    h2, h3 {
        hyphens: auto;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }


    .sd_block:not(.full) {
        margin: 0 var(--sd_space-l);
    }

    .sd_nav {
        padding: var(--sd_space-xl) var(--sd_space-l);
    }

    .as-logo {
        width: 200px;
    }

    .sdn-menu {
        position: absolute;
        right: var(--sd_space-l);
        top: var(--sd_space-xl);
    }

    .sdn-menu .sdn-toggle.is-active {
        max-width: calc(100vw - var(--sd_space-l) - var(--sd_space-l));
        width: calc(100vw - var(--sd_space-l) - var(--sd_space-l));
    }

    .sdnm-nav {
        width: calc(100vw - 50px);;
    }

    .sdnm-nav-bottom {
        flex-direction: column;
        gap: calc(var(--sd_space-l) + var(--sd_space-xl));
    }

    .sdm-hero.page,
    .sdm-hero.project {
        padding: 0 var(--sd_space-l);
    }


    .sd_intro-block {
        padding: var(--sd_space-l) 0 150px 0;
    }

    .sdmh-project-intro {
        padding: 0 var(--sd_space-l) 150px var(--sd_space-l);
    }



    /* ------[ MODULES]------ */

    .sdpi-grid {
        grid-template-columns: 1fr;
    }

    /* ---^--- MODULES ---^--- */

    /* ------[ SERVICES-TEASER-BLOCK ]------ */

    .sd_services-teaser-block {
        flex-direction: column;
    }

    .sdst-nav,
    .sdst-content {
        width: 100%;
        padding: calc(var(--sd_space-l) + var(--sd_space-xl)) var(--sd_space-xl);
    }

    .sdst-nav {
        position: relative;
        height: auto;
        gap: calc(var(--sd_space-l) + var(--sd_space-xl));
    }

    .sdst-content {
        display: flex;
        flex-direction: column;
        gap: var(--sd_space-xxl);
    }

    .sdst-content-item {
        display: flex;
        flex-direction: column;
        gap: var(--sd_space-xl);
        align-items: start;
    }

    /* ---^--- SERVICES-TEASER-BLOCK ---^--- */

    /* ------[ TILES-BLOCK ]------ */

    .sdatb-tile {
        max-width: 70vw;
    }

    .sdatb-tile.ver-img {
        max-width: 45vw;
    }

    .sd_tiles-small-block {
        width: 100%;
    }

    .sd-tile.big {
        min-width: calc(100vw - var(--sd_space-l) - var(--sd_space-l));
    }

    /* ---^--- TILES-BLOCK ---^--- */

    /* ------[ REFERENCES-BLOCK ]------ */

    .sdrb-body {
        height: auto;
        min-height: 0px;
        display: flex;
        flex-direction: column;
        gap: var(--sd_space-m);
    }

    .sdrb-tile {
        position: relative;
        cursor: unset;
        max-width: none;
        aspect-ratio: 4/5;
    }

    .sdrb-tile .sd_button {
        white-space: nowrap;
    }

    .sdrb-tile .psbc-text .psbct-desc {
        color: var(--sd_c-white);
    }

    .grid.array-container::before {
        opacity: 1;
        top: calc(1rem);
        right: calc(1rem - 1px);
        bottom: calc(1rem - 1px);
        left: calc(10rem);
        border: 1px dotted currentColor;
        box-shadow: none;
    }

    .sdrb-tile[data-type="image"] .sdrbt-img {
        overflow: hidden;
        border-radius: var(--sd_border-radius);
    }

    .sdrb-tile.ver-img {
        max-width: 350px;
    }

    .sdrb-tile img {
        pointer-events: none;
        user-drag: none;
        -webkit-user-drag: none;
    }
    .sdrbt-img {
        height: 100%;
    }

    .sdrbt-img img,
    .sdrbt-img video {
        object-fit: cover;
        height: 100%;
    }

    .sdrbt-img video {
        width: 100%;
        height: 100%;
        display: block;
    }

    .sdrb-tile[data-type="quote"] {
        background-color: var(--sd_c-grey);
        padding: var(--sd_space-l);
    }

    .sdrb-tile[data-type="quote"] h3 {
        color: var(--sd_c-white);
    }

    .sdrb-tile[data-type="text"] {
        background-color: var(--sd_c-highlight);
        padding: var(--sd_space-l);
    }

    .sdrb-tile[data-type="text"] h4,
    .sdrb-tile[data-type="text"] p {
        color: var(--sd_c-darkgrey);
    }

    .sdrb-tile[data-type="text"] h4 {
        padding: var(--sd_space-s) 0;
        margin-bottom: var(--sd_space-xxl);
    }

    /* ---^--- REFERENCES-BLOCK ---^--- */

    /* ------[ SKILLSET-BLOCK ]------ */

    .sd_skillset-block {
        grid-template-columns: 1fr;
    }

    .sdskrf-item .sdtb-head {
        width: 100%;
    }

    /* ---^--- SKILLSET-BLOCK ---^--- */

    /* ------[ CLIENT-LIST-BLOCK ]------ */

    .sdcll-item {
        gap: var(--sd_space-l);
    }

    /* ---^--- CLIENT-LIST-BLOCK ---^--- */

    /* ------[ CONTACT-BLOCK ]------ */

    .sd_contact-block {
        flex-direction: column;
        align-items: start;
        gap: 100px;
        padding: var(--sd_space-xl);
    }

    /* ---^--- CONTACT-BLOCK ---^--- */

    

    /* ##############   FOOTER   ############## */

    .sd-footer {
        grid-template-columns: 1fr;
        gap: calc(var(--sd_space-xl) + var(--sd_space-l)) var(--sd_space-xl);
    }

    .sdf-contact {
        gap: calc(3 * var(--sd_space-xl));
        justify-content: start;
        margin-top: 200px;
    }

    .sdf-nav {
        justify-content: start;
    }

    /* ##############   FOOTER   ############## */

}

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

    /* ##############   FOOTER   ############## */
    
    .sdf-nav:not(.sdf-legal-nav) {
        flex-direction: column;
        gap: var(--sd_space-s);
    }

    .sdf-legal-nav {
        justify-content: space-between;
        gap: var(--sd_space-s);
    }

    .sdf-contact {
        flex-direction: column;
        gap: calc(var(--sd_space-xl) + var(--sd_space-l));
        margin-top: var(--sd_space-xxxl);
    }
    
    /* ##############   FOOTER   ############## */

    /* ------[ SERVICE-BLOCK ]------ */

    .sd-tile.sd-seb,
    .sd-seb-top {
        gap: calc(var(--sd_space-l) + var(--sd_space-xl));
    }

    .block-type-service-block {
        margin-bottom: calc(var(--sd_space-l) + var(--sd_space-xl));
    }

    /* ---^--- SERVICE-BLOCK ---^--- */
}

 /* ==============   MOBILE   ============== */