@charset "utf-8";

:root {
    font-size: 16px;
}

@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #0d0d0d;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border: solid 1px #000;
}

h1 {
    font-size: 20px;
    text-align: center;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: #024a94;
}

h2 {
    color: #024a94;
    font-size: 16px;
    margin: 0 0 5px;
}

strong {
    color: #024a94;
    font-size: 16px !important;
    margin: 0 0 5px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.web {
    color: #0e0eef;
    text-decoration: underline;
}

p {
    margin: 0 0 1.5625rem;
}

span {
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: 0 0 1.5625rem;
    padding: 0;
}

ul li {
    padding-left: 3.1rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.5rem;
    line-height: 1;
	color: #024a94;
}

header {
    padding: 0 0 10px;
}

.pozition {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 48rem) {
    .pozition {
        justify-content: center;
    }

    h2 {
        font-size: 1.0625rem;
    }
}

@media only screen and (max-width: 30rem) {
    ul li {
        padding-left: 1rem
    }
}