@media only screen and (min-width: 600px) {
    body {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-template-areas:
            "Banner"
            "Content"
            "Footer";
    }
    
    .headerContainer {
        background-color: #fff;
        position: fixed;
        width: 100vw;
        height: 80px;
        z-index: 99;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border-bottom: 2px solid var(--gray);
    }
    
    .navContainer {
        width: 90vw;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .Banner {
        width: 75vw;
        margin: 0 auto;
        height: 60vh;
        position: relative;
    }
    
    .sliderImage {
        width: 100%;
        height: calc(60vh - 0.5rem);
        object-fit: cover;
        z-index: 2;
    }

    .sliderImageSubPage {
        width: 100%;
        height: calc(60vh - 0.5rem);
        object-fit: cover;
        z-index: 2;
    }

    .Content {
        width: 100vw;
    }
  
    .navi {
        margin-left: auto;
    }

    .logoContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .logoContainer img {
        display: block;
        height: 35px;
    }

    .logoContainer h1 {
        font-size: 2rem;
        padding-left: 1em;
        letter-spacing: .1rem;
        display: block;
        color: #fff;
    }

    #navItemLogo {
        display: none;
    }

    .showOnlyDesktop {
        display: block;
    }

    .sectionWelcome {
        width: 60%;
        margin: 0 auto;
    }

    .sectionWelcome80 {
        width: 80%;
        margin: 0 auto;
    }
    
    .sectionWelcome100 {
        width: 100%;
        margin: 0 auto;
    }
    
    .columContainer {
        display: flex;
        gap: 5rem;
        flex-direction: row;
        align-items: center;
    }
    .columnText {
        flex: 0 1 calc(60% - 1rem);
    }
    .columnImage {
        display: flex;
        height: 100%;
        flex: 0 1 calc(40% - 1rem);
        justify-content: center;
        align-items: center;
        border-left: 2px solid var(--primary);
        padding-left: 3rem;
    }
    .columnImage img {
        width: 100%;
        object-fit: cover; 
        height: 300px;
    }

    .speisekarteContainer {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0px 0px;
        grid-template-areas:
            "Column1 Column2";
    }

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

    .speisekarteContainerImageWrapper img {
        width: 40rem;
    }

    .Column1 {
        grid-area: Column1; 
    }

    .Column2 {
        grid-area: Column2; 
    }

    .tableMittagstisch {
        width: 100%;
    }

    .tableMittagstisch tr {
        font-size: 2rem;
        text-align: left;
        height: 4rem;
    }

    .tableMittagstisch tr:nth-child(even) {
        background-color: #f7f7f7;
    }
    .tableMittagstisch tr:nth-child(odd) {
        background-color: #f0f0f0;
    }

    .tableMittagstisch th {
        font-size: 2rem;
        text-align: left;
    }

    .tableMittagstisch td {
        font-size: 2rem;
        text-align: left;
    }

    .imageGalerie-container {
        margin-bottom: 4rem;

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .imageGalerie-item {
        padding: 15px;
        flex: 0 1 calc(33.3%);
    }

    .imageGalerie-item img {
        width: 100%;
        height: 300px;;
        object-fit: cover;
    }

    .imageGalerie-item2 {
        padding: 3px;
        flex: 0 1 calc(20%);
    }

    .imageGalerie-item2 img {
        width: 100%;
        height: 150px;;
        object-fit: cover;
    }
    
    .footerContainer {
        width: 70%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .footerColumn {
        flex: 0 1 calc(33.3%);
        display: flex;
        flex-direction: column;
    }

    .footerColumn p {
        width: 100%;
        color: #878787;
        margin-bottom: 1rem;;
    }

    .module h1 {
        color: #000;
        text-align: center;
        font-weight: 100;
        margin-bottom: 2rem;
    }
    
    .footerColumn h1 {
        margin-top: 1rem;
        color: whitesmoke;
    }

    .footerColumn a {
        color: #878787;
        font-size: 2rem;
    }

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

    .footerColumn li {
    }

    .footerColumn li:before {
    }

    .footerColumn li a {
        color: #878787;
        font-size: 2rem;
        font-weight: normal;
    }

    .footerColumn li a:hover {
        font-weight: bold;
        transition: color 1s;
        color: whitesmoke;
    }

    .footerColumn i {
        color: #878787;
        font-size: 2rem;
        margin-right: 1rem;
    }

    .footerLogo {
        width: 250px;
    }

    .sectionFilalen {
        width: 70%;
        margin: 0 auto;
    }
    
    .filalenContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .image {
        height: 200px;
        overflow: hidden;
        transition: all .2s ease-in-out;
    }

    .image:hover,
    .card:hover .image {
        height: 300px;
        opacity: 1;
    }

    .text {        
        position: relative;
        padding: 20px;
        min-height: 200px;
    }

    .text p {
        margin-bottom: 0px;
        
    }

    .flexContainerFilialen {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .cardFilale {
        position: relative;
        flex: calc(33.3% - 5rem);
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
        background: #FFF;
        align-self: stretch;
        background: var(--primary);
        height: 250px;
    }
    
    .cardFilale:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        cursor: pointer;
    }
    
    .cardFilale h3 {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        color: whitesmoke;
        background: rgba(0,0,0,0.5);
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #b0b0b0;
        border-top: 1px solid #b0b0b0;
    }
    
    .cardFilale img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .readmoreButton {
        position: absolute;
        right: 2rem;
        top: 2rem;
    }
    
    .infoButtonContainer {
        display: flex;
        width: 100%;
        flex-direction: row;
        margin-top: 6rem;
        justify-content: space-around;
        align-items: center;
    }
    
    .infoButtonCard {
        flex: 0 1 calc(33.3% - 1rem);
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
        background: #FFF;
        text-align: center;
    }
    
    .infoButtonCard:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    }
    
    .infoButtonCard h3 {
        padding: 2rem;
    }
    
    .infoButtonCard .image {
        height: 200px;
        overflow: hidden;
        transition: all .2s ease-in-out;
    }
    
    .containerAngebote {
        display: flex;
        width: 100%;
        flex-direction: row;
        margin-top: 2rem;
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
    }
    
    .mittagsangebotCard {
        flex: 0 1 calc(33.3% - 1rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #FFF;
        padding: 1rem;
        text-align: center;
        align-self: stretch;
    }
    
    .mittagsangebotCard:hover {
    }
    
    .mittagsangebotCard h3 {
        margin-top: 2rem;
    }
    
    .mittagsangebotCard.thumb {
        height: 200px;
        overflow: hidden;
        transition: all .2s ease-in-out;
    }
    
    .mittagsangebotCard p {
        margin: 0rem;
        padding: 1rem;
    }
    
    #kontaktFormular {
        width: 100%;
        padding: 3rem;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
    }
    
    .tableAngebote {
        width: 100%;
        text-align: left;
    }
    
    .headerRow {
        background-color: var(--green);
        color: white;
    }
    
    .headerRow th {
        padding: 1rem;
        font-size: 2rem;
    }
    
    .wochentagRow {
        background-color: #ebebeb;
    }
    
    .wochentagRow th {
        padding: 1rem;
        font-size: 2rem;
    }
    
    .dataRow:nth-child(even) {
        background-color: #ebebeb;
    }
    .dataRow:nth-child(odd) {
        background-color: #fafafa;
    }
    
    .mittagsangebotRow {
        background-color: #fafafa;
    }
    
    .mittagsangebotRow td {
        padding: 1.5rem;
        font-size: 2rem;
    }
    
    .mittagsangebotRow:hover {
        background-color: #d1d1d1;
    }
    
    .dataRow:hover {
        background-color: #d1d1d1;
    }
    
    .dataRow td {
        padding: 1.5rem;
        font-size: 2rem;
    }
    
    .dataRow .product {
        
    }
    
    .price td {
        font-size: 1rem;
    }
    
    .referenzFlexContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .referenzFlexItem {
        position: relative;
        flex: calc(25% - 2rem);
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
        background: #ededed;
        align-self: stretch;
    }
    
    .referenzFlexItem img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .referenzFlexItem img:hover {
        -webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
        cursor: pointer;
    }
    
    .referenzFlexItemDescription {
        position: absolute;
        width: 100%;
        padding: 1rem;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        text-align: center;
        color: #fff;
    }
    
    .partnerContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .partnerCard {
        flex: 0 1 calc(50% - 1rem);
    }

    .partnerCard img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        filter: grayscale(100%);
    }
  
    .partnerCard img:hover {
        animation: giveColor 3s ease;
    }
}