body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #286801;
}

header {
    width: 60%;
    margin: auto;
    text-align: center;
    padding-top: 2em;
}

.nav-links {
    display: none;
}

.burger {
    display: block;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #286801;
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    overflow-x: hidden;
}

.nav-links {
    position: absolute;
    right: 0;
    height: 60vh;
    top: 13vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    transform: translateX(100%);
    z-index: 1;
    border: 3px solid #80e577;
}

.nav-active {
    transform: translateX(1%);
    transition: transform 0.5s ease-in;
}

.nav-links li {
    opacity: 1;
}

nav ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 1em;
    position: relative;
}

.sponsorsection a,
nav a {
    text-decoration: none;
    color: grey;
    font-weight: bold;
    padding: 0.25em 0;
}

.sponsorsection a:hover,
nav a:focus,
nav a:hover {
    color: #286801;
    text-decoration: none;
}

.current-page {
    color: #80e577;
}

.current-page::before {
    content: url("../img/wortel.png");
    position: absolute;
    top: 20px;
    left: calc(50% - 25px);
    z-index: -1;
}

.current-page:hover {
    color: #80e577;
    cursor: pointer;
}

section {
    width: 60%;
    margin: 30px auto;
}

main {
    border-top: 3px solid #80e577;
    border-bottom: 3px solid #80e577;
    margin: 1em;
    position: relative;
}

.gaafgeel {
    text-decoration: none;
    color: #286801;
}

.gaafgeel:active,
.gaafgeel:hover {
    cursor: pointer;
    color: #80e577;
}

.titel {
    display: block;
    position: absolute;
    margin: 0;
    transform-origin: bottom left;
    transform: scaleY(1.1) rotate(90deg);
    transition: 1s ease-in-out;
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-weight: 900;
    color: grey;
    font-size: 2em;
    letter-spacing: 5px;
    opacity: 0.1;
    top: -45px;
    left: -10px;
}

img {
    width: 100%;
    height: auto;
    z-index: -999;
}

#logo-small {
    display: block;
}

#logo-large {
    display: none;
}

section a {
    color: #80e577;
    font-weight: 900;
}

#hww {
    color: #4C80B5;
}

@media (min-width:850px) {

    nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        font-size: 1.2em;
    }

    .burger {
        display: none;
    }

    .nav-links {
        position: unset;
        height: unset;
        background-color: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        transform: translateX(-10%);
        border: none;
    }

    .images {
        margin-top: 20px;
    }

    .titel {
        transform-origin: bottom left;
        transform: scaleY(1.1) rotate(90deg);
        transition: 1s ease-in-out;
        font-size: 4em;
        letter-spacing: 10px;
        top: -90px;
        left: -20px;
    }

}

@media (min-width:1350px) {

    nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        font-size: 1.5em;
    }

    #logo-small {
        display: none;
    }

    #logo-large {
        display: block;
        margin-left: 10px;
    }

    .titel {
        font-size: 6em;
        letter-spacing: 10px;
        top: -140px;
        left: -30px;
    }

}

.parallax {
    min-height: 400px;
    background: transparent;
}

footer {
    text-align: center;
    position: relative;
}

.vtv::before {
    content: '';
    position: absolute;
    background: #286801;
    height: 2px;
    width: 100px;
    left: calc(50% - 50px);
    top: 25px;
}

.spam {
    font-size: 0.7em;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  /* outline: black; */
  background-size: 100%, 100%;
  border-radius: 50%;
  /* border: 1px solid black; */
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: red;
  position: absolute;
  left: 80px;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: red;
  position: absolute;
  right: 80px;
}