* {
  box-sizing: border-box;
}
body {
  min-width: 320px;
}
.wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 5px;
}
.wrapper:after {
  display: table;
  clear: both;
  content: '';
}
@media (min-width: 360px) {
  .wrapper {
    padding: 0 20px;
  }
}
.header {
  background-color: #1b1f22;
  padding: 5px;
  border-bottom: 2px solid #fea547;
  box-shadow: 0px 0px 20px 0px #000000;
  z-index: 10;
  position: relative;
}
.header .logo {
  float: left;
  clear: both;
}
.header .logo img {
  width: 90px;
}
.header .title {
  margin-left: 90px;
}
.header .title div {
  font-family: sans-serif;
  text-transform: uppercase;
  max-width: 210px;
  text-align: right;
}
.header .title div.first {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
}
.header .title div.second {
  color: #fea547;
  font-size: 32px;
  font-weight: normal;
}
.content {
  background-color: #f1f1f1;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0px 0px 20px 0px #1b1f22;
  color: #000000;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #fea547;
  border-radius: 0 0 5px 5px;
  border-top: none;
  width: 95%;
  margin-bottom: 25px;
  font-family: sans-serif;
}
.content h1 sup {
  font-size: 18px;
  font-weight: normal;
}
.content h1 + .small {
  margin-top: -20px;
}
.content .small {
  font-size: 14px;
}
.footer {
  margin-bottom: 20px;
}
.footer .copyright {
  font-size: 14px;
  font-family: sans-serif;
  text-align: center;
}
.card {
  position: relative;
  display: inline-block;
  max-width: 300px;
  min-height: 300px;
  padding: 10px;
  margin: 10px;
  vertical-align: top;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: 0px 0px 10px 2px #999999;
}
.card .icon img {
  width: 100px;
  margin: 0 auto;
}
.card .title h1 {
  font-size: 24px;
  font-family: sans-serif;
  font-weight: bold;
  margin: 10px 0;
}
.card .links {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.card .links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.card .links ul li {
  display: inline-block;
  vertical-align: middle;
}
.card .links ul li img {
  width: 40px;
  vertical-align: middle;
}
