.audiovisuel{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 0 64px;
    padding-top: 75px;
}

.texte_verticale_audiovisuel {
    font-family: 'Mukta';
    font-weight: 800;
    font-size: 126px;
    -webkit-text-stroke: 1px #8889ac;
    color: white;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: -12px;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    cursor: default; 
    margin-left: -20px;
}

.texte_verticale_audiovisuel {
    grid-column: 1;
    margin-left: -84px;
}

.motion_design {
    grid-column: 3 / span 4;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0; 
    aspect-ratio: 416/234; 
    margin-top: 356px;
    border: #8889ac 1px solid;
}

.motion_design img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.motion_design:hover img {
    transform: scale(1.1);
}

.motion_design::before {
    content: "Motion Design";
    font-family: 'Mukta';
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(
        to top,
        #8889ac 0%,
        #8889ac02 100%
    );
    color: white;
    transform: translateY(100%);
    transition: transform 0.8s ease;
    font-size: 1.5rem;
    z-index: 1;
}

.motion_design:hover::before {
    transform: translateY(0);
}

.video_rayle {
    grid-column: 8 / span 4;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0; 
    aspect-ratio: 416/234; 
    margin-top: 73px;
    border: #8889ac 1px solid;
}

.video_rayle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video_rayle:hover img {
    transform: scale(1.1);
}

.video_rayle::before {
    content: "Rallye vidéo";
    font-family: 'Mukta';
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(
        to top,
        #8889ac 0%,
        #8889ac02 100%
    );
    color: white;
    transform: translateY(100%);
    transition: transform 0.8s ease;
    font-size: 1.5rem;
    z-index: 1;
}

.video_rayle:hover::before {
    transform: translateY(0);
}





