:root {
    --blanc: #ffffff;
    --bleu: #1163ad;
    --noir: #000000;
    font-family: 'Heebo', sans-serif;
}


* {

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

}

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

main {
    padding-bottom: 50px;
}

hr {
    color: var(--bleu);
    background-color: var(--bleu);
    border: 1px solid var(--bleu);
}

.container {
    width: 90%;
    max-width: 715px;
    margin: 0 auto;
}

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

p {
    color: var(--noir);
    margin-top: 1em;
    margin-bottom: 2em;
    line-height: 1.3em;
    font-size: 20px;
}

.logos {
    max-width: 90%;
    margin: 2em auto;
    display: flex;
    gap: 3em;
    flex-direction: column;
    align-items: center;
}

.card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.photo picture,
.photo img {
    display: block;
}

.vcf {
    padding: .5em .8em .5em .8em;
    background-color: var(--bleu);
    display: flex;
    align-items: center;
}

.vcf a {
    color: var(--blanc);
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-decoration: none;
    line-height: 1em;
}

.vcf a img {
    width: 30%;
}

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

.compagnie {
    margin-top: 4em;
}

.compagnie .logo {
    max-width: 55%;
    padding-bottom: 1em;
}

.reseaux {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.reseaux div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-size: 20px;
}

.reseaux div .arrow {
    width: 25%;
}

.reseaux div.link {
    justify-content: flex-end;
    gap: 5px;
}

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

@media only screen and (min-width: 375px) {
    .vcf a {
        font-size: 20px;
    }
}

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

    p {
        font-size: 24px;
    }

    .vcf {
        padding: 1em;
    }

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

    .vcf a span {
        font-size: 60px;
    }

    .reseaux div {
        font-size: 24px;
    }

}

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

    p {
        font-size: 30px;
    }

    .vcf {
        padding: 2em;
    }

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

    .vcf a span {
        font-size: 100px;
    }

    .compagnie .logo {
        max-width: 45%;
    }

    .reseaux div {
        font-size: 30px;
        gap: 30px;
    }

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

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


@media only print {

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

    nav {
        display: none;
    }

}