/******************************************************************
Site Name: Sure Build
Author: http://abepe.com.au

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 LESS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name: Sure Build
Author: http://abepe.com.au

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' 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 like box shadow and
border-radius.

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

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
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/
*/
/*********************
TYPOGRAPHY
*********************/
/* 
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;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #deeaae;
  background: #e6efc2;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
BUTTONS
*********************/
.button,
.button:visited {
  border: 1px solid #6c9696;
  border-top-color: #7ea3a3;
  border-left-color: #7ea3a3;
  padding: 4px 12px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 21px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-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;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #84a7a7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#93b2b2), to(#84a7a7));
  background-image: -webkit-linear-gradient(top, #93b2b2, #84a7a7);
  background-image: -moz-linear-gradient(top, #93b2b2, #84a7a7);
  background-image: -o-linear-gradient(top, #93b2b2, #84a7a7);
  background-image: linear-gradient(to bottom, #93b2b2, #84a7a7);
}
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #ffffff;
  border: 1px solid #6c9696;
  border-top-color: #5d8282;
  border-left-color: #5d8282;
  background-color: #759d9d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#84a7a7), to(#759d9d));
  background-image: -webkit-linear-gradient(top, #84a7a7, #759d9d);
  background-image: -moz-linear-gradient(top, #84a7a7, #759d9d);
  background-image: -o-linear-gradient(top, #84a7a7, #759d9d);
  background-image: linear-gradient(to bottom, #84a7a7, #759d9d);
}
.button:active,
.button:visited:active {
  background-color: #93b2b2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#84a7a7), to(#93b2b2));
  background-image: -webkit-linear-gradient(top, #84a7a7, #93b2b2);
  background-image: -moz-linear-gradient(top, #84a7a7, #93b2b2);
  background-image: -o-linear-gradient(top, #84a7a7, #93b2b2);
  background-image: linear-gradient(to bottom, #84a7a7, #93b2b2);
}
.blue-button,
.blue-button:visited {
  border-color: #5d8e9f;
  text-shadow: 0 1px 1px #5d8e9f;
  background-color: #6c9aaa;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7ca5b3), to(#6c9aaa));
  background-image: -webkit-linear-gradient(top, #7ca5b3, #6c9aaa);
  background-image: -moz-linear-gradient(top, #7ca5b3, #6c9aaa);
  background-image: -o-linear-gradient(top, #7ca5b3, #6c9aaa);
  background-image: linear-gradient(to bottom, #7ca5b3, #6c9aaa);
  -webkit-box-shadow: inset 0 0 3px #b0c8d1;
  -moz-box-shadow: inset 0 0 3px #b0c8d1;
  box-shadow: inset 0 0 3px #b0c8d1;
}
.blue-button:hover,
.blue-button:visited:hover,
.blue-button:focus,
.blue-button:visited:focus {
  border-color: #53808f;
  background-color: #5d8e9f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6f9cac), to(#5d8e9f));
  background-image: -webkit-linear-gradient(top, #6f9cac, #5d8e9f);
  background-image: -moz-linear-gradient(top, #6f9cac, #5d8e9f);
  background-image: -o-linear-gradient(top, #6f9cac, #5d8e9f);
  background-image: linear-gradient(to bottom, #6f9cac, #5d8e9f);
}
.blue-button:active,
.blue-button:visited:active {
  background-color: #7ca5b3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6c9aaa), to(#7ca5b3));
  background-image: -webkit-linear-gradient(top, #6c9aaa, #7ca5b3);
  background-image: -moz-linear-gradient(top, #6c9aaa, #7ca5b3);
  background-image: -o-linear-gradient(top, #6c9aaa, #7ca5b3);
  background-image: linear-gradient(to bottom, #6c9aaa, #7ca5b3);
}
/******************************************************************
Site Name: Sure Build
Author: http://abepe.com.au

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.less styles.

******************************************************************/
/*********************
HEADER STYLES
*********************/
.header #inner-header {
  background: url(../images/bg-nav_@2x.png) repeat-x bottom left;
  background-size: 1px 19px;
}
.header #logo {
  margin: 100px 0 0 0;
  float: left;
}
.header #logo a {
  height: 64px;
}
.header #logo a img {
  margin: 0;
  height: 64px;
}
/*********************
NAVIGATION STYLES
*********************/
.nav {
  background: transparent;
  margin: 110px 0 0 0;
  float: right;
  height: 20px;
}
.nav li {
  float: left;
}
.nav li a {
  color: #333e48;
  display: block;
  text-decoration: none;
  margin: 0 0 0 10px;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}
.nav li a:hover,
.nav li a:focus {
  color: #f7941e;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-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;
}
.nav .current-menu-item a {
  color: #f7941e;
}
#content #inner-content {
  min-height: 500px;
}
#content #inner-content .featured-image {
  float: right;
  max-height: 500px;
}
#content #inner-content article.page {
  max-width: 630px;
}
.page-id-14 #content #inner-content article.page,
.page-id-12 #content #inner-content article.page {
  max-width: 1020px;
}
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */

}
.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
/* end .entry-content */
.new-royalslider-18 .testimonial {
  font-size: 1em;
  padding: 120px 100px 0 100px;
}
/*
CONTACT
*********************/
.contact-left {
  border-right: 1px solid #81878e;
  clear: both;
  float: left;
  margin-right: 30px;
  max-width: 300px;
  width: 100%;
  min-height: 440px;
}
.contact-right {
  float: right;
  max-width: 630px;
  width: 100%;
}
.enquiry-left-wrap {
  max-width: 250px;
}
.enquiry-left {
  float: left;
}
.enquiry-right-wrap {
  position: absolute;
  top: 17px;
  right: 0;
  max-width: 373px;
  width: 100%;
}
.enquiry-right-wrap textarea {
  min-height: 221px;
}
/*********************
Footer
*********************/
.footer-left,
.footer-center,
.footer-right {
  float: left;
  width: 33.3333%;
}
.footer-left {
  text-align: left;
}
.footer-right {
  text-align: right;
}
.footer-right a {
  float: right;
  margin: 8px 0 0 5px;
}
/* import grid */
/******************************************************************
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.less 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://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: Tablet & Small Desktop Stylesheet

******************************************************************/
.nav li a {
  margin: 0 0 0 20px;
  font-size: 0.9em;
}
#content #inner-content {
  min-height: 500px;
}
#content #inner-content .featured-image {
  float: right;
  height: 500px;
}
#content #inner-content article.page {
  max-width: 630px;
}
/******************************************************************
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. 

******************************************************************/
/*
PROJECTS
*********************/
.project-categories .project-category {
  max-width: 192px !important;
}
.project-categories .project-category img {
  max-width: 192px !important;
}
/* 
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/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
