 @font-face {
     font-display: swap;
     font-family: 'Cabin Condensed';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/cabin-condensed-v21-latin-regular.eot');
     src: url('../fonts/cabin-condensed-v21-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/cabin-condensed-v21-latin-regular.woff2') format('woff2'), url('../fonts/cabin-condensed-v21-latin-regular.woff') format('woff'), url('../fonts/cabin-condensed-v21-latin-regular.ttf') format('truetype'), url('../fonts/cabin-condensed-v21-latin-regular.svg#CabinCondensed') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Cabin Condensed';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/cabin-condensed-v21-latin-700.eot');
     src: url('../fonts/cabin-condensed-v21-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/cabin-condensed-v21-latin-700.woff2') format('woff2'), url('../fonts/cabin-condensed-v21-latin-700.woff') format('woff'), url('../fonts/cabin-condensed-v21-latin-700.ttf') format('truetype'), url('../fonts/cabin-condensed-v21-latin-700.svg#CabinCondensed') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Cabin Condensed', Arial, sans-serif;
     font-size: 18px;
     line-height: 23px;
     font-weight: 400;
 }

 #wrapper {
     max-width: 870px;
     margin: 1rem auto;
     border: 1px solid #000;
     background-color: #fff;
     padding: 32px;
 }

 header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-direction: row-reverse;
 }

 header p {
     width: 343px;
 }

 p:not(:first-of-type) {
     margin-top: 10px;
 }

 h1 {
     font-size: 46px;
     line-height: 1.2;
     margin: 20px 0 0;
 }

 h1 small {
     font-size: 17px;
     font-weight: 400;
	 white-space: nowrap;
 }

 h1 span {
     display: block;
     font-size: 21px;
 }

 h2 {
     font-size: 18px;
     line-height: 24px;
     padding-top: 20px;
 }

 ul {
     list-style: none
 }

 ul li {
     padding-left: 12px;
 }

 li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 21px;
     text-indent: -12px;
     margin-top: -1px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h1, h2, strong) {
     font-weight: 700;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width:870px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     br {
         display: none
     }
 }

 @media only screen and (max-width:748px) {
     header {
         flex-direction: column;
         align-items: center;
         gap: 16px
     }

     header p {
         width: auto;
     }
 }

 @media only screen and (max-width:610px) {
     h1 {
         font-size: 35px
     }

     h1 span {
         white-space: nowrap;
     }
 }