* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  background: #F5F5F5;
}

#wrapper {
  max-width: 938px;
  margin: 12px auto;
  border-top: 5px solid #2971B8;
  border-bottom: 5px solid #2971B8;
  background-color: #fff;
  overflow: hidden;
  color: #000;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 1px 10px #000;
}

#wrapper .logo img {
  vertical-align: bottom;
  padding-bottom: 12px;
}

#wrapper .article {
  margin-top: 20px;
  padding: 0 50px;
  background: url(background.jpg) no-repeat center center;
}

#wrapper .footer {
  padding: 13px 50px 10px;
  border-top: 2px solid #2971B8;
  background: #F6F6F6;
}

#wrapper p {
  padding-bottom: 16px;
}

#wrapper strong {
  font-weight: 700;
}

#wrapper h1 {
  padding-bottom: 16px;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  color: #2971B8;
  text-align: center;
}

#wrapper h2 {
  text-align: center;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 16px;
}

#wrapper h3 {
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #2971B8;
}

#wrapper a {
  color: #2971B8;
  text-decoration: none;
}

#wrapper ul {
  margin-bottom: 16px;
  list-style: none;
}

#wrapper ul li {
  padding-left: 20px;
  position: relative;
}

#wrapper ul li:before {
  content: '\2022';
  color: #2971B8;
  font-size: 14px;
  position: absolute;
  top: 1px;
  left: 0;
}

#wrapper img {
  max-width: 100%;
  height: auto;
}

#wrapper .center {
  text-align: center;
}

#wrapper .big {
  text-align: center;
  font-size: 18px;
}

@media all and (max-width: 937px) {
  #wrapper {
    margin: 8px;
    border: none;
  }

  #wrapper .article {
    padding: 16px 16px 0;
    margin: 0;
  }

  #wrapper .footer {
    padding: 16px 16px 0;
  }
}