 @font-face {
     font-display: swap;
     font-family: 'Lato';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/lato-v24-latin-regular.eot');
     src: url('../fonts/lato-v24-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v24-latin-regular.woff2') format('woff2'), url('../fonts/lato-v24-latin-regular.woff') format('woff'), url('../fonts/lato-v24-latin-regular.ttf') format('truetype'), url('../fonts/lato-v24-latin-regular.svg#Lato') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Lato';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/lato-v24-latin-700.eot');
     src: url('../fonts/lato-v24-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v24-latin-700.woff2') format('woff2'), url('../fonts/lato-v24-latin-700.woff') format('woff'), url('../fonts/lato-v24-latin-700.ttf') format('truetype'), url('../fonts/lato-v24-latin-700.svg#Lato') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Lato';
     font-style: normal;
     font-weight: 900;
     src: url('../fonts/lato-v24-latin-900.eot');
     src: url('../fonts/lato-v24-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v24-latin-900.woff2') format('woff2'), url('../fonts/lato-v24-latin-900.woff') format('woff'), url('../fonts/lato-v24-latin-900.ttf') format('truetype'), url('../fonts/lato-v24-latin-900.svg#Lato') format('svg');
 }

 :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     font-size: 16px;
     line-height: 19px;
     font-family: 'Lato', Arial, sans-serif;
     color: #000;
     font-weight: 400;
 }

 #wrapper {
     position: relative;
     max-width: 610px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background: url(../images/background.jpg) top no-repeat;
 }

 h1 {
     margin: 0 0 7px;
     font-size: 31px;
     line-height: 1;
     color: #fff;
     padding: 5px 5px 11px 20px;
     font-weight: 700;
     background: #60bb48;
 }

 h3 {
     font-size: 46px;
     margin: 0 0 0 20px;
     line-height: 47px;
     font-weight: 900;
 }

 h2 {
     font-size: 21px;
     margin: 0 0 7px;
     font-weight: 700;
     line-height: 18px;
     color: #60bb48;
 }

 p:not(:last-child) {
     margin-bottom: 1rem;
 }

 .box {
     display: flex;
     gap: 7px;
     padding: 0 7px;
 }

 .box>div .images {
     position: relative;
     margin: 26px -1px 0 0;
     right: -7px;
 }

 .box>div {
     width: 50%;
 }

 .background {
     padding: 10px;
     background: rgb(255 255 255 / 75%);
     margin-bottom: 7px;
 }

 .onepage {
     height: 235px;
 }

 footer {
     margin: 2px 0 0;
     padding: 9px 41px;
     background: rgb(255 255 255 / 90%);
     display: flex;
     justify-content: space-between;
 }

 footer p img {
     position: relative;
     top: -2px;
     margin-right: 5px;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
     white-space: nowrap;
 }

 ul {
     margin: 0;
     list-style: none;
 }

 ul li {
     padding-left: 10px;
 }

 ul li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 10px;
     line-height: 22px;
     text-indent: -10px;
 }

 img {
     max-width: 100%;
     vertical-align: bottom;
 }

 @media (max-width: 610px) {
     #wrapper {
         margin: 0;
         background: url(../images/background-res.jpg) top center no-repeat;
         border: none;
         background-size: cover;
     }

     .box>div .images {
         margin: 1rem 0 0;
         text-align: center;
     }

     footer {
         padding: 1rem;
         gap: 1rem;
         flex-wrap: wrap;
         margin: 1rem 0 0;
     }

     .background {
         margin-bottom: 1rem;
     }

     h1 {
         margin-bottom: 1rem;
         line-height: 34px;
     }

     h3 {
         margin: 1rem 1rem 0;
     }

     .onepage {
         height: auto;
     }

     .box>div {
         width: auto;
     }

     .box {
         padding: 0 1rem 1rem;
         flex-direction: column;
         gap: 0;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
     }

     br:not(footer br) {
         display: none;
     }
 }