@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #5C6268;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .062rem #000;
    border-bottom: 1.25rem solid;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

h1 {
    background: #5C6268;
    color: #fff;
    padding: .5rem 2.5rem;
    margin: 0 0 .625rem;
    font-size: 1.15rem;
}

h2 {
    font-size: 1rem;
    margin-bottom: .3rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 400;
    transform: rotate(-5deg);
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.375em;
    line-height: 1.1;
}

.circle {
    text-align: center;
    position: absolute;
    top: 3rem;
    left: 25%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #db3240;
    padding: 1.25rem;
    border-radius: 50%;
    width: 11.25rem;
    height: 11.25rem;
    margin: 0;
}


article {
    padding: .625rem 2.5rem 5rem;
}

.flex {
    display: flex;
    column-gap: 3.75rem;
}

.flex section {
    flex: 0 1 50%;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 2rem;
    width: 24rem;
}

footer section:first-of-type {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        padding: .5rem 1rem;
        text-align: center;
    }

    h3 {
        transform: rotate(0);
        line-height: 1.2;
    }

    .circle br {
        display: none;
    }

    .circle {
        position: static;
        transform: translateX(0);
        display: block;
        padding: 0.625rem 1rem;
        border-radius: 0;
        width: auto;
        height: auto;
        margin: 0;
    }

    .flex {
        display: block;
    }

    article {
        padding: .5rem 1rem 0;
    }

    footer {
        position: static;
        padding: 1rem;
        width: auto;
        flex-direction: column;
        text-align: center;
    }

    footer section:first-of-type {
        align-items: center;
    }
}


@media only screen and (max-width: 30rem) {
    ul li {
        padding-left: 1rem;
    }
}