:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v32-latin-300.eot');
    src: url('../fonts/roboto-v32-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-300.woff2') format('woff2'), url('../fonts/roboto-v32-latin-300.woff') format('woff'), url('../fonts/roboto-v32-latin-300.ttf') format('truetype'), url('../fonts/roboto-v32-latin-300.svg#Roboto') format('svg');
}

@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');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0E1C28;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    border: none;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 22px;
    text-align: left;
    color: #0E1C28;
}

#wrapper {
    margin: 12px auto;
    border: 1px #231F20 solid;
    max-width: 910px;
    position: relative;
    padding: 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

header {
    position: relative;
}

header img {
    display: block;
}

article {
    padding: 46px 95px 0px 88px;
}

footer {
    padding: 5px 88px 75px;
}

aside {
    display: flex;
    gap: 0 16px;
    justify-content: space-between;
}

aside p:nth-of-type(1) {
    width: 375px;
}

aside p:nth-of-type(2) {
    width: 205px;
}

aside p:nth-of-type(3) {
    width: 130px;
}

p {
    padding-bottom: 15px;
}

h1 {
    margin: 0 0 35px;
    font-size: 40px;
    line-height: 40px;
    color: #EB2E29;
    font-weight: 700;
}

h1 span {
    display: block;
    font-size: 15px;
    line-height: 22px;
    padding-top: 12px;
    font-weight: 400;
    color: #0E1C28;
}

h2 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 300;
    margin: 16px 0 12px;
}

article h2+p {
    padding-bottom: 0;
    color: #4055ff;
}

h3 {
    font-size: 36px;
    line-height: 42px;
    margin: 0 0 10px;
    font-weight: 700;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 15px;
    text-indent: -12px;
    margin-top: -1px;
}

@media only screen and (max-width:910px) {
    #wrapper {
        border: none;
        hyphens: auto;
        margin: 0;
    }

    h1 {
        font-size: 25px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    h1 span br {
        display: none;
    }

    h2 {
        font-size: 19px;
        line-height: 22px;
    }

    p span {
        white-space: nowrap;
    }

    ul {
        margin: 0 0 20px;
    }

    ul li br {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    article {
        padding: 10px 16px 0;
    }

    footer {
        padding: 0 16px 10px;
    }
}

@media only screen and (max-width:658px) {
    aside {
        display: flex;
        flex-direction: column;
    }

    aside p:nth-of-type(1) {
        width: auto !important;
    }
}