@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v23-latin-300.eot');
    src: url('../fonts/poppins-v23-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v23-latin-300.woff2') format('woff2'), url('../fonts/poppins-v23-latin-300.woff') format('woff'), url('../fonts/poppins-v23-latin-300.ttf') format('truetype'), url('../fonts/poppins-v23-latin-300.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v23-latin-600.eot');
    src: url('../fonts/poppins-v23-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v23-latin-600.woff2') format('woff2'), url('../fonts/poppins-v23-latin-600.woff') format('woff'), url('../fonts/poppins-v23-latin-600.ttf') format('truetype'), url('../fonts/poppins-v23-latin-600.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 300 1em/1.3em 'Poppins', Arial, sans-serif;
}
h1, h2, h3, strong {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #F0CA2C;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1.5rem 1.5rem;
    font-size: 1.36em;
    line-height: 1.3em;
}
h1 span {
    font-weight: 300;
}
h1:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
h2 {
    font-size: 2.625em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
h2 span {
    display: block;
    color: #fff;
}
h3 {
    font-size: 1.875em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
article {
    padding: 1rem 2rem;
}
.flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.icon p {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: calc(50% - 1rem);
}
.icon {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    width: 70%;
}
figure {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}
figcaption {
    text-align: right;
}
footer {
    padding: 0.5rem 2rem;
    background: #1C1D21;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    .icon {
        width: auto;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    figure {
        align-items: center;
    }
    figcaption {
        text-align: center;
    }
}
@media only screen and (max-width: 580px) {
    .icon {
        flex-direction: column;
    }
    .icon p {
        width: 100%;
    }
    .icon p br {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem;
    }
    footer {
        padding: 0.5rem 1rem;
    }
}