html {
  position: relative;
  min-height: 100%;
}
* {
  @include box-sizing(border-box);
}

body {
  background-color: #fff;
  color: #222;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 15px;
  padding: 10px 50px 200px;
}


.title {
  font-size: 56px;
  text-align: center;
  padding: 20px 20px 20px 20px;
}


h2 {
  font-size: 36px;
}

nav {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  color: #888;
  display: block;
  margin: 22px 22px 22px 22px;
  overflow: hidden;
}

nav ul {
  text-align: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  list-style-type: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

nav > ul > li > a {
  color: #aaa;
  display: block;
  line-height: 56px;
  padding: 0 24px;
  text-decoration: none;
}


nav > ul > li:hover {
  background-color: rgb( 40, 44, 47 );
}

nav > ul > li:hover > a {
  color: rgb( 255, 255, 255 );
}

.grid {
  background: white;
  margin: 5% 10% 10% 10%;

  &:after {
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
  }
}

[class*='col-'] {
  float: left;
  .grid {
    background: white;
    margin: 0 0 20px 0;

    &:after {
      /* Or @extend clearfix */
      content: "";
      display: table;
      clear: both;
    }
  }

  padding-right:  20px;

  .grid &:last-of-type {
    padding-right: 0;
  }
}

[class*='col-'] ul li {
  padding: 0px 0px 0px 20px;
  display: inline-block;
  list-style-type: none;
}

.col-2-3 {
  width: 66.66%;
}
.col-1-3 {
  width: 33.33%;
}

.col-1-2 {
  /*text-align: center;*/
  width: 50%;
}

.col-1-8 {
  width: 12.4%
}

.col-7-8 {
  width: 87.5%
}

.module {
  font-size: 25px;
  padding: 20px;
}

.module p {
  font-size: 25px;
  margin: 2px 0 2px 0;
}

.module ul li {
  display: block;
  list-style-type: none;
  font-size: 25px;
  padding: 5px;
}

img {
  max-width: 90%;
  height: auto;
  width: auto;
}

a:link {
  color: #707070;
}

a:hover {
  color: #505050;
}

.col-7-8 a:visited {
  color: #404040
}
