@font-face {
    font-family: 'ArchivoNarrow Re';
    src: url('../fonts/ArchivoNarrow-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'ArchivoNarrow Bo';
    src: url('../fonts/ArchivoNarrow-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}


/*--------------------------------------------------------------
    Generale
--------------------------------------------------------------*/

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: "ArchivoNarrow Re", Arial, sans-serif;
    webkit-tap-highlight-color: #fff;
}

b,
strong { font-family: "ArchivoNarrow Bo", Arial, sans-serif; }

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #737373;
}
a:hover,
a:focus { color: #fff; }

h1,
h2,
h3,
h4,
h5,
h6 { font-family: 'ArchivoNarrow Re', Helvetica, sans-serif; }

h2 {
    color: #737373;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: -1rem;
}

p {
    color: #fff;
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    body {
        background: #222;
    }
    h2 { font-size: 30px; }
}

@media screen and (max-width: 575px) {
    h2 { 
        font-size: 22px;
        letter-spacing: 5px;
    }
    p { font-size: 18px; }
}



/*--------------------------------------------------------------
    Header
--------------------------------------------------------------*/

header {
    height: 60vh;
    min-height: 700px;
    position: relative;
}
header .titre {
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
}
header .titre span {
    color: #ea6528;
    text-align: center;
    display: block;
    font-size: 60px;
}
header p {
    color: #737373;
    font-size: 23px;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 767px) {
    header { 
        height: auto;
        padding-top: 5rem;
    }
    header .titre {
        position: relative;
        left: unset;
        right: unset;
    }
}


/*--------------------------------------------------------------
    Contenu
--------------------------------------------------------------*/

.contenu {
    height: 40vh;
    min-height: 250px;
    background: #3c6376;
}