@media only screen and (min-width: 992px) {
    body {
        grid-template-columns: 0.8fr 1fr 1fr 1fr 1fr 0.8fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-template-areas:
          "Header Header Header Header Header Header"
          "Banner Banner Banner Banner Banner Banner"
          "Content Content Content Content Content Content"
          "Footer Footer Footer Footer Footer Footer";
    }

    .Banner {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../images/0178ebeb-57a6-4ff9-9992-84478fd90bd0.JPG');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 2;
        height: 70vh;
    }
    
    .subBanner {
        height: 30vh;
    }
    
    .welcome {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .welcome .flexContainer {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .welcome h1 {
        font-family: Lato, sans-serif;
        font-size: 6rem;
        color: var(--primary);
    }
    
    #landingInfo {
        font-size: 3.5rem;
        transform: translateY(-25px);
        color: var(--lightgrey);
        
        text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
            0px -4px 10px rgba(255,255,255,0.3);
    }
    
    .Header {
        height: 100px;
        width: 100%;
        z-index: 9999;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .navi {
        margin-left: auto;
    }
    
    .logoContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .logoContainer img {
        display: block;
        height: 75px;
    }
    
    .logoContainer h1 {
        font-size: 2rem;
        padding-left: 1em;
        letter-spacing: .1rem;
        display: block;
        color: #fff;
    }

    #navItemLogo {
        display: none;
    }
    
    .showOnlyDesktop {
        display: block;
    }
    
   .fixedHeader {
        width: 100%;
        height: 100px;
        z-index: 99;
        position: fixed;
        box-shadow: 0 7px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        background-color: #fff;
    }

    .headerContainer {
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        margin: 0 auto;
    }
    
    .footerContainer {
        width: 70%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        min-height: 300px;
        text-align: left;
    }
    
    .footerCard {
        flex: 0 1 calc(25%);
    }
    
    .footerContainer p {
        font-size: 1.5rem;
        color: #5C5A5A;
    }
    
    .footerContainer h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #E1E1E1;
    }
    
    footer a {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #A5A5A5;
    }
    footer a:hover {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--yellow);
        transition: color 1s ease;
    }
    
    .copyrightContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .copyrightContainer h2 {
        font-size: 1.5rem;
    }
    
    .cardLeistung {
        flex: 0 1 calc(33% - 1rem);
        border-radius: 1rem;
        background-color: #fff;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .cardLeistung p {
        color: var(--text);
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 1.8rem;
    }
     
    .cardLeistung h2 {
        width: 100%;
        padding: 2rem;
        font-size: 2.5rem;
        text-align: left;
    }
    
    .cardLeistung img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cardLeistung img:hover {
    }
    
    .partnerContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .partnerCard {
        flex: 0 1 calc(25% - 1rem);
    }

    .partnerCard img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        filter: grayscale(100%);
    }
  
    .partnerCard img:hover {
        animation: giveColor 3s ease;
    }
    
    section h1 {
        color:  var(--text);
        font-size: 4rem;
    }
    
    section .logogrey {
        font-size: 4rem;
        color: var(--text);
    }
    section .logoblue {
        font-size: 4rem;
        color: var(--primary);
    }
    
    #kompetenzen {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    #welcomeContainer {
        display: flex;
        width: 100%;
        gap: 2rem;
    }
    
    .imageGalerie-container {
        margin-bottom: 4rem;

        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .imageGalerie-item {
        padding: 15px;
        flex: 0 1 calc(20%);
    }

    .imageGalerie-item img {
        width: 100%;
        height: 200px;;
        object-fit: cover;
    }
    
    .imageGalerie-item2 {
        padding: 3px;
        flex: 0 1 calc(20%);
    }

    .imageGalerie-item2 img {
        width: 100%;
        height: 70px;;
        object-fit: cover;
    }
    
    .w70 {
        width: 70%;
    }
    
    .w50 {
        width: 50%;
    }
    
    .contendGrid {
        display: grid;
        grid-template-columns: 1fr 0.7fr;
        grid-template-rows: 1fr;
        gap: 0rem 5rem;
        grid-template-areas: "ContentLeft ContentRight"
    }

    .ContentLeft {
        grid-area: ContentLeft; 
    }

    .ContentRight {
        grid-area: ContentRight; 
    }

    .ContentRight img {
        width: 100%;
    }
    
    #team {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .cardTeam {
        flex: 0 1 calc(25% - 1rem);
        border-radius: 1rem;
        background-color: #fff;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .cardTeam p {
        color: var(--text);
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 1.8rem;
    }
     
    .cardTeam h2 {
        width: 100%;
        padding: 1rem;
        text-align: center;
        font-size: 2.5rem;
        background-color: var(--primary);
        color: #fff;
        border-radius: 0.5rem;
    }
    
    .cardTeam img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .cardFahrzeug {
        flex: 0 1 calc(33.3% - 1rem);
        border-radius: 1rem;
        background-color: #fff;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    #fahrzeuge {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .cardFahrzeug p {
        color: var(--text);
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 1.8rem;
    }
     
    .cardFahrzeug h2 {
        width: 100%;
        padding: 1rem;
        text-align: center;
        font-size: 2.5rem;
        background-color: var(--primary);
        color: #fff;
        border-radius: 0.5rem;
    }
    
    .cardFahrzeug img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .columContainer {
        display: flex;
        gap: 5rem;
        flex-direction: row;
        align-items: flex-start;
    }
    .columnText {
        flex: 0 1 calc(60% - 1rem);
        text-align: justify;
    }
    .columnImage {
        flex: 0 1 calc(40% - 1rem);
    }
    .columnImage img {
        width: 95%;object-fit: cover; height: 300px;
    }
}