.oppervlaktestructuur_voorbeeld .row .row{
    --bs-gutter-x: 8rem;
}

.oppervlaktestructuur_voorbeeld h2{
    font-size: 4.6rem;
}

.image-slide{
    overflow: hidden;
    display: flex;
    position: relative;
}

.image-slide > div:nth-child(2){
    margin-left: -1rem;
}

.image-slide:after{
    content: "\f177";
    color: #37424a;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.9rem;
    font-weight: 400;
    position: absolute;
    left: calc(100% - 3.8rem);
    top: 50%;
    transform: translateY(-50%);
    width: 3.8rem;
    height: 3.8rem;
    background-color: #f7f7f8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s left;
}

.image-slide:hover:after{
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}

.image-slide > div{
    transition: 0.3s transform;
    min-width: 100%;
}

.image-slide:hover > div{
    transform: translateX(-100%);
}

.image-slide:hover > div:nth-child(2){
    transform: translateX(calc(-100% + 1rem));
}

.image-slides{
    row-gap: var(--jumbotron-standard-margin);
}

@media (max-width:767px)
{		
    .image-slides .col-lg-5{
        margin-top: 3rem;
    }
    
    .image-slide:after{
        display: none;
    }
    
    .image-slide{
        pointer-events: none !important;
    }
    
    .image-slide > div:nth-child(1){
        max-width: 17rem;
        min-width: auto;
    }
    
    .image-slide > div:nth-child(2){
        max-width: 7rem;
        height: 7rem;
        min-width: auto;
    }
    
    .image-slide > div:nth-child(2) picture{
        display: flex;
        height: 100%;
        width: 100%;
    }
    
    .image-slide > div:nth-child(2) img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .image-slides .col-lg-5 *:last-child{
        margin-bottom: 0 !important;
    }
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}