/*====Basics=====*/
* {
    font-size: 16px;
    line-height: 25px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

a {
    color: var(--white);
    text-decoration: underline;
}

:root {
    --orange: #ff9000;
    --gray: #7D7F7D;
    --white: white;
}

:hover {
    cursor: pointer;
}

h1,
h2,
h3,
h5 {
    margin-bottom: 20px;

    text-transform: uppercase;
}

h4{
    text-transform: uppercase;
}

.header-inhalt h1 {
    text-shadow: #232323 1px 1px 1px;
}

p {
    padding: 0 0 20px 0;
}

.content {
    width: 100%;
}

nav {
    background-color: var(--gray);
    height: 100px;
    position: fixed;
    width: 100%;
    z-index: 99;
    align-items: center;
    display: flex;
}

nav .logo {
    margin-left: 5%;
    text-decoration: none;
    color: white;
    text-transform: uppercase;

}

.logo-ueberschrift {
    color: var(--orange);
}

nav .logo a {
    text-decoration: none;
    color: white;
}

nav ul {
    position: absolute;
    right: 5%;
}

nav ul li {
    display: inline-block;
    right: 0;
    position: relative;
    padding: 20px;
}

nav ul li a {
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: none;
}

nav ul li a::before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 10px;
    height: 10px;
    bottom: 0;
    left: -3px;
    background-color: var(--orange);
    transition-duration: 250ms;
    transform: translateY(15px);
    opacity: 0;
}



nav ul li a:hover::before {
    transform: translateY(0);
    opacity: 1;
}

::-moz-selection {
    background: var(--orange);
    color: var(--white);
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/*=======Header=========*/
header {
    height: 70vh;
    background-color: var(--gray);
    position: relative;
    background-image: url("../images/header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
}

.header-inhalt {
    position: absolute;
    bottom: 10%;
    left: 5%;
}

h1 {
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    line-height: 2rem;
}

.button {
    background-color: var(--orange);
    border: none;
    padding: 5px 25px;
    color: var(--white);
}

/* .button a {
    text-decoration: none;
} */

/*============NAVI==============*/

.navi {
    display: block;
    height: 65px;
}

.burger-nav {
    position: fixed;
    right: 15px;
    top: 35px;
    color: var(--orange);
    z-index: 9999;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 40px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    padding: 0px 20px;
}

.burger-nav b {
    transition: all .4s ease-in-out;
    float: left;
    margin-left: 0;
    font-family: 'Roboto';
    font-style: normal;
    font-size: 4rem;
}

.burger-nav-anim {
    top: 15px;
    color: var(--orange);
}

.burger-nav-anim b:first-of-type {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
    opacity: 0;
}

.burger-nav-anim b:last-of-type {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -80%;
}

.full-screen-nav {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100vh;
    background: var(--gray);
    display: table;
    visibility: hidden;
    transition: all .4s ease-in-out;
    opacity: 0;
}

.full-screen-nav ul {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.full-screen-nav ul li a {
    padding: 20px;
    display: block;
    font-size: 2rem;
    color: var(--orange);
    transition: all .4s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}

.fadeIn {
    opacity: 1 !important;
    visibility: visible !important;
}

.fadeUp {
    opacity: 1 !important;
    margin-top: 0 !important;
}

/*=======Aside========*/
aside {
    z-index: 9;
    position: fixed;
    top: 15vh;
    left: 5px;
    display: flex;
    flex-direction: column;
  }

/* aside a {
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    position: absolute;
} */
.aside-icon {
    background-color: var(--orange);
    padding: 10px;
    width: 50px;
}


aside a:nth-of-type(2) {
    top: 5vh;
}

aside a:nth-of-type(3) {
    top: 10vh;
}


/*=====Section=======*/
section {
    padding: 0 10%;
    gap: 10%;
    background-color: var(--white);
    display: flex;
}

section:nth-of-type(even) {
    background-color: var(--gray);
}

section .inhalt ul {
    padding-bottom: 20px;
}

#home,
#profil,
#projekte {
    padding: 0;
}
#home .content {
    display: flex;
    flex-direction: column-reverse;
}
#home .content .inhalt:nth-of-type(2) {
    padding: 50px 10%;
}


#profil,
#kontakt {
    color: white;
}

#dsa-maps {
    padding: 0;
}

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

.inhalt {
    width: 100%;
}

section,
.content,
.inhalt,
ul,
li {
    list-style-type: none;
}

.ueberschriften {
    position: relative;
    z-index: 2;
}

#projekte .ueberschriften {
    text-align: center;
}

/* .ueberschrift-box {
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    position: absolute;
    left: -5px;
    top: 10px;
    z-index: -1;
} */
h2::before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 15px;
    height: 15px;
    bottom: 0;
    left: -3px;
    background-color: var(--orange);
}


#home .content .inhalt:nth-of-type(1) img {
    width: 100%;
    /* height: 100vh;
    object-fit: cover; */
}

#profil .content .inhalt:nth-of-type(2) img {
    width: 100%;
    object-fit: cover;
    position: relative;
    bottom: -7px;
}

#profil .content .inhalt:nth-of-type(1) {
    padding: 50px 10%;
}
#profil .content .inhalt .profil-img{
    width: 80%;
  margin: 0 auto;
}

#projekte .content .inhalt {
    padding: 170px 5%;
}

/*=========Liste=========*/

#home ul {
    padding-left: 0;
    margin-left: 1.5em;
}
#profil ul{
    margin-left: 1.5em;
}

#home ul li::before,
#profil ul li::before {
    content: "\25A0";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--orange);
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
    font-size: 1.5rem;
}

#profil ul li::before {
    content: "\25A0";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--orange);
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
    font-size: 1.5rem;
}

/*==========Parallax=======*/
.parallax {
    height: 400px;
    background-color: var(--orange);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parallax-col {
    width: 90%;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5em;
    line-height: 2.5rem;
}

.parallax-col:nth-of-type(1) {
    padding-bottom: 20px;
}

.parallax-icons {
    display: flex;
    gap: 5%;
    justify-content: center;
    width: 100%;
}

.parallax a {
    background-color: white;
    padding: 20px;
    width: 90px;
    align-items: center;
    display: flex;
}

.parallax-bild {
    width: 100%;
}

.parallax a img {
    width: 100%;
}

/*=========Projekte===========*/
#projekte .inhalt {
    width: 100%;
}

#projekte h2 {
    display: inline-block;
    position: relative;
}

.grid-container {
    display: grid;
    grid-template-columns: auto;
    padding: 20px;
    gap: 1rem;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    min-height: 350px;
    min-width: 200px;
    background-position:center;
}

.grid-item .grid-icon {
    width: 50px;
    object-fit: contain;
    height: auto;
}

.grid-item p {
    padding: 0;
}



.grid-item img {
    width: 100%;
    object-fit: cover;
}

.grid-orange{
    background-color: var(--orange);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: var(--white);
    height: 100%;
    padding: 0;
}
/* .grid-item:nth-of-type(11) {
    background-color: var(--orange);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: var(--white);
} */

.grid-fett-text {
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 0.5em;
    padding-top: 20px;
}

/*=======Overlay-effekt===========*/

.grid-overlay {
    position: relative;
    width: 100%;
}

.overlay-image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(255, 144, 0, 0.7);
}

.grid-overlay:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 1em;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

/*=========Kontakt============*/
/* #kontakt .content .inhalt:nth-of-type(1) {
    padding: 170px 15%;
} */

#kontakt .content .inhalt:nth-of-type(2) img {
    width: 100%;
    margin-bottom: -4px;
}

#kontakt .content .inhalt {
    width: 100%;
}

#kontakt {
    padding: 0;
}

/*-----------SUBNAV-----------*/

.subnav {
    position: fixed;
    bottom: 0;
    color: #fff;
    z-index: 999;
    transition: 0.5s;
    width: 100%;
    text-align: right;
    padding-right: 4.5%;
}

.subnav a {
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    background-color: var(--gray);
    line-height: 23px;
}

/* .subnav a {
    margin-right: 10px;
} */


.subnav a:hover {
    color: #dfdfdf;
}

/*==========IMPRESSUM=============*/
#kontakt .content .inhalt {
    width: 100%;
    flex-direction: column;
}

#kontakt {
    display: flex;
    flex-direction: row;
    gap: 0;
}

#kontakt .content .inhalt:nth-of-type(2) {
    background-image: url("../images/kontakt.jpg");
    background-size: cover;
    min-height: 700px;
    background-repeat: no-repeat;
    background-position: right;
}

#kontakt .content {
    background-color: var(--gray);
    width: 100%;
}

.grid-item:nth-of-type(1) {
    background-image: url("../images/12.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(2) {
    background-image: url("../images/13.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(3) {
    background-image: url("../images/1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(4) {
    background-image: url("../images/11.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(5) {
    background-image: url("../images/2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(6) {
    background-image: url("../images/3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(7) {
    background-image: url("../images/5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(8) {
    background-image: url("../images/7.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(9) {
    background-image: url("../images/8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(10) {
    background-image: url("../images/14.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.grid-item:nth-of-type(11) {
    background-image: url("../images/14.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

/*==================POPUP========================*/
/* @import url("reset.css");
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,500,700'); */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {

    color: #000;
}




:is(#popup1, #popup2, #popup3, #popup4, #popup5, #popup6, #popup7, #popup8, #popup9, #popup10, #popup11) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup_visible #popup1,
.popup_visible #popup2,
.popup_visible #popu3,
.popup_visible #popup4,
.popup_visible #popup5,
.popup_visible #popup6,
.popup_visible #popup7,
.popup_visible #popup8,
.popup_visible #popup9,
.popup_visible #popup10,
.popup_visible #popup11 {
    transform: scale(1)
}

.popup-style {
    margin: 2rem 0;
    min-height: 20px;
    width: 80%;
    padding: 2rem 1rem;
    background-color: var(--gray);
    border: 1px solid var(--orange);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);

}

.popup-style a {
    color: #1B5D84
}

.popup-style a:hover {
    opacity: 0.8;
    text-decoration: none
}

.popup-style h4 {
    color: var(--white)
}

.popup-style p {
    color: var(--white);
    text-align: left;
    font-size: 16px;
}
#popup3 .popup-style p{
    font-size: 16px;
}
#popup3 .popup-style h4{
    font-size: 20px;
}
#popup3 .popup-style b{
    font-size: 20px;
}
.popup-style h4+p {
    padding-top: 1rem
}

.close-popup{
    background-color: var(--gray);
    color: white;
    border: none;
}


.close-popup {
    transition: all 1s ease;
    cursor: pointer;
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    padding: 5px;
    position: absolute;
}

.close-popup i {
    transition: all 1s ease;
    font-size: 2rem;
    color: var(--orange)
}

.close-popup:hover i {
    color: #020D1A
}

#impressum{
    padding:0 5%;
    background-color: var(--gray);
    color: var(--white);
}
#impressum h2, #impressum h3, #impressum h4{
    color: #ff9000;
} 
#impressum .content{
    justify-content: center;
    align-items: baseline;
}

@media screen and (min-width: 320px) {
    nav .logo {
        /* font-size: 1rem; */
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 2rem;
    }

    .header-inhalt .button {
        font-size: 1em;
        text-decoration: none;
    }

    .aside-icon {
        width: 50px;
        height: 50px;
        padding: 5px;
    }

    .logo-ueberschrift {
        font-size: 1rem;
    }


    nav .logo {
        font-size: 1rem;
    }

    .content {
        display: block;
        flex-direction: column;
    }

    .burger-nav {
        /* top: 5px;
        padding: 0 30px; */
    }

    .burger-nav b {
        /* font-size: 4rem; */
    }

    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 50px 10%;
    }

    /* .grid-item:nth-of-type(11) {
        padding: 15px;
    } */

    .grid-fett-text {
        text-transform: uppercase;
        padding-bottom: 10px;
        font-size: 1.5rem;
        padding-top: 20px;
    }

    .parallax-col {
        font-size: 2rem;
    }

    .parallax-icons {
        display: flex;
        gap: 5%;
        justify-content: center;
        width: 70%;
    }

    .parallax a {
        padding: 10px
    }

    header {
        background-position-y: 30%;
    }
}

@media screen and (max-width:544px) {
    header{
        height: 60vh;
    }
    #profil .content .inhalt .ueberschriften h2::before {
        bottom: 40px;
    }
    #kontakt .content .inhalt:nth-of-type(2) {
        background-image: url(../images/kontakt.jpg);
        background-size: cover;
        min-height: 400px;
        background-repeat: no-repeat;
        background-position: right;
    }
    #home .content .inhalt:nth-of-type(1) img {
        width: 80%;
    }
    nav{
        height: 80px;
    }
    #projekte h2 {
        display: inline-block;
        position: relative;
        font-size: 1.5rem;
    }

  
}

@media screen and (min-width:595px) {
    .grid-item {
        min-width: 300px;
    }

    .burger-nav {
        /* top: 5px;
       padding: 0 30px; */
    }

    .burger-nav b {
        /* font-size: 4rem; */
    }

    .header-inhalt h1 {
        font-size: 2em;
        text-shadow: #232323 1px 1px 1px;
        width: min(750px, 70%);
    }

    .header-inhalt {
        bottom: 10%;
    }

    .header-inhalt .button {
        font-size: 2em;
    }

    :is(#popup1, #popup2, #popup3, #popup4, #popup5, #popup6, #popup7, #popup8, #popup9, #popup10, #popup11) img {
        width: 100%;
        max-height: 450px;
        object-fit: contain;
    }
    .popup-style{
        width:70%;
    }

    .logo-ueberschrift {
        font-size: 2rem;
    }

    nav .logo {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    p {
        /* padding: 20px 0; */
    }

    nav {
        /* background-color: var(--gray);
        height: 100px;
        position: fixed;
        width: 100%;
        z-index: 9;
        align-items: center;
        display: flex; */
    }

    nav .logo {
        /* margin-left: 5%;
        text-decoration: none;
        color: white;
        text-transform: uppercase;
        font-size: 2rem; */
    }

    .logo-ueberschrift {
        /* color: var(--orange);
        font-size: 2rem; */
    }

    nav .logo a {
        /* text-decoration: none;
        color: white; */
    }


    nav ul {
        /* position: absolute;
    right: 5%; */
    }

    nav ul li {
        /* display: inline-block;
    right: 0;
    position: relative;
    padding: 20px; */
    }

    nav ul li a {
        /* position: relative;
    z-index: 1;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: none; */
    }

    nav ul li a::before {
        position: absolute;
        z-index: -1;
        content: "";
        width: 10px;
        height: 10px;
        bottom: 0;
        left: -3px;
        background-color: var(--orange);
        transition-duration: 250ms;
        transform: translateY(15px);
        opacity: 0;
    }



    nav ul li a:hover::before {
        transform: translateY(0);
        opacity: 1;
    }


}
@media screen and (max-width:800px){
    #home .content .inhalt:nth-of-type(1) img {
        width: 80%;
    }
}
@media screen and (max-width:888px) {
    .grid-item:nth-of-type(11) {
        min-height: 350px;
    }
    .grid-overlay .overlay {
        opacity: 1;
    }
    .splide {
        position: relative;
        visibility: hidden;
    
    }

    #impressum{
        flex-direction: column;
    }
}

@media screen and (min-width:800px) {
    nav {
        /* height: 150px; */
    }

    header {
        height: 100vh;
        background-size: cover;
        background-position: right;
    }
    .popup-style{
        width:50%;
    }
    .header-inhalt h1 {
        font-size: 3em;
        width: min(750px, 90%);
        line-height: 3rem;
    }

    .full-screen-nav a {
        /* font-size: 2rem; */
    }

    .text h4 {
        /* font-size: 1.5em; */
    }

    #kontakt .content .inhalt:nth-of-type(2) {
        /* background-position: center; */
        background-size: cover;
    }
   
    h2 {
        /* font-size: 2rem; */
    }

    #home .content {
        display: flex;
        flex-direction: row;
      }

    .grid-container {
        display: grid;
        grid-template-columns: auto auto;
        padding: 20px;
        gap: 1rem;
    }

    .grid-item .grid-icon {
        width: 30px;
        object-fit: contain;
        height: auto;
    }

    .grid-item .grid-icon {
        width: 50px;
        object-fit: contain;
        height: auto;
    }

    .grid-fett-text {
        /* font-size: 1.5em; */
    }

    .parallax-icons {
        width: min(450px, 60%);
    }

    .content {
        flex-direction: row;
    }

    nav .logo {
        /* font-size: 2.5rem; */
    }

    .logo-ueberschrift {
        /* font-size: 1em; */
    }

    .burger-nav b {
        /* font-size: 7rem; */
    }

    #home ul li::before,
    #profil ul li::before {
        /* margin-left: 0em;
        font-size: 60px; */
    }

    .full-screen-nav ul li a {
        /* font-size: 2rem; */
    }

    .aside-icon {
        /* background-color: var(--orange);
        padding: 10px;
        width: 70px; */
    }
}

/* @media screen and (max-width:450px) {
    .burger-nav b {
        font-size: 2.5rem;
    }

    nav .logo {
        font-size: 1em;
    }

    .logo-ueberschrift {
        color: var(--orange);
        font-size: 1em;
    }

    #home ul li::before,
    #profil ul li::before {
        font-size: 1.5rem;
    }

    .burger-nav {
        top: 10px;
    }

    .full-screen-nav ul li a {
        font-size: 2rem;
    }
} */

/* @media screen and (max-width:700px) {
    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 170px 10%;
    }

    .grid-item:nth-of-type(11) {

        height: 350px;
    }

} */

@media screen and (min-width:700px) {

    .header-inhalt h1 {
        /* font-size: 3em; */
    }

    .grid-container {
        /* display: grid;
        grid-template-columns: auto auto;
        padding: 20px;
        gap: 1rem; */
    }



    #kontakt .content .inhalt:nth-of-type(1) {
        /* padding: 170px 5%; */
    }

    /* 
    .parallax-icons {
        display: flex;
        gap: 5%;
        justify-content: center;
        width: 50%;
    }

    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 170px 10%;
    }

    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 170px 5%;
    } */
}
/* @media screen and (max-width:1270px){
    .grid-overlay .overlay {
        opacity: 1;
    }
} */
@media screen and (min-width:1270px) {
    .grid-container {
        grid-template-columns: auto auto auto;

    }
.parallax-col{
    text-align: left;
}
    #kontakt .content .inhalt:nth-of-type(2) {
        height: 100%;
        background-size: cover;
    }

    .content {
        display: flex;
        padding: 50px 0;
    }

    #home .content {
        padding-bottom: 0;
    }

    #profil .content .inhalt:nth-of-type(1) {
        padding: 0 5%;
    }

    #home .content .inhalt:nth-of-type(2) {
        padding: 0 10%;
    }

    #kontakt .content {
        padding: 0;
    }

    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 0 10%;
    }
    #impressum{
        padding:0 5%;
        background-color: var(--gray);
        color: var(--white);
    }

    #home ul li::before,
    #profil ul li::before {
        /* margin-left: 0em;
        font-size: 16px; */
    }

    #home ul {
        /* padding-left: 0;
        margin-left: 0em; */
    }


    /*=======Header=========*/
    header {
        /* height: 100vh;
        position: relative;
        background-image: url("../images/header.jpg");
        background-size: contain;
        background-repeat: no-repeat;
        bottom: 0;
        background-position: right; */

    }

    h1 {
        width: min(800px, 70%);
        font-size: 3rem;
    }

    .header-inhalt .button {
        font-size: 1.5rem;
    }

    .aside-icon {
        width: 60px;
        padding: 5px;
        height: 60px;
    }

    .navi {
        display: none;
        height: 65px;
    }

    nav ul li a {
        display: block;
    }

    .content {
        /* display: flex;
        flex-direction: row;
        gap: 5%;
        padding: 0 5%; */
    }

    .inhalt {
        /* display: flex;
        flex-direction: row;
        justify-content: center; */
    }

    /*=================Home=============*/
    #home .content {
        /* padding: 0; */
    }

    #home .content .inhalt:nth-of-type(1) img {
        /* width: 100%;
        height: 100%; */
    }

    #home .content .inhalt:nth-of-type(1) {
        /* height: 100%;
        width: 100%; */
    }

    #home .content .inhalt:nth-of-type(2) {
        /* padding: 170px 5%; */
    }

    #kontakt .content .inhalt:nth-of-type(1) {
        padding: 50px 5%;
    }

    /* #kontakt .content .inhalt:nth-of-type(1) {
        padding: 170px 15%;
    } */

    #kontakt .content {
        /* padding-right: 0; */
    }

    #profil .content {
        /* padding: 170px 5%; */
    }

    #profil .content .inhalt:nth-of-type(1) {
        /* padding: 0; */
    }

    /*============GRID===========*/

    .grid-container {
        /* display: grid;
        grid-template-columns: auto auto auto;
        padding: 20px;
        gap: 1rem; */
    }

    .grid-item {

        height: 100%;
    }

    .grid-item img {
        /* width: 100%;
        object-fit: cover;
        height: 350px; */
    }


    .grid-item:nth-of-type(11) {
        /* background-color: var(--orange);
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        color: var(--white); */
    }

    .grid-fett-text {
        /* text-transform: uppercase; */
    }



    /*================Parallax==============*/
    .parallax {
        display: flex;
        flex-direction: row;
    }

    .parallax-col {
        /* width: 50%;
        text-transform: uppercase;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 3em; */
    }

    .parallax-icons {
        width: min(300px, 50%);
        gap: 15%;
    }

    .parallax-col:nth-of-type(1) {
        font-size: 2em;
    }

    /*===========Kontakt===========*/


    #kontakt .inhalt {
        /* justify-content: start; */
    }
    .parallax-col:nth-of-type(1) {
        padding-bottom: 0px;
    }
}

@media screen and (min-width:1920px) {
   .grid-item{
       height: 550px;
   }
   .overlay{
       height: 550px;
   }

}