﻿@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #191919;
    line-height: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 540px;
    margin: 1rem auto;
    border: 1px solid #191919;
    overflow: hidden;
    background-color: #fff;
}

article {
    padding: 0 50px 20px;
    position: relative;
}

.qrcode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: #191919 1px solid;
    border-radius: 30px;
    position: absolute;
    bottom: 10px;
    right: 50px;
    padding: 6px 27px 6px 12px;
    gap: 6px;
}

.qrcode p {
    margin: 0;
    font-size: 15px;
}

footer {
    padding: 0 50px 15px;
    TEXT-ALIGN: CENTER;
}

footer p {
    margin: 0;
    font-size: 14px;
}

:is(strong, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}

h1 small {
    display: block;
    font-size: 75%;
}

h2 {
    font-size: 16px;
    margin: 1rem 0;
    line-height: 21px;
}

h3 {
    font-size: 23px;
    margin: 1rem 0;
    padding: 10px;
    border: 1px solid #191919;
    line-height: 1.2;
    border-radius: 50px;
    width: 200px;
    text-align: center;
    position: relative;
}

h3:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -80px;
    background: #191919;
    height: 1px;
    width: 60px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #191919;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    background: url(../images/iconlist.jpg) left 6px no-repeat;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.flex {
    display: flex;
    margin: 0 50px 30px;
    gap: 6rem;
}

.title {
    position: relative;
}

.border {
    display: inline-block;
    border-bottom: #191919 1px solid;
    padding: 0 45px 5px 0;
    font-size: 13px;
    margin-top: 20px;
}

.images {
    margin: 0 0 1rem -50px;
}

p span {
    white-space: nowrap;
}

.color {
    color: #F13D37;
}

@media all and (max-width:539px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }

    article {
        padding: 0 1rem
    }

    footer {
        padding: 0 1rem 1rem;
    }

    .flex {
        margin: 0 1rem 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .images {
        margin-left: -1rem;
    }

    h3:before {
        display: none;
    }

    .block {
        display: block;
    }
}

@media all and (max-width:500px) {
    .qrcode {
        position: static;
        margin: 0 auto 16px;
        width: 240px;
    }
}