:root {
    --blanc: #ffffff;
    --noir: #2e2c2c;
    --gris: #e9e8e6;
    --text: #7b7a7a;
    --bleu: #0d4269;
    --bleu-pale: #1467a4;
    font-family: "Arimo", sans-serif;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body,
html {
    position: relative;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden !important;
}

body {
    max-width: 869px;
    margin: 0 auto;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
}

header .logo {
    position: absolute;
    top: 2em;
    width: 70%;
}

.photo {
    position: relative;
    z-index: 2;
    margin-top: -75px;
    text-align: center;
}

.photo img {
    display: inline-block;
    width: 50%;
}

.container {
    width: 90%;
    margin: 0 auto;
}

main {
    padding-bottom: 50px;
}

h1 {
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    color: var(--bleu);
    font-weight: 600;
    line-height: 1em;
    margin-top: .5em;
}

h2 {
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
    color: var(--bleu);
    font-weight: 600;
}

h3 {
    font-size: 18px;
    line-height: 1em;
    text-align: center;
    color: var(--bleu);
    margin-bottom: 1em;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    line-height: 1em;
    color: var(--bleu);
    font-weight: 700;
    text-align: center;
    margin: 2em 0;
    text-transform: uppercase;
}

img {
    width: 100%;
    height: auto;
    display: block;
    max-width: max-content;
}

p {
    color: var(--text);
    margin-top: 1em;
    margin-bottom: 2em;
    line-height: 1.3em;
    text-align: center;
}

.card {
    display: flex;
    align-items: center;
    flex-direction: column;
}

ul {
    margin: 4em 0 6em 4em;
}

ul li {
    margin-bottom: .5em;
}

ul a {
    color: var(--bleu);
    text-decoration: none;
    font-size: 20px;
}

.vcf {
    padding: .5em 5%;
    background-color: var(--bleu);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.vcf h3 {
    color: var(--blanc);
    margin-bottom: .5em;
    font-size: 30px;
}

.vcf a {
    background-color: var(--bleu-pale);
    color: var(--blanc);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2em;
    padding: .5em;
}

.vcf a .arrow {
    background-color: var(--blanc);
    border-radius: 100%;
    width: 35px;
    height: 35px;
}

.vcf a svg {
    width: 35px;
    height: 35px;
    color: var(--bleu-pale);
}

.vcf a span {
    font-size: 30px;
    line-height: 1em;
}

.compagnie {
    padding: 1em 0;
    background-color: var(--gris);
    margin-bottom: 1em;
}

.reseaux .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.reseaux .website {
    color: var(--bleu);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.reseaux div.link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reseaux div.link img {
    width: 40px;
}

footer div {
    display: flex;
    justify-content: center;
    padding: 2em 0 4em 0;
}

@media only screen and (min-width: 768px) {


    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 58px;
        margin: 10px 0;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 43px;
    }

    .photo {
        margin-top: -275px;
    }


    .vcf {
        padding: 2em;
    }

    .vcf h3 {
        font-size: 65px;
    }

    .vcf a {
        font-size: 23px;
    }

    p {
        font-size: 30px;
        max-width: 90%;
        margin: 1em auto;
    }


    .reseaux .website {
        font-size: 30px;
    }

    .reseaux div {
        gap: 30px;
    }

    .reseaux div.link {
        gap: 10px;
    }

    .reseaux div.link img {
        width: 60px;
    }

    footer div {
        padding-bottom: 8em;
    }
}


@media only print {

    h1,
    h2,
    h3,
    h4,
    p,
    a,
    li {
        color: #000 !important;
    }

    nav {
        display: none;
    }

}