@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v35-latin-regular.eot');
  src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v35-latin-700.eot');
  src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 16px;
}

body {
  color: #000;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 400;
}

#wrapper {
  max-width: 500px;
  margin: 16px auto;
  border: 1px solid #757574;
  background: #fff url(../images/background.jpg) no-repeat;
  position: relative;
}

header {
  padding: 16px 10px 38px;
}

article {
  padding: 12px 12px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left {
  width: 56%;
}

.right {
  width: 36%;
}

.logo {
  margin: 26px 0 0;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

:is(.logo p, footer p) {
  margin: 0;
}

footer {
  padding: 6px 12px 10px;
}

.color {
  display: block;
  color: #b00f64;
}

.color a {
  color: #b00f64 !important;
}

p {
  margin: 0 0 10px;
}

strong {
  font-weight: 700;
}

h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #fff;
}

h1 small {
  display: block;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
}

h1 span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  position: absolute;
  right: 16px;
  top: 16px;
  text-align: right;
  color: #fff;
}

h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

ul {
  margin: 0 0 6px;
  list-style: none;
}

ul li {
  padding-left: 16px;
}

li:before {
  content: '\2022';
  float: left;
  font-size: 30px;
  text-indent: -16px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #000;
  text-decoration: none;
}

@media all and (max-width: 498px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  header {
    padding: 16px 16px 38px;
  }

  article {
    padding: 16px 16px 0;
  }

  footer {
    padding: 6px 16px 16px;
  }

  footer figure {
    position: static;
    display: flex;
    justify-content: center;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  p {
    text-align: left;
  }

  :is(a, span) {
    white-space: nowrap;
  }

  ul br {
    display: none;
  }
}

@media all and (max-width: 480px) {
  #wrapper {
    background: #fff;
  }

  header {
    background: #b00f64 url(../images/background-mobile.jpg) no-repeat center bottom;
    padding: 16px 16px 219px;
  }

  article {
    display: block;
  }

  .left,
  .right {
    width: 100%;
  }

  .logo {
    margin: 16px auto;
  }

  h1 {
    text-align: center;
  }

  h2 {
    position: static;
    margin: 0 0 16px;
    text-align: center;
  }

  br {
    display: none;
  }
}