﻿@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: #000;
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #1883c2;
    overflow: hidden;
    padding: 1rem 1rem 0;
    background-color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 1rem;
    flex-wrap: wrap;
}

article {
    margin: 1rem 0;
    display: flex;
    color: #FFF;
    justify-content: space-between;
}

footer p {
    margin: 0 0 10px;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 36px;
    line-height: 1;
    color: #6d7378;
}

h1 small {
    display: block;
}

h2 {
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 16px;
}

h3 {
    font-size: 0.8125rem;
    margin: 1rem 0;
    line-height: 1.125rem;
}

.margin {
    margin: 0;
}

p {
    margin: 0 0 20px;
    text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 15px;
    list-style: none;
}

ul li {
    padding-left: 13px;
}

ul li:before {
    content: "\25A0";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-indent: -13px;
    margin: -2px 0 0;
}

img {
    max-width: 100%;
}

.column-left {
    width: 48%;
    padding: 1rem;
    background: #1883c2;
}

.column-left ul {
    margin: 20px 2rem;
    font-weight: bold;
    width: 300px;
}

.column-right {
    width: 48%;
    background: #6d7378;
    padding: 1rem;
}

.font {
    font-size: 18px;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }
	
	span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }

    .column-left ul {
        margin-left: 10px;
    }
}

@media all and (max-width:767px) {
    header {
        justify-content: center;
    }

    h1 {
        text-align: center;
		font-size: 31px;
    }

    article {
        display: block;
    }

    .column-left,
    .column-right {
        width: 100% !important;
        margin: 0 0 1rem;
    } }