:root {
    --white: white;
    --black: black;
}

body {
    color: #333;
    cursor: none;
    font-family:
        Arial,
        Helvetica Neue,
        Helvetica,
        sans-serif;
    font-size: 14px;
    line-height: 20px;
}

a {
    color: #1d1d1d;
    cursor: none;
    text-decoration: none;
}

a.w--current {
    cursor: none;
}



/*-----MAIN CSS----- */


.wrapper {
    width: 100%;
    height: auto;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 100%;
    font-weight: 500;
    line-height: 1.6;
    display: block;
}

.header-main {
    z-index: 999;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: 50px;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-weight: 500;
    display: flex;
    position: fixed;
    inset: 0 auto auto 0;
}

.header {
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 50px;
    padding: 10px 15px;
    font-size: 100%;
    line-height: 1.6;
    display: flex;
}

.header_text {
    color: #1d1d1d;
    letter-spacing: 0.025em;
    font-size: 1.25rem;
    font-weight: 500;
}

.header_text.navigation_inactive {
    font-weight: 400;
}

.header_text.navigation_active {
    font-weight: 500;
}

.navigation {
    justify-content: space-between;
    align-items: center;
    width: 150px;
    height: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
}


.category-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default to 3 columns */
    gap: 15px; /* Space between all items */
    row-gap: 15px;
    padding: 15px; /* Padding around the grid container */
    margin-top: 35px;
    /*padding-top: 45px; */
}



.category-item {
    box-sizing: border-box; /* Ensure padding/margins don't affect width */
    text-align: left; /* Align text and images to the left */

}


.caption {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    display: none
}

.category {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    font-style: italic;
    display: none;
    margin-bottom: 10px;
}

.main-content {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    padding: 15px;
    display: grid;
}

.project {
    width: auto;
    height: 50vh;
}

.project-name {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.project-titel {
    display: none;
}

.project-category {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
}


.image-overview-mainpicture {
    aspect-ratio: auto;
    opacity: 0;
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    display: block;
    overflow: hidden;
}

@media (max-width: 1919px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 767px) {
    .category-container {
        grid-template-columns: 1fr; /* 1 column for small screens */
    }
    .caption {
        font-size: 1.1rem;
    }
    .category {
        font-size: 1.1rem;
    }
}
/*-- CSS FOR ARTICLE --*/

.article-wrapper {
    display: flex;
    width: 100%;
}

.article-info {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
    font-family: neue-haas-grotesk-text, sans-serif;
}

.article-no-scroll {
    position: fixed;
    max-width: 33%;
    margin-top: 25px;
    margin-left: 5px
}

.article-arrow-button-container {
    position: fixed;
    bottom: 0; left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 33%;
    margin-left: 6px;
}

.article-arrow-button {
    width: auto;
    height: 23px;
    margin-top: 13px;
    margin-left: 13px;
}

.article-media-container {
    flex: 2;
    padding: 15px;
    box-sizing: border-box;
}

.article-media {
    max-width: 100%;
    display: block;
    margin: 20px 0;
    width: 100%;
    height: auto;
}


@media (max-width: 767px) {
    .article-wrapper {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .article-no-scroll {
        position: relative;
        max-width: 100%;
        margin-top: 25px;
        margin-left: 5px
    }
    .article-arrow-button-container {
        position: relative;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 0px;
    }
}

/*-- END OF ARTICLE CSS --*/



/*-- FRONT PAGE CSS --*/


.front-image-wrapper {
    position: relative;
    width: 100%; /* Responsive image size */
    height: 50vh;/* Maintain aspect ratio */
}

.front-fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Responsive image size */
    height: 50vh;/* Maintain aspect ratio */
    margin-bottom: 10px; /* Space below each image */
    opacity: 0;
    transition: opacity 0.2s ease; /* Control the fade duration and style */
    overflow: hidden;
    object-fit: cover;
}

.front-image-normal {
    opacity: 1;
}

.front-image-wrapper:hover .front-image-normal {
    opacity: 0; /* Fade out original image */
}

.front-image-wrapper:hover .front-image-hover {
    opacity: 1; /* Fade in hover image */
}





/*--END OF FRONT PAGE CSS --*/






/* INFO PAGE CSS --*/

.info-page-grid {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    padding-top: 0;
    margin-bottom: 200px;

}


.info-page-image{
    flex: 2;
    margin-left: 30px;
}

.info-page-text{
    flex: 1;
    max-width: 50%;
    margin-top: 15px;
}

@media screen and (max-width: 767px) {
    .info-page-grid {
        flex-direction: column;
    }

    .info-page-image {
        margin-left: 0;
    }
    .info-page-text{
        max-width: 100%;
    }

}







.footer-main {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: 50px;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-weight: 500;
    display: flex;
    position: static;
    bottom: 0;
}

.footer_elements {
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
}

.footer {
    background-color: #fff;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 50px;
    padding: 10px 15px;
    font-size: 100%;
    line-height: 1.6;
    display: flex;
}

.footer_text {
    color: #1d1d1d;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    font-weight: 500;
}

.footer_text.navigation_inactive {
    text-align: right;
    letter-spacing: 0.025em;
    order: 0;
    padding-left: 25px;
    padding-right: 0;
    font-weight: 400;
}

.footer_text.navigation_inactive.footer_active {
    font-weight: 500;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
}

.main-content-subpage {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    padding: 15px;
    font-style: normal;
    display: grid;
}

.project_description {
    width: 32vw;
    position: fixed;
    inset: 65px auto auto 15px;
}

.big_image_subpage {
    object-fit: cover;
    width: 100%;
    min-width: auto;
    min-height: auto;
    overflow: hidden;
}

.project_description_text {
    letter-spacing: 0.025em;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.heading {
    letter-spacing: 0.025rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    font-family: neue-haas-grotesk-text, sans-serif;
}

.heading.headingohneabstand {
    margin-bottom: 0;
}

.project_description_categorie {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
}

.image-2 {
    object-fit: cover;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: auto;
    display: block;
    overflow: hidden;
}

.div-block {
    width: 100%;
}

.back_arrow_subpage {
    justify-content: space-between;
    width: 31vw;
    margin-bottom: 15px;
    margin-left: 15px;
    display: flex;
    position: fixed;
    inset: auto auto 0 0;
}



.cursor_wrapper {
    z-index: 9999;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0%;
}

.cursor {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: #0000;
    border-radius: 20px;
    align-items: flex-start;
    width: auto;
    height: auto;
    display: flex;
}

.cursor.back {
    align-self: center;
    align-items: center;
}

.circle {
    z-index: 9999;
    -webkit-text-fill-color: inherit;
    background-color: #0000;
    background-clip: border-box;
    border: 0 #000;
    border-radius: 0%;
    width: auto;
    height: auto;
    padding: 0 2px 0 0;
    display: block;
}

.cursor_text {
    color: #1d1d1d;
    margin-bottom: 3px;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
}

.cursor_textbox_micro {
    opacity: 0;
    width: 17rem;
    display: none;
}

.cursor_text_category {
    color: #1d1d1d;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
}

.cursor_textbox_pilz {
    opacity: 0;
    width: 17rem;
    display: none;
}

.div-block-2 {
    width: 17rem;
    height: 2.5rem;
}


.cursor-dot {
    position: fixed;
    width: 10px; /* Initial size */
    height: 10px; /* Initial size */
    background-color: black;
    border-radius: 50%;
    pointer-events: none; /* Prevent it from interfering with mouse events */
    display: none; /* Initially hidden */
    transition: transform 0.2s ease; /* Smooth transition */
    z-index: 9999; /* Ensure it appears on top */
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(0.7); } /* This makes it grow larger */
    90% { transform: scale(1.2); }
    100% { transform: scale(1); } /* Return to original size */
}

.cursor_textbox_band,
.cursor_textbox_fehler,
.cursor_textbox_burg,
.cursor_textbox_jlid,
.cursor_textbox_post,
.cursor_textbox_jlid2,
.cursor_textbox_pfadi,
.cursor_textbox_kalender,
.cursor_textbox_trallafitti,
.cursor_textbox_augenblocke {
    opacity: 0;
    width: 17rem;
    display: none;
}

.cursor_textbox_back {
    opacity: 0;
    width: 17rem;
    padding-top: 1px;
    padding-bottom: 0;
    display: none;
}

.cursor_text_zurueck {
    color: #1d1d1d;
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.cursor_textbox_previous,
.cursor_textbox_next {
    opacity: 0;
    width: 17rem;
    padding-top: 1px;
    padding-bottom: 0;
    display: none;
}

.image-5,
.image-6 {
    width: 100%;
    min-width: auto;
    min-height: auto;
    display: block;
}

.div-block-3 {
    opacity: 1;
    background-color: #1d1d1d;
    border-radius: 20px;
    width: 18px;
    height: 18px;
}

.image-7 {
    width: 100%;
    display: block;
}

.div-block-4 {
    width: 17rem;
    height: 0.5rem;
}

.project_description_box {
    width: 100%;
}

.big_image_subpage-2 {
    object-fit: fill;
    background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
    background-position: 0 0;
    background-size: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image_subpage {
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 100%;
    display: block;
    overflow: hidden;
}

.circle-2 {
    background-color: #1d1d1d;
    border: 1px #000;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    padding-top: 15px;
}

.image-9,
.image-10 {
    width: 100%;
}

.background-video {
    -webkit-backdrop-filter: blur();
    backdrop-filter: blur();
    object-fit: fill;
    background-color: #0000;
    width: 100%;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
}

.body {
    cursor: none;
}

.image_poster {
    object-fit: contain;
    border: 1px solid #e1e1e1;
    width: auto;
    height: 85vh;
    display: block;
    overflow: hidden;
}

.big_image_subpage_poster {
    object-fit: cover;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.project_description_text_first {
    letter-spacing: 0.025em;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.button_prev {
    width: 50px;
    height: 50px;
    padding-right: 0;
    position: fixed;
    inset: auto auto 0 0;
}

.button_next {
    width: 50px;
    height: 50px;
    padding-right: 0;
    position: fixed;
    inset: auto auto 0 29.4vw;
}

.button_back {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 54px;
    left: 2px;
}

.info_text {
    letter-spacing: 0.025em;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.info_text.datenschutz {
    margin-bottom: 0;
}

.image_info {
    object-fit: contain;
    border: 1px solid #e1e1e1;
    width: auto;
    height: 50vh;
    display: block;
    overflow: hidden;
}

.project_description_text_link {
    letter-spacing: 0.025em;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: underline;
}

.heading_info {
    letter-spacing: 0.025rem;
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

.main-content-subpage_info {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    padding: 15px;
    font-style: normal;
    display: grid;
}

.big_image_subpage_info {
    object-fit: cover;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.project_description_info {
    width: 50vw;
    position: fixed;
    inset: 65px auto auto 15px;
}

.project_description_box_info {
    width: 100%;
}

.project_description_text_info {
    letter-spacing: 0.025em;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.project_description_imprint {
    width: 50vw;
    position: static;
    inset: 65px auto auto 15px;
}

.imprint_backbutton {
    z-index: 99;
    width: 22px;
    padding-top: 30px;
    padding-bottom: 20px;
    top: 50px;
    left: 0;
}

.heading_imprint_first {
    letter-spacing: 0.025rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    padding-top: 3rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

.footer-main_info {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: 50px;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-weight: 500;
    display: flex;
    position: fixed;
    bottom: 0;
}

.project_description_text_imprint {
    letter-spacing: 0.025em;
    margin-top: 5rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.cursor_textbox_spain {
    opacity: 0;
    width: 17rem;
    display: none;
}

.big_image_subpage-3 {
    object-fit: cover;
    background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
    background-position: 0 0;
    background-size: auto;
    width: 100%;
    overflow: hidden;
}

.navigation-2 {
    justify-content: space-between;
    align-items: center;
    width: 150px;
    height: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
}

.background-video-burg {
    aspect-ratio: 7 / 4;
    -webkit-backdrop-filter: blur();
    backdrop-filter: blur();
    object-fit: fill;
    background-color: #0000;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
}

.big_image_subpage-4 {
    object-fit: cover;
    background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
    background-position: 0 0;
    background-size: auto;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 1920px) {
    .main-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 991px) {
    body {
        cursor: auto;
    }


    a {
        cursor: auto;
    }

    a.w--current {
        cursor: auto;
    }


    .project {
        height: auto;
    }

    .project-titel {
        margin-top: 10px;
        margin-bottom: 5px;
        display: block;
    }

    .project-category {
        font-style: italic;
        font-weight: 400;
    }
    .caption {
        display: block
    }

    .category{
        display: block
    }

    .project_description {
        width: 31vw;
    }

    .cursor_wrapper {
        display: none;
    }
/*
    .body-2 {
        cursor: auto;
    }
*/
    .image_info {
        height: 40vh;
    }

    .project_description_info,
    .project_description_imprint {
        width: 90vw;
    }
}

@media screen and (max-width: 767px) {
    .header_text,
    .header_text.navigation_inactive {
        font-size: 1.1rem;
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    .project-name {
        font-size: 1.1rem;
    }

    .project-titel {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .project-category,
    .footer_text.navigation_inactive {
        font-size: 1.1rem;
    }

    .main-content-subpage {
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr 1fr;
    }

    .project_description {
        width: 94vw;
        position: static;
    }

    .project_description_text,
    .heading,
    .project_description_categorie {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .back_arrow_subpage {
        display: none;
    }

    .background-video {
        width: 100%;
        min-width: auto;
        min-height: 100%;
        max-height: 50vh;
        overflow: hidden;
    }

    .big_image_subpage_poster {
        justify-content: center;
    }

    .project_description_text_first,
    .info_text {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .image_info {
        height: 50vh;
    }

    .project_description_text_link,
    .heading_info {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .main-content-subpage_info {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
    }

    .big_image_subpage_info {
        justify-content: flex-start;
        margin-top: 3rem;
    }

    .project_description_info {
        width: 94vw;
        position: static;
    }

    .project_description_text_info {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .project_description_imprint {
        width: 94vw;
        position: static;
    }

    .heading_imprint_first {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .footer-main_info {
        position: static;
    }

    .project_description_text_imprint {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .background-video-burg {
        width: 100%;
        min-width: auto;
        min-height: 100%;
        max-height: 50vh;
        overflow: hidden;
    }
}

@media screen and (max-width: 479px) {
    .header_text {
        font-size: 1.1rem;
    }

    .navigation {
        width: 120px;
    }

    .footer_text.navigation_inactive {
        font-size: 1.1rem;
    }

    .project_description {
        width: 90vw;
    }

    .project_description_text {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .cursor_wrapper {
        display: none;
    }

    .background-video {
        max-height: 30vh;
    }

    .image_poster {
        height: 100%;
    }

    .info_text {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .image_info {
        height: 75%;
    }

    .project_description_text_link {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .big_image_subpage_info {
        width: auto;
        height: auto;
        display: flex;
    }

    .project_description_info {
        width: 90vw;
    }

    .project_description_text_info {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .project_description_imprint {
        width: 90vw;
    }

    .project_description_text_imprint {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .cursor_textbox_spain {
        display: none;
    }

    .navigation-2 {
        width: 120px;
    }

    .background-video-burg {
        max-height: 30vh;
    }
}

#w-node-_8da101fe-fc76-6f66-93bc-c0dc70b243a3-e3e87685 {
    grid-area: 1 / 2 / 2 / 4;
    justify-self: auto;
}

#w-node-_8da101fe-fc76-6f66-93bc-c0dc70b243a4-e3e87685 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}
