.diensten__detail__slider{
    margin-top: 2em;
    position: relative;
    padding: 2em 7%;
    background-image: url('../../images/diensten/kmo/kmo_bouwen.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.diensten__detail__slider h2,
.diensten__detail__slider p{
    color: black;
}
.diensten__detail__slider__counter{
    position: absolute;
    top: calc(50% - 100px);
    font-size: 200px !important;
    opacity: .1;
}
.diensten__detail__slider__titel{
    width: 50%;
    text-align: center;
}
.diensten__detail__slider__container{
    height: 300px;
    width: 100%;
    overflow: hidden;
}
.diensten__detail__slider__wrapper{
    display: flex;
    width: 700%;
    height: 100%;
    position: relative;
    left: 0%;
    transition: .5s ease-in-out;
}
.diensten__detail__slider__box{
    width: calc(100% / 7);
    height: 75%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.diensten__detail__slider__box p{
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 2em;
}
.diensten__detail__slider__bollen{
    display: flex;
    gap: .5em;
}
.diensten__detail__slider__bollen__bol{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    transition: .5s ease-in-out;
}
.bol__active{
    background-color: #e30613;
    border: 2px solid rgba(0, 0, 0, 0);
}
@media screen and (max-width: 600px) {
    .diensten__detail__slider__counter{
        font-size: 150px !important;
    }
    .diensten__detail__slider__bollen__bol{
        border: 1px solid #000;
    }
}