@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 687px;
   border: solid 2px #31BBED;
   background: #fff;
}

p {
   padding-bottom: 0.3rem;
   text-align: justify;
}

.blue {
   color: #31BBED;
}

h1 {
   margin: 0rem 0rem 0.5rem;
   font-size: 1.45em;
   line-height: 1;
   color: #31BBED;
   text-align: center;
}

h1 small {
   font-size: 0.8em;
   display: block;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
   padding-bottom: 0.3rem;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0rem 0rem 0.5rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 16px;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -16px;
}

header {
   padding: 0;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.banner {
   width: 76%;
}

figure {
   display: flex;
   justify-content: center;
   margin-bottom: 0.2rem;
}

.logo {
   padding: 0.7rem 0.5rem 0;
}

article {
   padding: 0.3rem 1rem 0;
}

footer p {
   padding: 0.5rem 1rem;
   text-align: center;
   font-size: 1.250em;
   line-height: 1.2;
   background: #31BBED;
   color: #fff;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:686px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }

   .banner {
      width: 100%;
   }

   figure,header {
      display: block;
   }

   .logo {
      display: flex;
      justify-content: space-between;
   }
}
