.sf_drieluik_boxes_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
.sf_drieluik_boxes{
    display: flex;
    min-height: 690px;
    position: relative;
    z-index: 9;
}
.sf_drieluik_boxes > div:nth-child(2){
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.sf_drieluik_single:hover{
    cursor: pointer;
}

.sf_drieluik_box_bg{
    background-size: cover !important;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    animation: sf-image-out 1s .1s cubic-bezier(.78,.2,.21,.88) forwards;
    z-index: 6;
}

.sf_drieluik_box_bg_active{
    animation: qodef-animate-image-in 1s cubic-bezier(.78,.2,.21,.88) forwards;
    z-index: 7;
}

.sf_drieluik_single{
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    flex: 1;
	background-size: 812px 100%!important;
}

.sf_drieluik_title{
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 8px;
}
.sf_subtitle{
    display: none;
    color: #fff;
    margin-bottom: 24px;
}
.sf_drieluik_single_active .sf_subtitle{
    display: block;
}
.sf_drieluik_single_active{
    -webkit-backdrop-filter: blur(7px) brightness(84%);
    backdrop-filter: blur(7px) brightness(84%);
    transition-delay: 0s,.1s;
}
.sf_drieluik_button{
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    column-gap: 8px;
}

@media only screen and (min-width:768px) {
    .sf_drieluik_single{
        background-image: none !important;
    }

}

@media only screen and (max-width:768px) {
    .sf_drieluik_single{
        min-height: 565px;
        padding: 16px;
    }
    .sf_drieluik_boxes_bg{
        display: none;
    }
		.sf_drieluik_boxes{
		min-height: auto !important;
	}
    .sf_subtitle{
        display: block;
        font-size: 12px;
        line-height: 19px;
        margin-bottom: 16px;
    }
    .sf_drieluik_boxes .owl-stage{
        padding-left: 0px !important;
    }
    .sf_drieluik_title{
        font-size: 32px;
        font-weight: 800;
        transform: rotate(270deg);
        transform-origin: 100% 80%;
        position: absolute;
        top: 16px;
        right: 16px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .sf_drieluik_button{
        font-size: 12px;
        line-height: 19px;
    }
}
@keyframes sf-image-out {
    0% {
        transform: scale(1) translateZ(0);
        /* -webkit-clip-path:inset(0 0 0 0); */
        clip-path: inset(0 0 0 0);
    }

    100% {
        transform: scale(1.05);
        /* -webkit-clip-path:inset(0 0 0 100%); */
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes qodef-animate-image-in {
    0% {
        transform: scale(1.05) translateZ(0);
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0)
    }

    100% {
        transform: scale(1);
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0)
    }
}