/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*#262626;*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
/* line 91, ../scss/partials/_variables.scss */
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
/* line 153, ../scss/partials/_variables.scss */
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
/* line 215, ../scss/partials/_variables.scss */
.slideUpSlow {
  animation-name: slideUpSlow;
  -webkit-animation-name: slideUpSlow;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUpSlow {
  0% {
    opacity: 0.3;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUpSlow {
  0% {
    opacity: 0.3;
    -webkit-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
/* line 260, ../scss/partials/_variables.scss */
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
/* line 322, ../scss/partials/_variables.scss */
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: .5s;
  -webkit-animation-duration: .5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
/* line 366, ../scss/partials/_variables.scss */
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
/* line 446, ../scss/partials/_variables.scss */
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
/* line 495, ../scss/partials/_variables.scss */
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: css animation ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.99);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.99);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
/* line 554, ../scss/partials/_variables.scss */
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
/* line 610, ../scss/partials/_variables.scss */
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
/* line 691, ../scss/partials/_variables.scss */
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
/* line 764, ../scss/partials/_variables.scss */
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
/* line 828, ../scss/partials/_variables.scss */
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
/* line 875, ../scss/partials/_variables.scss */
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
/* line 916, ../scss/partials/_variables.scss */
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
/* line 957, ../scss/partials/_variables.scss */
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
/* line 1026, ../scss/partials/_variables.scss */
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
/* line 1095, ../scss/partials/_variables.scss */
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
/* line 1164, ../scss/partials/_variables.scss */
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src:url('../fonts/font-name.eot');
      src:url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
            url('../fonts/font-name.woff') format('woff'),
            url('../fonts/font-name.ttf') format('truetype'),
            url('../fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'corisanderegularregular';
  src: url("../fonts/corisanderegular-webfont.eot");
  src: url("../fonts/corisanderegular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/corisanderegular-webfont.woff2") format("woff2"), url("../fonts/corisanderegular-webfont.woff") format("woff"), url("../fonts/corisanderegular-webfont.ttf") format("truetype"), url("../fonts/corisanderegular-webfont.svg#corisanderegularregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'dinregular';
  src: url("../fonts/din-regular-webfont-webfont.eot");
  src: url("../fonts/din-regular-webfont-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/din-regular-webfont-webfont.woff2") format("woff2"), url("../fonts/din-regular-webfont-webfont.woff") format("woff"), url("../fonts/din-regular-webfont-webfont.ttf") format("truetype"), url("../fonts/din-regular-webfont-webfont.svg#dinregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'dinlight';
  src: url("../fonts/din-light-webfont-webfont.eot");
  src: url("../fonts/din-light-webfont-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/din-light-webfont-webfont.woff2") format("woff2"), url("../fonts/din-light-webfont-webfont.woff") format("woff"), url("../fonts/din-light-webfont-webfont.ttf") format("truetype"), url("../fonts/din-light-webfont-webfont.svg#dinlight") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/* line 102, ../scss/partials/_typography.scss */
.font-bold {
  font-weight: 700;
}

/* line 106, ../scss/partials/_typography.scss */
.font-bold {
  font-weight: 700;
}

/* line 110, ../scss/partials/_typography.scss */
.font-normal {
  font-family: "dinregular";
  font-weight: normal;
}

/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 122, ../scss/partials/_typography.scss */
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 36, ../scss/partials/_grid.scss */
.last-col {
  float: right;
  /* padding-right: 0 !important; */
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 50, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 100%;
  }

  /* line 56, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 50%;
  }

  /* line 61, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 33.33%;
  }

  /* line 66, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 66.66%;
  }

  /* line 71, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 25%;
  }

  /* line 76, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 87, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 100%;
  }

  /* line 93, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 50%;
  }

  /* line 98, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 33.33%;
  }

  /* line 103, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 66.66%;
  }

  /* line 108, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 25%;
  }

  /* line 113, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 75%;
  }

  /* line 118, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 20%;
  }

  /* line 123, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 40%;
  }

  /* line 128, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 60%;
  }

  /* line 133, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 143, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 100%;
  }

  /* line 149, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 50%;
  }

  /* line 154, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 33.33%;
  }

  /* line 159, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 66.66%;
  }

  /* line 164, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 25%;
  }

  /* line 169, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 75%;
  }

  /* line 174, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 20%;
  }

  /* line 179, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 40%;
  }

  /* line 184, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 60%;
  }

  /* line 189, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 80%;
  }

  /* line 194, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 16.6666666667%;
  }

  /* line 199, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 14.2857142857%;
  }

  /* line 204, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 28.5714286%;
  }

  /* line 209, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 42.8571429%;
  }

  /* line 214, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 57.1428572%;
  }

  /* line 219, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 71.4285715%;
  }

  /* line 224, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 85.7142857%;
  }

  /* line 229, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 12.5%;
  }

  /* line 234, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 11.1111111111%;
  }

  /* line 239, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 10%;
  }

  /* line 244, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 9.09090909091%;
  }

  /* line 249, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    /*  padding-right: 0.75em;
      padding-right: 2.5em;*/
    padding: 2.5em;
    width: 8.33%;
  }
}
/* ------------------------------------
Gravity Forms Bootstrap
Help from https://gist.githubusercontent.com/DevinWalker/7110951/raw/8f6863c52df3cc0d627bb1e18e9cb832b5ecf395/gravity-forms_bootstrap
---------------------------------------*/
/* line 6, ../scss/modules/_gravity_forms.scss */
.gform_wrapper ul {
  padding-left: 0;
  list-style: none;
}

/* line 8, ../scss/modules/_gravity_forms.scss */
.gform_wrapper li {
  margin-bottom: 15px;
}

/* line 10, ../scss/modules/_gravity_forms.scss */
.gform_wrapper form {
  margin-bottom: 0;
}

/* line 12, ../scss/modules/_gravity_forms.scss */
.gform_wrapper .gfield_required {
  padding-left: 1px;
  color: #b94a48;
}

/* line 14, ../scss/modules/_gravity_forms.scss */
.ginput_container input[type="text"], .ginput_container select, .ginput_container textarea {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 15, ../scss/modules/_gravity_forms.scss */
.ginput_container input[type="checkbox"] {
  margin-right: 5px;
}

/* line 18, ../scss/modules/_gravity_forms.scss */
.ginput_container input:-moz-placeholder, .ginput_container select:-moz-placeholder, .ginput_container textarea:-moz-placeholder {
  color: #999;
}

/* line 21, ../scss/modules/_gravity_forms.scss */
.ginput_container input::-moz-placeholder, .ginput_container select::-moz-placeholder, .ginput_container textarea::-moz-placeholder {
  color: #999;
}

/* line 24, ../scss/modules/_gravity_forms.scss */
.ginput_container input:-ms-input-placeholder, .ginput_container select:-ms-input-placeholder, .ginput_container textarea:-ms-input-placeholder {
  color: #999;
}

/* line 27, ../scss/modules/_gravity_forms.scss */
.ginput_container input::-webkit-input-placeholder, .ginput_container select::-webkit-input-placeholder, .ginput_container textarea::-webkit-input-placeholder {
  color: #999;
}

/* line 31, ../scss/modules/_gravity_forms.scss */
.ginput_container input:focus, .ginput_container select:focus, .ginput_container textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 33, ../scss/modules/_gravity_forms.scss */
.ginput_container input[disabled], .ginput_container select[disabled], .ginput_container textarea[disabled], .ginput_container input[readonly], .ginput_container select[readonly], .ginput_container textarea[readonly], fieldset[disabled] .ginput_container input, fieldset[disabled] .ginput_container select, fieldset[disabled] .ginput_container textarea {
  cursor: not-allowed;
  background-color: #eee;
}

/* line 35, ../scss/modules/_gravity_forms.scss */
textarea.ginput_container input, textarea.ginput_container select, textarea.ginput_container textarea {
  height: auto;
}

/* line 37, ../scss/modules/_gravity_forms.scss */
.ginput_container textarea {
  height: auto;
}

/* line 39, ../scss/modules/_gravity_forms.scss */
.gform_button {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: #428bca;
  border: 1px solid transparent;
  border-color: #357ebd;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* line 41, ../scss/modules/_gravity_forms.scss */
.gform_button:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 43, ../scss/modules/_gravity_forms.scss */
.gform_button:hover, .gform_button:focus {
  color: #333;
  text-decoration: none;
}

/* line 45, ../scss/modules/_gravity_forms.scss */
.gform_button:active, .gform_button.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 47, ../scss/modules/_gravity_forms.scss */
.gform_button.disabled, .gform_button[disabled], fieldset[disabled] .gform_button {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 49, ../scss/modules/_gravity_forms.scss */
.gform_button:hover, .gform_button:focus, .gform_button:active, .gform_button.active, .open .dropdown-toggle.gform_button {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}

/* line 51, ../scss/modules/_gravity_forms.scss */
.gform_button:active, .gform_button.active, .open .dropdown-toggle.gform_button {
  background-image: none;
}

/* line 53, ../scss/modules/_gravity_forms.scss */
.gform_button.disabled, .gform_button[disabled], fieldset[disabled] .gform_button, .gform_button.disabled:hover, .gform_button[disabled]:hover, fieldset[disabled] .gform_button:hover, .gform_button.disabled:focus, .gform_button[disabled]:focus, fieldset[disabled] .gform_button:focus, .gform_button.disabled:active, .gform_button[disabled]:active, fieldset[disabled] .gform_button:active, .gform_button.disabled.active, .gform_button[disabled].active, fieldset[disabled] .gform_button.active {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 55, ../scss/modules/_gravity_forms.scss */
.gform_wrapper .gfield_error .gfield_label {
  color: #b94a48;
}

/* line 57, ../scss/modules/_gravity_forms.scss */
.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error select, .gform_wrapper .gfield_error textarea {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* line 59, ../scss/modules/_gravity_forms.scss */
.gform_wrapper .gfield_error input:focus, .gform_wrapper .gfield_error select:focus, .gform_wrapper .gfield_error textarea:focus {
  border-color: #b94a48;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(185, 74, 72, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(185, 74, 72, 0.6);
}

/* line 61, ../scss/modules/_gravity_forms.scss */
.validation_error {
  padding: 15px;
  margin-bottom: 20px;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid transparent;
  border-color: #eed3d7;
  border-radius: 4px;
}

/* line 63, ../scss/modules/_gravity_forms.scss */
.validation_error h4 {
  margin-top: 0;
  color: inherit;
}

/* line 65, ../scss/modules/_gravity_forms.scss */
.validation_error .alert-link {
  font-weight: bold;
}

/* line 67, ../scss/modules/_gravity_forms.scss */
.validation_error > p, .validation_error > ul {
  margin-bottom: 0;
}

/* line 69, ../scss/modules/_gravity_forms.scss */
.validation_error > p + p {
  margin-top: 5px;
}

/* line 71, ../scss/modules/_gravity_forms.scss */
.validation_error hr {
  border-top-color: #e6c1c7;
}

/* line 73, ../scss/modules/_gravity_forms.scss */
.validation_error .alert-link {
  color: #953b39;
}

/* line 75, ../scss/modules/_gravity_forms.scss */
#gforms_confirmation_message {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 77, ../scss/modules/_gravity_forms.scss */
#gforms_confirmation_message h4 {
  margin-top: 0;
  color: inherit;
}

/* line 79, ../scss/modules/_gravity_forms.scss */
#gforms_confirmation_message .alert-link {
  font-weight: bold;
}

/* line 81, ../scss/modules/_gravity_forms.scss */
#gforms_confirmation_message > p, #gforms_confirmation_message > ul {
  margin-bottom: 0;
}

/* line 83, ../scss/modules/_gravity_forms.scss */
#gforms_confirmation_message > p + p {
  margin-top: 5px;
}

/* line 85, ../scss/modules/_gravity_forms.scss */
.gfield_label {
  margin-bottom: 5px;
  font-size: 14px;
}

/* line 87, ../scss/modules/_gravity_forms.scss */
.ginput_complex > span > label {
  font-size: 11px;
}

/* line 89, ../scss/modules/_gravity_forms.scss */
.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
01. GENERAL STYLES
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  width: 100%;
  height: 100%;
  font-family: 'Karla';
  color: #fff;
  font-size: 26px;
  line-height: 38px;
  font-weight: 100;
  background-color: #1b1b1c;
  -webkit-font-smoothing: antialiased;
}

/* line 31, ../scss/breakpoints/_base.scss */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

/* line 37, ../scss/breakpoints/_base.scss */
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 45, ../scss/breakpoints/_base.scss */
html {
  width: 100%;
  height: 100%;
}

/* line 50, ../scss/breakpoints/_base.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 56, ../scss/breakpoints/_base.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/********************
WORDPRESS BODY CLASSES 
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 109, ../scss/breakpoints/_base.scss */
#container {
  max-width: 1024px;
  margin: 0 auto;
}

/* line 114, ../scss/breakpoints/_base.scss */
.wrap {
  width: 100%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
/* line 123, ../scss/breakpoints/_base.scss */
a, a:visited {
  text-decoration: none;
  color: #BB6742;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid  transparent;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 131, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #BB6742;
}
/* line 146, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/* line 156, ../scss/breakpoints/_base.scss */
.light {
  font-weight: 100;
}

/* line 159, ../scss/breakpoints/_base.scss */
.text-center p {
  text-align: center;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 164, ../scss/breakpoints/_base.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 6px 0 6px;
  text-transform: uppercase;
  font-family: "Oswald", "dinlight", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
}

/* line 172, ../scss/breakpoints/_base.scss */
h2 {
  margin: 18px 0 6px;
}

/* line 176, ../scss/breakpoints/_base.scss */
.intro .intro-body {
  padding-top: 30px  !important;
}

/* line 180, ../scss/breakpoints/_base.scss */
h1.hero {
  font-size: 100px !important;
  margin-bottom: 1em !important;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 20px;
  background: rgba(9, 9, 16, 0.8);
  font-weight: 600;
  clear: both;
}

@media (min-width: 768px) {
  /* line 194, ../scss/breakpoints/_base.scss */
  h1.hero {
    margin-bottom: 2.5em  !important;
    font-size: 200px  !important;
  }
}
@media (min-width: 480px) {
  /* line 201, ../scss/breakpoints/_base.scss */
  h1.hero {
    margin-bottom: 2.5em;
    font-size: 150px !important;
  }
}
/* line 207, ../scss/breakpoints/_base.scss */
p {
  margin: 6px 0 6px 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}

/* line 214, ../scss/breakpoints/_base.scss */
p, div {
  font-weight: 100;
}

/* line 219, ../scss/breakpoints/_base.scss */
.main_content-section {
  margin: 5em 0px;
}
/* line 221, ../scss/breakpoints/_base.scss */
.main_content-section .col-lg-12 {
  max-width: 1024px !important;
}

/* line 226, ../scss/breakpoints/_base.scss */
.main_content-section .col-lg-12.no-topp {
  max-width: 1024px;
  padding-top: 0;
}

/* line 230, ../scss/breakpoints/_base.scss */
.col-lg-12 {
  clear: both;
}

@media (min-width: 767px) {
  /* line 234, ../scss/breakpoints/_base.scss */
  p {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.6;
  }
}
/*********************
 STYLES
*********************/
/* line 245, ../scss/breakpoints/_base.scss */
.navbar-custom {
  min-height: 70px;
  font-size: 15px;
  margin-bottom: 0;
 /* border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    background-color: $blacker; */
}
/* line 255, ../scss/breakpoints/_base.scss */
.navbar-custom .nav {
  margin-top: 8px;
}
/* line 258, ../scss/breakpoints/_base.scss */
.navbar-custom .navbar-brand {
  font-weight: 700;
  width: 230px;
}
/* line 262, ../scss/breakpoints/_base.scss */
.navbar-custom .navbar-brand img {
  max-width: 100%;
  height: auto;
}
/* line 267, ../scss/breakpoints/_base.scss */
.navbar-custom .navbar-brand:focus {
  outline: 0;
}
/* line 270, ../scss/breakpoints/_base.scss */
.navbar-custom .navbar-brand .navbar-toggle {
  padding: 4px 6px;
  font-size: 16px;
  color: #fff;
}
/* line 274, ../scss/breakpoints/_base.scss */
.navbar-custom .navbar-brand .navbar-toggle:focus, .navbar-custom .navbar-brand .navbar-toggle:active {
  outline: 0;
}
/* line 281, ../scss/breakpoints/_base.scss */
.navbar-custom a {
  color: #fff;
  border-bottom: 1px solid transparent;
  text-transform: uppercase;
}
/* line 286, ../scss/breakpoints/_base.scss */
.navbar-custom a:hover, .navbar-custom a:focus {
  color: #fff;
  border-bottom: 1px solid #fff;
  background: 0 0 !important;
  /* test */
}
/* line 293, ../scss/breakpoints/_base.scss */
.navbar-custom a.navbar-brand {
  border: 0px;
  width: 275px;
  height: 54px;
  padding: 0;
  background: url(../images/logo.png) 0 0 no-repeat;
}
/* line 301, ../scss/breakpoints/_base.scss */
.navbar-custom a.navbar-brand:hover, .navbar-custom a.navbar-brand:focus, .navbar-custom a.navbar-brand.active {
  background: url(../images/logo.png) 0 0 no-repeat !important;
}
/* line 311, ../scss/breakpoints/_base.scss */
.navbar-custom .nav li.active {
  outline: none;
}
/* line 313, ../scss/breakpoints/_base.scss */
.navbar-custom .nav li.active a {
  border-bottom: 1px solid #BB6742;
}
/* line 319, ../scss/breakpoints/_base.scss */
.navbar-custom .nav li a:hover, .navbar-custom .nav li a:focus, .navbar-custom .nav li a.active {
  outline: 0;
}

/* line 325, ../scss/breakpoints/_base.scss */
.navbar-fixed-top {
  background: transparent;
}
/* line 328, ../scss/breakpoints/_base.scss */
.navbar-fixed-top a.navbar-brand {
  width: 153px;
  height: 30px;
  margin: 20px 0 10px 10px;
  background: url(../images/logo_mobile.png) 0 0 no-repeat !important;
}
/* line 335, ../scss/breakpoints/_base.scss */
.navbar-fixed-top a.navbar-brand:hover, .navbar-fixed-top a.navbar-brand:focus, .navbar-fixed-top a.navbar-brand.active {
  background: url(../images/logo_mobile.png) 0 0 no-repeat !important;
}

/* line 341, ../scss/breakpoints/_base.scss */
.navbar-custom.top-nav-collapse {
  background-color: #000;
}

@media (min-width: 767px) {
  /* line 347, ../scss/breakpoints/_base.scss */
  .navbar {
    min-height: 70px;
    padding: 20px 0;
    border-bottom: 0;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  /* line 357, ../scss/breakpoints/_base.scss */
  .top-nav-collapse {
    background-color: #fff;
  }
  /* line 360, ../scss/breakpoints/_base.scss */
  .top-nav-collapse a {
    color: #737373;
    border-bottom: 1px solid transparent;
  }
  /* line 365, ../scss/breakpoints/_base.scss */
  .top-nav-collapse .nav li.active {
    outline: none;
  }
  /* line 372, ../scss/breakpoints/_base.scss */
  .top-nav-collapse .nav li a:hover, .top-nav-collapse .nav li a:focus, .top-nav-collapse .nav li a.active {
    color: #BB6742;
    background-color: transparent;
  }

  /* line 379, ../scss/breakpoints/_base.scss */
  .navbar-custom.top-nav-collapse {
    background-color: #000;
    /* border-bottom: 1px solid lighten($color-brown, 20); */
  }
  /* line 385, ../scss/breakpoints/_base.scss */
  .navbar-custom.top-nav-collapse .navbar-brand {
    /* background:url(../images/logo.png) 0 0 no-repeat; */
  }
  /* line 391, ../scss/breakpoints/_base.scss */
  .navbar-custom.top-nav-collapse.color-white {
    background-color: #fff;
  }

  /* line 396, ../scss/breakpoints/_base.scss */
  .navbar-fixed-top.top-nav-collapse a.navbar-brand {
    background: url(../images/logo.png) 0 0 no-repeat !important;
  }
  /* line 399, ../scss/breakpoints/_base.scss */
  .navbar-fixed-top.top-nav-collapse a.navbar-brand:hover, .navbar-fixed-top.top-nav-collapse a.navbar-brand:focus, .navbar-fixed-top.top-nav-collapse a.navbar-brand.active {
    background: url(../images/logo.png) 0 0 no-repeat !important;
  }

  /* line 405, ../scss/breakpoints/_base.scss */
  .navbar-fixed-top a.navbar-brand {
    width: 275px;
    height: 54px;
    margin: 0px;
    background: url(../images/logo_white.png) 0 0 no-repeat !important;
  }
  /* line 410, ../scss/breakpoints/_base.scss */
  .navbar-fixed-top a.navbar-brand:hover, .navbar-fixed-top a.navbar-brand:focus, .navbar-fixed-top a.navbar-brand.active {
    background: url(../images/logo.png) 0 0 no-repeat !important;
  }
}
/* line 419, ../scss/breakpoints/_base.scss */
.intro {
  display: table;
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background: url(../images/intro-bg.jpg) no-repeat bottom center scroll;
  background-color: #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
/* line 432, ../scss/breakpoints/_base.scss */
.intro .intro-body {
  display: table-cell;
  vertical-align: bottom;
  padding: 260px 0 20px;
}
/* line 437, ../scss/breakpoints/_base.scss */
.intro .intro-body .brand-heading {
  font-size: 40px;
}
/* line 440, ../scss/breakpoints/_base.scss */
.intro .intro-body .intro-text {
  font-size: 18px;
}

@media (min-width: 767px) {
  /* line 447, ../scss/breakpoints/_base.scss */
  .intro {
    height: 100%;
    padding: 0;
  }
  /* line 450, ../scss/breakpoints/_base.scss */
  .intro .intro-body {
    padding: 0 0 60px 0;
  }
  /* line 452, ../scss/breakpoints/_base.scss */
  .intro .intro-body .brand-heading {
    font-size: 100px;
  }
  /* line 455, ../scss/breakpoints/_base.scss */
  .intro .intro-body .intro-text {
    font-size: 25px;
  }
}
/* line 461, ../scss/breakpoints/_base.scss */
.awards {
  margin: 0 auto;
  border-top: 1px solid #ffffff;
  margin-bottom: 30px;
}

/* line 465, ../scss/breakpoints/_base.scss */
.awards div.award {
  border-bottom: 1px solid #ffffff;
  position: relative;
  padding: 2px 0 6px;
}

/* line 469, ../scss/breakpoints/_base.scss */
.awards div.award label {
  position: absolute;
  top: 0px;
  left: 0px;
  line-height: 1.2em;
  display: block;
}

/* line 475, ../scss/breakpoints/_base.scss */
.awards div.award label.published {
  left: 80px;
}

/* line 479, ../scss/breakpoints/_base.scss */
.awards div.award label {
  position: relative;
  border: none;
  display: block;
}

@media (min-width: 480px) {
  /* line 488, ../scss/breakpoints/_base.scss */
  .awards div.award label.award {
    margin-left: 260px;
  }
}
/* line 492, ../scss/breakpoints/_base.scss */
.content-section {
  padding-top: 0px;
}

/* line 496, ../scss/breakpoints/_base.scss */
.main_content-section {
  /* end .wp-caption */
}
/* line 497, ../scss/breakpoints/_base.scss */
.main_content-section img {
  background: #000;
}
/* line 500, ../scss/breakpoints/_base.scss */
.main_content-section .col-lg-12 {
  padding: 0;
  /* padding:14px  42px 56px; */
}
/* line 505, ../scss/breakpoints/_base.scss */
.main_content-section a {
  position: relative;
}
/* line 508, ../scss/breakpoints/_base.scss */
.main_content-section span.roll {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  left: 0;
  z-index: 100;
  background-color: moccasin;
  position: absolute;
  top: 0;
}
/* line 520, ../scss/breakpoints/_base.scss */
.main_content-section .wp-caption {
  max-width: 100%;
  background: #000;
  margin-bottom: 15px;
  /* images inside wp-caption */
}
/* line 526, ../scss/breakpoints/_base.scss */
.main_content-section .wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 532, ../scss/breakpoints/_base.scss */
.main_content-section .wp-caption p.wp-caption-text {
  color: #C8BDAC;
  padding: 12px 56px 24px;
  text-align: left;
}

/* line 543, ../scss/breakpoints/_base.scss */
#slider, #about {
  padding-top: 0px;
}

/* line 548, ../scss/breakpoints/_base.scss */
#slider .col-lg-12 {
  padding-top: 0;
}

/* line 553, ../scss/breakpoints/_base.scss */
.admin-bar #slideshow {
  margin-top: 32px;
}

/* line 557, ../scss/breakpoints/_base.scss */
.no_pg {
  padding: 0 !important;
  margin: 0  !important;
}

/* line 561, ../scss/breakpoints/_base.scss */
.no-gutter {
  padding-right: 0;
  padding-left: 0;
}

/* line 565, ../scss/breakpoints/_base.scss */
img.alignright {
  float: right;
  margin: 0 0 3em 2em;
}

/* line 566, ../scss/breakpoints/_base.scss */
img.alignleft {
  float: left;
  margin: 0 2.5em 3em 0;
}

/* line 567, ../scss/breakpoints/_base.scss */
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 568, ../scss/breakpoints/_base.scss */
.alignright {
  float: right;
}

/* line 569, ../scss/breakpoints/_base.scss */
.alignleft {
  float: left;
}

/* line 570, ../scss/breakpoints/_base.scss */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 572, ../scss/breakpoints/_base.scss */
.download-section {
  width: 100%;
  padding: 12px 0 12px 0;
}
/* line 575, ../scss/breakpoints/_base.scss */
.download-section .img-responsive {
  margin: 0 auto;
}

/* line 580, ../scss/breakpoints/_base.scss */
.contact-section {
  width: 100%;
  padding: 12px 0;
  /*  color: #fff;
   background-color: $blacker; */
}

/* line 588, ../scss/breakpoints/_base.scss */
#contact .contact-section {
  padding: 0;
}

/* line 593, ../scss/breakpoints/_base.scss */
#map {
  width: 100%;
  height: 200px;
  margin-top: 100px;
}

@media (min-width: 767px) {
  /* line 603, ../scss/breakpoints/_base.scss */
  .main_content-section .col-lg-12 {
    padding: 30px  42px 50px;
  }
}
/*
.btn {
  text-transform: uppercase;
font-weight:700;
}

.btn-default {
  border: 3px solid $white;
  color: $white;
  background-color: transparent;
  &:hover, &:focus {
   
    outline: 0;
    color: #000;
  }
}
*/
/* line 629, ../scss/breakpoints/_base.scss */
ul.banner-social-buttons {
  margin-top: 0;
}

@media (max-width: 1199px) {
  /* line 634, ../scss/breakpoints/_base.scss */
  ul.banner-social-buttons {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  /* line 640, ../scss/breakpoints/_base.scss */
  ul.banner-social-buttons li {
    display: block;
    margin-bottom: 20px;
    padding: 0;
  }
  /* line 644, ../scss/breakpoints/_base.scss */
  ul.banner-social-buttons li:last-child {
    margin-bottom: 0;
  }
}
/* line 649, ../scss/breakpoints/_base.scss */
.gform_wrapper {
  color: #181818;
  font-size: 15px;
}

/* line 653, ../scss/breakpoints/_base.scss */
.btn-circle, .btn-circle:visited {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  padding: 7px 16px;
  border-radius: 35px;
  font-size: 40px;
  color: #fff;
  background: #1b1b1c;
}

/* line 665, ../scss/breakpoints/_base.scss */
.btn-circle:hover,
.btn-circle:focus {
  outline: 0;
  color: #fff;
  background: 0 0;
}

/* line 672, ../scss/breakpoints/_base.scss */
.btn-circle i.animated {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
}

/* line 679, ../scss/breakpoints/_base.scss */
.btn-circle:hover i.animated {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
}

/* line 689, ../scss/breakpoints/_base.scss */
footer {
  padding: 100px 0 50px;
}
/* line 691, ../scss/breakpoints/_base.scss */
footer p {
  font-size: 14px;
  margin: 0;
}

/* line 697, ../scss/breakpoints/_base.scss */
::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
}

/* line 703, ../scss/breakpoints/_base.scss */
::selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2);
}

/* line 708, ../scss/breakpoints/_base.scss */
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
  font-weight: normal !important;
}

/* line 711, ../scss/breakpoints/_base.scss */
.gform_button {
  background: #000 !important;
  border: 1px solid #000 !important;
}

/* line 717, ../scss/breakpoints/_base.scss */
img::selection, img::-moz-selection {
  background: 0 0;
}

/* line 723, ../scss/breakpoints/_base.scss */
body {
  webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

/*# sourceMappingURL=style.css.map */
