: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: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    max-width: 750px;
    margin: 12px auto;
    border: 10px solid #13699b;
    padding: 10px 20px 1px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

header {
    padding: 0 0 20px 20px;
}

p {
    margin: 0 0 8px;
}

h1 {
    margin: 0 0 10px;
    font-size: 37px;
    line-height: 40px;
    font-weight: 700;
    color: #13699b;
}

h2 {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 20px;
    font-weight: 700;
    color: #13699b;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}

a {
    color: #200e00;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #13699b;
}

p small {
    display: block;
    font-size: 12px;
    line-height: 16px;
}

h1 small {
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 22px;
}

.image {
    position: absolute;
    z-index: 4;
    right: 0;
    top: 0;
}

@media all and (max-width: 749px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        padding-left: 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    h1 {
        font-size: 32px;
        line-height: 34px;
    }

    p span {
        white-space: nowrap;
    }

    .image {
        position: static;
    }

    .none {
        display: none;
    }
}