@charset "utf-8";

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-700.woff') format('woff'),
        url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #FFF;
    font: 1em/1.5em 'Poppins', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 1050px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #151F6D;
    overflow: hidden;
    padding: 1rem;
}

h1,
h2,
strong {
    font-weight: 700;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 2rem 0 0.5rem;
    font-size: 2.692em;
    line-height: 1.5;
}

h1+p {
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.3em;
    line-height: 1.3;
    color: #DF004D;
    margin-bottom: 0.5rem;
}

h2 span {
    font-weight: normal;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    padding: 0 0 0.5rem;
    list-style: none;
}

ul li {
    padding: 0 0 0.3rem 1rem;
}

ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}

header {
    margin-bottom: 1rem;
}

.flex,
header,
footer {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 49%;
}

.box {
    background: #FFF;
    padding: 1rem 1rem 0;
    border-radius: 10px;
    margin: 0 0 1rem;
}

.mr {
    margin-right: 4rem;
}

.box :is(p, ul) {
    color: #151F6D;
}

.psr {
    position: relative;
}

.qr {
    position: absolute;
    bottom: 2rem;
    right: -5rem;
}

p a.big,
p span.big {
    font-size: 1.45em;
    line-height: 1.3em;
}

footer {
    flex-direction: row-reverse;
    align-items: flex-end;
}

.left {
    width: 60% !important;
}

@media only screen and (max-width: 1049px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p :is(a, span) {
        display: inline-block;
    }

    header {
        flex-direction: column;
    }

    header figure,
    .qr {
        display: flex;
        justify-content: center;
    }

    .qr {
        position: static;
        margin-bottom: 1rem;
    }

    .hide_m {
        display: none;
    }

    .left {
        width: 48% !important;
    }

    .mr {
        margin-right: 0;
    }
}

@media only screen and (max-width: 800px) {
    .flex {
        flex-direction: column;
        align-items: center;
    }

    div {
        width: 100% !important;
    }

    footer {
        gap: 1rem;
    }

    footer p {
        text-align: center;
    }

    footer figure {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
}