@font-face
{
    font-family: Poppins;
    src: url(assets/font/poppins/Poppins-Regular.ttf);
    font-weight: 400;
}

@font-face
{
    font-family: Poppins;
    src: url(assets/font/poppins/Poppins-SemiBold.ttf);
    font-weight: 600;
}

@font-face
{
    font-family: Poppins;
    src: url(assets/font/poppins/Poppins-Bold.ttf);
    font-weight: 700;
}

:root
{
    --primary:#57FFAE;
    --primary-darker:#6EE4AB;
    --background: #FCFDFD;
    --highlight: #EDF2F6;
    --highlight-lighter: #f4f8f8; /*f4f8f8*/
    --highlight-darker: #dde5eb;
    --text: #26272B;
    --text-lighter: #393d41;
    --error: #EC3A5A;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection
{
    background: var(--text);
    color: var(--background);
}

html
{
    position: relative;
    min-height: 100%;
    background-color: var(--background);
}

body
{
    font-family: 'Poppins', Arial, sans-serif;
    padding-bottom:80px
}

body p
{
    color: var(--text);
}

body b
{
    color: var(--text);
}

/*GRID----------------------------------------*/

.grid-container
{
    display: grid;
    grid-template-columns: 1fr repeat(6, 200px) 1fr;
    grid-template-rows: 56px 90vh 1fr;
    justify-content: center;
}

.grid-container-2
{
    display: grid;
    grid-template-columns: 1fr repeat(6, 200px) 1fr;
    grid-template-rows: 56px 1fr;
    justify-content: center;
}

/*COMPONENTS----------------------------------*/

/*BUTTON*/

.button-primary
{
    cursor: pointer;
    border: none;
    color: var(--text);
    background-color: var(--primary);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 40px;
    transition: 0.3s;
    min-width: 320px;
}

.button-primary:hover
{
    background-color: var(--primary-darker);
}

.button-secondary
{
    cursor: pointer;
    border: none;
    color: var(--text);
    border-style: solid;
    border-color: var(--primary);
    border-width: 2px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 40px;
    transition: 0.3s;
    min-width: 280px;
}

.button-secondary:hover
{
    background-color: var(--primary);
}

/*TOOLTIP*/

.tooltip
{
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext
{
    visibility: hidden;
    background-color: var(--text-lighter);
    font-size: 12px;
    color: var(--background);
    opacity: .85;
    padding: 4px 12px;
    border-radius: 4px;
    top: 110%;
    left: calc(50%);
    transform: translate(-50%);
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext
{
    visibility: visible;
}

/*HEADER & MENU----------------------------------*/

/*Mobile*/

.header-menu-mobile
{
    position: sticky;
    top: 0;
    grid-column: 1/9;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    min-height: 56px;
    height: fit-content;
    z-index: 2;
}

.header-top-mobile
{
    display: flex;
    grid-column: 2/8;
    width: 100%;
    height: 56px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background);
    padding: 0px 16px;
}

.header-menu-mobile .menu-item-active
{
    background-color: var(--text-lighter);
}

@-webkit-keyframes delay
{
    0% 
    {
        opacity: 0;
    }

    100%
    {
        opacity: 1;
    }
}

.menubar-close
{
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    height: 56px;
    margin-bottom: 24px;
}

.menubar-close .menubar-toggler
{
    margin-right: 16px;
}

.menubar-close a
{
    padding: 0px 16px 0px 0px;
}

.menu-item-active
{
    background-color: var(--text-lighter);
}

.menubar li
{
    padding: 20px 0px;
}

.menuicon img[src="assets/icons/icon_menu.svg"]
{
    display: block;
}

.menu-item-blank
{
    pointer-events: none;
}

.menubar-toggler
{
    display: grid !important;
    height: min-content;
    cursor: pointer;
}

.menubar-toggler .bar
{
    width: 32px;
    height: 4px;
    margin-bottom: 6px;
    background-color: var(--text);
    border-radius: 50px;
}

/*Desktop*/

.header-menu-desktop
{
    display: grid;
    grid-template-columns: 1fr repeat(6, 200px) 1fr;
    grid-template-rows: 56px;
    justify-content: center;
    flex-direction: row;
    justify-content: center;
    grid-column: 1/9;
    position: sticky;
    top: 0;
    height: 56px;
    width: 100%;
    z-index: 2;
    background-color: var(--background);
}

.header-menu-desktop-content
{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    grid-column: 2/8;
}

.menubar
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    list-style: none;
}

.menubar li
{
    margin: 0px 24px;
}

.menubar a
{
    color: var(--text);
    text-decoration: none;
    padding: 8px 32px;
    margin: 24px 0px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.menubar a:hover
{
    background-color: var(--highlight-darker);
    transition: 0.3s;
}

.menu-item-active
{
    background-color: var(--highlight);
    transition: 0.3s;
}

.menuicon img
{
    padding: 6px 6px;
    margin-right: -6px;
    border-radius: 12px;
    transition: 0.3s;
}

.menuicon img:hover
{
    background-color: var(--highlight-darker);
    transition: 0.3s;
}

input
{
    display: none;
}

input:checked ~ div .menubar
{
    transform: translateY(0);
}

input:checked ~ div .menubar-toggler
{
    margin-top: 0px;
}

input:checked ~ div .menubar-toggler .bar:nth-child(1)
{
    position: absolute;
    transform: rotate(45deg);
}

input:checked ~ div .menubar-toggler .bar:nth-child(2)
{
    display: none;
}

input:checked ~ div .menubar-toggler .bar:nth-child(3)
{
    transform: rotate(-45deg);
}

/*HERO-ELEMENT----------------------------------*/

.hero-element
{
    grid-column: 2/8;
    grid-row: 2/3;
    gap: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero-text
{
    display: flex;
    flex-direction: column;
    padding-bottom: 64px;
}

.hero-text b
{
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    width: 100%;
}

.hero-text p
{
    font-size: 22px;
    font-weight: 600;
    padding-top: 16px;
}

.hero-left
{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hero-left img
{
    display: none;
    width: 400px;
    margin-bottom: 40px;
    border-radius: 32px;
}

.button-pause button
{
    border: none;
    cursor: pointer;
    font: unset;
    font-size: 12px;
    width: 100%;
    background-color: var(--background);
}

.button-pause button:hover
{
    text-decoration: underline;
}

.hero-right
{
    display: flex;
    flex-direction: column;
    justify-content: right;
    max-width: 480px;
    gap: 8px;
}

.hero-right img
{
    width: 100%;
    border-radius: 48px;
}



/*HEADLINE----------------------------------*/

#portfolio_showcase /*Scroll to after button press*/
{
    grid-column: 2/8;
}

.headline
{
    grid-column: 2/8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 0px;
    gap: 32px;
    font-size: 56px;
    font-weight: 700;
}

.headline-compact
{
    grid-column: 2/8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 48px;
    gap: 32px;
    font-size: 56px;
    font-weight: 700;
}

/*SHOWCASE----------------------------------*/

.showcase-right
{
    display: flex;
    flex-direction: column;
}

.showcase-right-text
{
    height: 100%;
    padding-bottom: 24px;
}

.showcase-right b
{
    font-size: 32px;
    line-height: 122%;
    font-weight: 700;
}

.showcase-tags
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 16px;
    gap: 16px;
    padding-bottom: 32px;
}

.showcase-tags p
{
    background-color: var(--highlight);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 40px;
}

.showcase-image-container
{
    width: 400px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    margin-right: 24px;
}

.showcase-right img
{
    display: none;
    margin-top: 16px;
    margin-bottom: 24px;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    max-width: 400px;
    border-radius: 32px;
    overflow: hidden;
}

.showcase-left img
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 0.3s;
}

.showcase-left img:hover
{
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 105%;
    transition: 0.3s;
}

.showcase-1
{
    grid-column: 2/6;
    display: flex;
    flex-direction: row;
    align-items: top;
    padding: 120px 0px 0px 0px;
    gap: 16px;
    max-width: 800px;
}

.showcase-2
{
    grid-column: 3/7;
    display: flex;
    flex-direction: row;
    align-items: top;
    padding: 120px 0px 0px 0px;
    gap: 16px;
    max-width: 800px;
}

.showcase-3
{
    grid-column: 4/8;
    display: flex;
    flex-direction: row;
    align-items: top;
    padding-top: 120px;
    gap: 16px;
    max-width: 800px;
}

/*Footer----------------------------------*/

.footer
{
    display: grid;
    grid-template-columns: 1fr repeat(6, 200px) 1fr;
    height: fit-content;
    padding: 24px 0px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: var(--highlight);
}

.footer-content
{
    grid-column: 2/8;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

.footer a
{
    text-decoration: none;
    color: var(--text);
}

.footer a:hover
{
    text-decoration: underline;
}

.footer-links
{
    display: flex;
    flex-direction: row;
    gap: 40px;
    text-align: end;
}

.footer-content a
{
    text-decoration: none;
    color: var(--text);
}

.footer-content a:hover
{
    text-decoration: underline;
}

.footer-content-links
{
    display: flex;
    flex-direction: row;
}

.footer-content-links a
{
    padding: 0px 16px;
}

.footer-spacer
{
    display: flex;
    grid-column: 2/8;
    height: 0px;
}


/*WORK________________________________________________________________________________*/

.gallery
{
    grid-column: 2/8;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
}

.gallery-content
{
    grid-column: 2/8;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-mobile
{
    display: none;
}

.gallery-element
{
        position: relative;
        overflow: hidden;
        width: 380px;
        height: 380px;
        border-radius: 24px;
}

.gallery-element a
{
    text-decoration: none;
}

.gallery-element img
{
    width: 100%;
    height: auto;
}

.gallery-overlay
{
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    top: 0px; /*294*/
    height: 510px;
    width: 100%;
    border-radius: 0px 0px 150px 150px;
    transition: 0.3s;
}

.gallery-overlay:hover
{
    top: -130px;
    color: var(--text);
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.gallery-overlay-card
{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-decoration: none;
    padding: 8px 16px 16px;
    background-color: var(--highlight);
}

.gallery-overlay-card p
{
    font-size: 16px;
}

.gallery-overlay-card strong
{
    font-size: 18px;
    font-weight: 600;
}

.gallery-overlay-card-headline p
{
    font-size: 18px;
}

.gallery-overlay-card-text
{
    height: 75px;
    width: 100%;
}

.gallery-tags
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 4px;
}

.gallery-tags p
{
    background-color: var(--highlight-darker);
    font-size: 12px;
    font-weight: 600;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 4px 12px;
    border-radius: 40px;
}

.button-text
{
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    gap: 8px;
    padding-top: 8px;
}

.button-text:hover
{
    text-decoration: underline;
}

.button-text img
{
    width: 24px;
    height: auto;
}

.button-text b
{
    font-weight: 600;
}

/*Project_____________________________________________________________________*/

.design-container
{
    grid-column: 2/8;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    margin-top: 64px;
    margin-bottom: 64px;
    height: fit-content;
}

.design-info
{
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 40%;
    position: sticky;
    top: 120px;
    margin-right: 40px;
}

.design-info .button-secondary
{
    margin-top: 0px;
    max-width: 320px;
    width: 100%;
}

.design-pictures .button-secondary
{
    margin-top: 24px;
    display: none;
}

.design-info b
{
    font-size: 32px;
    line-height: 100%;
}

.design-info p
{
    margin-top: 0px;
    margin-bottom: 60px;
}

.design-info .showcase-tags p
{
    margin-bottom: 0px;
    margin-top: 0px;
}

.design-pictures
{
    grid-column: 4/8;
    display: flex;
    flex-direction: column;
    width: 60%;
    height: fit-content;
}

.popup-big-pic-container
{
    display: flex;
    width: 100%;
    max-height: 392px;
    border-radius: 32px;
    margin-bottom: 24px;
    overflow: hidden;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}

.video-container
{
    border-radius:  32px;
    margin-bottom: 16px;
    overflow: hidden;
}

.popup-big-pic-container img
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*max-width: 1920px;*/
    transition: 0.3s;
}

.popup-big-pic-container img:hover
{
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 105%;
    transition: 0.3s;
}


.showcase-left img
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 0.3s;
}

.showcase-left img:hover
{
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 105%;
    transition: 0.3s;
}

.overlay-big-pic
{
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
}

.overlay-big-pic:target
{
    visibility: visible;
    opacity: 1;
}

.popup
{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 95%;
    z-index: 3;
    height: auto;
    max-height: 100%;
    max-width: 1440px;
}

.popup img
{
    width: 100%;
    border-radius: 32px;
}

.popup .popup-close
{
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: var(--background);
    margin-bottom: 16px;
}

.popup .popup-close:hover
{
    color: #bbc4c4;
}

.popup-close-scrim
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: unset;
}


/*About_____________________________________________________________________*/

.hero-about
{
    display: flex;
    justify-content: space-between;
    grid-column: 2/8;
    margin-top: 144px;
    margin-bottom: 40px;
}

.hero-about-text
{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
    margin-right: 40px;
    height: fit-content;
}

.hero-about-text u
{
    text-decoration-color: var(--primary);
    text-decoration-thickness: 4px;
}

.hero-about-text b
{
    font-size: 32px
}

.hero-about-text .hero-about-image-container
{
    display: none;
}

.hero-about-image-container
{
    max-width: 320px;
    max-height: 320px;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
}

.hero-about-image-container img
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: 0.3s;
}

.kontakt
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-column: 2/8;
    width: 100%;
    gap: 80px;
    margin-bottom: 80px;
}

.kontakt-text-button
{
    display: flex;
    width: fit-content;
    align-items: start;
    gap: 12px;
}

.kontakt-text-button a
{
    text-decoration: none;
    color: var(--text);
}

.kontakt-text-button a:hover
{
    text-decoration: underline;
}

.impressum
{
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    transition: 0.3s;
}

.popup-impressum
{
    display:flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    padding: 24px;
    margin: 0px 16px;
    border-radius: 24px;
    z-index: 2;
    background-color: var(--background);
}

.popup-impressum b
{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.popup-impressum ul
{
    margin-bottom: 32px;
    list-style-type: none;
}

.impressum:target
{
    visibility: visible;
    opacity: 1;
}



/*MEDIA QUERYS_________________________________________________________________________*/

/*min 1200, (1199+32)-992, 991-768, 767-601, max 600*/

/*DESKTOP MIDDLE_______________________________________________________________________*/
@media only screen and (max-width: 1231px) and (min-width: 992px)
{
    .grid-container
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 90vh 1fr;
        justify-content: center;
    }

    .grid-container-2
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 1fr;
        justify-content: center;
    }

    .tooltip .tooltiptext
    {
        left: calc(0%);
    }

    .header-menu-desktop
    {
        grid-template-columns: 16px repeat(6, 1fr) 16px;
    }

    .hero-text b
    {
        font-size: 48px;
        line-height: 140%;
    }

    .hero-text p
    {
        font-size: 20px;
    }

    .hero-right
    {
        max-width: 400px;
    }

    .showcase-1
    {
        grid-column: 2/8;
    }

    .showcase-2
    {
        grid-column: 2/8;
    }

    .showcase-3
    {
        grid-column: 2/8;
    }

    .footer
    {
        grid-template-columns: 16px repeat(6, 1fr) 16px;
    }
}

/*DESKTOP SMALL__________________________________________________________________________*/
@media only screen and (max-width: 991px) and (min-width: 768px)
{
    .grid-container
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 90vh 1fr;
        justify-content: center;
    }

    .grid-container-2
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 1fr;
        justify-content: center;
    }

    .tooltip .tooltiptext
    {
        left: calc(0%);
    }

    .header-menu-desktop
    {
        grid-template-columns: 16px repeat(6, 1fr) 16px;
    }

    .hero-text b
    {
        font-size: 32px;
        line-height: 140%;
    }

    .hero-text p
    {
        font-size: 16px;
    }

    .hero-right
    {
        width: 400px;
    }

    .hero-right img
    {
        width: 100%;
    }

    .hero-right video
    {
        width: 100%;
    }

    .headline
    {
        font-size: 48px;
    }

    .headline-compact
    {
        font-size: 48px;
    }

    .showcase-1
    {
        grid-column: 2/8;
    }

    .showcase-2
    {
        grid-column: 2/8;
    }

    .showcase-3
    {
        grid-column: 2/8;
    }

    .footer
    {
        grid-template-columns: 16px repeat(6, 1fr) 16px;
    }

    .design-container
    {
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .design-info
    {
        width: 522px;
        position: unset;
        margin-right: 0px;
        padding-bottom: 48px;
    }

    .design-info .button-secondary
    {
        margin-top: 24px;
    }

    .design-pictures .button-secondary
    {
        display: unset;
    }

    .design-info p
    {
        margin-bottom: 0px;
    }

    .design-pictures
    {
        grid-column: 4/8;
        display: flex;
        flex-direction: column;
        width: 522px;
        height: fit-content;
    }

    .hero-about
    {
        justify-content: center;
    }

    .hero-about-text
    {
        align-items: center;
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin-right: 0px;
    }

    .hero-about-text .hero-about-image-container
    {
        display: unset;
    }

    .hero-about-image-container
    {
        display: none;
    }
}


/*TABLET AND MOBILE______________________________________________________________________*/
@media only screen and (max-width: 767px)
{
    .grid-container
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 90vh 1fr;
        justify-content: center;
    }

    .grid-container-2
    {
        display: grid;
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        grid-template-rows: 56px 1fr;
        justify-content: center;
    }

    .header-menu-mobile
    {
        display: flex;
    }

    .menubar
    {
        flex-direction: column;
        justify-content: start;
        text-align: center;
        padding-top: 24px;
        padding-bottom: 24px;
        width: 100%;
        height: 100%;
        top: 56px;
        right: 0;
        list-style-type: none;
        transform: translateX(+100%);
        z-index: 1;
        position: fixed;
        transition: .4s;
        -webkit-animation: delay 2s;
        background-color: var(--text);
    }

    .menubar a
    {
        color: var(--background);
    }

    .menubar a:hover
    {
        background-color: var(--text-lighter);
    }

    .menubar li
    {
        padding: 0px 16px;
        width: 100%;
    }

    .menu-item
    {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .menu-item-active
    {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-menu-desktop
    {
        display: none;
    }

    .hero-element
    {
        justify-content: center;
        gap: 0px;
        width: 100%;
    }

    .hero-left
    {
        max-width: 400px;
        width: 100%;
    }

    .button-primary
    {
       max-width: 400px;
       min-width: min-content;
       width: 100%;
       padding-left: 16px;
       padding-right: 16px;
    }

    .hero-right img
    {
        display: none;
    }

    .hero-right button
    {
        display: none;
    }

    .hero-left img
    {
        display: block;
        width: 100%;
    }

    .hero-right video
    {
        display: none;
    }

    .hero-text
    {
        padding-bottom: 32px;
    }

    .hero-text b
    {
        font-size: 32px;
        line-height: 140%;
        
    }

    .hero-text p
    {
        font-size: 16px;
        padding-top: 8px;
    }

    .hero-right
    {
        max-width: 400px;
    }

    .headline
    {
        font-size: 28px;
        gap: 16px;
        padding-top: 80px;
    }

    .headline-compact
    {
        font-size: 28px;
        gap: 16px;
        padding-top: 48px;
    }

    .showcase-1
    {
        grid-column: 2/8;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        align-items: center;
        padding-top: 16px;
        gap: 0px;
    }

    .showcase-2
    {
        grid-column: 2/8;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        align-items: center;
        padding-top: 16px;
        gap: 0px;
    }

    .showcase-3
    {
        grid-column: 2/8;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        align-items: center;
        padding-top: 16px;
        gap: 0px;
    }

    .showcase-right
    {
        max-width: 400px;
        width: 100%;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    .showcase-right-text
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase-right p
    {
        text-align: center;
    }

    .showcase-right b
    {
        text-align: center;
        font-size: 22px;
    }

    .showcase-right img
    {
        display: block;
        max-width: 400px;
        width: 100%;
    }

    .showcase-image-container
    {
        display: none;
    }

    .showcase-tags
    {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-bottom: 12px;
    }

    .footer
    {
        grid-template-columns: 16px repeat(6, 1fr) 16px;
        margin-top: 24px;
        padding-top: 24px;
        height: fit-content;
    }

    .footer-content
    {
        align-items: start;
    }

    .footer-links
    {
        flex-direction: column;
        gap: 24px;
    }

    .footer-spacer
    {
        height: 120px;
    }

    .gallery-content
    {
        gap: 80px;
        margin-bottom: 48px;
    }

    .gallery-element
    {
        overflow: visible;
        max-width: 380px;
        max-height: 380px;
        width: 100%;
    }

    .gallery-element img
    {
        border-radius: 24px 24px 0px 0px;
    }

    .gallery-overlay
    {
        top: 0px;
        height: 430px;
    }

    .gallery-overlay:hover
    {
        top: 0px;
        background-color: unset;
    }

    .gallery-overlay-card
    {
        border-radius: 0px 0px 24px 24px;
    }

    .gallery-overlay-card-text
    {
        display: none;
    }

    .gallery-overlay-card-headline p
    {
        display: block;
    }

    .gallery-tags p
    {
        display: block;
    }

    .design-container
    {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 100%;
    }

    .design-info
    {
        max-width: 522px;
        width: 100%;
        position: unset;
        align-items: center;
        text-align: center;
        margin-right: 0px;
        padding-bottom: 48px;
    }

    .design-info .button-secondary
    {
        margin-top: 24px;
    }

    .design-pictures .button-secondary
    {
        display: unset;
    }

    .design-info b
    {
        text-align: center;
    }

    .design-info p
    {
        margin-bottom: 0px;
    }

    .design-pictures
    {
        grid-column: 4/8;
        display: flex;
        flex-direction: column;
        max-width: 522px;
        width: 100%;
        height: fit-content;
    }

    .hero-about
    {
        justify-content: center;
        margin: 40px 0px 24px 0px;
    }

    .hero-about-text
    {
        align-items: center;
        text-align: center;
        max-width: 400px;
        width: 100%;
        margin-right: 0px;
    }

    .hero-about-text b
    {
        font-size: 20px;
    } 

    .hero-about-text .hero-about-image-container
    {
        display: unset;
    }

    .hero-about-image-container
    {
        display: none;
    }

    .kontakt
    {
        gap: 40px;
    }

    .kontakt-text-button
    {
        max-width: 400px;
        width: 100%;
    }
}