/* Mijn Trots */
.projecten-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.maskProject {
    -webkit-mask-image: url(../media/mask.svg);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: url(../media/mask.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
}

#mijnTrots .project {
    position: relative;
    aspect-ratio: 960 / 553;
    object-fit: cover;
    width: 100%;

    background-color: var(--lightBlue);
}

#mijnTrots .project .content {
    padding: 20px;
}

#mijnTrots .project .content h2 {
    font-size: 32px;
}

#mijnTrots .project .content .projectHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#mijnTrots .project .content .projectHeader img {
    max-width: 62px;
}

#mijnTrots .project .content .projectHeader .arrow-btn {
    max-width: 60px;
    rotate: -40deg;
}

#mijnTrots .project .mockup {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -250px;
    z-index: -1;
}

#mijnTrots .project .left {
    left: 10%;
    bottom: -20%;
}

#mijnTrots .project .right {
    right: 10%;
    bottom: -20%;
}

#mijnTrots .project .middle {
    max-width: 100%;
    left: 45%;
    transform: translateX(-50%);
    bottom: -20%;
}

/* Mijn Trots Pagina */
.trots p, .trots h1{
    opacity: 0;
    color: var(--darkGray);
}