  @font-face {
    font-family: FoundersGrotesk;
    src: url('fonts/FoundersGroteskWeb-Bold.eot');
    src: url('fonts/FoundersGroteskWeb-Bold.woff') format('woff'),
      url('css/fonts/FoundersGroteskWeb-Bold.woff2') format('woff2');
    font-weight: bold;
  }

  @font-face {
    font-family: FoundersGrotesk_Cnd;
    src: url('fonts/FoundersGrotXCondWeb-Bold.eot');
    src: url('fonts/FoundersGrotXCondWeb-Bold.woff') format('woff'),
      url('fonts/FoundersGrotXCondWeb-Bold.woff2') format('woff2');
    font-weight: bold;
  }

  @font-face {
    font-family: FoundersGrotesk;
    src: url('fonts/FoundersGroteskWeb-Regular.eot');
    src: url('fonts/FoundersGroteskWeb-Regular.woff') format('woff'),
      url('fonts/FoundersGroteskWeb-Regular.woff2') format('woff2');
    font-weight: normal;
  }


/* Breakpoints -----*/

/* Small screens (default) */
html { 
  font-family: "FoundersGrotesk";
  font-size: 20px; 
  line-height: 27px;
}

p {
  /*margin-bottom: 29px;*/
}


.wrapper {
  margin: 0 auto;
  /*padding: 0 20px;*/
}

/* Larger (768px) */
@media (min-width: 768px) { 
  html { 
    font-size: 22px; 
    line-height: 31.25px; 
  }

  p {
    /*margin-bottom: 31.9px;*/
  }

  .wrapper {
    /*width: 960px;*/
    /*padding: 0px 140px;*/
  }
}


/* Box model -----*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* Clearfix -----*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row {
  *zoom: 1;
}



/*GRID*/

.container {
  margin: 0 auto;
  max-width: 720px;
  padding: 0 20px;
}

  .container.container--wide {
    max-width: 960px;
  }

@media (min-width: 48rem) { 
  .container {
    /*padding: 0 140px;*/
  }

  .container.container--wide {
    max-width: 960px;
  }
}

/*@media (min-width: 40rem) {*/
  .column {
    float: left;
    min-height: 1px;
  }
  
  .column.full { width: 100%; }
  .column.seven-eighths { width: 87.5%; }
  .column.three-fourths { width: 75%; }
  .column.two-thirds { width: 66.667%; }
  .column.five-eighths { width: 62.5%; }
  .column.half { width: 50%; }
  .column.seven-sixteenths {width: 43.75%;}
  .column.three-eighths {width: 37.5%;}
  .column.third { width: 33.3%; }
  .column.fourth { width: 25%; }
  .column.sixth { width: 16.667%; }
  .column.eighth {width: 12.5%;}
  .column.flow-opposite { float: right; }  
/*}*/


