 @font-face {
   font-display: swap;
   font-family: 'PT Sans';
   font-style: normal;
   font-weight: 400;
   src: url('../fonts/pt-sans-v17-latin-regular.eot');
   src: url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'), url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}
@font-face {
   font-display: swap;
   font-family: 'PT Sans';
   font-style: normal;
   font-weight: 700;
   src: url('../fonts/pt-sans-v17-latin-700.eot');
   src: url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-700.woff') format('woff'), url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   min-height: 100%;
}

body {
   font-size: 16px;
   line-height: 18px;
   font-family: "PT Sans", Arial, sans-serif;
   color: #272c2e;
   font-weight: 400;
}

#wrapper {
   position: relative;
   max-width: 800px;
   margin: 1rem auto;
   border: 1px solid #000;
   overflow: hidden;
   background-color: #fff;
}

h1 {
   margin: 10px 0;
   font-size: 22px;
   color: #d8c48c;
   line-height: 26px;
   font-weight: 700;
   text-align: center;
}

strong {
   font-weight: 700;
}

h3 {
   z-index: 9;
   position: relative;
   font-size: 18px;
   color: #fff;
   background: #455a70;
   margin: 0 0 0 -31px;
   font-weight: 700;
   max-width: 431px;
   border-radius: 0 15px 15px 0;
   line-height: 26px;
   padding: 10px 10px 10px 49px;
}

p:not(:last-child) {
   margin-bottom: 10px;
}

p span {
   white-space: nowrap;
}

article {
   padding: 4px 31px 0;
}

.border {
   padding: 1rem;
   margin: 1rem 0;
   border-radius: 15px;
   border: solid 2px #455a70;
}

.font-size {
   font-size: 15px;
}

section {
   background: #f2f4f4;
   padding: 23px 1rem 1rem;
   border-radius: 15px;
   margin: -17px 0 0;
}

section+p {
   margin: 16px 0 0 16px;
}

footer {
   display: flex;
   justify-content: flex-end;
   padding: 31px 31px;
   background: #455a70;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: #272c2e;
   text-decoration: none;
   white-space: nowrap;
}

a.link {
   text-decoration: underline !important;
   color: #0f7cbf !important;
}

ul {
   margin: 0;
   list-style: none;
}

ul li {
   padding-left: 15px;
}

ul li:before {
   content: "\2022";
   color: #455a70;
   float: left;
   font-size: 16px;
   text-indent: -15px;
}

img {
   vertical-align: bottom;
   max-width: 100%;
}

.logo-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-left: 50px;
}

footer > a{
    position: relative;
    top: 44px;
}

@media (max-width: 798px) {
   #wrapper {
       margin: 0;
       border: none;
   }

   footer {
       padding: 1rem;
   }

   article {
       padding: 10px 1rem 0;
   }

   :is(p, ul) {
       hyphens: auto;
       text-wrap: pretty;
   }

   br {
       display: none;
   }

   footer > a{
        position: relative;
        top: 24px;
    }
}