@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
}

#wrapper {
    margin: 1rem auto;
    max-width: 950px;
    background: #fff url(../images/background.jpg) no-repeat left bottom;
    border: solid thin #cbcbcb;
}

header {
    position: relative;
}

header img {
    display: block;
}

.position {
    position: absolute;
    left: 0;
    bottom: -47px;
    background-color: rgba(18, 63, 149, 0.76);
    padding: 26px 50px;
}

article {
    padding: 97px 50px 6px;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content {
    width: 84%;
}

.color {
    color: #f4c100 !important;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

:is(h1, h2, h3) {
    line-height: 1.2;
}

h1 {
    font-size: 28px;
    text-indent: -25px;
    margin-left: 25px;
}

h1 span {
    font-size: 16px;
	font-weight: 400;
}

h1 small {
    font-size: 16px;
    display: block;
    font-weight: 400;
    text-indent: 0;
}

h2 {
    font-size: 22px;
    margin: 0 0 16px;
    font-weight: 400;
}

h3 {
    font-size: 23px;
    font-weight: 400;
}

hr {
    border: none;
    height: 8px;
    display: block;
    background: #f4c100;
    margin: 26px -50px -24px 0;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1:before {
    font-size: 20px;
    margin-right: 25px;
    position: relative;
    top: -1px;
    float: left;
    content: "\25A0";
    color: #f4c100;
}

footer {
    padding: 10px 50px 55px;
}

@media screen and (max-width: 949px) {
    #wrapper {
        border: none;
        margin: 0;
        height: auto;
        background: #1b0d5b;
    }

    :is(h1, h2, h3, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, p span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 649px) {
    .position {
        padding: 16px;
        position: static;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 16px;
    }

    hr {
        margin: 16px 0 -16px;
    }

    footer p {
        text-align: center;
    }
}