﻿@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('open-sans-v40-latin-regular.eot');
    src: url('open-sans-v40-latin-regular.eot@') format('embedded-opentype'), url('open-sans-v40-latin-regular.woff2') format('woff2'), url('open-sans-v40-latin-regular.woff') format('woff'), url('open-sans-v40-latin-regular.ttf') format('truetype'), url('open-sans-v40-latin-regular.svg') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('open-sans-v40-latin-700.eot');
    src: url('open-sans-v40-latin-700.eot@') format('embedded-opentype'), url('open-sans-v40-latin-700.woff2') format('woff2'), url('open-sans-v40-latin-700.woff') format('woff'), url('open-sans-v40-latin-700.ttf') format('truetype'), url('open-sans-v40-latin-700.svg') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 560px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff url(background.jpg) no-repeat;
}

header {
    margin: 40px 40px 54px;
    background: #0093cd;
    padding: 25px 25px 15px;
    color: #FFF;
    position: relative;
}

header:before {
    content: "";
    position: absolute;
    left: 48%;
    bottom: -30px;
    border-top: 15px solid #0093CD;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid transparent;
}

article {
    padding: 0 40px 28px;
}

footer {
    padding: 0 40px 40px;
    position: relative;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 30px;
    line-height: 30px;
}

h1 span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
	color: #000 !important;
}

h2 {
    font-size: 16px;
    margin: 1rem 0 0;
    line-height: 20px;
	color: #0093CD;
    font-weight: 400;
}

h3 {
    font-size: 19px;
    margin: 1rem 0;
    font-weight: 400;
    line-height: 1.125rem;
}

h3 a {
    color: #009cdf !important;
}

p {
    margin: 0 0 10px;
}

span {
    color: #ec0a71;
	font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 25px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-indent: -12px;
}

img {
    max-width: 100%;
}

.logo {
    position: absolute;
    top: 25px;
    right: 40px;
}

.images {
    margin: 0 0 4px 86px;
}



@media all and (max-width:559px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        background-size: cover;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    header {
        margin: 1rem;
        padding: 1rem
    }

    article {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
        background: #FFF;
    }

    .logo {
        position: static;
    }
}