*,
*::after,
*::before {
    box-sizing: border-box;
}

:root {
    font-size: 1vw;
    --background-color: #fff;
    --text-color: #000;
    --wrapper-padding: 2rem;
}

body {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--background-color);
    color: var(--text-color);
    position: relative;
    margin: 0;
    width: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
}

::-moz-selection {
    background: var(--text-color);
    color: var(--background-color);
}

::selection {
    background: var(--text-color);
    color: var(--background-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 0;
}

h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
}

h3 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #000;
    cursor: none;
}

a, a:hover {
    text-decoration: none !important;
}

p a:hover {
    border-bottom: 1px solid #000;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

p {
    color: #000;
    line-height: 1.7;
}

.autofadein {
    animation: fadein 300ms ease-in;
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.mobile-only {
    display: none;
}

.wrapper {
    padding: var(--wrapper-padding);
    min-height: calc(100dvh - 3.1rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo img {
    width: 100%;
    height: auto;
}

header {
    position: sticky;
    z-index: 999;
    top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: padding 100ms ease-in-out;
    padding-right: 2rem;
    width: 20%;
    height: 100%;
}

header.is-pinned {
    background-color: var(--background-color);
}

main {
    width: 80%;
}

.logo {
    max-width: 10vw;
}

.header__work-title {
    margin-left: 2rem;
    font-size: 0.85em;
    display: none;
}

.single-work .is-pinned .header__work-title {
    display: block;
}

.work-title {
    transition: opacity 200ms ease-in-out;
}

.work-title.hidden {
    opacity: 0;
}

.work-subtitle {
    margin-bottom: 2rem;
}

.work-subtitle.hidden {
    opacity: 0;
}

.grid-single {
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 2rem 0 0;
    font-size: 1rem;
}

.grid-single-images {
    flex-basis: calc(70% - 2rem);
    padding-right: 2rem;
}

.grid-single-images img {
    width: 100%;
    height: 100%;
    max-height: calc(100dvh - 6rem);
    object-fit: contain;
    object-position: left top;
    margin-bottom: 1.5rem;
}

.grid-single-description {
    flex-basis: 30%;
    position: sticky;
    top: 2rem;
}

.grid-single-description>p:first-child {
    margin-top: 0;
}

.grid-single-description h2 {
    font-size: 1.5rem;
    margin-top: 0;
}

ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
}

.menu>li {
    padding: 0 0 0 2rem;
    font-size: 1rem;
}

#menu-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
    margin-left: 0.4em;
    letter-spacing: 1.1pt;
}

#menu-main li {
    padding: 1rem 0 0 0;
    font-size: 1rem;
}

#menu-main li a {
    position: relative;
}

#menu-main li a::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    opacity: 0;
    transition: all 300ms ease-in-out, width 300ms ease-in-out;
}

#menu-main li.menu-item-has-children>a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 0.7rem;
    height: 0.7rem;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
    height: 0.7rem;
    width: 0.7rem;
}

#menu-main li.menu-item-has-children.current-menu-ancestor>a::before {
    transform: translateY(-50%) rotate(180deg);
}

#menu-main li:hover>a:after,
#menu-main li.current-menu-item>a:after {
    width: 100%;
    opacity: 1;
}

#menu-main ul.sub-menu {
    display: none;
    opacity: 0;
    margin-left: 10px;
    transition: opacity 0.4s ease-in-out;
}

#menu-main .current-menu-item>.sub-menu,
#menu-main .current-menu-ancestor>.sub-menu,
#menu-main .current-projects-ancestor>.sub-menu {
    display: block;
    opacity: 1;
}

#menu-main ul.sub-menu.visible {
    opacity: 1;
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    max-width: 100%;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active {
    color: #000 !important;
}

.reveal {
    opacity: 0;
    transition: transform 1s, opacity 1s;
    transform: matrix3d(1, 0, 0, 0, 0, 1, .208378, 0, 0, -.173648, .984808, 0, 0, 90, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform-origin: 50% 50% 0px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

footer {
    padding: 1rem var(--wrapper-padding);
    background-color: #fff;
    color: #000;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #000;
}

footer a {
    color: #000;
    display: block;
}

.footer-1 {
    display: flex;
}

.showcase {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.showcase__item {
    flex-basis: 100%;
    padding: 4rem 0;
}

.showcase__item:first-child {
    padding-top: 0;
}

.showcase__item.full-width img {
    width: 100%;
    max-height: 80dvh;
    object-fit: cover;
}

.showcase__item.single-center {
    text-align: center;
}

.showcase__item.single-center img {
    max-height: 80dvh;
    width: auto;
}

.showcase__item.single-left>div {
    text-align: left;
    padding-left: 7.5rem;
}

.showcase__item.single-left img {
    max-height: 80dvh;
    width: auto;
}

.showcase__item.single-right>div {
    text-align: right;
    padding-right: 7.5rem;
}

.showcase__item.single-right img {
    max-height: 80dvh;
    width: auto;
}

.showcase__item.two-side-by-side {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.showcase__item.two-side-by-side>* {
    flex-basis: 50%;
    text-align: center;
}

.showcase__item.two-side-by-side>div:nth-of-type(1) img {
    margin-right: 2rem;
    max-height: 80dvh;
    width: auto;
}

.showcase__item.two-side-by-side>div:nth-of-type(2) img {
    margin-left: 2rem;
    max-height: 80dvh;
    width: auto;
}

.showcase__item.three-side-by-side {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.showcase__item.three-side-by-side>* {
    flex-basis: 33%;
    text-align: center;
}

.showcase__item.three-side-by-side>div:nth-of-type(1) img {
    margin-right: 1rem;
    max-height: 80dvh;
    width: auto;
}

.showcase__item.three-side-by-side>div:nth-of-type(2) img {
    margin-left: 1rem;
    margin-right: 1rem;
    max-height: 80dvh;
    width: auto;
}

.showcase__item.three-side-by-side>div:nth-of-type(3) img {
    margin-left: 1rem;
    max-height: 80dvh;
    width: auto;
}

.single-work .showcase {
    margin-top: 4rem;
}

.gallery-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery-grid__item {
    flex-basis: 50%;
    padding: 4rem;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    max-height: 80dvh;
    object-fit: contain;
    object-position: center;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.grid-3__item {
    flex-basis: 33%;
    padding-right: 2rem;
    padding-bottom: 1rem;
}

.grid-3__item:nth-child(3n) {
    padding-right: 0;
}

.grid-3__item a,
.grid-3__item figure {
    display: block;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.grid-3__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 500ms ease-in-out;
}

.grid-3__item a:hover img {
    transform: scale(1.1);
}

.press .grid-3__item img {
    object-position: top center;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.product-grid__item {
    padding: 2em 4em;
    position: relative;
    flex-basis: 50%;
}

.product-grid__item.superpadding {
    padding: 6em;
    align-self: flex-start;
}

.product-grid__item.negative-y {
    margin-top: -3em;
}

.product-grid__item.positive-y {
    margin-top: 5em;
}

.product-grid__item.w100 {
    flex-basis: 100%;
    padding: 2em 5em;
}

.product-grid__item picture, .product-grid__item img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 400ms ease-in-out;
}

.product-grid__item img.lazyload, .product-grid__item img.lazyloading {
    opacity: 0;
    transition: opacity 100ms;
}

.product-grid__item img.lazyloaded {
    opacity: 1;
}

.product-grid__item a:hover img {
    filter: brightness(50%);
}

.product-grid__item figcaption {
    position: absolute;
    z-index: 1;
    bottom: 0;
    margin: 2rem 3rem;
    color: #fff;
}

.product-grid__item a:hover figcaption>* {
    opacity: 1;
    transform: translateY(0);
}

.product-grid__item figcaption h3 {
    font-size: 1rem;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.row {
    display: flex;
    margin: -3em -5em 1em -5em;
}

.column {
    flex: 1;
    padding: 3em 5em 0 5em;
}

.column-full {
    min-width: 100%;
    max-width: 100%;
}

.column-half {
    min-width: 50%;
    max-width: 50%;
}

.column-onethird {
    min-width: 33.33%;
    max-width: 33.33%;
}

.column-twothirds {
    min-width: 66.66%;
    max-width: 66.66%;
}

.column-onefourth {
    min-width: 25%;
    max-width: 25%;
}

.column-threefourths {
    min-width: 75%;
    max-width: 75%;
}

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

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

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

.vertical-center {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-center>div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.left {
    float: left;
}

.right {
    float: right;
}

figure {
    margin: 0;
    padding: 0;
}

.small {
    font-weight: normal;
    font-size: 0.8em;
}

.full {
    width: 100%;
    height: auto;
    display: block;
}

.padding-top {
    padding-top: 4vh;
}

.padding-bottom {
    padding-bottom: 4vh;
}

.padding-left {
    padding-left: 4vw;
}

.padding-right {
    padding-right: 4vw;
}

.full-width {
    width: 100vw;
}

.full-height {
    height: 100vh;
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.object-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.max100 {
    max-width: 100%;
    height: auto;
    display: block;
}

.max70 {
    max-width: 100%;
    width: 70%;
    height: auto;
    display: block;
}

.custom-cursor {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: white;
    transition-property: transform, scale, opacity;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    scale: 0.3;
    z-index: 10000;
}

.custom-cursor--link {
    scale: 1;
}

.custom-cursor--active {
    scale: 0.6;
}

.custom-cursor--init {
    opacity: 1;
}

.cmplz-cookiebanner {
    cursor: default;
}

.cmplz-cookiebanner a,
.cmplz-cookiebanner button {
    cursor: pointer;
}

.fullscreen-swiper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.fullscreen-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fullscreen-swiper.active {
    opacity: 1;
    pointer-events: auto;
}

.close-swiper {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 48px;
    color: #000;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.2s ease;
}

.close-swiper:hover {
    transform: scale(1.2);
}

.close-swiper:focus {
    outline: none;
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
    width: calc(var(--swiper-navigation-size) / 44 * 60);
}

/* MOBILE MENU HAMBURGER TOGGLE */

.menu-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    cursor: pointer;
    padding-top: 11px;
    width: 24px;
    height: 30px;
    display: none;
    transform: scale(1.4);
}

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
    -webkit-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    -moz-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    -o-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
}

.menu-toggle span:before {
    top: -7px;
}

.menu-toggle span:after {
    top: 5px;
}

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
    cursor: pointer;
    border-radius: 0;
    height: 2px;
    width: 24px;
    position: relative;
    display: block;
    background-color: #000;
    content: '';
}

.menu-toggle.close span {
    background-color: transparent;
    top: 0;
}

.menu-toggle.close span:before {
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.menu-toggle.close span:after {
    top: -2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@media (pointer: coarse) {
    body {
        cursor: default;
    }

    a {
        cursor: pointer;
    }

    .custom-cursor {
        display: none;
    }
}

@media (max-width: 1200px) {
    :root {
        font-size: 1.2vw;
    }
}

@media (max-width: 1023px) {

    :root {
        font-size: 14px;
        --wrapper-padding: 1rem;
    }

    .mobile-only {
        display: block;
    }

    main {
        width: 100%;
        margin-top: calc(80px + 3rem);
        margin-bottom: 1rem;
    }

    header {
        position: fixed;
        width: 100%;
        height: calc(80px + 2rem);
        top: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 1rem;
        display: block;
        background-color: #fff;
    }

    .menu-toggle {
        display: block;
    }

    .menu-container {
        display: block;
        position: fixed;
        z-index: 998;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 1);
        opacity: 0;
        padding: 25px 25px 0 25px;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
        transform: translateY(-100%);
        margin-top: 0;
        margin-bottom: 0;
    }

    .menu-container.reveal {
        opacity: 1;
        transform: translateY(0%);
    }

    #menu-main {
        width: 100%;
        height: auto;
        display: block;
        margin-top: 4rem;
        margin-bottom: 4rem;
        margin-left: 0;
        float: none;
    }

    #menu-main {
        list-style: none;
    }

    #menu-main li {
        float: none;
        display: block;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        font-size: 1.5rem;
        margin-left: 0;
        margin-bottom: 1em !important;
        color: #000 !important;
    }

    #menu-main li a {
        color: #000 !important;
        font-size: 1.5rem;
    }

    #menu-main .sub-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #menu-main .sub-menu li {
        margin-bottom: 0.85em !important;
        text-align: center;
    }

    .mobile-body-overlay {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0;
    }

    .menu-open .mobile-body-overlay {
        display: block;
        z-index: 997;
    }

    body.menu-open {
        overflow-y: hidden;
    }

    .logo {
        position: absolute;
        top: var(--wrapper-padding);
        left: var(--wrapper-padding);
        margin-top: 0;
        padding: 0;
        height: auto;
        width: auto;
    }

    .logo img {
        height: 80px;
        width: auto;
    }

    .showcase__item,
    .gallery-grid,
    .gallery-grid__item,
    .grid-3,
    .grid-3__item {
        padding: 0;
        margin: 0;
        display: block !important;
    }

    .showcase__item.single-left>div {
        padding-left: 0;
    }

    .showcase__item.single-right>div {
        padding-right: 0;
    }

    .showcase__item img,
    .gallery-grid__item img {
        padding: 2rem 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 200% !important;
    }

    .grid-3__item {
        padding: 0.5rem 0 !important;
    }

    .grid-3__item img {
        padding: 0 !important;
    }

    .grid-3__item a:hover img {
        transform: none;
    }

    .single-work .showcase {
        margin-top: 0;
    }

    .grid-single {
        padding: 0;
        font-size: 1rem;
        flex-direction: column;
    }

    .grid-single-images {
        flex: 1;
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        order: 2;
    }

    .grid-single-images img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left top;
    }

    .grid-single-description {
        flex: 1;
        width: 100%;
        position: static;
        margin-left: 0;
        margin-bottom: 0.5rem;
        order: 1;
    }

    .product-grid {
        display: block;
        margin: 0;
        padding: 0;
    }

    .product-grid__item,
    .product-grid__item.superpadding,
    .product-grid__item.negative-y,
    .product-grid__item.positive-y,
    .product-grid__item.w100 {
        padding: 0;
        margin: 0;
        padding-bottom: 2rem;
    }

    footer {
        justify-content: center;
    }

    .row {
        margin: -2em -1.2em 0 -1.2em;
        display: block;
    }

    .row>.column {
        min-width: 100%;
        max-width: 100%;
        padding: 2em 1.2em;
    }

    .row>.column>div {
        padding: 0 !important;
    }

    .chocolat-wrapper .chocolat-right {
        top: 3.5rem;
        height: calc(100vh - 3.5rem);
        width: 50%;
        padding-left: 0;
        margin-top: 0;
    }

    .chocolat-wrapper .chocolat-left {
        top: 3.5rem;
        left: 0;
        height: calc(100vh - 3.5rem);
        width: 50%;
        margin-top: 0;
    }


    .chocolat-wrapper .chocolat-left:before,
    .chocolat-wrapper .chocolat-right:before {
        display: none;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

}