 @font-face {
     font-display: swap;
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/roboto-condensed-v31-latin-regular.eot');
     src: url('../fonts/roboto-condensed-v31-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v31-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v31-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v31-latin-regular.svg#RobotoCondensed') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/roboto-condensed-v31-latin-700.eot');
     src: url('../fonts/roboto-condensed-v31-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v31-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v31-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v31-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v31-latin-700.svg#RobotoCondensed') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 900;
     src: url('../fonts/roboto-condensed-v31-latin-900.eot');
     src: url('../fonts/roboto-condensed-v31-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v31-latin-900.woff2') format('woff2'), url('../fonts/roboto-condensed-v31-latin-900.woff') format('woff'), url('../fonts/roboto-condensed-v31-latin-900.ttf') format('truetype'), url('../fonts/roboto-condensed-v31-latin-900.svg#RobotoCondensed') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Roboto Condensed', Arial, sans-serif;
     font-size: 16px;
     line-height: 22px;
     font-weight: 400;
 }

 #wrapper {
     max-width: 910px;
     margin: 1rem auto;
     border: 1px solid #000;
     background: url('../images/background.jpg') repeat-y;
     position: relative;
 }

 .logo {
     position: absolute;
     top: 23px;
     right: 25px
 }

 article {
     width: 61%;
     padding: 50px 25px;
 }

 footer {
     width: 49%;
     position: absolute;
     bottom: 0;
     right: 0;
 }

 p {
     margin-top: 34px;
 }

 h1 {
     font-size: 22px;
     line-height: 30px;
     margin: 15px 0 0;
     padding-left: 25px;
 }

 h1:before {
     content: "\25A0";
     color: #e30613;
     float: left;
     font-size: 21px;
     text-indent: -25px;
     margin-top: -2px;
 }

 h1 span {
     color: #6a6a6a;
     font-weight: 400;
     font-size: 19px;
     display: block;
 }

 h2 {
     font-size: 49px;
     line-height: 1;
     font-weight: 900;
     color: #e30613;
 }

 h2 span {
     display: block;
     color: #000
 }

 h3 {
     background: url(../images/line.jpg) 0 8px no-repeat;
     padding-left: 65px;
     color: #6a6a6a;
     font-weight: 400;
     margin-top: 7px;
 }

 h4 {
     font-size: 18px;
     line-height: 21px;
     margin-top: 18px;
 }

 ul {
     list-style: none;
     padding: 10px 0 0 25px;
 }

 ul li {
     padding-left: 31px;
     background: url(../images/tick.jpg) 0 3px no-repeat;
     margin-bottom: 6px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h1, 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:910px) {
     #wrapper {
         border: none;
         margin: 0;
         background: none;
     }

     header {
         background: #f3f4f6;
         padding: 30px 16px;
     }

     .logo {
         position: static;
         display: flex;
         justify-content: flex-end;
     }

     article {
         width: auto;
         padding: 30px 16px
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     .li {
         width: 54%;
     }
 }

 @media only screen and (max-width:637px) {
     footer {
         width: auto;
         background: #f3f4f6;
         position: static;
         display: flex;
         justify-content: flex-end;
         padding: 0 0 0 35px;
     }

     .li {
         width: auto;
     }
 }

 @media only screen and (max-width:480px) {
     ul {
         padding-left: 0
     }

     h2 {
         font-size: 35px
     }
 }