 :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     font-family: 'Roboto', Arial, sans-serif;
     font-weight: 400;
     font-size: 16px;
     line-height: 23px;
     color: #000;
 }

 #wrapper {
     margin: 1rem auto;
     max-width: 854px;
     background: #fff;
     border: solid thin #cbcbcb;
 }

 article {
     padding: 16px 90px 0;
 }

 .color {
     color: #007585 !important;
 }

 .text-center {
     text-align: center;
 }

 .margin-bottom {
     margin-bottom: 0;
 }

 :is(h1, h2, strong) {
     font-weight: 700;
 }

 :is(h1, h2) {
     line-height: 1.2;
 }

 h1 {
     font-size: 18px;
     margin: 0 0 16px;
 }

 h2 {
     font-size: 18px;
     margin: 0 0 16px;
 }

 p {
     margin-bottom: 16px;
     text-align: justify;
     hyphens: auto;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
 }

 img {
     max-width: 100%;
 }

 ul {
     margin: 0 0 20px 23px;
 }

 ul li {
     list-style: none;
     text-indent: -23px;
 }

 ul li:before {
     font-size: 20px;
     margin-right: 23px;
     position: relative;
     top: -1px;
     float: left;
     content: "-";
 }

 footer {
     padding: 0 90px 20px;
 }

 @media screen and (max-width: 853px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     p {
         text-align: left !important;
     }

     :is(h1, h2, p, ul li) {
         hyphens: auto;
         text-wrap: pretty;
     }

     :is(p a, span) {
         white-space: nowrap;
     }

     br:not(br.mobile-block) {
         display: none;
     }
 }

 @media screen and (max-width: 700px) {
     article {
         padding: 16px 16px 0;
     }

     footer {
         padding: 0 16px 20px;
     }
 }