/******************************************************************
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/
*********************/
/* Teal */
/* grey */
/* pale teal */
/* silver */
/*
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);
*/
/*********************
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; }

/*********************
BUTTONS
*********************/
.button {
  padding: 0.75em 1em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #006d66;
  background: #006d66;
  text-transform: uppercase;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .button:hover, .button:focus {
    color: #fff;
    border: 2px solid #00a096;
    background: #00a096;
    opacity: 1;
    text-decoration: none; }
  .button:active {
    border: 2px solid #00a096;
    background: #00a096; }
  .button:after {
    position: absolute;
    /* Specified width to ensure circle is always centered */
    content: "";
    display: block;
    width: 180px;
    height: 1px;
    margin-top: 1em;
    background-color: #8c8c8c;
    content: '\f111';
    /* This line onwards is for the circle */
    font-family: FontAwesome;
    text-align: center;
    font-size: 0.7em;
    color: #8c8c8c;
    line-height: 0; }

.header .button {
  /*border:2px solid $white;
  color: $white;*/ }
  .header .button:hover, .header .button:focus {
    /*border: 2px solid $color-primary;
    color: $white;*/ }

/*********************
FONT AWESOME
*********************/
/******************************************************************
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.

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h6, .h6, .slideshow_slick_container .slideshow_caption .h6 {
  font-size: 2em; }

.slideshow_slick_container .slideshow_caption p {
  font-size: 0.8em; }

.slideshow_slick_container .slideshow_caption {
  left: 10%;
  width: 45%;
  /*font-size: 1.25em;*/
  text-align: left;
  top: 25%; }
  .slideshow_slick_container .slideshow_caption .slideHeading1, .slideshow_slick_container .slideshow_caption .slideHeading2, .slideshow_slick_container .slideshow_caption .slideDescription {
    display: block; }
.slideshow_slick_container img {
  margin-top: 0px; }

.slick-slider .slick-active img {
  margin: auto; }

/******************************************************************
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
******************************************************************/
h6, .h6, .slideshow_slick_container .slideshow_caption .h6 {
  font-size: 1.5em; }

.slideshow_slick_container .slideshow_caption p {
  font-size: 1em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1140px; }

#leftcol > div > div {
  max-width: 1140px;
  margin: 0 auto; }

body.Contact #leftcol > div > div {
  max-width: none;
  margin-right: 2%; }

/*********************
HEADER STYLES
*********************/
body .header {
  min-height: 100px;
  height: 10vh; }

body.Home .header {
  min-height: 102px;
  /*height: 95vh;	*/ }

.header .menu {
  margin: 0 auto;
  width: 100%; }
.header .herotext {
  width: 50%; }

/*********************
CONTENT STYLES
*********************/
#content {
  padding-left: 0;
  padding-right: 0; }
  #content .row {
    padding-bottom: 2em; }

blockquote:before {
  float: left; }

#hero {
  background-position: top center;
  padding: 2em 0 3em 0; }
  #hero .first {
    text-align: left;
    display: block;
    padding-top: 1em; }
  #hero h2 {
    font-size: 1.4em;
    color: #fff;
    padding-bottom: 0em;
    margin-bottom: 0em;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    padding-right: 2em;
    line-height: 1.4em; }
  #hero h3 {
    font-size: 1em;
    color: #fff;
    padding-bottom: 0em;
    padding-top: 0;
    margin-bottom: 0em;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    padding-right: 2em;
    line-height: 1.4em; }
  #hero .GetInTouch {
    background: #404040;
    color: #fff;
    padding: 0.7em 2em;
    display: inline-block;
    text-shadow: 0px 2px 2px rgba(33, 33, 33, 0.4);
    text-decoration: none;
    font-weight: 700; }

/*********************
HOME BLOCK LAYOUT
**********************/
.Projects .columnlayout div {
  width: 31%; }
  .Projects .columnlayout div div {
    width: auto; }

.columnlayout > div {
  width: 48%;
  margin-bottom: 0.75em;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: top; }
  .columnlayout > div div {
    width: 100%; }
  .columnlayout > div p:first-of-type a {
    -webkit-filter: brightness(75%); }
    .columnlayout > div p:first-of-type a:hover {
      -webkit-filter: grayscale(100%);
      -webkit-filter: brightness(100%); }
  .columnlayout > div:nth-child(1) {
    width: 100%; }
  .columnlayout > div:nth-child(4), .columnlayout > div:nth-child(8), .columnlayout > div:nth-child(12) {
    margin-right: 0; }

/*********************
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: 22.5%;
  margin-right: 2%; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px; }

/*********************
BOTTOM BLOCKS
*********************/
#BottomBlocks #newsblock ul li {
  float: left;
  width: 22.05%;
  margin-right: 2.5%;
  min-height: 300px;
  position: relative; }
  #BottomBlocks #newsblock ul li .newsmoreinfo {
    position: absolute;
    bottom: 0;
    left: 14%;
    padding-bottom: 10px; }

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.middle {
  text-align: left;
  /*margin-top:1em;	*/ }

#secondFooter .first {
  text-align: left;
  /*margin-top:1em;*/ }
  #secondFooter .first ul li {
    padding-right: 1em; }
#secondFooter .last {
  text-align: center;
  margin-top: 0.5em; }
  #secondFooter .last p {
    margin: 0;
    font-size: 2em; }

#firstFooter .last,
#secondFooter .last {
  text-align: right; }
#firstFooter ul,
#secondFooter ul {
  width: auto; }
  #firstFooter ul li,
  #secondFooter ul li {
    display: inline;
    /*margin-left: 1.8em;*/ }
#firstFooter #copyright,
#secondFooter #copyright {
  text-align: right; }
  #firstFooter #copyright a,
  #secondFooter #copyright a {
    display: inline; }
  #firstFooter #copyright p,
  #secondFooter #copyright p {
    margin: 0; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
/*********************
HEADER STYLES
*********************/
.header .menu .last {
  clear: none;
  width: 15%;
  padding-top: 8px;
  margin-left: 0;
  text-align: center; }

/*********************
NAVIGATION STYLES
*********************/
.topMenu {
  margin-top: 8px;
  /* 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; }
      .topMenu .nav > li > a {
        padding-bottom: 12px !important;
        text-transform: uppercase; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 8px;
        margin-right: 5px;
        background: none;
        border-bottom: none;
        font-size: 1em; }
        .topMenu .nav li a:hover, .topMenu .nav li a:focus {
          color: #79cdcd; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #79cdcd;
        border-bottom: 1px solid #79cdcd;
        /*&:after {
        	 content: '\f111';
        	 font-family: FontAwesome;
        	 text-align:center;
        	 display: block;
        	 font-size: 0.7em;
        	 color: darken($color-tertiary, 20%);
        	 line-height: 0;
        	 position: absolute;
        	 left: 0;
        	 right: 0;
        	 top: 45px;
        }*/ }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 99;
        left: -9999px; }
        .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-left: 10px;
            display: block;
            width: 200px;
            border-top: none;
            border-radius: 0;
            margin-right: 0;
            background-color: #cccccc; }
            .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;
              background: #79cdcd;
              color: #fff; }
          .topMenu .nav li ul li:last-child a,
          .topMenu .nav li ul.sub-menu li:last-child a,
          .topMenu .nav li ul.children li:last-child a {
            border-bottom: 0; }
          .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; }

/*********************
CONTENT STYLES
*********************/
a.textlink, a.textlink:visited {
  border-bottom: 1px solid #404040;
  padding-bottom: 1em; }

#leftcol div {
  text-align: initial; }

@-moz-document url-prefix() {
  #rightcol .respond-form form input[type=text],
  #rightcol .respond-form form input[type=email],
  #rightcol .respond-form form input[type=url],
  #rightcol .respond-form form textarea,
  #rightcol .respond-form form img {
    max-width: 72%; } }
/******************************************************************
FORM STYLES
******************************************************************/
.respond-form form img {
  float: left; }
  .respond-form form img.fullwidth {
    max-width: 235px; }

/*********************
BOTTOM BLOCKS
*********************/
#BottomBlocks #newsblock ul li {
  min-height: 265px; }
  #BottomBlocks #newsblock ul li .newsmoreinfo {
    left: 25%; }

/* ================================================ */
/* http://responsiveslides.com v1.32 by @viljamis   */
/* Responsive Slideshow, installed 21/11/2012 Ross. */
/* ================================================ */
.rslides img {
  height: 240px; }

/******************************************************************
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. 

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h6, .h6 {
  font-family: "Caveat", cursive;
  font-size: 5em;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0; }

body.Home .header .menu {
  position: fixed; }

.header #logo {
  margin-top: 15px; }
.header #mainMenu {
  margin-top: 0; }
.header .menu {
  /*padding: 0.5em 0 0em 0;*/ }
.header .clearHeader {
  position: fixed;
  padding: 3em 0;
  background-color: #006d66;
  /*border-bottom: solid 1px lighten($black, 80%);*/
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.header .darkHeader {
  position: fixed;
  padding: 1em 0;
  background-color: #006d66;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  min-height: initial; }
  .header .darkHeader #logo {
    width: 270px;
    height: 61px;
    background-size: 270px 61px;
    margin-top: 0; }
.header #ninecol {
  position: relative; }
  .header #ninecol ul li {
    float: none;
    padding: 0.1em 0; }

/* 
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 */
