:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@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');
}

html {
    min-height: 100%;
}

body {
    color: #013957;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 450px;
    margin: 1rem auto;
    border: 1px solid #013957;
    background: #fff;
}

article {
    padding: 0.9375rem 1.5625rem 0.25rem;
    position: relative;
}

footer {
    padding: 0.875rem 1.5625rem 1.25rem;
    background: #013957;
    position: relative;
}

p {
    margin: 0 0 0.875rem;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 0 0 0 1.9375rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    position: relative;
}

h1::before {
    content: "";
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: #013957;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.4375rem;
}

h2 {
    margin: 0 0 0.625rem;
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 2.1875rem;
}

h3 {
    margin: 0 0 0.875rem;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #013957;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.box {
    padding-left: 1.5625rem;
    border-left: 0.0625rem solid #013957;
    margin-bottom: 1rem;
}

.icon {
    position: absolute;
    z-index: 3;
    right: 0.9375rem;
    bottom: 1.8125rem;
    display: flex;
    gap: 0.9375rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #013957;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.button a:hover {
    opacity: 0.9;
}

.flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 1rem 0;
}

.flexbox img {
    position: absolute;
    top: 0;
    left: 0;
}

@media all and (max-width: 449px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article {
        padding: 1rem 1rem 0.375rem;
    }

    footer {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .icon {
        position: static;
        margin-top: 0.9375rem;
    }
}

@media all and (max-width: 380px) {
    .flexbox img {
        position: static;
    }

    h2 {
        font-size: 1.375rem;
        line-height: 1.75rem;
    }
}