*{
    margin: 0;
    padding: 0;
    font-family: "Lucida Bright";
}

header{
    color: #000;
    background-color: #ec7c26;
    padding: 10px;
    position: relative;
    z-index: 2;
    border-bottom: #000 solid 3px;
}

footer{
    color: #000;
    background-color: #ec7c26;
    padding: 10px;
    position: relative;
    z-index: 1;
    border-top: #000 solid 3px;
}

.hide-menu{
    visibility: hidden;
}

h1{
    color: #ec7c26;
    text-align: center;
    font-size: 3.5vw;
    margin-top: 50px;
    text-decoration: underline 2px;
}

h2{
    color: #ec7c26;
    margin-bottom: 25px;
}

p{
    font-size: 1.2em
}

li{
    font-size: 1.2em
}

.prijzen-div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.prijs-item{
    width: 34%;
    margin: 15px 20px;
    background-color: white;
    padding: 50px;
    border: 5px solid #ec7c26;
}

input[type=text], input[type=email], input[type=tel]{
    font-size: 1.2em;
    padding: 5px;
}

.main{
    display: flex;
    flex-direction: row;
}

.nav{
    background-color: #000;
    color: #ec7c26;
    width: 20%;
    height: 100%;
    position: fixed;
    top: 0;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    border-right: #ec7c26 3px solid;
    z-index: 1;
}

.nav-container{
    height: 60%;
}


.nav-list{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    height: 100%;

}

.nav-list > li > a{
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
}

.nav-list > li > a:hover{
    color: #ec7c26;
    text-decoration: underline ;
}

.content{
    float: right;
    margin-left: 25%;
    width: 70%;
    display: flex;
    flex-direction: column;

}

.selected{
    text-decoration: underline;
    font-weight: bold;
}

.img{
    width: 50%;
    margin: 50px 25% 100px 25%;
    height: auto;
}

.line{
    width: 100%;
    border-top: #ec7c26 2px solid;
    border-bottom: #000 2px solid;
    margin: 25px 0;
}

.space{
    height: 50px;
}

.attest{
    margin-left: 50px;
    margin-top: 20px;
}

.attest > li{
    margin-top: 10px;
}

.home{
    text-align: center;
}

.button {
    font-size: 1.1em;
    background-color: #ec7c26;
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    margin: 50px;
    border: #000 solid 3px;
    align-self: center;
    color: #000;
}

.button:hover {
    background-color: #000;
    box-shadow: #ec7c26 5px 5px;
    color: #ec7c26;
    font-weight: bold;
}

.button2 {
   font-size: 1.1em;
    background-color: #ec7c26;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    width: 50%;
    margin: 50px;
    border: #FFF solid 3px;
    align-self: center;
}

.button2:hover {
    background-color: #FFF;
    box-shadow: #ec7c26 5px 5px;
    color: #ec7c26;
    font-weight: bold;
}

.contact-bg{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url("Images/contact.jpg") no-repeat center;
    height: 350px;
    background-size: 70%;
}

.contact-bg > p{
    width: 60%;
    margin: 75px 20% 0 20%;
    padding: 10px 0;
    color: #ec7c26;
    background-color: #000;
    font-size: 1.1em;
    border: #ec7c26 solid 3px;
}

#contact-form{
    display: flex;
    flex-direction: column;
    width: 60%;
}

.background-img{
    background: url("Images/bestellen.jpg") no-repeat;
    background-size: contain;

}

label{
    color: #ec7c26;
    margin: 15px 0;
}

.type{
    color: white;

}

.type-div {
    margin: 5px 0;
}

.bestellen{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    margin: 0 10%;
    width: 80%;
    opacity: 0.8;
}

.bestel-ul{
    color: #FFF;
    width: 80%;
}

.bestellen > h3{
    color: gray;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.3em;
}

.bestellen > p{
    width: 80%;
    margin: 0 10%;
    color: #FFF;
}

.background-img > h1{
    color: #FFF;
}

.show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

.popup{
    visibility: hidden;
    background-color: #ec7c26;
    padding: 25px 10px;
    position: fixed;
    top: 50%;
    border: #FFF solid 5px;

}

.show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    -webkit-animation: fadeOut 5s;
    animation: fadeOut 5s;
}

.hide {
    visibility: hidden;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}

@-webkit-keyframes fadeOut {
    from {opacity: 1;}
    to {opacity:0 ;}
}

@keyframes fadeOut{
    from {opacity: 1;}
    to {opacity:0 ;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity:0 ;}
}

.popup > h5{
    color: #000;
}



@media screen and (max-width: 800px) {
    #pop {
        -webkit-animation-name: run;
        -webkit-animation-duration: 5s;
        animation-name: run;
        animation-duration: 3s;
    }

    .hide-menu{
        visibility: visible;
    }

    @keyframes run {
        0% {
            left: -100%;
        }
        100% {
            left: 0;
        }
    }

    @-webkit-keyframes run {
        0% {
            left: -100%;
        }
        100% {
            left: 0;
        }
    }

    header{
        padding: 30px;
        margin-bottom: 50px;
    }

    footer{
        padding: 30px;
        margin-top: 50px;
    }

    h1{
        font-size: 1.8em;
    }

    h2{
        font-size: 1.5em;
    }

    p{
        font-size: 1em
    }

    li{
        font-size: 1em
    }

    .nav{
        width: 40%;
        padding-top: 100px;
    }

    .nav-hide{
        visibility: hidden;
    }

    .nav-list > li > a{
        font-size: 1.2em;
    }


    .content{
        margin-left: 5%;
        width: 90%;
    }

    .img{
        width: 90%;
        margin: 50px 5% 100px 5%;
    }

    .line{
        border-top: #ec7c26 10px solid;
        border-bottom: #000 10px solid;
        margin: 50px 0;
    }

    .button {
        font-size: 1.1em;
        padding: 10px 25px;
        width: 50%;
        margin: 50px;
    }

    .button2 {
        font-size: 1.1em;
        padding: 10px 25px;
        width: 80%;
        margin: 50px;
    }

    .contact-bg{
        background-size: 100%;
    }

    .contact-bg > p{
        width: 80%;
        margin: 75px 10% 0 10%;
        padding: 10px 0;
        color: #ec7c26;
        background-color: #000;
        font-size: 1.1em;
        border: #ec7c26 solid 3px;
    }

    #contact-form{
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .bestellen{
        margin: 0 10%;
        width: 80%;
    }

    .bestellen > h3, .bestellen > h2{
        padding-left: 20px;
        padding-right: 20px;
    }

    .bestellen > p{
        width: 80%;
        margin: 0 10%;
    }
}






