/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */

    /**
    * Let’s make the box model all nice, shall we...?
    */
*{
      &,
      &:before,
      &:after{
          -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
          -moz-box-sizing: border-box;    /* Firefox, other Gecko */
          box-sizing: border-box;         /* Opera/IE 8+ */
      }
  }

/**
 * The usual...
 */
h1,h2,h3,h4,h5,h6,
p,blockquote,pre,
dl,dd,ol,ul,
form,fieldset,legend,
table,th,td,caption,
hr{
    margin:0;
    padding:0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],dfn[title]{
    cursor:help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
u,ins{
    text-decoration:none;
}

/**
 * Apply faux underline via `border-bottom`.
 */
ins{
    border-bottom:1px solid;
}

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img{
    font-style:italic;
    max-width: 100%;
}

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option{
    cursor:pointer;
}
    .text-input:active,
    .text-input:focus,
    textarea:active,
    textarea:focus{
        cursor:text;
        outline:none;
    }

html{
    overflow-y:auto;
    min-height:100%;
    -webkit-font-smoothing: antialiased;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

input{
  -webkit-font-smoothing: antialiased;
}

html, body{
  height: 100%;
}

body{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background-color: #F3F3F3;
  color: #546979;
  font-weight: 400;
  margin: 0;
}

blockquote{
  margin: 0;
}


a{
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

a:focus{
  outline: none;
}
a:hover{
  opacity: 0.9;
  filter: alpha(opacity=90);
  text-decoration: underline;
}

ul{
  list-style: none;
} 

.cf:after{
  content:"";
  display:table;
  clear:both;
}

.wrapper{
  max-width: 960px;
  margin: 0 auto;
}

.media{
  display:block;
}

.media__img{
  float:left;
  margin-right:20px;
}

.media__body{
  overflow:hidden;
}

.header{
  background-color: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
  min-height: 56px;
  position: relative;
  top:0;
  width:100%;
}

.header__logo{
  padding-top: 10px;
}

h2{
  color: #35384E;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 15px;
}

.error-wrapper{
  margin-bottom: 100px;
  padding-top: 80px;
  text-align: center;
}

.error__img{
  margin-bottom: 30px;
}

.error__body p{
  margin-bottom: 10px;
}

.link-color{
  color: #5372DC;
}

.list-border{
  overflow: hidden; 
  border-top: 1px solid #CBCFD3;
  border-bottom: 1px solid #CBCFD3;
  margin-bottom: 30px;
}

.list-border li{
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 40px 30px;
  width: 33%;
}

.list-border li a:hover{text-decoration: none;}

.list-border li.middle{
  border-left: 1px solid #CBCFD3;
  border-right: 1px solid #CBCFD3;
}

.list-border li h2{
  color: #5372DC;
  font-weight: 300;
}

.footer{
  overflow: hidden;
  padding: 20px;
}

.footer__list{
  float: right;
}

.footer__list li{
  display: inline-block;
  border-right: 1px solid #CBCFD3;
  padding-right: 8px;
  margin-right: 10px;
}

.footer__list li:last-child{
  border-right: 0;
  padding-right: 0px;
  margin-right: 0px;
}

.footer__list li a{
  color: #5372DC;
}

@media only screen and (max-width: 850px){
  .wrapper{
    margin: 0 10px;
  }
  .error-wrapper{
    margin: 0 10px 50px; 
  }
  .list-border{
    border: 0;
    margin: 0 auto;
    width: 330px;
  }
  .list-border li{
    padding: 40px 20px;
    width: 100%;
  }

  .list-border li.middle{
    border: 0;
    border-top: 1px solid #CBCFD3;
    border-bottom: 1px solid #CBCFD3;
  }
  .footer{
    background: #FFF;
    text-align: center;
  }

  .footer__logo{
    text-align: center;
    margin-bottom: 10px;
  }

  .footer__list{
    float: none;
  }
}