﻿@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: #fff;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #404041;
}

header {
    width: 50%;
}

.logo {
    position: absolute;
    top: 0;
    left: 44%;
}

article {
    width: 50%;
    padding: 0 1rem;
}

footer {
    position: absolute;
    bottom: 1rem;
    left: 23px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 1rem 10%;
    font-size: 18px;
    line-height: 35px;
    padding: 0 0 0 39px;
    font-weight: 400;
    background: url(../images/iconlist.png) no-repeat 0 5px;
}

h1 small {
    font-size: 13px;
}

.text {
    font-size: 11px;
    text-align: right;
}

h2 {
    font-size: 16px;
    margin: 1rem 0;
    line-height: 1.4;
    text-decoration: underline;
    text-align: center;
    font-weight: 400;
}

.slogan {
    display: flex;
    justify-content: center;
    margin: 0 0 16px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.box {
    background: #fbb04c;
    padding: 1rem;
    display: flex;
    gap: 10px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.box p {
    margin: 0;
}

.center {
    text-align: center;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        margin: 1rem 0;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width:767px) {
    footer {
        position: static;
        width: 100%;
    }
}

@media all and (max-width:700px) {
    :is(article, footer) {
        width: 100%;
    }

    header {
        margin: 0 auto;
        width: auto;
    }

    footer {
        position: static;
    }

    .title {
        display: flex;
        justify-content: center;
    } }