
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,900');

* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#000;
   font-family:'Fira Sans', Helvetica, Arial, sans-serif;
   font-size:0.875em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:735px;
   min-width: 250px;
   margin: 1rem auto;
   border:solid 1px #000;
   background:#fff;
   overflow:hidden;
   padding:0rem 2.5rem 1rem;
}
a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom:1rem;
}
h1 {
   margin: 0rem 0rem 0rem;
   font-size:2.5em;
   line-height:1.1em;
   text-transform: uppercase;
}

h1 span {
   font-weight: 300;
}

h2 {
   font-size:1.3em;
   line-height:1.3em;
   color: #D10007;
   margin-bottom:0.5rem;
   padding-bottom: 0.25rem;
   border-bottom: 1px solid #D10007;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}
ul {
  padding: 0rem 0rem 1rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 0.75rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.0em;
  color: #D10007;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -0.75rem;
}

header {
   margin: 0 -2.5rem 0.625rem;
  position: relative;
}
header a{
   position: absolute;
   right: 6%;
   bottom: 8%;
   width: 24%;
   height: 27%;
}
article {
  padding:0rem;
}
article>p:first-of-type{
   text-transform: uppercase;
   font-size: 1.35em;
   line-height: 1.5;
   padding-bottom: 1.5rem;
}
article section{
   margin: 0 -2.5rem 1.25rem;
   padding: 0.5rem 2.5rem 0.5rem 6rem;
   color: #FFF;
   background: url('bg.jpg') no-repeat top left;
   height: 133px;
   text-align: center;
}
article aside{
   float: left;
   width: 48.5%;
}
article aside:last-of-type{
   float: right;
}
article aside:last-of-type p{
   padding-bottom: 1.125rem;
}
footer {
  padding:1.75rem 0 0rem;
  text-align: center;
}
footer p{
   border-top: 1px solid #D10007;
   padding-top: 1rem;
}
footer span{
   color: #D10007;
}
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:735px) {
   #wrapper {
      border:none;
      margin: 0 auto;
      padding: 0 1rem 1rem;
   }
   header{
      margin: 0 -1rem 0.625rem;
   }
   article section{
      margin: 0 -1rem;
      padding: 0.5rem 1rem;
      background: #D10007;
      height: auto;
   }
   article aside,
   article aside:last-of-type{
      float: none;
      width: 100%;
   }
  li br{
    display: none;
  }
   h1{
      font-size: 2em;
   }
   article > p:first-of-type{
      font-size: 1.2em;
   }
}
/* Tin developer */