body {
    margin: 0;
    background-color: #ffffff;
    font-family: "Rois", "Arial Black", "Arial Boldet", "Gadget", sans-serif;
}

header {
    background-color: #274232;
    color: white;
    height: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-overzicht {
    display: flex;
    /* justify-content: space-around; */
    flex-direction: row;
}

.product {
    margin-top: 40px;
    width: 33%;
    float: left;
}

#contact-text {
    width: 500%;
    float: left;
    padding: 20px;
}

#map {
    width: 50%;
    float: right;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

aside {
    width: 200px;
    float: left;
    padding: 20px;
    /* height: calc(100vh - 160px); */
}

aside ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.accordion-button {
    background-color: rgb(28, 211, 84);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(28, 211, 84);
    color: white;
}

.accordion-button::after {
    color: white;
}

aside ul li {
    padding: 10px;
    background-color: #274232;
    margin-bottom: 10px;
    color: white;
    /* border: solid 2px white; */
    border-radius: 10px;
}

aside ul li:hover {
    background-color: rgb(28, 211, 84);
    color: black;
}

aside ul li a {
    width: 100px;
    padding: 10px;
    background-color: inherit;
    color: inherit;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 10px;
}

section {
    width: calc(100vw - 220px);
    float: right;
    margin-top: 20px;
    height: calc(100vh - 200px);
    overflow-y: scroll;
    overflow-x: hidden;
}

section p {
    padding-right: 20px;
}

.section-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 0% 20%;
}

#haslogo {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
}

.accent-tekst {
    color: rgb(28, 211, 84);
    font-weight: bold;
}

section p a {
    text-decoration: none;
    color: rgb(28, 211, 84);
}

footer {
    position: fixed;
    bottom: 0;
    background-color: #274232;
    text-align: center;
    margin-top: 20px;
    color: white;
    width: 100%;
    clear: both;
}

.hoofditem {
    display: none;
}

#home {
    display: block;
}

@media only screen and (max-width: 900px) {
    aside {
        width: 100%;
        height: auto;
    }
    .showcase-section {
        width: 100%;
        height: auto;
    }
    .showcase {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    #haslogo {
        height: 50px;
    }
    .showcaseafbeelding {
        height: auto;
    }
}