/* --------------------------------- */
/*          General Styling          */
/* --------------------------------- */
.project .mask-image {
    display: block;
    aspect-ratio: 3 / 2;
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.project .mask-image img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project .mask-image .hover-image {
    z-index: 500;
    opacity: 0%;
    transition: opacity 0.4s;
}
.project .mask-image .hover-image:hover {
    opacity: 100%;
}
.project .diensten {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 20px;
}
.project h3 {
    margin: 40px 0px 10px 0px;
    transition: color 0.3s;
}
.project .diensten p {
    margin: 0px;
}
.project .project-titel {
    text-decoration: none;
}
.project .project-titel:hover h3 {
    color: #00E267;
}
/* ------------------------------------ */
/*          Responsive Styling          */
/* ------------------------------------ */
@media screen and (max-width: 1100px) {
    #projecten {
        display: grid;
        grid-template-columns: 1fr;
        gap: 100px;
    }
}
@media screen and (min-width: 1100px) {
    #projecten {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}
@media screen and (min-width: 850px) {
    .project h3 {
        font-size: 36px;
    }
}