@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #707172;
  font: 400 1em/1.43em Tahoma, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem 1rem;
}
p {
  padding-bottom: 0.8rem;
}
h1, h2 {
  font-weight: 400;
  font-family: Cambria, 'Times New Roman', serif;
  color: #134380;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.75em;
  line-height: 1.3em;
}
h1 span {
  font-size: 0.8em;
  display: block;
  line-height: 1.5;
}
h2 {
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: 1rem;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1.5rem;
  list-style: none;
}
li {
  padding-left: 0.8rem;
}
ul li:before {
  content: "\2022";
  font-size: 1em;
  float: left;
  margin: -1px 0 0 -0.8rem;
}
.logo {
  padding-bottom: 1.5rem;
}
main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
article {
  flex: 1;
}
.flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
footer {
  width: 405px;
}
footer p {
  font-size: 0.875em;
  line-height: 1.43em;
}
.button a {
  width: 100%;
  display: inline-block;
  padding: 0.75rem 1rem;
  color: #fff !important;
  background: #10A3E2;
}
.button img {
  vertical-align: -2px;
  margin-right: 5px;
}
figure {
  margin: 0 -1rem 1rem;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width:800px) {
  main {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
@media only screen and (max-width:480px) {
  footer {
    width: auto;
  }
  .flex {
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
  }
}