.reviewsCarouselSlider .buttonHolder{
    margin-top:10px;
    margin-left:135px;
}
.reviewContainer{
    width:100%;
    max-width: 1000px !important;
    margin:auto;
}
.jumbotron.reviews{
    background-color:var(--themeGrey);
}
.reviewBox{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}
.reviewBox .profileImageHolder{
    width: 120px;
}
.reviewBox .profileImageHolder .profileImage{
    --size: 80px;
}
.reviewBox .reviewContent{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 140px;
}
.reviewBox .reviewContent-content{
    line-height: 1.8em;
    font-size: 14px;
    max-width: 740px;
    font-weight: 300;
    padding-bottom: 20px;
    color: var(--themeTextLessDark);
}
.reviewBox .reviewContent-profiel{}
.reviewBox .reviewContent-profiel h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}
.reviewBox .reviewContent-profiel span{
    color: var(--themeTextGrey);
}

@media screen and (max-width:600px){
    .reviewBox {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .reviewBox .reviewContent-content{
        text-align:justify;
    }
    .reviewBox .reviewContent-profiel{
        text-align:center;
    }
    .reviewsCarouselSlider .buttonHolder{
        margin: 20px auto 0;
        width:max-content;
        align-content:center;
        justify-content:center;
    }
    .reviewBox .profileImageHolder{
        display:flex;
        align-items:center;
        justify-content: center;
    }
    .reviewContainer h2{
        margin:auto;
        width:max-content;
    }
}