* {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
}

h1 {
    font-weight: 300;
    margin: 0 0 20px 0;
    font-size: 50px;
}

h2 {
    font-weight: 500;
    margin: 0 0 20px 0;
    font-size: 26px;
    line-height: 30px;
}

p {
    font-weight: 300;
    margin: 0 0 20px 0;
}

.bold {
    font-weight: bolder;
    font-size: 30px;
    text-align: center;
}

/* header */

header {
    width: 100%;
    height: 80vh;
    background: url(../img/header/banner.jpg) no-repeat 50% 50%;
    background-size: cover;
}

/* nav */

.headermobile {
    display: none;
}

.banner {
    display: none;
}

nav {
    position: fixed;
    width: 100%;
    line-height: 60px;
}

nav ul {
    line-height: 60px;
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0;
    text-align: right;
    margin: 0;
    padding-right: 40px;
    transition: 1s;
}

nav.black ul {
    background: #fff;
}

nav.black ul li a {
  color: #000;
}

nav ul li {
    display: inline-block;
    padding: 16px 40px;;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.menu-icon {
    line-height: 60px;
    width: 100%;
    background: #000;
    text-align: right;
    box-sizing: border-box;
    padding: 15px 24px;
    cursor: pointer;
    color: #fff;
    display: none;
}

/* Logo */

.logo {
    position: fixed;
    float: left;
    margin-left: 50px;
    margin-top: 5px;
}

/* main */

.home {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.s1 {
    flex: calc(50% - 10px);
    margin: 10px;
}

.i1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.index h1 {
    text-align: center;
    margin-top: 20px;
}

.s1 p {
    font-size: 18px;
}

.tickets {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background-color: #7C4E33;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tickets:hover {
    opacity: 0.3;
}

/* news */

.news {
    float: left;
    margin: 10px;
    margin-bottom: 20px;
}

.news-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.newstext {
    float: left;
    width: calc(33.3333% - 30px);
    overflow: hidden;
    margin: 0 20px 20px 0;
    padding: 10px;
    background: #f4f4f4;
    -webkit-box-shadow: 6px 7px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 7px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 6px 7px 5px 0px rgba(0,0,0,0.75);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    flex: 1;
}

.newstext:hover {
    background: #dbdbdb;
}

.news-box:after {
    content: "";
    display: table;
    clear: both;
}

.newstext h2 {
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}

.newstext a {
    text-decoration: none;
    color: #000;
    bottom: 0;
    float: left;
}

.newsimg {
    width: 100%;
}

/* filmpje */

#foto1 {
    display: block;
}

#video1 {
    display: none;
}

#foto2 {
    display: block;
}

#video2 {
    display: none;
}

#foto3 {
    display: block;
}

#video3 {
    display: none;
}

/* beelden */

.beelden h2 {
    text-align: center;
    margin-bottom: 10px;
}

.beelden {
    margin: 10px;
}

/* foto's */

.foto-box {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.row {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.row img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* contact */

.contact-container input{
    border: none;
    background: #ccc;
    line-height: 50px;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    display: block;
    float: left;
    margin: 0 0 10px 0;
    border-radius: 14px 14px 14px 14px;
    -moz-border-radius: 14px 14px 14px 14px;
    -webkit-border-radius: 14px 14px 14px 14px;
    font-family: 'Josefin Sans', sans-serif;
}

.contact-container textarea {
    border: none;
    background: #ccc;
    line-height: 20px;
    height: 170px;
    padding: 15px 20px;
    width: 100%;
    display: block;
    float: left;
    border-radius: 14px 14px 14px 14px;
    -moz-border-radius: 14px 14px 14px 14px;
    -webkit-border-radius: 14px 14px 14px 14px;
    font-family: 'Josefin Sans', sans-serif;
}

.contact-container .left-container {
    display: block;
    float: left;
    width: calc(50% - 20px);
    margin: 0 40px 40px 0;
}

.contact-container .right-container {
    display: block;
    float: right;
    width: calc(50% - 20px);
    margin: 0 0 40px 0;
}

.contact-container .submit-container {
    width: 100%;
    display: block;
    float: left;
}

.contact-container .submit-container input {
    padding: 15px;
    display: block;
    float: left;
    text-decoration: none;
    color: #000;
    margin: 0 0 20px 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-weight: 300;
    line-height: 20px;
    position: relative;
    width: auto;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    min-width: 200px;
    border-radius: 14px 14px 14px 14px;
    -moz-border-radius: 14px 14px 14px 14px;
    -webkit-border-radius: 14px 14px 14px 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.contact-container {
    margin: 50px;
}

.contact-container h2 {
    text-align: center;
}

/* footer */

.footer-container {
    background: #7C4E33;
    float: left;
    margin: 0;
    margin-top: 10px;
    width: 100%;
    height: 80px;
}

.copyright a{
    color: #fff;
    text-decoration: none;
    float: right;
    line-height: 80px;
    margin-right: 20px;
}

.footer-container a {
    color: #fff;
    line-height: 80px;
    margin-left: 5px;
}

.email {
    text-align: center;
}

/* Bedankt */

.bedankt {
    text-align: center;
    font-size: 18px;
}

@media(max-width: 1279px) {

}

@media(max-width: 1119px) {

}

@media(max-width: 959px) {

    .bold {
        font-size: 18px;
    }
}

@media(max-width: 799px) {

    /* main */

    .index h1 {
        text-align: center;
        margin-top: 20px;
        font-size: 30px;
    }

    .s1 p {
        font-size: 16px;
    }

    /* nieuws */

    .newstext {
        width: 100%;
        float: left;
        margin-left: -2px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none
    }

    .news-box {
        display: block;
    }

    /* nav */

    header {
        display: none;
    }

    .headermobile {
        height: 93px;
        width: 100%;
        display: block;
    }

    .banner {
        width: 100%;
        height: 40vh;
        background: url(../img/header/banner.jpg) no-repeat 50% 50%;
        background-size: cover;
        display: block;
    }
    
    .logomobile {
        margin-top: 5px;
    }

    .logomobile img{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

}

@media(max-width: 639px) {

    /* main */

    .home {
        display: block;
    }

    /* contact */

    .contact-container .left-container {
        float: left;
        width: 100%;
    }
    
    .contact-container .right-container {
        float: left;
        width: 100%;
    }

    .mail {
        display: none;
    }

    }

@media(max-width: 479px) {

    /* main */

    .index h1 {
        text-align: center;
        margin-top: 20px;
        font-size: 25px;
    }

    .s1 p {
        font-size: 14px;
    }

    .bold {
        font-size: 15px;
    }

}