:root {
  font-size: 16px;
}

@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;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 660px;
  margin: 16px auto;
  border: 2px solid #000;
  padding: 16px;
  overflow: hidden;
  background-color: #fff;
}

h1 {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

h1 strong {
  font-weight: 700;
  font-size: 16px;
  display: block;
}

h2 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h2+p {
  font-size: 14px;
}

h3 {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #000;
}

h3 a {
  display: inline-block;
  padding: 16px 24px;
  background-color: #1F509F;
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
}

p:not(:last-of-type) {
  margin-bottom: 9px;
}

header {
  margin: 0;
  padding: 0;
}

article {
  padding: 24px 0;
}

.content {
  margin-left: 36px;
}

footer {
  text-align: center;
  line-height: 1.5;
}

footer .link {
  color: #2A67C4 !important;
  text-decoration: underline !important;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

span {
  white-space: nowrap;
}

@media all and (max-width:660px) {
  #wrapper {
    margin: 0;
    padding: 16px;
    border: none;
  }

  .content {
    margin-left: 0;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }
}