:root {
  font-size: 16px;
}

@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';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 15px;
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #585654;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 940px;
  background-color: #fff;
  box-shadow: 3px 3px 11px 2px #939095;
  margin: 1rem auto;
}

h1 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #e2112e;
}

h2 {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #e2112e;
}

h3 {
  margin: 26px 0;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
}

h3+p {
  margin-bottom: 26px;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 5%;
  gap: 12px;
}

article {
  padding: 1% 5% 5%;
}

footer {
  position: absolute;
  bottom: 3%;
  right: 5%;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "\2012";
  color: #000;
  float: left;
  margin: 0px 0 0 -18px;
  font-size: 17px;
  line-height: 1em;
}

.info {
  margin-top: 16px;
  margin-right: 200px;
}

.link {
  color: #e2112e !important;
  text-decoration: underline !important;
}

.border {
  padding-bottom: 16px;
  border-bottom: 2px solid #585654;
}

: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:940px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}

@media all and (max-width:767px) {
  article {
    padding: 16px;
  }

  footer {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 16px 16px;
  }

  h3 {
    margin-top: 0;
  }

  .flex {
    padding: 16px;
  }

  .info {
    margin-right: 0;
  }
}