/* Hero */
.home {
    justify-content: end !important;
    position: relative;
    top: 80px;
}

.alive {
    height: 150px;
}

.portfolioVideo {
    width: 100%;
    aspect-ratio: 1070 / 616;
    object-fit: cover;
}

.maskVideo {
    -webkit-mask-image: url(../media/maskVideoTop.svg);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: url(../media/maskVideoTop.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
}

/* Over Mij */
#overMij img {
    max-width: 50%;
    aspect-ratio: 640/411;
    object-fit: cover;
}

#overMij h1 {
    margin-bottom: 20px;
}

#overMij p {
    max-width: 80%;
    color: var(--darkGray);
}

.maskImageSmall {
    -webkit-mask-image: url(../media/maskImage.svg);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: url(../media/maskImage.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
}

/* Mijn Trots */
.projecten-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 90vw;
}

.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: 40px;
}

#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: 80px;
    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%;
}



/* Contact */
.contactMask {
    -webkit-mask-image: url(../media/contactMask.svg);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: url(../media/contactMask.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
}

#contact .tekst{
    text-align: center;
    margin-bottom: 50px;
}

#contact .video {
    justify-items: center;
}

#contact .video video {
    max-width: 50%;
}

