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

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!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
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.
******************************************************************/
/******************************************************************
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: 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: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
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.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
      plan your menus and drop-downs wisely.
      */ }
      .menu ul li a {
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }

/* end .menu */
/*********************
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 */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
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!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
h1 {
  font-size: 2.75em; }

.home-learn-more {
  padding-bottom: 24px; }
  .home-learn-more.blackgridback {
    background-color: #2c2a29;
    background-image: none; }

/*********************
LAYOUT & GRID STYLES
*********************/
.entry-content {
  padding: 80px 1.5em; }

.quote-text {
  padding: 40px; }

.image-pad-right {
  padding-right: 4.5em;
  padding-bottom: 1.5em; }

.blackgridback {
  background-color: transparent; }

.gas-safety-home {
  background-image: url(../images/gassafety-back-NEW.jpg);
  background-position: center center;
  padding: 90px 1.5em 100px 1.5em !important; }

.gas-click.butt-1 {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0px; }
.gas-click.butt-2 {
  border-left: 2px solid #8ab745;
  border-right: 2px solid #8ab745;
  border-top: none;
  border-bottom: none; }
.gas-click.butt-3 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0px; }

.illustration {
  width: 360px; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em; }

.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em; }

.widget {
  padding: 0 10px;
  margin: 2.2em 0; }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

/******************************************************************
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.

******************************************************************/
.wrap {
  max-width: 1140px; }
  .wrap.wrap-small {
    max-width: 768px; }

#logo img {
  padding-top: 17px;
  padding-bottom: 0; }

/* Home Header */
.home-header-wrap {
  padding-top: 0;
  min-height: 570px;
  height: 36vw;
  position: relative;
  background-size: cover;
  background-position: center center; }
  .home-header-wrap .slide-content-abs {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .home-header-wrap .d-2of5, .home-header-wrap .wrap {
    position: relative;
    height: 100%; }

.home-learn-more {
  padding-bottom: 24px; }
  .home-learn-more.blackgridback {
    background-color: #2c2a29;
    background-image: none; }

.about-content {
  background-position: center center; }

/* Simple Header */
.simple-header-wrap {
  height: 320px; }

.article-header {
  position: relative; }

.white-curve {
  display: block;
  position: absolute;
  background-image: url(../images/white-curve.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  bottom: -1px;
  left: 0; }

.video-strip {
  margin-top: 0px; }

.illustration {
  left: auto;
  right: auto; }

h2.callout-block-grey {
  margin: 2em 0 0 0; }

.last-section {
  padding-bottom: 180px; }

.last-section-decider section:last-child {
  padding-bottom: 180px; }

.footer {
  position: relative; }

#inner-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 60px;
  padding-bottom: 30px;
  background-size: cover;
  background-position: top center;
  background-color: transparent;
  background-image: url(../images/footer-curve.png); }

#logo-footer img {
  margin: -30px auto 0 auto; }

.copyright {
  text-align: right; }

/* Benefits of gas */
.benefit-blocks {
  margin-top: 1.5em;
  margin-bottom: 1.5em; }
  .benefit-blocks .benefit-block-wrap {
    display: table;
    width: 100%; }
    .benefit-blocks .benefit-block-wrap .benefit-position {
      display: table-cell;
      text-align: center;
      vertical-align: middle; }
    .benefit-blocks .benefit-block-wrap h2 {
      margin: 0.75em 0 0.5em; }
    .benefit-blocks .benefit-block-wrap p {
      margin-bottom: 0; }

/* Contact Page */
body .gform_wrapper .atco-contact-form ul li.gfield.d-1of2 {
  padding-right: 0.75em !important; }
  body .gform_wrapper .atco-contact-form ul li.gfield.d-1of2.last-col {
    padding-right: 0 !important;
    float: right; }

/* Subscription Form */
.subscription-form {
  padding-bottom: 2em; }
  .subscription-form .gform_wrapper {
    max-width: 800px;
    margin: 0 auto; }
    .subscription-form .gform_wrapper ul.gform_fields li.gfield {
      width: 31%;
      margin-right: 2%;
      display: inline-block; }
      .subscription-form .gform_wrapper ul.gform_fields li.gfield:last-child {
        width: 33%;
        margin-right: 0; }
    .subscription-form .gform_wrapper .gform_body {
      display: inline-block;
      width: 74%; }
    .subscription-form .gform_wrapper .gform_footer {
      display: inline-block;
      width: 25%; }
  .subscription-form .gform_wrapper .gform_footer input.button, .subscription-form .gform_wrapper .gform_footer input[type=submit], .subscription-form .gform_wrapper .gform_page_footer input.button, .subscription-form .gform_wrapper .gform_page_footer input[type=submit] {
    margin-right: 0;
    top: -1px;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }

/* FLOATING FEEDBACK */
.floating-feedback-form {
  width: 360px; }
  .floating-feedback-form .feedback-wrap {
    padding: 20px; }
  .floating-feedback-form .gform_wrapper textarea.medium {
    height: 100px !important;
    min-height: 100px !important; }

/* FEEDACK FORM */
body .full_feedback_form .gform_wrapper .gf_page_steps {
  width: 33.3333%;
  float: left;
  border-bottom: 0;
  padding-right: 2em; }
  body .full_feedback_form .gform_wrapper .gf_page_steps .gf_step {
    width: 100%;
    font-size: 1em; }
    body .full_feedback_form .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
      display: none; }
body .full_feedback_form .gform_wrapper .gform_body {
  width: 66.6666%;
  float: left;
  padding: 0 2em; }
body .full_feedback_form .gform_wrapper ul li.gfield {
  margin-top: 0;
  padding-bottom: 2em !important;
  margin-bottom: 0 !important; }
body .full_feedback_form .gform_wrapper .gform_page_footer .button.gform_next_button, body .full_feedback_form .gform_wrapper .gform_page_footer .button.gform_button {
  width: 49% !important;
  float: right;
  margin: 0; }
body .full_feedback_form .gform_wrapper .gform_page_footer .button.gform_previous_button {
  width: 49% !important;
  float: left;
  margin: 0; }
body .full_feedback_form table.gsurvey-likert td.gsurvey-likert-choice {
  border-bottom: 1px solid #1a68bf;
  height: 32px; }
body .full_feedback_form table.gsurvey-likert td.gsurvey-likert-choice.gsurvey-likert-selected {
  background-size: 22px 22px; }

.page-template-page-contact .gform_wrapper .top_label .d-1of2.gfield_error {
  width: 50% !important; }

body .full_feedback_form .gform_wrapper ul li.gfield_html {
  margin: 0 !important;
  height: 0 !important;
  border: 0 !important;
  padding: 0 !important; }

/* Gas Safety */
.page-template-page-gas-safety .simple-header-wrap {
  height: 200px; }
.page-template-page-gas-safety .hentry {
  background-image: url(../images/gas-safety-background-NEW.jpg);
  background-size: 1920px 850px;
  padding-bottom: 850px; }
.page-template-page-gas-safety .gas-callouts-wrap {
  max-width: 760px;
  position: absolute;
  bottom: 240px;
  left: 50%;
  margin-left: -390px; }
.page-template-page-gas-safety .d-3of5.gas-safety-column {
  padding-right: 3em; }
.page-template-page-gas-safety section.gas-safety-section {
  padding: 3em; }
.page-template-page-gas-safety .gas-safety-videos {
  padding: 0 4em; }

.owl-carousel-hero .owl-nav .owl-next {
  margin-right: 20px; }
.owl-carousel-hero .owl-nav .owl-prev {
  margin-left: 20px; }

.push-right {
  float: right; }

/*********************
NAVIGATION STYLES
*********************/
/* Mega Menu */
.owl-carousel-menu {
  padding-left: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -16px;
  width: 100%;
  color: #fff; }
  .owl-nav .owl-next {
    float: right;
    width: 38px;
    height: 38px;
    margin-right: -45px;
    position: relative;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out; }
    .owl-nav .owl-next.disabled {
      opacity: 0.2; }
    .owl-nav .owl-next:before {
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out;
      content: '';
      display: block;
      width: 38px;
      height: 38px;
      background-image: url("../images/nav-arrow-new-hover.png");
      background-size: 38px 38px;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0; }
    .owl-nav .owl-next:after {
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out;
      content: '';
      display: block;
      width: 38px;
      height: 38px;
      background-image: url("../images/nav-arrow-new.png");
      background-size: 38px 38px;
      position: absolute;
      top: 0;
      left: 0; }
    .owl-nav .owl-next:hover:before {
      opacity: 1; }
    .owl-nav .owl-next:hover:after {
      opacity: 0; }
  .owl-nav .owl-prev {
    float: left;
    width: 38px;
    height: 38px;
    margin-left: -20px;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1); }
    .owl-nav .owl-prev.disabled {
      opacity: 0.2; }
    .owl-nav .owl-prev:before {
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out;
      content: '';
      display: block;
      width: 38px;
      height: 38px;
      background-image: url("../images/nav-arrow-new-hover.png");
      background-size: 38px 38px;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0; }
    .owl-nav .owl-prev:after {
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out;
      content: '';
      display: block;
      width: 38px;
      height: 38px;
      background-image: url("../images/nav-arrow-new.png");
      background-size: 38px 38px;
      position: absolute;
      top: 0;
      left: 0; }
    .owl-nav .owl-prev:hover:before {
      opacity: 1; }
    .owl-nav .owl-prev:hover:after {
      opacity: 0; }

.mega-menu-wrap {
  display: none;
  background-color: #0057b8;
  background-image: url(../images/mega-menu-bg.png);
  background-position: center center;
  background-repeat: repeat;
  background-size: 1810px 8px;
  position: absolute;
  top: 78px;
  width: 100%;
  left: 0;
  padding: 3em 0;
  z-index: 99; }
  .mega-menu-wrap a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
  .mega-menu-wrap .mega-menu-anchor-list a {
    display: block;
    text-transform: uppercase;
    margin-bottom: 1em; }
    .mega-menu-wrap .mega-menu-anchor-list a:before {
      content: '';
      display: block;
      float: left;
      width: 9px;
      height: 14px;
      margin-right: 6px;
      margin-top: 4px;
      background-size: 9px 14px;
      background-image: url(../images/anchor-arrow.png); }
    .mega-menu-wrap .mega-menu-anchor-list a:hover:before {
      background-image: url(../images/anchor-arrow-hover.png); }
  .mega-menu-wrap .mega-menu-rich-list {
    padding: 0 0 0 2em; }
    .mega-menu-wrap .mega-menu-rich-list .h3 {
      font-size: 16px;
      text-transform: uppercase;
      color: #48aedd;
      margin-top: 10px; }
    .mega-menu-wrap .mega-menu-rich-list p {
      font-size: 14px;
      margin: 0; }
    .mega-menu-wrap .mega-menu-rich-list a:hover {
      color: #fff;
      opacity: 0.9; }

/* Main Nav */
#mobile-nav-button {
  display: none; }

nav {
  display: block !important;
  float: right;
  width: auto;
  position: relative; }

.nav {
  border: 0;
  padding: 15px 0;
  /* end .menu ul li */ }
  .nav ul {
    background: #fff;
    margin-top: 0; }
  .nav li {
    float: left;
    position: relative;
    /* showing sub-menus */
    /*&:hover > ul {
    	top: auto;
    	visibility:visible;
    }*/ }
    .nav li a {
      border-bottom: 0;
      padding: 0.75em 0.75em; }
      .nav li a:hover, .nav li a:focus {
        color: #f2a900;
        text-decoration: none; }
    .nav li.menu-item-has-children > a {
      padding-right: 1.75em; }
      .nav li.menu-item-has-children > a:after {
        content: '';
        background-image: url(../images/drop-down-arrow.png);
        width: 14px;
        height: 9px;
        background-size: 14px 9px;
        display: block;
        position: absolute;
        right: 8px;
        top: 18px; }
      .nav li.menu-item-has-children > a:hover:after {
        background-image: url(../images/drop-down-arrow-hover.png); }
    .nav li ul.sub-menu,
    .nav li ul.children {
      margin-top: 0;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999; }
      .nav li ul.sub-menu li,
      .nav li ul.children li {
        /*
        if you need to go deeper, go nuts
        just remember deeper menus suck
        for usability. k, bai.
        */ }
        .nav li ul.sub-menu li a,
        .nav li ul.children li a {
          padding-left: 10px;
          border-right: 0;
          display: block;
          width: 180px;
          border-bottom: 1px solid #ccc;
          color: #2c2a29; }
          .nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
          .nav li ul.children li a:hover,
          .nav li ul.children li a:focus {
            color: #f2a900; }
        .nav li ul.sub-menu li:last-child a,
        .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .nav li ul.sub-menu li ul,
        .nav li ul.children li ul {
          top: 0;
          left: 100%; }

/* end .nav */
/*
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 { ... }

*/
