.aanbod__content {
    padding: 50px 15%;
    background-image: -ms-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -moz-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -o-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -webkit-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
}

.aanbod__item {
    width: 100%;
    min-height: 150px;
    background: white;
    margin-bottom: 50px;
}

.aanbod__item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center center;
    border: 30px solid white;
    box-sizing: border-box;
}

.aanbod__item__content {
    padding: 30px;
}

.aanbod__item__content button {
    min-width: 180px;
    max-width: 250px;
    height: 50px;
    background: #E3C9B0;
    font-weight: bold;
    border: none;
    color: white;
    font-size: 16px;
    margin: 20px 0px;
}

@media only screen and (max-width: 600px) {
    .aanbod__content {
        padding: 20px;
    }
    .aanbod__item {
        min-height: 10px;
    }
    .aanbod__item img {
        height: auto;
        object-fit: contain;
    }
}