<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#etapes-container {
    width: 80vw;
    margin: 1vh auto;
    overflow: hidden;
}

#etapes-wrapper {
    display: flex;

    width: 100%;
    overflow: hidden;
}
@media screen and (min-width:  768px) {
    #etapes-wrapper {
        height: 65vh;
    }
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #etapes-container {
        width: 90vw;
    }

    #etapes-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        height:fit-content;
        height: 130vh;
        height: 130vh;
        /*flex-wrap: wrap;*/
    }
}


.backdrop {
    position: absolute;
    z-index: 10;
    width: 80vw;
    height: 100%;
    background: url(../img/backdrop.svg) no-repeat top left;
    pointer-events: none;
    margin: -2px 0 0 -2px;
}


/* DÃ©faut
*******************************************************************************************/
.etape {
    flex: 0 0 calc(100% / 6);
    height: 100%;
    /*padding: 10px;*/
    transition: all 0.5s cubic-bezier(.17, .67, .4, 1.23);
    /*overflow: hidden;*/
    background: silver;


}

.etape.default {
    cursor: pointer;
}

.etape .gutter {
    height: calc(100% - 10px);
    /*padding: 10px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.etape .title {

    transition: all 0.1s;
    transform-origin: left top;
    /*width: 100%;*/
    position: absolute;
    display: flex;
    flex-direction: column;
}

.etape .title .pictogramme {
    width: 4vw;
    margin: 1em;
}

.etape .title h3 {
    color: white;
    text-transform: uppercase;
    font-size: 120%;
    font-weight: 900;
    margin: 0 1em 0 0;
    padding: 5px;

}

.etape .title h4 {
    color: #FBAF17;
    text-transform: uppercase;
    font-weight: 00;
    margin: 0;
    padding: 5px;
    font-size: 1.7vw;
}

.etape .title h5 {
    display: none;
}

.etape .content {
    display: none;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .etape .title {
        flex-direction: row;
    }

    .etape .title h3, .etape .title h4 {
        align-self: center;
    }

    .etape .title h4 {
        font-size: 14px;
    }
}


/* FermÃ©
********************************************************************************************/
.etape.closed {
    flex: 0 0 calc(5%);
    cursor: pointer;
    display: flex;
}


.etape.closed .title {
    position: absolute;
    transform: rotateZ(-90deg);
    width: 100%;
    flex-direction: row;
    margin-left: 7px;

}

.etape.closed .title .pictogramme {
    display: none;
}

.etape.closed .title h4 , .etape.closed .title h3 {
    font-size: 2.6vh;

}

.etape.closed .h5 {
    display: none;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .etape.closed .gutter {
        /*border: 1px dotted red;*/

        height: auto;
        display: block;
    }

    .etape.closed {
        /*flex: 0 0 calc(2%);*/

    }

    .etape.closed .title {
        transform: none;
        position: inherit;
    }

    .etape.closed .subtitle {
        display: none;
    }
}

/* Ouvert
  *****************************************************************************************/
.etape.opened {
    flex: 0 0 calc(75%);
    cursor: auto;
    display: flex;

}


.etape.opened .gutter {
    flex-direction: column;
    justify-content: space-between;
    z-index: 20;

}

.etape.opened .pictogramme {
    display: block;
}

.etape.opened .title {
    transform: rotateZ(0deg);
    position: inherit;
    flex-direction: row;
    flex-wrap: wrap;
}

.etape.opened .title h3 {
    font-size: 2vw;
    align-self: center;
}

.etape.opened .title h4 {
    display: none;

}

.etape.opened .title h5 {
    margin: 0 0 0 1vh;
    display: block;
    padding: 0;
    color: white;
    font-size: 2vw;
    align-self: center;
    flex: 0 0 100%
}

.etape.opened .title h5 b {
    color: var(--yellow);
}

.etape.opened .content {
    display: flex;
    padding: 1em;
    color: white;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    .etape.opened {
        flex: 1 1 calc(75%);
        height: 70vh;
    }

    .etape.opened .gutter {
        justify-content: flex-start;
    }

    .etape.opened .content {
        flex-direction: column;
    }

    .etape.opened .content {
        font-size:3vw;
    }

    .etape.opened .title h3 {
        font-size: 6vw;
        /*border: 1px dotted red;*/
    }

    .etape.opened .title h5 {
        font-size: 3vw;
        margin-top: 0;
        padding: 0;
        /*border: 1px dotted red;*/
    }
}


/* CONTENU
  *****************************************************************************************/
.content {
    font-size: calc(0.75vw + 0.3vh);
    column-count: 3;
    column-gap: 1vw;
line-height: 1.5em;

    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*flex-direction: row;*/
    /*justify-content: space-between;*/
}

.content &gt; div {
    /*flex: 0 0 30%;*/
    line-height: 1.3em;
}

.content h6 {
    font-size: 120%;
    margin: 0 0 .5em 0;
}

.content .options {
    opacity: .75;
}

.deliverables {
    color: var(--yellow)
}</pre></body></html>