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

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic);

/* UNIVERSAL */

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

/* ROOT FONT STYLES */


/* TYPOGRAPHY */

.h1 {
  font-size: 3.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;
  font-weight: 200;
  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;
}

.py-1{
  padding-top: 3% !important;
  padding-bottom: 3% !important;
}
.py-2{
  padding-top: 7% !important;
  padding-bottom: 7% !important;
}
.flex{
  display: flex;
}
.jf-end{
  justify-items: end;
}
.jf-center {
  justify-items: center;
}
.jf-center-center{
  justify-items: center;
  align-content: center;
}
.content-2center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-center-end{
  display: flex;
  justify-content: end;
  align-items: center;
}
.al-center {
  display: flex;
  align-items: center;
}
.between{
  display: flex;
  justify-content: space-between;
}
.baseline {
  display: flex;
  align-items: baseline;
}
.wrap{
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.item-center {
  padding: 15px;
  justify-items: center;
  display: grid;
}
.m-auto{
  margin: auto !important;
}
.m-0{
  margin: 0 !important;
}
.mr-0{
  margin-right: 0 !important;
}
.mb-0{
  margin-bottom: 0 !important;
}
.ml-0{
  margin-left: 0 !important;
}
.ml-w-0{
  margin-left: 0 !important;
}
.mr-w-0{
  margin-right: 0 !important;
}
.my-0{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.p-0{
  padding: 0 !important;
}
.py-0{
  padding-top: 0;
  padding-bottom: 0;
}
.pt{
  padding-top: 5% !important;
}
.pb{
  padding-bottom: 5% !important;
}
.pl-4{
  padding-left: 4rem;
}

.p-0{
  padding: 0;
}
.br{
  border-right: 1px solid#cccccc;
  margin-right: 0 !important;
}

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

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.container-full {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-sm {
  display: none;
}
.hidden {
  display: block;
}



@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

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

@media screen and (max-width: 768px) and (min-width: 300px) {
  
  .container {
    padding: 0 15px;
  }
  .h1 {
    font-size: 1.875rem;
  }
  .p{
    font-size: 14px !important;
  }
  .flex {
    display: flex;
    flex-wrap: wrap;
  }
  .reverse{
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .pl-4{
    padding-left: 0;
  }
  .jf-end {
      justify-items: normal;
  }
  .br{
    border-right: none;
    border-bottom: 1px solid#cccccc;
    padding-bottom: 15%;
  }

  .ml-w-0{
    margin-left: 10px !important;
  }
  .mr-w-0{
    margin-right: 10px !important;
  }
  .px-sm{
    padding-left: 15px;
    padding-right: 15px;
  }
  .hidden-sm {
    display: block;
  }
  .hidden {
    display: none !important;
  }
  .content-center-end{

    justify-content: center;

  }
  .jf-center {
    justify-items: left !important;
  }

}