/******************************************************************
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/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
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('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'AvenirLTStd35Light';
  src: url("../fonts/avenirltstd-light-webfont.eot");
  src: url("../fonts/avenirltstd-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/avenirltstd-light-webfont.woff") format("woff"), url("../fonts/avenirltstd-light-webfont.ttf") format("truetype"), url("../fonts/avenirltstd-light-webfont.svg#AvenirLTStd35Light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirLTStd45Book';
  src: url("../fonts/avenirltstd-book-webfont.eot");
  src: url("../fonts/avenirltstd-book-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/avenirltstd-book-webfont.woff") format("woff"), url("../fonts/avenirltstd-book-webfont.ttf") format("truetype"), url("../fonts/avenirltstd-book-webfont.svg#AvenirLTStd45Book") 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.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 89, ../../../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: 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? */
/*********************
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.
*********************/
/* line 1, ../../../scss/pages/home/_base.scss */
#home {
  margin: 0px auto;
  float: none;
}
/* line 6, ../../../scss/pages/home/_base.scss */
#home #home-main-banner {
  height: 169px;
  background-size: cover !important;
  margin: 0px auto 20px;
}
/* line 12, ../../../scss/pages/home/_base.scss */
#home #home-main-banner a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 20, ../../../scss/pages/home/_base.scss */
#home #home-secondary-banners {
  margin-bottom: 50px;
}
/* line 24, ../../../scss/pages/home/_base.scss */
#home #home-secondary-banners li {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0px auto 75px auto !important;
  float: none !important;
  margin-bottom: 25px;
}
/* line 32, ../../../scss/pages/home/_base.scss */
#home #home-secondary-banners li a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 38, ../../../scss/pages/home/_base.scss */
#home #home-secondary-banners li a div {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  margin: 0px auto;
  float: none;
  padding-bottom: 100%;
}
/* line 48, ../../../scss/pages/home/_base.scss */
#home #home-secondary-banners li a span {
  width: 100%;
  text-align: center;
  color: #003366;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "AvenirLTStd45Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  text-decoration: none;
  margin-top: 10px;
  float: left;
}
/* line 75, ../../../scss/pages/home/_base.scss */
#home #home-highlights {
  text-align: center;
}
/* line 79, ../../../scss/pages/home/_base.scss */
#home #home-highlights li {
  text-align: center;
  margin-bottom: 15px;
}
/* line 84, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner {
  display: inline-block;
  width: 215px;
  height: 215px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
/* line 93, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .hover {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* line 101, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .hover .bg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0.7;
}
/* line 111, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .hover .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: table;
}
/* line 120, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .hover .content label {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  font-size: 22px;
}
/* line 127, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .hover .content label span {
  display: block;
  font-size: 15px;
}
/* line 137, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner:hover .hover {
  visibility: visible;
}
/* line 142, ../../../scss/pages/home/_base.scss */
#home #home-highlights li .inner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 153, ../../../scss/pages/home/_base.scss */
#home #home-highlights > img {
  display: inline-block;
  margin: 50px auto;
}

/*********************
MEDIA QUERIES
*********************/
@media only screen and (min-width: 768px) {
  /* line 3, ../../../scss/pages/home/_768up.scss */
  #home #home-main-banner {
    width: 768px;
    height: 490px;
    margin-bottom: 50px;
  }
  /* line 10, ../../../scss/pages/home/_768up.scss */
  #home #home-secondary-banners {
    text-align: center;
  }
  /* line 14, ../../../scss/pages/home/_768up.scss */
  #home #home-secondary-banners li {
    display: inline-block;
    float: none !important;
  }
  /* line 21, ../../../scss/pages/home/_768up.scss */
  #home #home-secondary-banners li a div {
    width: 100%;
  }
  /* line 26, ../../../scss/pages/home/_768up.scss */
  #home #home-secondary-banners li a span {
    margin-top: 50px;
  }
  /* line 38, ../../../scss/pages/home/_768up.scss */
  #home #home-highlights li .inner {
    width: 160px;
    height: 160px;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 3, ../../../scss/pages/home/_1024up.scss */
  #home #home-main-banner {
    width: 1024px;
    height: 619px;
  }
  /* line 13, ../../../scss/pages/home/_1024up.scss */
  #home #home-highlights li .inner {
    width: 230px;
    height: 230px;
  }
  /* line 23, ../../../scss/pages/home/_1024up.scss */
  #home #home-secondary-banners li {
    width: 300px;
    height: 300px;
  }
}
