@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v25-latin-700.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-700.woff') format('woff'), url('../fonts/montserrat-v25-latin-700.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-700.svg#Montserrat') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #081b4a;
}

#wrapper {
    margin: 1rem auto;
    max-width: 739px;
    background: #fff;
    border: solid thin #081b4a;
    position: relative;
}

header {
    position: relative;
}

header>a {
    position: absolute;
    bottom: 10%;
    left: 4%;
    height: 16%;
    width: 14%;
}

article {
    padding: 0 15px;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content {
    width: 65%;
}

.color {
    color: #f58334 !important;
    font-size: 15px;
}

.text-center {
    text-align: center;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 28px;
    line-height: 1.2;
    position: absolute;
    right: 2%;
    top: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 400;
    color: #fff;
}

h1 span {
    display: inline-block;
    background: #081b4a;
    margin: 2px 0;
    padding: 0 4px;
}

h1 small {
    font-size: 80%;
    background: #fff;
    color: #081b4a;
    display: inline-block;
    margin-top: 4px;
}

p {
    margin-bottom: 8px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #081b4a;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 5px 15px;
}

ul li {
    list-style: none;
    text-indent: -15px;
    font-size: 14px;
    line-height: 16px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: -1px;
    float: left;
    content: "-";
}

.qrcode {
    position: absolute;
    right: 15px;
    bottom: 44px;
}

footer {
    padding: 0 15px 16px;
}

@media screen and (max-width: 738px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 22px;
        top: 20%;
    }

    :is(p a, p span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }

    .qrcode {
        position: static;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    h1 {
        position: static;
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .flex-box {
        flex-direction: column;
        align-items: center;
    }

    .flex-box-content {
        width: 100% !important;
    }
}