/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--carrousel_grey);
    font-family: graphie, sans-serif;
    /* font-family: quasimoda, sans-serif; */
    /* font-family: hero-new, sans-serif; */
    /* font-family: europa, sans-serif; */
    font-weight: 200;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .025em;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: 1.6em;
}

h3 {
    line-height: 1.4;
    font-size: 1.2em;
}

h5 {
    margin-bottom: .5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .7em;
    opacity: .7;
}

/* Outline header */
.big-outline--outer {
    overflow: hidden;
    height: 75px;
}

h1.big-outline {
    -webkit-text-stroke: 1px #656571;
    color: transparent;
    font-size: 3em;
    margin: 0 0 .1em 0;
    transform: translateY(250px);
    -webkit-transform: translateY(250px);
    animation: 2s verticalReveal .3s cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
}

/* lists */
ul, ol {
    margin: 0 0 1.5em 1.7em;
    padding: 0;
}

ul {
    list-style-type: none;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

.site-main ul li:before {
    content: '\2014';
    position: absolute;
    margin-left: -30px;
}


@keyframes verticalReveal {

    0% {
        transform: translateY(250px);
        -webkit-transform: translateY(250px);
    }
    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }

}




h2{
    font-size: 1.6em;
}

h4{
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
}


p {
    margin-bottom: 1.5em;
}

dfn, cite, em, i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code, kbd, tt, var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark, ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/*  Tablet Portrait  */
@media screen and (min-width: 768px) {

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.3em;
    }

}

/*  Desktop  */
@media screen and (min-width: 1024px) {

    h1 {
        font-size: 3.2em;
    }


}

