@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 Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v25-latin-regular.eot');
    src: url('../fonts/roboto-slab-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-slab-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-slab-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-slab-v25-latin-regular.svg#RobotoSlab') format('svg');
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #231F20 solid;
    max-width: 960px;
    position: relative;
    background-color: #E1E9F6;
    overflow: hidden;
}

.logo {
    display: flex;
    justify-content: space-between;
    padding: 32px 50px;
    background: #FFF;
    gap: 16px;
}

.title {
    background: #1E509F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

article {
    padding: 40px 60px 20px;
    position: relative;
}

figure {
    position: absolute;
    top: 180px;
    right: 62px;
}

footer {
    text-align: right;
    background: #1E509F;
    padding: 1px 60px;
}

strong {
    font-weight: 700;
}

.link a {
    display: inline-block;
    color: #fff !important;
    font-family: 'Roboto Slab', Times, "Times New Roman", serif;
    font-weight: 400;
    font-size: 20px;
}

a ins {
	color: #1e509f;
}

p {
    margin-bottom: 20px;
}

h1 {
    font-size: 29px;
    font-weight: 400;
    font-family: 'Roboto Slab', Times, "Times New Roman", serif;
    color: #fff;
    padding: 30px 60px;
}

h1 strong {
    display: block;
    font-size: 19px;
    margin: 0 0 15px;
    font-weight: 400;
}

h1 :is(span, small) {
    font-size: 19px;
    line-height: 1.2
}

h1 small {
    display: block;
}

h2 {
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 400;
    font-family: 'Roboto Slab', Times, "Times New Roman", serif;
    color: #1E509F;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin-bottom: 20px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
    background: #000;
    display: block;
}

span {
    white-space: nowrap;
}

@media only screen and (max-width:960px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .logo {
        padding: 1rem;
    }

    article {
        padding: 1rem;
    }

    figure {
        top: 176px;
        right: 26px;
    }

    h1 {
        padding: 1rem;
    }

    h1 small {
        display: inline-block;
    }

    :is(p, ul, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .title {
        flex-direction: column;
    }

    figure {
        position: static;
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    footer {
        display: flex;
        justify-content: center;
        padding: 4px 16px;
    }

    h1 {
        text-align: center;
    }
}