/* - - - - G L O B A L - - - - */


/* normalize */

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

html {
    width: 100%;
    min-height: 100% !important;
    height: 100%;
    display: flex;
}

html,
body {
    /*    overflow-x: hidden;*/
    /*    scroll-behavior: smooth;*/

    /* prevent overscroll on apple devices */
    /* overscroll-behavior: none !important; */

    /*    overflow-x: hidden;*/

    /* Prevent font scaling in landscape while allowing user zoom */
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    font-size: 100% !important;
}

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


/* text selection */

::-moz-selection {
    /* Code for Firefox */
    color: #000000;
    background: #E5E5E5;
}

::selection {
    color: #000000;
    background: #E5E5E5;
}


/* Variablen */
:root {
    --green: #78C5A0;
    /* var(--green) */

    --gap: 2rem;
    /* var(--gap) */

    --nav-height: calc(62px + var(--gap));
}


/* - - - - T Y P O G R A P H Y - - - - */

html,
body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 130%;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: var(--green);
}

p {}

p a {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1rem;
    font-weight: 700;
}

/* - - - - T R A N S I T I O N S - - - - */

a,
.exhibitions-gallery p,
.exhibitions-gallery img {
    -webkit-transition: color 0.09s linear;
    -moz-transition: color 0.09s linear;
    -o-transition: color 0.09s linear;
    -ms-transition: color 0.09s linear;
    transition: color 0.09s linear !important;
}


.logo img,
.social img {
    -webkit-transition: filter 0.2s ease-in-out;
    -moz-transition: filter 0.2s ease-in-out;
    -o-transition: filter 0.2s ease-in-out;
    -ms-transition: filter 0.2s ease-in-out;
    transition: filter 0.2s ease-in-out !important;
}


button,
.artwork-gallery .artwork,
.exhibitions-gallery p {
    -webkit-transition: color 0.09s linear;
    -moz-transition: color 0.09s linear;
    -o-transition: color 0.09s linear;
    -ms-transition: color 0.09s linear;
    transition: color 0.09s linear !important;
}

.artwork-gallery .artwork img,
.exhibitions-gallery img {
    -webkit-transition: opacity 0.09s linear;
    -moz-transition: opacity 0.09s linear;
    -o-transition: opacity 0.09s linear;
    -ms-transition: opacity 0.09s linear;
    transition: opacity 0.09s linear !important;
}

#more {
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -ms-transition: max-height 1s;
    transition: max-height 1s !important;
}

.artwork-gallery,
.artist-preview-item,
.enquiry-form-wrapper {
    -webkit-transition: opacity 0.29s linear;
    -moz-transition: opacity 0.29s linear;
    -o-transition: opacity 0.29s linear;
    -ms-transition: opacity 0.29s linear;
    transition: opacity 0.29s linear !important;
}

.mailchimp input#mc-embedded-subscribe {
    transition: none;
}

.mailchimp input#mc-embedded-subscribe {
    -webkit-transition: color 0.09s linear;
    -moz-transition: color 0.09s linear;
    -o-transition: color 0.09s linear;
    -ms-transition: color 0.09s linear;
    transition: color 0.09s linear !important;
}

.mailchimp input#mc-embedded-subscribe,
.enquiry-form input[type="submit"] {
    -webkit-transition: background 0.09s linear;
    -moz-transition: background 0.09s linear;
    -o-transition: background 0.09s linear;
    -ms-transition: background 0.09s linear;
    transition: background 0.09s linear !important;
}

.header nav {
    -webkit-transition: right 0.3s ease-in-out;
    -moz-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
    -ms-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out !important;
}

/* fade in lazy loaded images */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error,
#fullpage .active img {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}


/* - - - - N A V I G A T I O N - - - - */

.header {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    padding: var(--gap);
    padding-bottom: 0;
    z-index: 10;
    height: var(--nav-height);
    display: flex;
    column-gap: var(--gap);
    align-items: flex-start;
}

.home .header {
    background-color: transparent;
}

/* equal column width */
.header>* {
    flex: 1;
    flex-shrink: 0;
}

.header nav ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.7rem;
    /*    row-gap: 0.5rem;*/
    margin-bottom: 0.2rem;
}

.header nav ul li {
    min-width: fit-content;
    list-style: none;
}


.header nav a:hover {
    color: var(--green);
}

.header nav li.active a {
    color: var(--green);
}

/* menu */

.header {
    justify-content: space-between;
    height: var(--nav-height) !important;
    align-items: center;
    padding-bottom: var(--gap);
}

.logo {
    /*        justify-content: flex-start;*/
    z-index: 10;
}

.logo img {
    /*        height: 30px;*/
    width: 100%;
    max-width: 350px;
}

.open-menu.mobile {
    display: flex;
    /*        justify-content: flex-end;*/
    align-items: center;
}

.open-menu img {
    width: 2rem;
    cursor: pointer;
}

/* slide in menu */

.header nav {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    right: 100%;
    top: 0;
    padding: var(--gap);
}

body.active {
    overflow: hidden;
}

body.active .header nav {
    right: 0;
}

.header nav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 190%;
    padding-bottom: 2rem;
}

.close-menu {
    position: absolute;
    left: var(--gap);
    top: var(--gap);
    width: 2rem;
    cursor: pointer;
}


/* - - - - I N T R O  A N I M A T I O N - - - - */

#intro {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    animation: fade-out 1s ease-in forwards;
    animation-delay: 1s;
}

#intro img {
    width: 70%;
    padding-bottom: 2rem;
}

/* ANIMATION */

#intro.post_animated {
    opacity: 0;
    height: 0;
    display: none;
    pointer-events: none;
    animation: none !important;
}

@keyframes fade-out {
    0% {
        opacity: 1;
        height: 100vh;
    }

    99% {
        opacity: 1;
        height: 0vh;
    }

    100% {
        opacity: 0;
        display: none;
        pointer-events: none;
    }
}



/* - - - - L A N D I N G P A G E - - - - */

/* home button */
.logo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.logo img {
    /*    height: 62px;*/
    /*    width: 100%;*/
    max-width: 420px;
}

.logo img:hover {
    /*    filter: grayscale(1);*/
    filter: invert(74%) sepia(13%) saturate(1036%) hue-rotate(99deg) brightness(99%) contrast(80%);
}

/* menu height */
.header.exhibition {
    height: calc(62px + var(--gap) *2);
}

/* content section */

.home .content {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.content {
    position: relative;
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    z-index: 1;
    padding-top: calc(var(--nav-height));
    padding-left: var(--gap);
    padding-right: var(--gap);
    padding-bottom: var(--gap);

    /* background-color: blue; */
}

.flex {
    display: flex;
}

/* slider text */
.swiper-text {
    position: absolute;
    left: var(--gap);
    bottom: var(--gap);
    z-index: 1;
    width: 400px;
    overflow: hidden;
    height: auto;
    cursor: pointer;
}

.swiper-text .swiper-slide,
.swiper-text .swiper-slide p {}

/* hero section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100svh;
}

/* slider image */
.swiper-image {
    position: relative;
    top: 0;
    overflow: hidden;
    height: 100vh;
    height: 100svh;
    width: 100%;
}

.swiper-image .swiper-wrapper {
    position: absolute;
    z-index: 0;
}

.swiper-image .swiper-slide {
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-image .swiper-slide .image-wrapper {
    height: 100%;
    /* max-height: calc(100% - var(--nav-height) - (var(--gap))); */
    width: 100%;
    /* max-width: calc(100% - (var(--gap)*2)); */
}

.swiper-image .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-image .credits {
    pointer-events: none;
    width: 100%;
    background-color: #fff;
    height: var(--gap);
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;

}

.swiper-slide:hover {
    color: unset;
}


/* intro text */

.intro-section.section-wrapper {
    width: 100%;
    height: 100%;
    padding-bottom: var(--gap);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* - - - - A R T I S T - - - - */

.content#artist,
.content#fullpage {
    margin-top: 0;
    padding: 0;
}

/* #artist section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
} */

/* #artist .section-wrapper {
    padding-left: var(--gap);
    padding-right: var(--gap);
} */

#artist section.footer-section {
    min-height: fit-content;
}

/* sections */

.section {
    background-color: #fff;
    height: fit-content;
    display: flex;
    justify-content: center;
}

#artist .section,
#fullpage .section {
    opacity: 0;
    transition: opacity 1s;

    padding: 0;
    height: 100%;
}

#artist .section {
    opacity: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    padding-top: var(--nav-height);
}

#artist .section.active,
#fullpage .section.active {
    opacity: 1;
}

#artist .section-wrapper,
#fullpage .section-wrapper {
    padding-left: var(--gap);
    padding-right: var(--gap);
}

.section-wrapper {
    padding-top: var(--gap);
    height: auto;
}

.subnavigation li.active a {
    /*    color: var(--green);*/
}


/* cover section */

.cover-section .section-wrapper {
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-section .cover-image {
    /* background-color: yellow; */
    width: fit-content;
}

.cover-section img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    /*    padding-bottom: 0.5rem;*/
}

.cover-section .credits {
    /* background-color: red; */
    width: fit-content;
    height: fit-content;
}

.credits {
    font-size: 0.9rem;
    /* opacity: 0.5; */
    color: rgba(0, 0, 0, 0.5);
}


/* about section */

.about-section {
    justify-content: flex-start !important;
}

.text-wrapper {
    width: 100%;
    max-width: 900px;
}

.about-section .artist-portrait {
    /*    max-width: 600px;*/
    max-width: 400px;
    margin-top: 2rem;
}

.about-section .artist-portrait img {
    width: 100%;
    margin-bottom: 0.3rem;

}

.about-section .section-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* works section */

#artist .works-section,
#fullpage .works-section {
    padding: 0;
    justify-content: flex-start !important;
    flex-direction: row;
}

/* artwork gallery */

.works-section .fp-overflow {
    height: 100%;
}

.works-section .section-wrapper {
    width: 100%;
    height: 100%;
}

/* arrows */

.artwork-gallery .swiper-button-next {
    right: var(--gap);
    width: 0;
}

.artwork-gallery .swiper-button-next::after {
    content: "";
    width: 76px;
    height: 40px;
    right: 0;
    background: url("../img/next.svg") no-repeat;
    position: absolute;
    display: inline-block;
}

.artwork-gallery .swiper-button-prev {
    left: var(--gap);
    width: 0;
}

.artwork-gallery .swiper-button-prev::after {
    content: "";
    width: 76px;
    height: 40px;
    left: 0;
    background: url("../img/prev.svg") no-repeat;
    position: absolute;
    display: inline-block;
}

/* general settings */
.artwork-gallery.active {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.artwork-gallery {
    opacity: 1;
}

.artwork-gallery li {
    list-style: none;
}

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

.thumbs .artwork img {
    cursor: pointer;
    width: 100%;
    padding-bottom: 0.5rem;
}

.thumbs.artwork-gallery .artwork:hover {
    color: var(--green);
}

.thumbs.artwork-gallery .artwork:hover img {
    opacity: 0.8;
}


/* gridview */

#thumbs {
    /*    height: 100% !important;*/
    /*
    padding-left: var(--gap);
    padding-right: var(--gap);
*/
}

.artwork-gallery.thumbs .swiper-wrapper {

    /*
    display: grid;
    gap: var(--gap) var(--gap);
    grid-template-columns: repeat(3, 1fr);
*/

    display: grid;
    gap: calc(var(--gap)*2) var(--gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artwork-gallery#thumbs .artwork {
    width: 100% !important;
}

/* detailview */
.close-detail {
    position: fixed;
    top: var(--gap);
    right: var(--gap);
    width: 3rem;
    z-index: 10;
    cursor: pointer;
}

.artwork-gallery.detail:not(.active) {
    background-color: #fff;
    height: 100%;
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    /*    padding: var(--gap);*/
}

.artwork-gallery.detail .artwork {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /*    background-color: yellow;*/
}

.artwork-gallery.detail .artwork .artwork-wrapper {
    /*    max-width: 70%;*/
    /*    max-height: 70%;*/

    /*    width: auto;*/
    /*    height: auto;*/


    /*
     max-width: 30%;
     min-width: 500px;
     height: fit-content;
*/
    max-width: 80%;
    max-height: 100%;


    display: flex;
    flex-direction: column;
    justify-content: center;
    /*    align-items: center;*/
    overflow: visible;
}

/*
.artwork-gallery.detail .artwork .artwork-wrapper-inner {
    max-height: 70%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
*/

/*.artwork-gallery.detail .artwork .artwork-wrapper .img-wrapper {*/
/*
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
*/
/*
    max-width: 100%;
    max-height: 70%;
*/

/*    background-color: green;*/
/*
    width: auto;
    max-height: 85%;
    margin-bottom: 1rem;
*/
/*}*/

.artwork-gallery.detail .artwork .artwork-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    margin-bottom: 1rem;
}


.artwork-gallery.detail .artwork .description {
    width: fit-content;
    height: auto;
}


/* exhibitions section */

.exhibitions-section {
    justify-content: flex-start !important;
}

.exhibitions-section ul {
    list-style: none;
}

.exhibitions-section .exhibitions-gallery {
    display: grid;
    gap: var(--gap) var(--gap);
    grid-template-columns: repeat(3, 1fr);
}

.exhibitions-gallery .container {
    overflow: hidden;
    margin-bottom: 0.5rem;
    /*    height: 200px;*/
    aspect-ratio: 3 / 2;
}

.exhibitions-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.exhibitions-gallery li:hover p {
    color: var(--green);
}

.exhibitions-gallery li:hover img {
    opacity: 0.8;
}

/* Press */

.press-section {
    justify-content: flex-start !important;
}

.press-section .section-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.press-section .text-wrapper {
    display: flex;
    flex-direction: column;
}

.press-section .text-wrapper button {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.text-wrapper button {
    margin-right: auto;
}

button {
    font-size: 1rem;
    background: none;
}

button:hover {
    color: var(--green);
}

#more {
    max-height: 0;
    overflow: hidden;
}

#more.active {
    max-height: 1000px;
}

/* Bio */

.biography-section {
    justify-content: flex-start !important;
}

.biography-section .text-wrapper {
    max-width: 600px;
}

/* enquiry form */

/* enquiry form: honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
}

.enquiry-form-wrapper {
    opacity: 0;
    height: 0;
    overflow: hidden;
    z-index: 10;
}

.enquiry-form-wrapper.active {
    opacity: 1;
    background-color: #fff;
    height: 100%;
    width: 100%;
    z-index: 20;
    position: fixed;
    top: 0;
    overflow: scroll;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.enquiry-form {
    width: 50%;
    min-width: 200px;
    max-width: 400px;
}

.enquiry-button {
    font-style: italic;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto !important;
}

.selected-artwork-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.selected-artwork-info img {
    width: 100%;
    height: auto;
    max-height: 300px;
    min-width: 220px;
    object-fit: contain;
    padding-right: var(--gap);
}

.enquiry-form form {
    color: var(--green);
}

.enquiry-form input,
.enquiry-form textarea {
    border: none;
    border-bottom: 1px solid var(--green);
    border-radius: 0;
    width: 100%;
    padding: 8px 0;
    margin-bottom: 1.1rem;
}

.enquiry-form textarea {
    max-width: 100%;
    min-width: 100%;
    height: 5rem;
    min-height: 5rem;
    text-align: left;
    padding-top: 0.5rem;
    padding-right: 0.5rem;

    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 130%;
}

.enquiry-form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--green);
    background-color: #fff;
    color: var(--green);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    line-height: 32px;
    height: fit-content;
    width: fit-content;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.enquiry-form input[type="submit"]:hover {
    background-color: var(--green);
    color: #fff;
}

.enquiry-form abbr {
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
    text-decoration: none;
}

.enquiry-form h2 {
    padding-top: 1rem;
    padding-bottom: var(--gap);
}

/* success message */
.alert.active {
    display: block;
    position: fixed;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert p {
    max-width: 300px;
}

.alert:not(.active) {
    display: none;
}

/* error messages */

.form-alert {
    list-style: none;
    color: #ff4646;
}


/* - - - - A R T I S T S - - - - */

/*
#artists {
    width: 100%;
    height: fit-content;
    padding: var(--gap) 0;
}
*/

.artists {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap);
}

.artist-list {
    z-index: 10;
    padding-right: var(--gap);
    height: auto;
}

.artist-list ul {
    list-style: none;
}

.artist-list a {}

.artist-list a:hover {
    color: var(--green);
}

.artist-preview {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.artist-preview-item {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.artist-preview-item.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.artist-preview-item .wrapper {
    width: 100%;
    /*
    max-height: 80%;
    max-width: 60%;
*/
}

.artist-preview-item img {
    width: 100%;
    /*
    max-height: 90vh;
    object-fit: contain;
*/
}


/* - - - - E X H I B I T I O N S - - - - */


/* - - - - E X H I B I T I O N - - - - */

.subtitle {
    margin-top: 5rem;
    margin-bottom: 1.1rem;
}

/* exhibition slider */
#exhibition-slider {
    width: 100%;
    min-height: 500px;
    height: 80vh;
    overflow: hidden;
    margin-bottom: var(--gap);
}

#exhibition-slider .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#exhibition-slider .swiper-slide img {
    width: auto;
    height: auto;
    min-width: calc(100vw - (var(--gap) * 2));
    min-height: 500px;
    height: 80vh;
    object-fit: cover;
}

/* exhibition slider credits */
#exhibition-slider .swiper-slide .credits {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    height: var(--gap);
    display: flex;
    align-items: center;
}

/* description text */

.section.description .text-wrapper p,
.section.description .text-wrapper button,
.about-section .text-wrapper p {
    margin-bottom: 1rem;
}

/* artists section */
.artists-section {
    flex-direction: column;
}

.artists-section .section-wrapper {
    padding-top: 0;
}

.artwork-gallery#artists-slider-thumbs .artwork {
    width: 100% !important;
}

.artists-section .thumbs .artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* aspect-ratio: 2 / 2.65; */
}

#artists-slider-detail .artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* aspect-ratio: 2 / 2.65; */
}

.artists-section .thumbs .artwork .bio {
    margin-top: 0.3rem;
}


/* further exhibitions */
.exhibitions-gallery.further img {
    /*
    width: 100%;
    height: unset;
    object-fit: unset;
*/
    padding-bottom: 0.5rem;
}

/* - - - - A R T  F A I R S - - - - */

.section.artfairs {
    flex-direction: column;
}

.artfair {
    margin-bottom: 1rem;
    display: block;
}


/* - - - - N E W S - - - - */

.section.news {
    flex-direction: column;
    /*    align-items: center;*/
    align-items: flex-start;
}

.news h2 {
    margin-bottom: 0.5rem;
}

.news .text-wrapper {
    margin-bottom: calc(var(--gap));
    /* max-width: 650px; */
}

.news .text-wrapper p+p {
    margin-top: 0.5rem;
}

.news ul {
    list-style: none;
}

.news ul li:hover p {
    color: unset;
}

.news ul li:hover img {
    opacity: unset;
}


/* - - - - C A T A L O G U E - - - - */

/* grid */
.exhibitions-gallery.catalogue img {
    width: 100%;
    height: unset;
    object-fit: unset;
    padding-bottom: 0.5rem;
}

/* - - - - C O N T A C T - - - - */

.section.contact,
.section.mailchimp,
.section.social {
    flex-direction: column;
    align-items: flex-start;
}

.section.contact .text-wrapper,
.section.mailchimp .text-wrapper,
.section.social .text-wrapper {
    max-width: 650px;
}

.contact .text-wrapper p {
    margin-bottom: var(--gap);
}

.section.mailchimp {
    color: var(--green);
}

.section.social ul {
    list-style: none;
    display: flex;
    padding-top: var(--gap);
    padding-bottom: var(--gap);
}

.section.social ul li {
    margin-right: 0.7rem;
}


.section.social img {
    width: 2rem;
    filter: invert(74%) sepia(13%) saturate(1036%) hue-rotate(99deg) brightness(99%) contrast(80%);
}

.section.social img:hover {
    filter: none;
}

/* Mailchimp */

.mailchimp {
    margin-top: 2rem;
}

#mc_embed_signup {
    background: #fff;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    max-width: 600px;
}

.mailchimp #mc_embed_signup .mc-field-group {
    margin: 0;
    padding: 0;
    min-height: auto;
}

.mailchimp #mc_embed_signup form {
    margin: 0;
}

.mailchimp #mc_embed_signup h2 {
    font-size: 1rem;
}

.mailchimp #mc_embed_signup .asterisk {
    color: var(--green);
}

.mailchimp #mc_embed_signup input {
    border: none;
    border-bottom: 1px solid var(--green);
    border-radius: 0;
}

.mailchimp #mc_embed_signup .mc-field-group input {
    text-indent: 0;
}

.mailchimp #mc_embed_signup {
    font-size: 1rem;
}

.mailchimp .content__gdpr label {
    font-weight: 700;
    margin-bottom: 1rem !important;
}

.mailchimp .small {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 140%;
}

.mailchimp .small a {
    color: var(--green);
    text-decoration: underline;
}

.mailchimp .small a:hover {
    color: #000;
}

#mc-embedded-subscribe-form input[type=checkbox] {
    display: inline;
    width: auto;
    margin-right: 10px;
}

.mailchimp #mergeRow-gdpr.mergeRow {
    margin-top: 2rem;
}

#mergeRow-gdpr fieldset label {
    font-weight: normal;
}

#mc-embedded-subscribe-form .mc_fieldset {
    border: none;
    min-height: 0px;
    padding-bottom: 0px;
}

.mailchimp #mc_embed_signup .gdprRequired input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none !important;
    background-color: #fff !important;
    border: 1px solid var(--green) !important;
    border-radius: 0 !important;
    width: 1.2rem !important;
    height: 1.2rem !important;
}

.mailchimp #mc_embed_signup .gdprRequired input:checked {
    background-color: var(--green) !important;
}

.mailchimp input#mc-embedded-subscribe {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--green);
    background-color: #fff;
    color: var(--green);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    height: fit-content;
    width: fit-content;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mailchimp input#mc-embedded-subscribe:hover {
    background-color: var(--green);
    color: #fff;
}

.mailchimp #mce-EMAIL-HELPERTEXT {
    margin-bottom: 1rem;
}

.mailchimp label.checkbox.subfield {
    display: flex !important;
}

.mailchimp label.checkbox.subfield input {
    width: auto !important;
}


/* - - - - A B O U T - - - - */

.section.about {
    justify-content: flex-start;
}

.section.about .text-wrapper {
    max-width: 650px;
}

.section.about img {
    width: 100%;
}

.about .text-wrapper p {
    margin-bottom: var(--gap);
}

/* - - - - F O O T E R - - - - */

footer {
    width: 100%;
    position: sticky;
    bottom: 0;
    left: 0;
    /*    padding: 0 var(--gap) var(--gap) var(--gap);*/
    z-index: 0;
}

#fullpage .section.footer-section {
    /*    padding: var(--gap) !important;*/
}

.footer-section .wrapper,
footer div {
    background-color: var(--green);
    width: 100%;
    padding: var(--gap);
}

.footer-section a,
footer a {
    color: #fff;
}

.footer-section a.active,
footer a.active {
    text-decoration: underline;
}

.footer-section .wrapper a:hover,
footer a:hover {
    color: #000;
}

.footer-section ul,
footer ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

@supports (-webkit-touch-callout: none) and (not (translate: none)) {

    .footer-section ul li,
    footer ul li {
        margin-right: 1rem;
    }
}



/* - - - - R E S P O N S I V E - - - - */


.mobile {
    display: none;
}


/* M O B I L E  O N L Y */

@media (max-width: 767.98px) {

    /* menu */
    .header>* {
        /*        flex: unset;*/
        /*        flex-shrink: 0;*/
    }

    .logo img {
        /*        height: 30px;*/
        /*        max-width: 90% !important;*/
        height: 100%;
        object-fit: contain;
    }

    /* landingpage slider */
    .swiper-image,
    .swiper-image .swiper-wrapper,
    .swiper-image .swiper-slide {
        /* height: fit-content; */
    }

    /* .swiper-image .swiper-slide img {
        max-height: 100vh;
    }

    .swiper-image .swiper-slide .credits,
    .swiper-image .swiper-slide .mobile {
        position: relative;
    } */

    /* artist page */
    .artwork-gallery.thumbs .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .artwork img {
        padding-bottom: 0.8rem;
    }

    .artwork-gallery#detail,
    .artwork-gallery#detail.active {
        display: none;
    }

    .artwork-gallery#thumbs,
    .artwork-gallery#thumbs.active {
        opacity: 1;
        height: fit-content;
        pointer-events: none;
    }


    /* exhibitions page */
    .exhibitions-section .exhibitions-gallery {
        grid-template-columns: 1fr;
    }

    /* exhibition page */
    .subtitle {
        margin-top: 3rem;
    }

    /* news */
    .news .text-wrapper {
        margin-bottom: var(--gap);
    }

    .text-wrapper {
        width: 100%;
    }

    /* contact */
    .mailchimp {
        margin-top: 1rem;
    }

    /* enquiry form */
    .enquiry-form-wrapper.active {
        overflow: scroll;
    }

    .enquiry-form {
        width: 100%;
        min-width: unset;
        max-width: unset;
        padding: var(--gap);
        position: absolute;
        top: 0;
    }

    .enquiry-form .selected-artwork-info {
        flex-direction: column;
    }

    .enquiry-form .selected-artwork-info img {
        max-height: unset;
        width: 90%;
    }
}


/* M O B I L E  + T A B L E T */

/* @media (max-width: 767.98px) { */
@media (max-width: 991.98px),
only screen and (hover: none) {

    /* Variablen */
    :root {
        --gap: 1.5rem;
        /* var(--gap) */

        --nav-height: 56px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    /* content */
    .content {
        padding-top: var(--nav-height);
    }

    /* landingpage slider */
    /* .swiper-image .swiper-slide {
        flex-direction: column;
    } */

    /* .swiper-image .swiper-slide .image-wrapper {
        max-height: calc(100% - var(--nav-height) - (var(--gap)));
        height: fit-content;
    } */

    /* .swiper-image .swiper-slide img {
        object-fit: contain;
    } */

    /* .swiper-image .swiper-slide p {
        width: 100%;
        position: absolute;
        bottom: 0;
        background-color: #fff;
        padding-top: 1rem;
    } */

    .close-menu {
        top: 14px;
    }


    /* artists page */
    .artist-list ul {
        font-size: 1.5rem;
        line-height: 160%;
    }

    .artist-list {
        display: block;
    }

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

    .artist-preview {
        /*        gap: var(--gap) var(--gap);*/
        display: none;
    }

    .artist-preview-item {
        grid-column: auto;
        grid-row: auto;
        opacity: 1;
        pointer-events: auto;
    }

    .artist-preview-item:last-child {
        margin-bottom: 0;
    }

    .artist-preview-item img {
        margin-bottom: 0.3rem;
    }

    /* artist page */
    #artist h1,
    #fullpage h1 {
        font-size: 1.2rem;
        position: absolute;
        left: var(--gap);
        bottom: var(--gap);
    }

    #artist .cover-section,
    #fullpage .cover-section {
        padding-bottom: var(--nav-height);
    }

    /* exhibition page */
    .exhibition-intro {
        height: calc(100vh - var(--nav-height));
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        padding-bottom: var(--nav-height);
    }

    #exhibition-slider .swiper-slide {
        /* background-color: yellow; */
    }

    #exhibition-slider .swiper-slide img {
        width: 100%;
        max-height: 100vh;
        min-height: unset;
        object-fit: contain;
    }

    .exhibition-intro h1 {
        font-size: 1.2rem;
        position: absolute;
        left: 0;
        bottom: var(--gap);
    }
}


/* P H O N E  landscape only */
@media (max-width: 1023px) and (orientation: landscape) {

    /* menu */
    .header>* {
        flex: 1;
    }

    .header nav ul {
        padding-bottom: 0;
        justify-content: flex-end;
        line-height: 170%;
    }

    /* landingpage slider */
    /* .swiper-image,
    .swiper-image .swiper-wrapper,
    .swiper-image .swiper-slide {
        height: fit-content;
    } */

    /* .swiper-image .swiper-slide img {
        height: 90vh;
    } */

    /* .swiper-image .swiper-slide .credits,
    .swiper-image .swiper-slide .mobile {
        position: relative;
    } */

    /* artist page */
    #artist .cover-section .section-wrapper,
    #fullpage .cover-section .section-wrapper {
        width: 100%;
        min-height: unset;
        height: 100%;
        margin-bottom: unset;
        display: flex;
        justify-content: center;
    }

    #artist .cover-section .section-wrapper img,
    #fullpage .cover-section .section-wrapper img {
        width: 100%;
        height: calc(95vh - (var(--nav-height))*2);
        min-height: unset;
        min-width: unset;
        object-fit: contain;
    }

    /* exhibition */
    .exhibition-intro {
        height: calc(100vh - var(--nav-height));
    }

    #exhibition-slider {
        width: 100%;
        min-height: unset;
        height: 100%;
        margin-bottom: unset;
    }

    #exhibition-slider .swiper-slide img {
        width: auto;
        height: calc(100vh - (var(--nav-height))*2);
        min-height: unset;
        min-width: unset;
        object-fit: contain;
    }
}


/* T A B L E T  +  T O U C H  &  L A N D S C A P E */

@media (min-width: 768px) and (max-width: 991.98px),
only screen and (hover: none) and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    /* landingpage slider */
    .swiper-image,
    .swiper-image .swiper-wrapper,
    .swiper-image .swiper-slide {
        /* height: fit-content; */
    }

    .swiper-image .swiper-slide img {
        /* height: 80vh; */
    }

    /* .swiper-image .swiper-slide .credits,
    .swiper-image .swiper-slide .mobile {
        position: relative;
    } */

    /* text width */
    .text-wrapper {
        padding-right: 10%;
        max-width: 100%;
    }

    #artist .text-wrapper,
    #fullpage .text-wrapper {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* artists page */
    .artist-preview {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* artist page */
    .cover-section img {}

    .cover-section .credits {
        padding-bottom: calc(var(--gap) * 3);
    }

    .artwork-gallery.thumbs .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /* exhibitions page */
    .exhibitions-section .exhibitions-gallery {
        grid-template-columns: repeat(2, 1fr);
    }


}


/* T O U C H  &  L A N D S C A P E */

@media (min-width: 1024px) and (hover: none) and (orientation: landscape) {

    /* text width */
    .text-wrapper {
        padding-right: 40%;
        max-width: 100%;
    }

    /* artist page: artwork size */
    .artwork-gallery.detail .artwork .artwork-wrapper img {
        max-height: 60vh !important;
    }

    #artist .cover-section .section-wrapper,
    #fullpage .cover-section .section-wrapper {
        width: 100%;
        min-height: unset;
        height: 100%;
        margin-bottom: unset;
        display: flex;
        justify-content: center;
    }

    #artist .cover-section .section-wrapper img,
    #fullpage .cover-section .section-wrapper img {
        width: auto;
        height: calc(95vh - (var(--nav-height))*2);
        min-height: unset;
        min-width: unset;
        object-fit: contain;
    }

    /* landingpage slider */
    /* .swiper-image,
    .swiper-image .swiper-wrapper,
    .swiper-image .swiper-slide {
        height: fit-content;
    }

    .swiper-image .swiper-slide img {
        height: 75vh;
    }

    .swiper-image .swiper-slide .credits,
    .swiper-image .swiper-slide .mobile {
        position: relative;
    } */

    /* exhibition */
    .exhibition-intro {
        height: calc(100vh - var(--nav-height));
    }

    #exhibition-slider {
        width: 100%;
        min-height: unset;
        height: 100%;
        margin-bottom: unset;
    }

    #exhibition-slider .swiper-slide img {
        width: auto;
        height: calc(100vh - (var(--nav-height))*2);
        min-height: unset;
        min-width: unset;
        object-fit: contain;
    }
}



/* S C R E E N */

@media (min-width: 992px) and (max-width: 1199.98px) {}