:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v20-latin-regular.eot');
  src: url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'),
    url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'),
    url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'),
    url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ubuntu-v20-latin-700.eot');
  src: url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'),
    url('../fonts/ubuntu-v20-latin-700.woff') format('woff'),
    url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'),
    url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Ubuntu', Arial, sans-serif;
  color: #333;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 960px;
  margin: 16px auto;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, .5);
}

h1 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #176C9B;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

h4 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  background-color: #176C9B;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
  font-weight: 400;
  padding: 20px 25px;
  position: absolute;
  bottom: 0;
  right: 0;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

header {
  padding: 8px 30px 8px 40px;
  background-color: #176C9B;
  display: flex;
  justify-content: space-between;
  align-items: self-end;
  gap: 16px;
}

article .banner {
  position: relative;
  padding-bottom: 16px;
}

article .title {
  padding: 0 30px;
}

footer strong {
  color: #176C9B;
}

footer {
  padding: 20px 30px 16px;
  border-bottom: 18px solid #176C9B;
}

.link {
  color: #176C9B !important;
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 12px;
}

ul li:before {
  content: "\2022";
  color: #333;
  float: left;
  margin-top: -3px;
  font-size: 20px;
  line-height: 1em;
  text-indent: -12px;
}

: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:960px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br, h4 br, .br) {
    display: none;
  }
}

@media all and (max-width:767px) {
  header {
    padding: 8px 16px;
  }

  article .title {
    padding: 0 16px;
  }

  footer {
    padding: 16px;
    border-bottom: 18px solid #176C9B;
  }

  h3 {
    flex: 1 1 0;
  }

  article .banner {
    padding-bottom: 46px;
  }

  h4 {
    font-size: 20px;
  }
}

@media all and (max-width:478px) {
  header {
    flex-direction: column-reverse;
    align-items: center;
  }

  h3 {
    text-align: center;
  }
}