.art-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    justify-content: center;
}
.art-block-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--wp--preset--color--blanc);
    justify-content: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--gutters);
}
.art-block-colonnes{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 1.5%;
}
.art-block-col{
    display: flex;
    width: 30%;
}
.art-block-title{
    display: flex;
    width: 100%;
}
.art-block-title h1{
    display: flex;
    width: 75%;
    margin: 0;
}
.art-block-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.art-block.is-revealed .art-block-video{
    opacity: 0;
    pointer-events: none;
}
.art-block.is-revealed .art-block-text{
    opacity: 1;
}
.art-block-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.art-block-text p{
    line-height: 1.2;
    margin-top: 0;
}
@media(max-width: 1440px) {
    .art-block-title h1{
        font-size: var(--wp--preset--font-size--size-40) !important;
        padding-top: 3rem;
    }
}
@media (max-width: 1024px) {
    .art-block-col{
        width: 33%;
    }
    .art-block-title h2{
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .art-block-colonnes{
        flex-direction: column;
        align-items: center;
    }
    .art-block-col{
        width: 100%;
    }
    .art-block-video{
        height: 100vh;
    }
    .art-block.is-revealed{
        min-height: 0;
        height: auto;
    }
    .art-block.is-revealed .art-block-text{
        position: relative;
        height: auto;
    }
    .art-block-text{
        padding: 5rem var(--gutters);
    }
    .art-block-title h1{
        font-size: var(--wp--preset--font-size--size-30) !important;
        padding-top: 3rem;
    }
}