section#reviews{
    padding: 80px 0;
}

section#reviews .swiper {
    flex: 0 0 50%;
    height: 300px;
}

section#reviews .container{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

section#reviews .container .opvulling{
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

section#reviews .container .opvulling:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000054;
}

section#reviews .container .opvulling .opvullingwrapper {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
}

.glsr-review-content{
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 6; /* number of lines to show */
           line-clamp: 6;
   -webkit-box-orient: vertical;
}

section#reviews .container .opvulling .opvullingwrapper a:not(.button){
    background-color: #BBD5DA;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: #214F4E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

section#reviews .container .opvulling .opvullingwrapper a.button{
    display: block;
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 0;
}

section#reviews .swiper .swiper-slide {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.glsr-review-title h4{
    margin-top: 0;
    margin-bottom: 5px;
}

@media screen and (max-width: 1250px) {
    section#reviews .swiper{
        height: 400px;
        flex: 0 0 100%;
        order: 2;
    }

    section#reviews .container .opvulling{
        flex: 0 0 100%;
        margin-bottom: 40px;
        height: 400px;
        order: 1;
    }
}