section#cases{
    padding: 80px 0;
    overflow: hidden;
}

section#cases .container .caseslider a{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    font-weight: 400;
    margin-bottom: -10px;
    opacity: 0;
}

section#cases .container{
    overflow: visible;
}

section#cases .container .arrows{
    display: grid;
    gap: 20px;
    grid-template-columns: 75px 75px;
    margin-top: 40px;
}

section#cases .container .arrows .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #0ADCD2;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: 0.2s ease-in-out all;
}

section#cases .container .arrows .arrow:hover{
    background: #039b94;
}

section#cases .container .arrows .arrow i{
    color: white;
    font-size: 35px;
}

section#cases .container .titelsectie{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

section#cases .container .titelsectie a:hover{
    color: #0ADCD2;
}

section#cases .container .titelsectie a{
    color: #011A36;
    font-size: 18px;
    transition: 0.2s ease-in-out all;
}

section#cases .container .titelsectie a i{
    margin-left: 5px;
}

section#cases .container h2{
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
    color: #011A36;
}

section#cases .container .caseslider a img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: 0.2s ease-in-out all;
}

section#cases .container .caseslider .splide__track{
    overflow: visible;
}

section#cases .container .caseslider a h3{
    position: absolute;
    font-size: 22px;
    padding-bottom: 25px;
    padding-left: 40px;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    color: white;
    z-index: 2;
    font-weight: 700;
}

section#cases .container .caseslider a:hover img{
    transform: scale(1.1);
}

section#cases .container .caseslider a:before{
    background: linear-gradient(180deg, rgba(1, 26, 54, 0) 0%, #011A36 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    content: '';
    width: 100%;
    z-index: 1;
}

@media only screen and (max-width: 1000px) {
    section#cases .container .titelsectie{
        margin-bottom: 40px;
    }


}

@media only screen and (max-width: 750px) {
    section#cases .container h2{
        flex: 0 0 100%;
        font-size: 36px;
        line-height: 46px;
    }
}