/* Home */







/* Grid with image, text, logo */

.container_intro {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: minmax(70vh, auto);
    position: relative;
}

.container_image {
    grid-area: 1 / 1 / -1 / -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    padding: 60px 0 0;
}

/* .right {
    grid-area: 1 / 8 / 1 / -1;
    z-index: 2;
    align-self: end;
    justify-self: end;
    padding: 20px;
    margin: 0 0 0 40px;
    background-color: rgba(255, 255, 255, 0.5);
} */

.middle {
    grid-area: 1 / 1 / -1 / -1;
    z-index: 2;
    margin: 600px 0 0;
}

.left {
    grid-area: 1 / 1 / 1 / 6;
    z-index: 5;
    width: fit-content;
    align-self: start;
    justify-self: start;
    padding: 120px 40px;
    z-index: 2;
    color: rgba(255, 255, 255, 1);
    /* background-color: rgba(168, 158, 148, 0.95); */
    /* border-radius: 20px; */
}

.nb_logo_big {
    width: 900px;
}

.text_intro {
    font-size: 17px;
}










/* Grid with videos and stills */

.container_videos_home {
    display: grid;
    width: 100%;
    grid-template: auto / 1fr 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 60px 0 0;
}

.container_videos_home > video {
    width: 100%;
    height: auto;
}







/* Videos in grid */

.malou {
    grid-area: 2 / 1 / 2 / 1;
}

.shivawn {
    grid-area: 2 / 2 / 2 / 2;
}

.zaazaa {
    grid-area: 2 / 3 / 2 / 3;
}

.jandino {
    grid-area: 1 / 1 / 1 / 1;
}

.sauce {
    grid-area: 1 / 2 / 1 / 2;
}

.bad {
    grid-area : 1 / 3 / 1 / 3;
}








/* Overlay */

.media-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.media-item img,
.media-item video {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(73, 61, 61, 1);
    inset: 0; /* top/right/bottom/left = 0 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-item:hover .overlay {
    opacity: 0.9;
}

.overlay_text {
    color: rgba(255, 255, 255, 1);
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    margin-bottom: 50px;
}