@charset "utf-8";

@font-face {
   font-display: swap;
   font-family: 'Roboto Condensed';
   font-style: normal;
   font-weight: 400;
   src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
   src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
      url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
      url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
      url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
   font-display: swap;
   font-family: 'Roboto Condensed';
   font-style: normal;
   font-weight: 500;
   src: url('../fonts/roboto-condensed-v27-latin-500.eot');
   src: url('../fonts/roboto-condensed-v27-latin-500.eot?#iefix') format('embedded-opentype'),
      url('../fonts/roboto-condensed-v27-latin-500.woff2') format('woff2'),
      url('../fonts/roboto-condensed-v27-latin-500.woff') format('woff'),
      url('../fonts/roboto-condensed-v27-latin-500.ttf') format('truetype'),
      url('../fonts/roboto-condensed-v27-latin-500.svg#RobotoCondensed') format('svg');
}

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   color: #000;
   font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}

#wrapper {
   position: relative;
   max-width: 775px;
   margin: 1rem auto;
   border: 2px solid #EE7C2A;
   background: #fff;
   overflow: hidden;
}

:is(h1, h2, strong) {
   font-weight: 500;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

p {
   padding-bottom: 1rem;
}

h1,
h2 {
   color: #EE7C2A;
}

h1 {
   margin: 2rem 0 1.5rem;
   font-size: 1.8em;
   line-height: 1.1;
   text-transform: uppercase;
}

h1 span {
   font-size: 1rem;
   text-transform: none;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
}

ul {
   padding: 0 0 1rem;
   list-style: none;
}

li {
   padding: 0 0 0 0.7rem;
   position: relative;
}

li:before {
   content: "\2022";
   font-size: 1rem;
   position: absolute;
   left: 0;
   top: 0;
}

img {
   max-width: 100%;
   height: auto;
   vertical-align: middle;
}

main {
   display: flex;
   justify-content: space-between;
   position: relative;
}

.pb {
   padding-bottom: 2rem;
}

header {
   padding: 1rem 1.25rem 0;
   background: #E6E7E9;
   width: 220px;
   display: flex;
   flex-direction: column;
   gap: 6rem;
}

article {
   padding: 1rem 1.25rem;
   flex: 1;
}

article>p:first-of-type {
   text-align: justify;
}

.logo {
   margin: 40px 3rem 0.5rem;
}

.logo figure {
   display: flex;
   justify-content: center;
}

.absolute {
   position: absolute;
   left: 1.25rem;
   bottom: 0.25rem;
   width: 187px;
}

footer {
   padding: 0.75rem 1rem 0.625rem;
   background: #EE7C2A;
}

footer p {
   padding: 0;
   text-align: center;
}

figure {
   margin: 0;
}

@media only screen and (max-width:774px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   :is(p, li),
   article>p:first-of-type {
      text-align: left;
      hyphens: auto;
   }

   p a,
   span {
      display: inline-block;
   }

   br {
      display: none;
   }
}

@media only screen and (max-width:700px) {
   main {
      flex-direction: column;
   }

   header {
      width: auto;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      gap: 2rem;
   }

   .absolute {
      position: static;
      width: auto;
   }

   br {
      display: none;
   }
}

@media only screen and (max-width:480px) {
   .logo {
      margin-inline: 0;
   }

   article {
      padding: 1rem;
   }
}
