/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

/* UNIVERSAL */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  font-family: 'Lato', Helvetica, sans-serif;
  line-height: 1.5;
}

/* ROOT FONT STYLES */


/* TYPOGRAPHY */

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container-fluid {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  overflow:hidden;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
  width: 96%;
}

 .col-md-1 {
  width: 4.33%;
}

 .col-md-2 {
  width: 12.66%;
}

 .col-md-3 {
  width: 21%;
}

 .col-md-4 {
  width: 29.33%;
}

 .col-md-5 {
  width: 37.66%;
}

 .col-md-6 {
  width: 46%;
}

 .col-md-7 {
  width: 54.33%;
}

 .col-md-8 {
  width: 62.66%;
}

 .col-md-9 {
  width: 71%;
}

 .col-md-10 {
  width: 79.33%;
}

 .col-md-11 {
  width: 87.66%;
}

 .col-md-12 {
  width: 96%;
}

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

.hidden-sm {
  display: none;
}


@media (max-width: 720px) {
  .col-sm-1 {
    width: 4.33%;
  }

  .col-sm-2 {
    width: 12.66%;
  }

  .col-sm-3 {
    width: 21%;
  }

  .col-sm-4 {
    width: 29.33%;
  }

  .col-sm-5 {
    width: 37.66%;
  }

  .col-sm-6 {
    width: 46%;
  }

  .col-sm-7 {
    width: 54.33%;
  }

  .col-sm-8 {
    width: 62.66%;
  }

  .col-sm-9 {
    width: 71%;
  }

  .col-sm-10 {
    width: 79.33%;
  }

  .col-sm-11 {
    width: 87.66%;
  }

  .col-sm-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media (max-width: 540px) {
  .col-xs-1 {
    width: 4.33%;
  }

  .col-xs-2 {
    width: 12.66%;
  }

  .col-xs-3 {
    width: 21%;
  }

  .col-xs-4 {
    width: 29.33%;
  }

  .col-xs-5 {
    width: 37.66%;
  }

  .col-xs-6 {
    width: 46%;
  }

  .col-xs-7 {
    width: 54.33%;
  }

  .col-xs-8 {
    width: 62.66%;
  }

  .col-xs-9 {
    width: 71%;
  }

  .col-xs-10 {
    width: 79.33%;
  }

  .col-xs-11 {
    width: 87.66%;
  }

  .col-xs-12 {
    width: 96%;
  }

  .hidden-xs {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .container-fluid {
    width: 95%;
  }
}
