/******************************************************************
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/ 
*********************/
/* line 52, ../scss/partials/_variables.scss */
.red {
  color: #ed1c24;
}

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

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

******************************************************************/
/* line 18, ../scss/partials/_typography.scss */
.text-left {
  text-align: left !important;
}

/* line 19, ../scss/partials/_typography.scss */
.text-center {
  text-align: center !important;
}

/* line 20, ../scss/partials/_typography.scss */
.text-right {
  text-align: right !important;
}

/* line 22, ../scss/partials/_typography.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@font-face {
  font-family: 'GothamRounded-Book';
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Book.eot");
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Book.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Book.woff") format("woff"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'GothamRounded-Medium';
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Medium.eot");
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Medium.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Medium.woff") format("woff"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GothamRounded-Bold';
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Bold.eot");
  src: url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Bold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Bold.woff") format("woff"), url("/wp-content/themes/flashfibers/library/fonts/GothamRounded-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Arial-Bold';
  src: url("/wp-content/themes/flashfibers/library/fonts/Arial-BoldMT.eot");
  src: url("/wp-content/themes/flashfibers/library/fonts/Arial-BoldMT.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/flashfibers/library/fonts/Arial-BoldMT.woff") format("woff"), url("/wp-content/themes/flashfibers/library/fonts/Arial-BoldMT.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Arial';
  src: url("/wp-content/themes/flashfibers/library/fonts/ArialMT.eot");
  src: url("/wp-content/themes/flashfibers/library/fonts/ArialMT.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/flashfibers/library/fonts/ArialMT.woff") format("woff"), url("/wp-content/themes/flashfibers/library/fonts/ArialMT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 113, ../scss/partials/_typography.scss */
p {
  -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";
}

/* line 106, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/typography/_vertical_rhythm.scss */
html {
  font-size: 100%;
  line-height: 1.625em;
}

/******************************************************************
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 */
/* line 33, ../scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 34, ../scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 35, ../scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 36, ../scss/breakpoints/_481up.scss */
.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 */
/* line 81, ../scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}
/* line 85, ../scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
/* line 90, ../scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
/* line 95, ../scss/breakpoints/_481up.scss */
.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 */
/* line 119, ../scss/breakpoints/_481up.scss */
#home-services .service {
  padding: 0 1px;
  width: 100% !important;
}

/* line 124, ../scss/breakpoints/_481up.scss */
.col30 {
  width: 29%;
  float: left;
}

/* line 128, ../scss/breakpoints/_481up.scss */
.col70 {
  width: 69%;
  float: left;
}

/******************************************************************
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
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 25, ../scss/breakpoints/_768up.scss */
.wrap {
  max-width: 1140px;
}
/* line 28, ../scss/breakpoints/_768up.scss */
.wrap.wrap-mobile {
  width: 96%;
}

/*********************
HEADER STYLES
*********************/
/* line 39, ../scss/breakpoints/_768up.scss */
.header #logo {
  max-width: 100%;
}
/* line 43, ../scss/breakpoints/_768up.scss */
.header #phone {
  font-size: 1.125em;
  line-height: 1.44444em;
}
/* line 45, ../scss/breakpoints/_768up.scss */
.header #phone .fa {
  padding: 0 5px 0 35px;
}
/* line 50, ../scss/breakpoints/_768up.scss */
.header label[for=toggle-navigation], .header input#toggle-navigation[type=checkbox] {
  display: none !important;
}
/* line 54, ../scss/breakpoints/_768up.scss */
.header input#toggle-navigation[type=checkbox] ~ nav {
  display: block !important;
}
/* line 58, ../scss/breakpoints/_768up.scss */
.header #inner-header .col {
  width: inherit;
}
/* line 61, ../scss/breakpoints/_768up.scss */
.header #inner-header .col:first-child {
  margin-bottom: -30px;
}
/* line 64, ../scss/breakpoints/_768up.scss */
.header #inner-header .col:nth-child(2) {
  vertical-align: top;
  text-align: right;
  color: #fff;
  font-family: "GothamRounded-Book";
  font-size: 24px;
}
/* line 71, ../scss/breakpoints/_768up.scss */
.header #inner-header .col:nth-child(2) .short-link {
  background-color: #ed1c24;
  padding: 20px;
  float: right;
  color: #fff;
  font-size: 10px;
}
/* line 77, ../scss/breakpoints/_768up.scss */
.header #inner-header .col:nth-child(2) .short-link a {
  color: #fff;
  font-family: "GothamRounded-Medium";
  font-size: 16px;
  text-decoration: none;
  padding: 0 5px;
}
/* line 85, ../scss/breakpoints/_768up.scss */
.header #inner-header .col:nth-child(2) span {
  opacity: 0.8;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 97, ../scss/breakpoints/_768up.scss */
#navigation {
  background-color: #ed1c24;
  border-bottom: 5px solid #941c24;
  box-shadow: 0px 0px 20px 0px #000;
  -webkit-box-shadow: 0px 0px 20px 0px #000;
  -moz-box-shadow: 0px 0px 20px 0px #000;
  -o-box-shadow: 0px 0px 20px 0px #000;
}

/* line 106, ../scss/breakpoints/_768up.scss */
.nav.top-nav {
  text-align: right;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 109, ../scss/breakpoints/_768up.scss */
.nav.top-nav ul {
  margin: 0;
}
/* line 113, ../scss/breakpoints/_768up.scss */
.nav.top-nav li {
  display: inline-block;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 117, ../scss/breakpoints/_768up.scss */
.nav.top-nav li a {
  color: #fff;
  font-family: "GothamRounded-Medium";
  font-size: 16px;
  text-transform: uppercase;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 127, ../scss/breakpoints/_768up.scss */
.nav.top-nav li a:hover, .nav.top-nav li a:focus {
  background-color: #941c24;
  text-decoration: none;
}
/* line 139, ../scss/breakpoints/_768up.scss */
.nav.top-nav li ul.sub-menu,
.nav.top-nav li ul.children {
  position: absolute;
  visibility: hidden;
  z-index: 3;
  text-align: left;
  /* highlight sub-menu current page */
}
/* line 146, ../scss/breakpoints/_768up.scss */
.nav.top-nav li ul.sub-menu li,
.nav.top-nav li ul.children li {
  width: 200px;
  /*
  if you need to go deeper, go nuts
  just remember deeper menus suck
  for usability. k, bai.
  */
}
/* line 148, ../scss/breakpoints/_768up.scss */
.nav.top-nav li ul.sub-menu li a,
.nav.top-nav li ul.children li a {
  margin: 0;
  padding-left: 0.60625em;
  display: block;
}
/* line 174, ../scss/breakpoints/_768up.scss */
.nav.top-nav li ul.sub-menu li ul,
.nav.top-nav li ul.children li ul {
  top: 0;
  left: 100%;
}
/* line 189, ../scss/breakpoints/_768up.scss */
.nav.top-nav li:hover > ul {
  top: auto;
  visibility: visible;
  width: 200px;
  background-color: #ed1c24;
}
/* line 195, ../scss/breakpoints/_768up.scss */
.nav.top-nav li:hover > ul li a {
  padding: 0.40625em 0.6em;
}
/* line 197, ../scss/breakpoints/_768up.scss */
.nav.top-nav li:hover > ul li a:hover {
  background-color: #941c24;
  width: 200px;
}
/* line 207, ../scss/breakpoints/_768up.scss */
.nav.top-nav li.current-menu-item,
.nav.top-nav li.current_page_item,
.nav.top-nav li.current_page_ancestor {
  background-color: #941c24;
  transform: skew(-21deg, 1deg);
  -webkit-transform: skew(-21deg, 0deg);
  -moz-transform: skew(-21deg, 0deg);
  -o-transform: skew(-21deg, 0deg);
  -ms-transform: skew(-21deg, 0deg);
}
/* line 216, ../scss/breakpoints/_768up.scss */
.nav.top-nav li.current-menu-item a,
.nav.top-nav li.current_page_item a,
.nav.top-nav li.current_page_ancestor a {
  transform: skew(21deg, 1deg);
  -webkit-transform: skew(21deg, 0deg);
  -moz-transform: skew(21deg, 0deg);
  -o-transform: skew(21deg, 0deg);
  -ms-transform: skew(21deg, 0deg);
}
/* line 227, ../scss/breakpoints/_768up.scss */
.nav.top-nav .sub-menu {
  /* highlight current page */
  /* end current highlighters */
}
/* line 229, ../scss/breakpoints/_768up.scss */
.nav.top-nav .sub-menu li.current-menu-item,
.nav.top-nav .sub-menu li.current_page_item,
.nav.top-nav .sub-menu li.current_page_ancestor {
  transform: skew(0deg, 1deg);
  -webkit-transform: skew(0deg, 0deg);
  -moz-transform: skew(0deg, 0deg);
  -o-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
}
/* line 239, ../scss/breakpoints/_768up.scss */
.nav.top-nav .sub-menu li.current-menu-item a,
.nav.top-nav .sub-menu li.current_page_item a,
.nav.top-nav .sub-menu li.current_page_ancestor a {
  transform: skew(0deg, 1deg);
  -webkit-transform: skew(0deg, 0deg);
  -moz-transform: skew(0deg, 0deg);
  -o-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
}

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 256, ../scss/breakpoints/_768up.scss */
.sidebar {
  display: block;
}
/* line 260, ../scss/breakpoints/_768up.scss */
.sidebar #sidebar-services .service-title {
  padding: 15px 20px;
  font-family: "Arial-Bold";
  font-size: 24px;
  width: 100%;
  background-color: #ed1c24;
  color: #fff;
  margin: 0px;
  position: relative;
  box-shadow: 0px 20px 50px -18px #000;
  -webkit-box-shadow: 0px 20px 50px -18px #000;
  -moz-box-shadow: 0px 20px 50px -18px #000;
  -o-box-shadow: 0px 20px 50px -18px #000;
}
/* line 274, ../scss/breakpoints/_768up.scss */
.sidebar #sidebar-services .responsive-image {
  background-color: #eeeeee;
  margin-bottom: 10px;
}
/* line 277, ../scss/breakpoints/_768up.scss */
.sidebar #sidebar-services .responsive-image p {
  padding: 0 20px;
  margin: 0px;
}
/* line 281, ../scss/breakpoints/_768up.scss */
.sidebar #sidebar-services .responsive-image .button {
  margin: 10px 20px 20px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 291, ../scss/breakpoints/_768up.scss */
.widgettitle {
  display: block;
  font-weight: 700;
}

/* line 296, ../scss/breakpoints/_768up.scss */
.widget {
  margin-bottom: 1.625em;
}
/* line 299, ../scss/breakpoints/_768up.scss */
.widget:last-child {
  margin: 0;
}
/* line 303, ../scss/breakpoints/_768up.scss */
.widget ul {
  margin: 0;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/* line 401, ../scss/breakpoints/_768up.scss */
.no-widgets {
  background-color: #fff;
  margin-bottom: 1.5625em;
  padding: 1.5625em 1.625em 0 1.625em;
  border: 1px solid #eeeeee;
  text-align: center;
}

/*********************
FOOTER STYLES
*********************/
/* line 414, ../scss/breakpoints/_768up.scss */
#footer-map .man-img {
  display: block;
  right: -230px;
  z-index: 2;
  pointer-events: none;
}
/* line 421, ../scss/breakpoints/_768up.scss */
#footer-map .business .left-col .textwidget .box-links .link2 .background-red {
  background-color: #ed1c24;
  padding: 5px 28px;
  margin-right: 50px;
}
/* line 427, ../scss/breakpoints/_768up.scss */
#footer-map .business .left-col .textwidget .box-links .link1 .background-red {
  padding: 19px;
}
/* line 430, ../scss/breakpoints/_768up.scss */
#footer-map .map .button {
  margin: 265px 0 44px 95px;
  padding: 8px 20px;
}

/* line 435, ../scss/breakpoints/_768up.scss */
.footertitle {
  text-align: left;
}

/* line 438, ../scss/breakpoints/_768up.scss */
#menu-footer-links {
  text-align: left;
}

/* line 441, ../scss/breakpoints/_768up.scss */
#footer-map .business .left-col .textwidget .box-links {
  height: 362px;
}

/* line 451, ../scss/breakpoints/_768up.scss */
#footer-map .business {
  width: 50%;
  float: left;
  background-color: #000;
  position: relative;
}
/* line 456, ../scss/breakpoints/_768up.scss */
#footer-map .business .left-col {
  max-width: 570px;
  float: right;
}
/* line 461, ../scss/breakpoints/_768up.scss */
#footer-map .map {
  width: 50%;
  float: left;
}
/* line 464, ../scss/breakpoints/_768up.scss */
#footer-map .map .map-img {
  background-image: url(/wp-content/uploads/FlashFibres-home-map.png);
  background-size: cover;
}
/* line 468, ../scss/breakpoints/_768up.scss */
#footer-map .map .footertitle {
  padding-left: 30px;
}

/* line 474, ../scss/breakpoints/_768up.scss */
#footer-why-choose .footertitle {
  text-align: center;
}
/* line 477, ../scss/breakpoints/_768up.scss */
#footer-why-choose .why-box {
  width: 25%;
  float: left;
}

/* line 483, ../scss/breakpoints/_768up.scss */
#footer-case-studies .case-studies {
  width: 50%;
  float: left;
  padding: 20px;
  border-right: 1px solid #ed1c24;
}
/* line 488, ../scss/breakpoints/_768up.scss */
#footer-case-studies .case-studies .left-col {
  max-width: 530px;
  float: right;
}
/* line 496, ../scss/breakpoints/_768up.scss */
#footer-case-studies .how-we-work {
  width: 50%;
  float: left;
  padding: 20px;
}
/* line 500, ../scss/breakpoints/_768up.scss */
#footer-case-studies .how-we-work .right-col {
  max-width: 530px;
  float: left;
}
/* line 503, ../scss/breakpoints/_768up.scss */
#footer-case-studies .how-we-work .right-col .service {
  padding-top: 7px;
}
/* line 506, ../scss/breakpoints/_768up.scss */
#footer-case-studies .how-we-work .right-col .service .clear {
  margin-bottom: 6px;
}

/* line 519, ../scss/breakpoints/_768up.scss */
#inner-footer .fa-fw {
  font-size: 42px;
}
/* line 522, ../scss/breakpoints/_768up.scss */
#inner-footer .timings p {
  font-size: 14px;
}
/* line 524, ../scss/breakpoints/_768up.scss */
#inner-footer .timings p .box {
  font-size: 14px;
  min-width: 98px;
  float: left;
}
/* line 530, ../scss/breakpoints/_768up.scss */
#inner-footer .center {
  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!
*/
/* line 542, ../scss/breakpoints/_768up.scss */
.footer-links ul li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */
}

/* end .footer-links */
/*********************
HOME PAGE STYLES
*********************/
/* line 559, ../scss/breakpoints/_768up.scss */
#home-slider .flexslider .figure {
  height: 23.4375em;
}

/* line 562, ../scss/breakpoints/_768up.scss */
#contact-form-float {
  position: fixed;
  z-index: 3;
  top: 15%;
  width: 500px;
  border-width: 0em;
  border-style: solid;
  padding: 0.8125em;
  -moz-box-shadow: #eeeeee 0px 0px 0px 1px;
  -webkit-box-shadow: #eeeeee 0px 0px 0px 1px;
  box-shadow: #eeeeee 0px 0px 0px 1px;
  background-color: #fff;
}
/* line 571, ../scss/breakpoints/_768up.scss */
#contact-form-float .contact-form-float-toggle {
  display: block;
  position: absolute;
  z-index: 11;
  left: 0;
  top: 0;
  margin: 0;
  font-size: 1.5em;
  line-height: 1.625em;
  line-height: 1;
  border-width: 0em;
  border-style: solid;
  padding: 0.8125em;
  border: none;
  outline: none;
  background-color: #0095dd;
  color: #fff;
  -webkit-transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -o-transform-origin: 0% 0%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -moz-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 602, ../scss/breakpoints/_768up.scss */
#contact-form-float .wpcf7-submit {
  margin: 0;
}

/* line 606, ../scss/breakpoints/_768up.scss */
#home-bann-bottom {
  font-size: 28px;
}

/* line 610, ../scss/breakpoints/_768up.scss */
#home-signup-bannre h2 {
  font-size: 36px;
}
/* line 613, ../scss/breakpoints/_768up.scss */
#home-signup-bannre .align-center {
  text-align: center;
  padding-top: 8px;
}
/* line 616, ../scss/breakpoints/_768up.scss */
#home-signup-bannre .align-center .button {
  font-size: 30px;
}

/* line 622, ../scss/breakpoints/_768up.scss */
#home-services .service {
  width: 33% !important;
}
/* line 624, ../scss/breakpoints/_768up.scss */
#home-services .service .figcaption {
  padding: 10px;
}
/* line 626, ../scss/breakpoints/_768up.scss */
#home-services .service .figcaption h3 {
  font-size: 20px;
  padding: 0px 0;
}
/* line 630, ../scss/breakpoints/_768up.scss */
#home-services .service .figcaption p {
  font-size: 13px;
}

/* line 636, ../scss/breakpoints/_768up.scss */
.col30 {
  width: 29%;
  float: left;
}

/* line 640, ../scss/breakpoints/_768up.scss */
.col70 {
  width: 69%;
  float: left;
}

/* line 644, ../scss/breakpoints/_768up.scss */
.page-template-default #inner-content, .page-template-page-faq #inner-content, .page-template-page-contact #inner-content, .blog #inner-content, .page-template-page-project #inner-content {
  padding-top: 50px;
}

/* line 649, ../scss/breakpoints/_768up.scss */
#content #inner-content {
  padding-top: 50px;
}

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

******************************************************************/
/*#footer-map .business .left-col {
    width: 570px;
    float: right;
}*/
/* line 15, ../scss/breakpoints/_1030up.scss */
.footertitle {
  font-size: 34px;
}

/* line 18, ../scss/breakpoints/_1030up.scss */
#footer-map .footertitle1 {
  font-size: 24px;
}

/* line 21, ../scss/breakpoints/_1030up.scss */
#footer-map .map .footertitle {
  padding-left: 80px;
}

/* line 26, ../scss/breakpoints/_1030up.scss */
#footer-map .man-img {
  display: block;
  right: -230px;
}

/* line 37, ../scss/breakpoints/_1030up.scss */
#footer-map .business .left-col .textwidget .box-links .link2 .background-red {
  width: 206px;
  padding: 23px 30px;
}

/* line 48, ../scss/breakpoints/_1030up.scss */
#inner-footer .fa-fw {
  font-size: 58px;
}
/* line 51, ../scss/breakpoints/_1030up.scss */
#inner-footer .timings p {
  font-size: 16px;
}
/* line 53, ../scss/breakpoints/_1030up.scss */
#inner-footer .timings p .box {
  font-size: 16px;
  width: 130px;
}

/* line 60, ../scss/breakpoints/_1030up.scss */
#phone .fa {
  padding: 0 5px 0 35px;
}

/* line 65, ../scss/breakpoints/_1030up.scss */
#home-services .service {
  width: 33% !important;
}
/* line 67, ../scss/breakpoints/_1030up.scss */
#home-services .service .figcaption {
  padding: 30px;
}
/* line 70, ../scss/breakpoints/_1030up.scss */
#home-services .service .figcaption h3 {
  font-size: 28px;
  padding: 20px 0;
}
/* line 74, ../scss/breakpoints/_1030up.scss */
#home-services .service .figcaption p {
  font-size: 16px;
}

/* line 81, ../scss/breakpoints/_1030up.scss */
#home-signup-bannre h2 {
  padding: 32px;
}
/* line 84, ../scss/breakpoints/_1030up.scss */
#home-signup-bannre .align-center .button {
  padding: 10px 30px;
}

/* line 88, ../scss/breakpoints/_1030up.scss */
#footer-case-studies .how-we-work .padding-top10 {
  width: 85%;
}

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

*/
