@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 1.25rem #808080;
}

p {
    margin: 0 0 .875rem;
}

article>p:last-of-type {
    margin-bottom: 0;
}

.margin {
    margin-bottom: 1.75rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    margin-bottom: .875rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1rem;
    font-size: .5rem;
    line-height: 2;
}

h1 {
    font-size: 1.75rem;
    padding: 1.563rem 2.5rem 1.563rem 16%;
    line-height: 1.2;
    color: #fff;
    background-image: linear-gradient(to right, #E01C30 0%, #E01C30 11%, #535252 11%, #535252 100%);
}

h2 {
    color: #e2202a;
    font-size: 0.875rem;
    margin: 0 0 .875rem;
    line-height: 1.4;
}

header {
    position: relative;
}

.logo {
    position: absolute;
    top: 0;
    right: 2.5rem;
}

.section_resp {
    display: none;
}

.section_image img {
    display: block;
}

article {
    padding: 2.5rem 2.5rem 8.125rem 8.125rem;
    position: relative;
}

.infos {
    font-family: "Arial", sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    text-align: right;
    margin: 0 0 2.5rem;
    font-stretch: condensed;
}

a.link {
    color: #e2202a;
    text-decoration: underline;
}

.social {
    color: #e2202a;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.figure {
    display: flex;
    gap: .5rem;
    position: absolute;
    bottom: 5rem;
    right: 4.25rem;
}

footer {
    background: #e2202a;
    text-align: center;
    padding: 1.75rem 2.5rem;
    font-size: 1.563rem;
    font-weight: 700;
    color: #fff;
}

@media only screen and (max-width: 56.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        padding: 1.25rem 1rem 1.25rem 6.25rem;
        text-align: center;
    }

    .logo {
        position: absolute;
        top: 0;
        right: 1rem;
    }

    article {
        padding: 1rem 1rem 1rem 6.25rem;
    }

    .figure {
        position: static;
        padding-top: .875rem;
    }
}

@media only screen and (max-width: 46.875rem) {
    .infos {
        margin: 0 0 .875rem;
    }

    h1 {
        font-size: 1.5rem;
        padding: 1rem;
        background: #535252;
    }

    article {
        padding: 1rem;
    }

    .figure {
        justify-content: center;
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 31.25rem) {
    .logo {
        display: none;
    }

    header {
        display: block;
        text-align: center
    }

    .section_resp {
        margin: .625rem auto;
        display: inline-block
    }
}