/******************************************************************
Site Name: 
Author: Kook

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. 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.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.cf {
  zoom: 1; }
  .cf:before, .cf:after {
    content: "";
    display: table; }
  .cf:after {
    clear: both; }

/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* Blue */
/* dark grey */
/* orange */
/* light blue */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	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;
	}
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/*********************
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);
*/
/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-border-radius);
*/
/*********************
Align Center
*********************/
/*
USAGE: 
@include center(); 
@include center(true, false);
@include center(false, true); 
*/
/*********************
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
*********************/
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* @include box-sizing(border-box); */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/********************************************
MIXIN CREATED FOR WHEN YOU NEED A BREAKPOINT
********************************************/
/*
USAGE: @include bp(baby-screen) {
    width: 100%;
  }
*/
/*********************
BUTTONS
*********************/
.button, button {
  padding: 0.4em 1.2em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #007ac2;
  background: #007ac2;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 2px; }
  .button:hover, .button:focus, button:hover, button:focus {
    background: #004a76;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .button:active, button:active {
    background: #009af5; }

.button.secondary {
  background: #f9ae54;
  border: 2px solid #f9ae54; }
  .button.secondary:hover, .button.secondary:focus, .button.secondary:active {
    background: #f68b0a;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

#address form .button {
  width: 100%;
  padding: 0.75em 0;
  background: transparent;
  text-transform: uppercase; }
  #address form .button:hover, #address form .button:focus, #address form .button:active {
    background: #f9ae54;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

/******************************************************************
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.

The grid below is a combination of the 1140 grid and Twitter Boostrap. 
I liked 1140 but Boostrap's grid was way more detailed so I merged them 
together, let's see how this works out. If you want to use 1140, the original 
values are commented out on each line.

******************************************************************/
.onecol {
  width: 5.801104972%; }

/* 4.85%;  } /* grid_1  */
.twocol {
  width: 14.364640883%; }

/* 13.45%; } /* grid_2  */
.threecol {
  width: 22.928176794%; }

/* 22.05%; } /* grid_3  */
.fourcol {
  width: 31.491712705%; }

/* 30.75%; } /* grid_4  */
.fivecol {
  width: 40.055248616%; }

/* 39.45%; } /* grid_5  */
.sixcol {
  width: 48.618784527%; }

/* 48%;    } /* grid_6  */
.sevencol {
  width: 57.182320438000005%; }

/* 56.75%; } /* grid_7  */
.eightcol {
  width: 65.74585634900001%; }

/* 65.4%;  } /* grid_8  */
.ninecol {
  width: 74.30939226%; }

/* 74.05%; } /* grid_9  */
.tencol {
  width: 82.87292817100001%; }

/* 82.7%;  } /* grid_10 */
.elevencol {
  width: 91.436464082%; }

/* 91.35%; } /* grid_11 */
.twelvecol {
  width: 99.999999993%; }

/* 100%;   } /* grid_12 */
.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol {
  position: relative;
  float: left;
  margin-left: 2.762430939%; }

.first {
  margin-left: 0; }

.last {
  float: right; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to 
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection. 

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
.slideshow_caption p.h1 {
  font-size: 2em; }

#footer {
  font-size: 0.9em; }

blockquote .h2, body.Home #topblocks h2 {
  font-size: 1.6em; }

.slideshow_caption a.button {
  font-size: 1em; }

#rightcol #block_42 h3 {
  font-size: 1.5em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1140px; }

/*********************
HEADER STYLES
*********************/
.header {
  height: 128px; }
  .header .menu {
    margin: 0 auto;
    width: 100%; }
  .header .phone span {
    display: inline-block;
    margin: 0 0.5em; }
  .header .phone .email {
    display: inline-block; }
  .header .phone .button {
    float: none; }
  .header .topBlock h1, .header .topBlock .h1 {
    padding: .5em 1em;
    width: auto;
    bottom: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0); }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 95%; }

.topMenu {
  text-align: right; }
  .topMenu a.toggleMenu {
    margin-top: 1.75em; }

/*********************
CONTENT STYLES
*********************/
/* content area all inner pages */
#content .row {
  padding: 4em 0 4em 0; }

blockquote:before {
  /*margin-bottom:5em;*/
  float: left;
  font-size: 2em; }

/*********************
HOME STYLES
*********************/
body.Home #content .row {
  padding: 4em 0 1em 0; }

/*********************
LANDING PAGE STYLES
**********************/
body.Landing #content #leftcol > div {
  padding: 4em 0; }

/*********************
HOME BLOCK LAYOUT
**********************/
body.Home #leftcol .columnlayout > div {
  width: 48.618784527%;
  margin-right: 2.762430939%; }
  body.Home #leftcol .columnlayout > div:nth-child(2), body.Home #leftcol .columnlayout > div:nth-child(4), body.Home #leftcol .columnlayout > div:nth-child(6) {
    margin-right: 0; }

/*********************
BLOCK LAYOUT
**********************/
.columnlayout > div {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top; }
  .columnlayout > div div {
    width: auto; }

/*********************************
TOP BLOCKS
*********************************/
body.Home #topblocks {
  padding: 2.5em 0; }
  body.Home #topblocks > div > div > div:nth-child(3), body.Home #topblocks > div > div > div:nth-child(4) {
    margin-bottom: 0; }
  body.Home #topblocks > div > div > div .borderWrap {
    width: 95%; }

/*********************************
BOTTOM BLOCKS
*********************************/
#bottomblocks .parallax-window {
  padding: 3em 0; }
  #bottomblocks .parallax-window .borderWrap {
    width: 70%; }

/*********************
NEWS LISTING
*********************/
div.listingImg {
  float: left;
  width: 30%; }

div.listingTxt {
  float: left;
  width: 70%; }

div.caseStudy {
  float: left;
  width: 48%;
  padding: 1em 0 2em 0;
  position: relative;
  margin-right: 1.9%; }

/*********************
GALLERY
*********************/
#gallery li {
  width: 31%;
  margin-right: 2%; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px; }

/*********************
FOOTER STYLES
*********************/
#address form {
  margin: 0 0; }

#footer > div {
  padding: 4em 0;
  text-align: left; }
  #footer > div #copyright .first a {
    display: inline; }
  #footer > div #privacy {
    text-align: left; }

/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/*SLIDER*/
.slick-prev, .slick-next {
  top: 62%; }

/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide img {
  height: 50vh; }
ul.responsive3 .slick-list .slick-track .slick-slide .row .borderWrap {
  padding: 1.5em 2.5em;
  width: 100%;
  top: -11.5em; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.slideshow_caption p.h1 {
  font-size: 2em;
  margin-bottom: 0.4em; }

.slideshow_caption p.h3 {
  margin: 0.7em 0 1em 0; }

body.Home .columnlayout h2 {
  font-size: 1.6em; }

#footer {
  font-size: 1em; }

/*************************
Colours
*************************/
.darkgrey, .topMenu .nav > li > a {
  color: dimgray; }

.blue, .topMenu .nav > li > a:hover {
  color: #007ac2; }

a.activerootmenulink {
  font-weight: 500; }

/*********************
SPRITE
*********************/
#logo {
  width: 168px;
  height: 120px;
  background-size: 168px 120px; }

/*********************
HEADER STYLES
*********************/
.header {
  height: 112.09px; }
  .header .row {
    position: relative; }
  .header #logo {
    left: 0;
    top: -0.5em; }
  .header .phone {
    text-align: left; }
    .header .phone > div {
      display: inline-block;
      padding: 0 0.8em;
      border-left: 1px solid #f9ae54; }
      .header .phone > div:first-child {
        padding-left: 0;
        border-left: 0; }
  .header .menu {
    padding: 0.5em 0; }
    .header .menu .last {
      float: right;
      text-align: left;
      margin-bottom: 0em;
      padding: 0 0;
      width: auto; }
      .header .menu .last nav {
        float: none;
        line-height: 1.5; }
  .header #secondmenu {
    display: block; }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 74.30939226%; }

#mainMenu {
  padding: 1.3em 0 0.5em 0; }

.topMenu {
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  float: right;
  clear: none;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0 0.6em;
      /*turn some of the main nav items OFF for public*/
      /*&:first-child > a{
      	display:none;
      }
      
      &:nth-child(6) {
      	display:none;
      }
      &:nth-child(7) {
      	display:none;
      }
      */ }
      .topMenu .nav > li > a:hover, .topMenu .nav > li > a:focus {
        background: white; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 0.5em 0em;
        background: none;
        border-bottom: none; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #007ac2; }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 9999;
        left: -9999px;
        border-top: 2px solid #007ac2; }
        .topMenu .nav li ul li,
        .topMenu .nav li ul.sub-menu li,
        .topMenu .nav li ul.children li {
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability.
          */ }
          .topMenu .nav li ul li a,
          .topMenu .nav li ul.sub-menu li a,
          .topMenu .nav li ul.children li a {
            padding: 0.5em 0.5em;
            display: block;
            width: 200px;
            border-top: none;
            border-radius: 0;
            margin-right: 0; }
            .topMenu .nav li ul li a:hover, .topMenu .nav li ul li a:focus,
            .topMenu .nav li ul.sub-menu li a:hover,
            .topMenu .nav li ul.sub-menu li a:focus,
            .topMenu .nav li ul.children li a:hover,
            .topMenu .nav li ul.children li a:focus {
              border-top: none; }
          .topMenu .nav li ul li ul,
          .topMenu .nav li ul.sub-menu li ul,
          .topMenu .nav li ul.children li ul {
            border-top: none; }

/* end .topMenu */
.nav > li.hover > ul {
  left: 0; }

.nav li li ul {
  left: -9999px;
  z-index: 99;
  position: absolute; }

.nav li li.hover ul {
  left: 100%;
  top: 0;
  z-index: 99;
  position: absolute; }

/* active state on home - not sure where else to put this for now*/
/******************************************************************
CONTENT STYLES
******************************************************************/
/*********************
HOME STYLES
*********************/
/*********************
HOME BLOCK LAYOUT
**********************/
body.Home #topblocks .columnlayout div {
  padding: 2em 0em; }
  body.Home #topblocks .columnlayout div ul li {
    width: 25%; }

p#copyright {
  margin-bottom: 0em; }

/*********************
FOOTER STYLES
**********************/
#footer {
  padding-bottom: 0; }

/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide .row .borderWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 40em; }
  ul.responsive3 .slick-list .slick-track .slick-slide .row .borderWrap .slideshow_caption {
    padding: 1em; }
    ul.responsive3 .slick-list .slick-track .slick-slide .row .borderWrap .slideshow_caption .button {
      padding: 0.6em 2em; }
    ul.responsive3 .slick-list .slick-track .slick-slide .row .borderWrap .slideshow_caption .slideDescription {
      display: block; }
ul.responsive3 .slick-list .slick-track .slick-slide img {
  display: block;
  height: auto;
  float: left;
  width: initial;
  max-width: initial; }

.slick-prev, .slick-next {
  top: 40%; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  height: 60px;
  width: 60px;
  right: 30px;
  bottom: 30px; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
/* STICKY NAV - This is where the header is set to be sticky. 
We can also change colour and size here - effects all take place onScroll (waypoints triggers this) */
.header .menu {
  padding: 0.5em 0;
  top: 0px; }
.header .clearHeader {
  position: fixed;
  background-color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .clearHeader #logo {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
.header .darkHeader {
  position: fixed;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .darkHeader #logo {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.slick-prev, .slick-next {
  top: 50%; }

.slick-next {
  right: 50px; }

.slick-prev {
  left: 50px; }

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-perspective: 1000px; }

/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/*target every 4th*/
.columnlayout div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
.columnlayout div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div
.columnlayout div + div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 2%; }

/*# sourceMappingURL=ie.css.map */
