@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-v17-latin-regular.eot');
    src: url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700.eot');
    src: url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-700.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1.063em/1.5em 'PT Sans', Arial sans-serif;
    color: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 455px;
    border: solid 1px #000;
    background: #323F48;
}
.yellow,h1{
    color: #F9EF1C;
}
.yellow img{
    vertical-align: -1px;
}
p {
    padding-bottom: 1rem;
}
:is(h1,h2,h3, strong){
    font-weight: 700;
}
h1 span{
    font-size: 0.7em;
    font-weight: 400;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.413em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.5em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
h3 {
    font-size: 1.3em;
    line-height: 1.2;
}
h3 small {
    font-size: 0.7em;
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -16px;
    float: left;
}
article {
    padding: 1rem 2.25rem 0;
}
footer {
    padding: 1rem 1rem 1.5rem 2.5rem;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0 0.5rem;
}
figure{
    margin: -0.5rem 0 0 0;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:454px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article br{
        display: none;
    }
    article{
        padding: 1rem;
    }
    .contact :is(h3,p){
        text-align: center;
    }
    footer{
        padding: 0 1rem 1rem;
        flex-direction: column;
    }
    figure{
        display: flex;
        justify-content: center;
        margin: 0 0 0.5rem;
    }
}