.landing-block{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    height: 100vh;
    z-index: var(--z-fixed);
    background-color: var(--wp--preset--color--blanc);
}
.landing-arrow{
    filter: invert(1);
}
.landing-block__inner{
    display: flex;
    gap: 0;
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.landing-block__item{
    flex: 1;
    height: 100%;
}
.landing-block__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landing-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
}
.landing-scroll-indicator{
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 125px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.landing-scroll-indicator span{
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0px;
    background-color: var(--wp--preset--color--blanc);
    animation: scrollIndicatorAnim 3s infinite ease-in-out;
}
.landing-scroll-indicator p{
    display: flex;
    position: absolute;
    bottom: -3rem;
    left: 0;
    transform: translateX(-50%);
    width: 290px;
    color: var(--wp--preset--color--noir);
    text-transform: uppercase;
    font-weight: 600;
}
.landing-arrow{
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
}
@keyframes scrollIndicatorAnim {
    0% {
        height: 0px;
    }
    50% {
        height: 125px;
    }
    100% {
        height: 0px;
    }
}
.pin-spacer{
    pointer-events: none;
    transition: height 0.3s ease;
}