@font-face {
    font-family: 'parabole';
    src: url('Parabole.eot');
    src: local('Parabole'),
        url('assets/Parabole.eot') format('embedded-opentype'),
        url('assets/Parabole.woff2') format('woff2'),
        url('assets/Parabole.woff') format('woff'),
        url('assets/Parabole.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --marge: 25px;
    --column: calc((100vw - var(--marge) * 2) / 12);
    --colorHeader: #000;
    --blendMode: unset;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

html,
body,
p {
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease-out;
}

a:hover {
    color: #7e7e7e;
}

html {
    overflow: hidden;
    cursor: none;
}

.background {
    --offsetY: 0px;
    --offsetX: 0px;

    position: absolute;
    top: calc(-25vh + var(--offsetY));
    left: calc(-50vw + var(--offsetX));

    z-index: -1;
    height: 150vh;
    width: 150vw;
    overflow: hidden;
    background-image: url('assets/IMAGES_SITE/permanents/pyramide.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: border-box;
    filter: blur(50px);
}

.page {
    display: none;
}

.page.actif {
    display: block;
}


.cursor {
    opacity: 1;
    --y: 0px;
    --x: 0px;

    position: absolute;
    top: calc(var(--y) - 20px);
    left: calc(var(--x) - 20px);

    mix-blend-mode: exclusion;
}

.page_accueil .titre_studio {
    font-family: 'parabole', sans-serif;
    font-size: 17.6vw;
    margin: 0;
    mix-blend-mode: exclusion;
}

/* MAIN */
.page_accueil main {
    padding: var(--marge);
    box-sizing: border-box;
    color: #fff;
    mix-blend-mode: exclusion;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.presentation {
    display: flex;
    justify-content: space-between;
    align-self: start;
    width: 100%;
}

.texte {
    width: calc(var(--column) * 4 - var(--marge));
}

.membres {
    width: calc(var(--column) * 6 - var(--marge));
    margin-right: var(--column);
    display: flex;
    flex-direction: column;
}

.texte.membre {
    display: flex;
    margin-bottom: var(--marge);
}

.membre .prenom {
    font-family: 'parabole', sans-serif;
    font-size: 20px;
    font-weight: normal;
    width: calc(var(--column) * 1 - var(--marge));
    margin-right: var(--marge);
    text-align: right;
    position: relative;
    top: -2.5px;
}

.membre p {
    width: calc(var(--column) * 3 - var(--marge));
}

.texte.cedric {
    align-self: flex-end;
}

.contact {
    width: calc(var(--column) * 6 - var(--marge));
    display: flex;
    justify-content: space-between;
    font-weight: 300;
}

.contact>div {
    flex: 1;
    margin-right: var(--marge);
}

.contact :last-child {
    margin-right: 0;
}

@media (max-width: 800px) {
    .contact {
        width: 100%;
        flex-direction: column;
    }

    .contact>div {
        margin-bottom: calc(var(--marge)/2);
        margin-right: 0;
    }

    .contact :last-child {
        margin-bottom: 0;
    }

    .page_accueil .titre_studio {
        font-size: 15.7vw;
        margin-bottom: var(--marge);
    }

    .presentation {
        display: flex;
        justify-content: start;
        align-self: start;
        width: 100%;
        flex-direction: column;
    }

    .texte {
        width: 100%;
        margin-bottom: var(--marge);
    }

    .membres {
        width: 100%;
        margin-right: 0;
        display: flex;
        flex-direction: column;
    }

    .texte.membre {
        flex-direction: column;
    }

    .membre .prenom {
        position: static;
        width: 100%;
        margin-right: 0;
        text-align: left;
    }

    .membre p {
        width: 100%
    }
}