/*	12 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */
/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(http://growthdevil.com/scripts/boxsizing.htc);
  /*	If you need support for IE7 and lower make 
  	sure the boxsizing.htc file is linked properly.
  	More info here:  https://github.com/Schepp/box-sizing-polyfill */ }

/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }

/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after,
.col:after,
.clr:after,
.group:after {
  content: "";
  display: table;
  clear: both; }

/* 	DEFAULT ROW STYLES 
	Set bottom padding according to preference */
.row {
  padding-bottom: 0em; }

/* DEFAULT COLUMN STYLES */
.col {
  display: block;
  float: left;
  width: 100%;
  /*background-color: red;*/ }

@media (min-width: 768px) {
  .gutters .col {
    margin-left: 2%; }

  .gutters .col:first-child {
    margin-left: 0; } }
/*	COLUMN WIDTH ON DISPLAYS +768px 
	You might need to play with media queries here to suite your design. */
@media (min-width: 768px) {
  .span_1 {
    width: 8.33333333333%; }

  .span_2 {
    width: 16.6666666667%; }

  .span_3 {
    width: 25%; }

  .span_4 {
    width: 33.3333333333%; }

  .span_5 {
    width: 41.6666666667%; }

  .span_6 {
    width: 50%; }

  .span_7 {
    width: 58.3333333333%; }

  .span_8 {
    width: 66.6666666667%; }

  .span_9 {
    width: 75%; }

  .span_10 {
    width: 83.3333333333%; }

  .span_11 {
    width: 91.6666666667%; }

  .span_12 {
    width: 100%; }

  .gutters .span_1 {
    width: 6.5%; }

  .gutters .span_2 {
    width: 15.0%; }

  .gutters .span_3 {
    width: 23.5%; }

  .gutters .span_4 {
    width: 32.0%; }

  .gutters .span_5 {
    width: 40.5%; }

  .gutters .span_6 {
    width: 49.0%; }

  .gutters .span_7 {
    width: 57.5%; }

  .gutters .span_8 {
    width: 66.0%; }

  .gutters .span_9 {
    width: 74.5%; }

  .gutters .span_10 {
    width: 83.0%; }

  .gutters .span_11 {
    width: 91.5%; }

  .gutters .span_12 {
    width: 100%; } }
/* *********************************************************************************************************************
 * Small devices
 */
@media all and (max-width: 767px) {
  .col {
    float: none;
    width: 99%; } }
/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  padding-left: 40px;
  /*list-style: none; */ }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  /* override native ios rendering */
  -webkit-appearance: none; }

/* #Basic Styles
================================================== */
body {
  background: #fff;
  font: 14px/21px 'Arial', sans-serif;
  color: #444;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%; }

img.scale-with-grid {
  max-width: 100%;
  height: auto; }

/* #Buttons
================================================== */
a.more-link,
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background: #BF1E2E;
  /* Old browsers */
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 20px;
  line-height: normal;
  padding: 8px 30px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: white;
  background-color: #BF1E2E;
  height: 40px; }

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  /*color: #222;*/
  opacity: 0.9;
  background: #BF1E2E;
  /* Old browsers */ }

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  background: #BF1E2E; }

.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center; }

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* #Forms
================================================== */
form {
  margin-bottom: 20px; }

fieldset {
  margin-bottom: 20px; }

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  font-family: 'Arial', sans-serif;
  border: none;
  padding: 0 44px;
  outline: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #999;
  margin: 0;
  width: 210px;
  max-width: 100%;
  display: block;
  margin-bottom: 20px;
  background-color: #EFF0F2;
  font-size: 16px; }

select {
  padding: 0; }

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  color: #454e5c;
  background-color: #dde0e5; }

textarea {
  min-height: 60px; }

label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px; }

select {
  width: 220px; }

input[type="checkbox"] {
  display: inline; }

label span,
legend span {
  font-weight: normal;
  font-size: 13px;
  color: #444; }

input[type="text"],
input[type="password"],
input[type="email"] {
  height: 40px;
  width: 300px;
  line-height: 40px; }

textarea {
  width: 450px;
  min-height: 120px;
  padding: 16px 20px;
  overflow: auto; }

form p {
  margin: 0 !important;
  padding: 0 !important; }

/* Alerts */
.alert,
.wpcf7-validation-errors {
  padding: 8px 35px 8px 14px;
  margin: 0 20px 0 0 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.wpcf7-validation-errors,
.alert,
.alert h4 {
  color: #c09853; }

.alert h4 {
  margin: 0; }

.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847; }

.alert-success h4 {
  color: #468847; }

.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48; }

.alert-danger h4,
.alert-error h4 {
  color: #b94a48; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad; }

.alert-info h4 {
  color: #3a87ad; }

.alert-block {
  padding-top: 14px;
  padding-bottom: 14px; }

.alert-block > p,
.alert-block > ul {
  margin-bottom: 0; }

.alert-block p + p {
  margin-top: 5px; }

/* CSS Document */
* {
  margin: 0px;
  padding: 0px;
  /*position: relative;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Let's get this party started */
::-webkit-scrollbar {
  width: 8px; }

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px; }

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 0, 0, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 0, 0, 0.4); }

body {
  font-family: 'Arial', sans-serif;
  transition: all 0.5s ease;
  overflow-y: scroll;
  overflow-x: hidden; }

::-webkit-scrollbar {
  width: 8px; }

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px; }

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(28, 35, 52, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(28, 35, 52, 0.4); }

html {
  height: 100%;
  background: white; }

body {
  font-family: 'Arial', Helvetica, Arial, sans-serif;
  /*color:#454e5c;*/
  background: #fff;
  position: relative;
  height: auto !important;
  min-height: 100%;
  height: 100%;
  color: #454e5c;
  margin: 0 0 10px; }

body.custom-background-empty {
  background-color: white; }

h1, h2, h3, h4, h5 {
  color: #454e5c;
  padding-top: 0;
  font-weight: 700;
  margin: 6px 0;
  letter-spacing: -1px; }
  h1.thin, h2.thin, h3.thin, h4.thin, h5.thin {
    font-weight: 300; }
  h1 a, h2 a, h3 a, h4 a, h5 a {
    color: #454e5c; }
  h1 a:hover,
  h1 a:visited,
  h1 a:active, h2 a:hover,
  h2 a:visited,
  h2 a:active, h3 a:hover,
  h3 a:visited,
  h3 a:active, h4 a:hover,
  h4 a:visited,
  h4 a:active, h5 a:hover,
  h5 a:visited,
  h5 a:active {
    color: #454e5c; }

h1 {
  font-size: 48px;
  line-height: 60px; }
  @media (max-width: 767px) {
    h1 {
      font-size: 38px;
      line-height: 50px; } }

h2 {
  font-size: 36px;
  line-height: 45px; }
  h2.entry-title {
    margin-top: 0; }
  @media (max-width: 767px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }

h3 {
  font-size: 28px;
  line-height: 42px; }
  @media (max-width: 767px) {
    h3 {
      font-size: 22px;
      line-height: 28px; } }

h4 {
  font-size: 22px;
  line-height: 38px; }
  @media (max-width: 767px) {
    h4 {
      font-size: 18px;
      line-height: 22px; } }

h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0; }
  @media (max-width: 767px) {
    h5 {
      font-size: 16px;
      line-height: 20px; } }

p {
  /*font-size:16px;
  line-height:27px;*/
  font-size: 14px;
  line-height: 22px;
  color: #454e5c;
  margin-bottom: 15px; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

a,
a:visited {
  color: #0082c3;
  text-decoration: none; }

a:hover,
a:active {
  color: #006ea4; }

.text-center {
  text-align: center; }

.img-thumbnail {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  /*border-radius: 4px;*/
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

@font-face {
  font-family: icomoon;
  src: url(../fonts/icomoon.eot);
  src: url(../fonts/icomoon.eot#iefix) format("embedded-opentype"), url(../fonts/icomoon.woff) format("woff"), url(../fonts/icomoon.ttf) format("truetype"), url(../fonts/icomoon.svg) format("svg");
  font-weight: 400;
  font-style: normal; }

[data-icon]:before {
  font-family: icomoon;
  content: attr(data-icon);
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.icon-arrow-down, .icon-close, .icon-mail, .icon-twitter, .icon-user, .icon-list,
.icon-facebook, .icon-google, .icon-linkedin, .icon-pinterest,
.icon-rss, .icon-right-arrow {
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-close:before {
  content: "\e700"; }

.icon-mail:before {
  content: "\e001"; }

.icon-user:before {
  content: "\e000"; }

.icon-list:before {
  /*content:"\e005"*/
  content: "\e701"; }

/* Social */
.icon-twitter:before {
  content: "\e200"; }

.icon-facebook:before {
  content: "\e201"; }

.icon-google:before {
  content: "\e202"; }

.icon-linkedin:before {
  content: "\e203"; }

.icon-pinterest:before {
  content: "\e205"; }

.icon-rss:before {
  content: "\e204"; }

.icon-right-arrow-circle:before {
  content: "\e600"; }

.icon-right-arrow:before {
  content: "\e612"; }

.icon-download {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/icon-download.png) no-repeat; }

#mobile_area {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: +100; }

.mobile_menu {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: +100;
  width: 100%;
  background-color: #B7101E;
  display: none; }

.mobile_menu ul {
  list-style-type: none;
  text-align: center;
  padding: 1px 1px 1px 1px; }

.mobile_menu ul li {
  font-size: 15px;
  padding: 15px 10px; }

.mobile_menu ul li:hover {
  background-color: #BF1E2E; }

.mobile_menu ul li a {
  text-decoration: none;
  color: #FFF;
  font-family: "Arial";
  display: block;
  text-align: left !important; }

@media (max-width: 767px) {
  .col {
    float: left; } }

blockquote, blockquote p {
  font-size: 30px;
  line-height: 45px;
  font-style: italic;
  font-weight: 300;
  color: #8e959c; }

address {
  margin-bottom: 20px; }

.address-box {
  margin-left: 10px; }
  @media (min-width: 768px) {
    .address-box {
      margin-top: 0px;
      margin-left: 20px; } }

li {
  margin-bottom: 10px; }

/*
.container h2 {
	margin-bottom:44px
}
.container p {
	margin-bottom:20px
}
.container p:last-child {
	margin-bottom:0
}*/
.entry-content img {
  margin-bottom: 10px; }

.full-width {
  width: 100%;
  min-width: 100%; }

.img {
  max-width: 100%; }

.wrapper {
  position: relative;
  z-index: 10;
  display: table;
  height: 100%;
  width: 100%;
  background: white; }


#header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 62px;
  display: table;
  /*left: 0;*/
  /*top: 0;*/
  /* height is dynamic, and will expand as content is added (won't scroll) */
  /*height: 100%;*/
  background-repeat: repeat-x;
  width: 100%;
  /*background:#1c2334;*/
  background: transparent; }
  #header .container-full {
    height: 62px;
    background: white;
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px #DADBDF solid;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); }

#header.home {
  position: absolute;
  background: transparent;
  z-index: 100;
  top: 0;
  left: 0; }
  #header.home .top_nav {
    float: right; }
    #header.home .top_nav li a {
      color: white;
      color: rgba(255, 255, 255, 0.7); }
      #header.home .top_nav li a:hover {
        color: white; }
      #header.home .top_nav li a .icon-list {
        color: inherit;
        /*color: $bodyWhiteColor;
        color: rgba(255, 255, 255, 0.7);			*/
        margin-right: 0px;
        font-size: 34px; }
        #header.home .top_nav li a .icon-list:hover {
          color: white; }

#header.home .container-full {
  background: transparent;
  border-bottom: none;
  box-shadow: none; }

#logo {
  width: 270px;
  height: auto;
  text-align: left;
  }


.left_navigation {
  display: block;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow: hidden; }

.left_navigation li {
  display: block;
  width: 95%;
  background-color: #f5f6f7;
  border-bottom: 1px solid #e5e5e5;
  margin-left: 0;
  background-repeat: no-repeat;
  background-position: center bottom; }

.left_navigation li:last-child {
  background-image: none; }

.left_navigation li a {
  /*font-family:"Arial";*/
  color: #454e5c;
  font-size: 16px;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  padding-left: 20px; }

.left_navigation li:hover, .left_navigation li.current_page_item {
  border-color: #bf1e2e; }

.left_navigation li a:hover, .left_navigation li.current_page_item a {
  color: white !important;
  font-weight: 700;
  background-color: #BF1E2E;
  position: relative; }

.container {
  position: relative;
  /*font-family:'Arial', sans-serif;
  font-size:14px;
  font-weight:400;*/
  /*color:#8e959c;*/
  /*line-height:24px*/ }

.container-full {
  padding: 0 20px; }

#homepage .container {
  max-width: 960px;
  padding-top: 100px;
  padding-bottom: 70px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8e959c;
  line-height: 24px;
  padding-left: 10px;
  padding-right: 10px; }

#homepage .container.slogan {
  max-width: 1040px; }

#homepage .container h2 {
  padding-top: 10px; }

.section1 {
  background-color: #1a1d24; }

#homepage .section1 .container {
  padding-top: 50px;
  padding-bottom: 70px; }

.section1 h1 {
  color: #f0f0f0;
  text-align: center;
  font-weight: 300; }

.section1 h1 span {
  font-family: 'Arial', sans-serif;
  font-size: 45px;
  color: #bf1e2e; }

.section2 {
  background-color: white; }

.section2 .text {
  padding-left: 70px; }

.section3 .graph img {
  padding-top: 106px;
  max-width: 100%; }

.section3 .text {
  padding-right: 40px; }

.section4 {
  background-color: white; }

.section4 article {
  text-align: center; }

.section4 article h2 {
  text-align: left; }

.section4 article p {
  text-align: left; }

.graph2 {
  margin-top: -10px; }

.section5 article {
  text-align: center; }

.section5 article h2 {
  text-align: left; }

.section5 article p {
  text-align: left; }

.map {
  margin-top: 10px; }

.section6 {
  background-color: #BF1E2E;
  text-align: center;
  color: #fff; }

.section6 h2 {
  color: white; }

#homepage .section6 .container {
  padding: 35px 0; }

/*
.button {
	display:inline-block;
	width:245px;
	height:60px;
	border-radius:5px;
	cursor:pointer;
	border:0;
	font-family:Arial;
	font-size:24px;
	color:#1c2334;
	line-height:42px;
	background-color:#F2F3F5;

	display:inline-block;
	font-size:14px;
	
	text-align: center;
	margin-right: 0px;
	margin-left: 0px;
	color: $bodyWhiteColor;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;

	behavior:url(http://growthdevil.com/wp-content/themes/GD/css/border-radius.htc);
	background-color: $buttonColor;


	background-color: $buttonColor;
	width: 155px;
	padding-top: 0;
	padding-bottom: 0;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: $bodyWhiteColor;
	margin-top: 15px;
	margin-bottom: 0;

	@media (max-width :767px) {
		width: 100%;
	}

}

.home a.btn {

}
*/
#page-title {
  display: table-row;
  /* height is dynamic, and will expand as content is added (won't scroll) */
  background-color: black;
  margin: 0; }

#page-title .container {
  padding-top: 20px;
  padding-bottom: 22px; }

#page-title h1 {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: 300; }
  @media (max-width: 767px) {
    #page-title h1 {
      font-size: 28px;
      line-height: 34px; } }

#inner-page {
  padding: 20px 0; }

#page-middle {
  display: table-row;
  /* height is dynamic, and will expand as content is added (won't scroll) */
  padding: 0 10px; }

#primary {
  padding-right: 0; }

#page-middle img {
  max-width: 100%;
  height: auto; }

#page-left {
  padding: 0 10px; }

@media (min-width: 767px) {
  #inner-page {
    padding: 40px 0; }

  #page-left {
    margin-bottom: 30px; }

  #page-middle {
    padding: 0 20px 20px 20px; }

  .contact #page-middle {
    padding: 0; }

  #primary {
    padding-right: 30px; } }
.col-inner {
  padding: 10px;
  position: relative; }

canvas {
  display: block; }

/* To remove the scrollbars */
#about p {
  text-align: justify; }
#about a:hover h4,
#about a:active h4,
#about a:hover i,
#about a:active i {
  color: #0082c3; }
#about #inner-page {
  padding-bottom: 22px; }
#about #page-middle {
  padding-bottom: 0px;
  margin-bottom: 0px; }
#about i {
  color: white;
  font-size: 56px; }
  @media (max-width: 1024px) {
    #about i {
      font-size: 46px; } }
#about h4 {
  /*line-height: 30px;*/
  margin-bottom: 16px; }
#about .about-statistics,
#about .about-results {
  position: relative;
  color: white;
  background-color: #303030;
  padding-bottom: 20px;
  padding-top: 20px; }
  #about .about-statistics h4,
  #about .about-statistics p,
  #about .about-results h4,
  #about .about-results p {
    color: white; }
  #about .about-statistics i,
  #about .about-results i {
    position: relative;
    left: 10px;
    top: 4px; }
    #about .about-statistics i.icon-download,
    #about .about-results i.icon-download {
      top: 10px;
      left: 0; }
      @media (max-width: 768px) {
        #about .about-statistics i.icon-download,
        #about .about-results i.icon-download {
          margin: auto;
          margin-bottom: 5px; } }
  @media (max-width: 768px) {
    #about .about-statistics,
    #about .about-results {
      text-align: center; } }
#about .footer-banner p {
  text-align: center; }
#about .about-statistics {
  padding-top: 60px;
  padding-bottom: 0px; }
#about .about-results {
  padding-top: 30px;
  padding-bottom: 30px; }
  #about .about-results .col-inner h3 {
    color: white; }
#about .about-section-2 {
  padding-top: 40px;
  padding-bottom: 20px;
  /*text-align: center;*/ }
  #about .about-section-2 .col {
    /*width: 600px;*/
    /*margin-left: 40px*/ }
#about .about-download h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px; }
#about .about-clients {
  padding: 32px 0 40px; }
#about .about-tools {
  text-align: center; }
  #about .about-tools img {
    /*max-width: 100%;*/ }
#about .about-graph {
  /*background: url(../images/temp-about-graph.jpg) no-repeat;*/
  background-position: bottom;
  /*margin-bottom: -23px;
  margin-top: -30px;*/
  padding-bottom: 0px; }
  #about .about-graph .canvas-container {
    overflow: hidden; }
    #about .about-graph .canvas-container #canvas {
      margin-left: -8px;
      /*so edge is off screen*/ }
#about .about-process {
  /*padding-top: 30px;*/
  padding-bottom: 40px;
  text-align: center;
  position: relative; }
  #about .about-process span.number {
    display: inline-block;
    *display: inline;
    border: 1px solid #DDD;
    width: 90px;
    height: 90px;
    border-radius: 45px;
    text-align: center;
    line-height: 88px;
    font-size: 52px;
    /*padding: 30px;*/
    font-weight: 600;
    color: #04a9ba; }
  #about .about-process h5 {
    margin-top: 15px; }
  #about .about-process .icon {
    position: absolute;
    right: -12px;
    top: 40px;
    font-size: 36px;
    color: #d1d1d1; }
    @media (max-width: 768px) {
      #about .about-process .icon {
        /*right: auto;
        bottom: 0;*/
        display: none; } }

.error404 {
  text-align: center;
  padding: 0 10px; }
  @media (max-width: 767px) {
    .error404 {
      padding-top: 30px; } }
  .error404 img {
    opacity: 0;
    -moz-transition: opacity 2s;
    /* Firefox 4 */
    -webkit-transition: opacity 2s;
    /* Safari and Chrome */
    -o-transition: opacity 2s;
    transition: opacity 2s; }
    @media (max-width: 767px) {
      .error404 img {
        width: 200px; } }
  .error404 h1 {
    font-size: 70px;
    margin: 20px;
    letter-spacing: 1px; }
  .error404 p {
    font-size: 18px;
    margin-bottom: 30px; }
  .error404 .search {
    position: relative;
    text-align: left;
    width: 500px;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .error404 .search {
        width: 100%; } }
  .error404 form {
    position: relative; }
  .error404 label {
    display: none; }
  .error404 input[type="text"] {
    border-radius: 0;
    background: white;
    border: 1px solid black;
    color: #454e5c; }
  .error404 input[type="text"] {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
    padding-left: 20px; }
    @media (min-width: 767px) {
      .error404 input[type="text"] {
        height: 40px; } }
  .error404 input[type="submit"] {
    position: relative;
    top: -1px;
    height: 50px;
    width: 100%;
    padding: 0;
    text-transform: uppercase;
    color: white;
    border: 1px solid black;
    border-radius: 0;
    background: #04a9ba;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0; }
    @media (min-width: 767px) {
      .error404 input[type="submit"] {
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        width: 35%; } }
  .error404 input[type="submit"]:hover {
    /*background: $brandBlackLight;*/
    color: white; }

.footer-banner {
  background-color: black;
  border-bottom: 1px solid #303030;
  text-align: center; }

.footer-banner .container {
  padding-top: 40px;
  padding-bottom: 56px; }

.footer-banner h3,
.footer-banner p {
  color: #fff;
  margin-bottom: 10px; }

.footer-banner a.button {
  width: auto; }

.calltoaction h2 {
  margin-bottom: 10px; }

.calltoaction p {
  color: white; }

.entry-content {
  margin-bottom: 40px; }

#comments ol {
  list-style: none; }

.line {
  border-bottom: 1px solid #e9ebea; }

.commentlist li {
  padding-top: 15px;
  padding-bottom: 0;
  border-top: 1px solid #e9ebea; }

#page-middle .commentlist p {
  line-height: 26px;
  font-size: 16px; }

.commentlist header {
  margin-bottom: 12px; }

.commentlist header img {
  position: relative;
  top: 15px;
  border-radius: 24px;
  margin-right: 20px; }

.commentlist header time {
  margin-right: 15px; }

.commentlist header cite {
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  margin-right: 12px;
  margin-top: -15px; }

#page-middle .comment-reply-link {
  color: #bf1e2e; }

.commentlist section {
  margin-left: 64px;
  padding-bottom: 10px; }

.commentlist time {
  color: #999999; }

.comment.depth-2 {
  margin-left: 64px; }

.comment-form-comment label {
  display: none; }

#page-middle ul.team li {
  width: 47%;
  float: left;
  margin-bottom: 40px;
  list-style: none; }

#page-middle ul.team h5 {
  padding-top: 10px;
  margin-bottom: 5px; }

#page-middle ul.team li:nth-child(odd) {
  margin-right: 40px; }

#page-middle ul.team p {
  color: #8e959c;
  font-size: 16px;
  margin-bottom: 0; }

#page-middle ul.team a {
  color: #BF1E2E;
  font-size: 16px; }

ul.team i {
  margin-right: 5px;
  position: relative;
  top: 2px;
  color: #ccc;
  -webkit-transition: all .25s linear;
  -moz-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all 0.25s linear; }

ul.team a:hover i {
  color: #bf1e2e; }

ul.team a.twitter {
  margin-right: 20px; }

#footer {
  display: table-row;
  /* height is dynamic, and will expand as content is added (won't scroll) */
  background-color: black;
  /*#1c2334;*/
  position: relative;
  /*height:145px;*/
  width: 100%;
  color: white; }
  #footer p {
    color: white; }
  @media (max-width: 768px) {
    #footer {
      /*text-align: center;*/ } }

.footer-copyright {
  background-color: #303030;
  height: 100px;
  margin-top: 70px;
  /*position:absolute;
  bottom:0;
  left:0;*/ }

.footer-copyright p {
  line-height: 100px;
  font-size: 12px;
  color: inherit;
  margin-bottom: 0; }

.section6 {
  padding-bottom: 145px !important; }

#footer nav {
  float: left; }

#footer nav ul {
  list-style-type: none;
  margin-bottom: 10px; }

#footer nav ul li {
  margin-right: 90px;
  display: inline;
  color: white; }

#footer nav ul li a {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: white; }

#footer .social {
  float: right; }

.GD-lightbox .fancybox-inner img {
  border-radius: 4px 4px 0 0; }

.GD-lightbox .fancybox-title {
  width: 100%;
  background-color: #BF1E2E;
  font-size: 26px;
  line-height: 42px;
  padding: 20px 30px;
  margin-top: 0;
  border-radius: 0 0 4px 4px; }

.GD-lightbox .fancybox-close {
  width: 55px;
  height: 55px;
  border-radius: 4px;
  right: -68px;
  top: 0;
  background-image: url(../images/lightbox-close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #bf1e2e; }

.GD-lightbox .fancybox-close:hover {
  opacity: 0.8; }

a {
  transition: opacity 0.3s ease; }

#form-email input, #form-name input, input#email, input#author {
  background-repeat: no-repeat;
  background-position: 14px center; }

#form-email input, #form-name input {
  width: 100%; }

#form-email {
  margin-right: 10%; }

#contact-form {
  position: relative; }

#contact-form .container {
  padding: 0; }

#contact-form textarea {
  width: 100%;
  min-height: 170px; }

#form-email input, input#email {
  background-image: url(../images/icon-mail.png); }

#form-name input, input#author {
  background-image: url(../images/icon-user.png); }

@media (max-width: 767px) {
  #contact-form #form-email {
    float: none;
    margin-right: 0; }

  input[type=text], input[type=password], input[type=email] {
    height: 50px;
    line-height: 50px;
    width: 100%; }

  textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px 20px; }

  #page-right {
    /*display:none*/ } }
.error404 {
  margin-top: 60px; }

.flare-vertical {
  width: 60px; }

.flare-flyout {
  height: 100px; }

.flare-right .flare-flyout {
  right: -10px; }

.flare-flyout.hover, .flare-flyout:hover {
  width: 160px; }

.flare-flyout .flare-flyout-inner {
  width: 75px;
  height: 78px; }

.flare-right .flare-flyout .flare-iframe-wrapper {
  left: auto;
  right: 84px;
  top: 18px; }

.flare-horizontal.enabletotal {
  min-height: 70px; }

.flare-horizontal .flare-flyout.hover, .flare-horizontal .flare-flyout:hover {
  height: 60px; }

.flare-horizontal .flare-flyout .flare-flyout-inner {
  height: 31px; }

@media (min-width: 767px) {
  .left_navigation.hide-menu {
    display: block !important;
    opacity: 1; } }
@media (max-width: 1024px) {
  #page-right {
    display: none; }

  #page-middle {
    width: 100%; }

  ul.team li {
    width: 100%; } }
@media (max-width: 767px) {
  .col, #page-middle {
    width: 100%; }

  #logo {
    margin-left: 0; }

  #header {
    height: auto; }

 /*
.top_nav ul {
float:none;
margin:10px auto;
width:360px;
margin-bottom:0
}*/
  #footer {
    /*height:350px*/ }

  .section6 {
    padding-bottom: 350px !important; }

  #footer nav {
    float: none; }

  #footer nav ul li {
    display: block; }

  #footer nav ul li a {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px; }

  #footer nav ul {
    margin-left: 0;
    margin-bottom: 20px; }

  #footer .social {
    float: none;
    margin-bottom: 20px; }

  #header .container, #page-title .container {
    padding-left: 10px;
    padding-right: 10px; }

  .left_navigation {
    width: 100%;
    padding-right: 0;
    display: none; }

  .left_navigation li {
    position: relative;
    width: 100%;
    margin-left: 0; }

  .left_navigation li a:hover, .left_navigation li.current_page_item a {
    background-color: #BF1E2E;
    background-image: none; }

  #homepage .container {
    padding: 80px 20px; }

  #homepage .container h2 {
    line-height: 60px;
    font-size: 45px; }

  #homepage .container h3 {
    margin-bottom: 30px; }

  #homepage article {
    text-align: center; }

  .section2 .text {
    padding-left: 0; }

  .section3 .text {
    padding-right: 0; }

  .section3 p {
    width: 100%; }

  .section3 .graph img {
    padding-top: 30px; }

  .phone img {
    max-width: 100%; }

  .phone, .graph, .graph2, .map {
    position: relative;
    max-width: 100%;
    float: none; }

  .social {
    float: none; }

  ul.team li {
    width: 100%;
    float: none;
    margin-right: 0; } }
#pty_afflinkShell {
  text-align: center; }

#pty_afflink {
  color: #FFF9E1;
  text-align: center;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
  text-shadow: 1px 1px 0 #4B3501;
  top: 109px;
  font-style: italic;
  font-family: Georgia;
  font-size: 13px;
  padding: 6px 14px 6px 26px;
  background: url(http://growthdevil.com/wp-content/themes/GD/css/pty_images/icon.png) no-repeat scroll 5px 5px rgba(21, 16, 9, 0.6); }

#pty_name {
  display: none !important; }

#pty_classy {
  background: white !important;
  padding: 0;
  height: auto;
  font-family: 'Arial', sans-serif;
  overflow: visible;
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#pty_classyInner {
  width: auto;
  position: relative; }

#pty_form {
  position: relative;
  left: 0;
  bottom: 0; }

#pty_overlay {
  opacity: .8;
  background: none repeat scroll 0 0 #56534e; }

#pty_content {
  height: auto;
  position: relative;
  padding: 0;
  top: 0; }

#pty_imageShell {
  float: right;
  margin-right: 30px; }

#pty_image {
  width: 180px; }

#pty_heading {
  line-height: 100%;
  color: #555;
  font-family: "Arial", sans-serif !important;
  text-shadow: none;
  width: auto;
  text-align: left;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  padding: 9px 15px; }

#pty_mainText {
  font-family: "Arial", sans-serif !important;
  position: relative;
  z-index: 2;
  color: #555;
  font-size: 18px;
  width: auto;
  line-height: 160%;
  padding: 15px;
  border-bottom: 1px solid #eeeeee; }

#pty_form {
  font-family: "Arial", sans-serif !important;
  padding: 20px 15px 18px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1; }

#pty_form:after {
  clear: both; }

#pty_form:before, #pty_form:after {
  display: table;
  content: "";
  line-height: 0; }

#pty_form .pty_input[type=text] {
  display: none;
  color: #787878;
  font-size: 26px;
  float: left;
  width: 44%;
  margin-right: 0;
  background: #fff;
  height: 47px;
  line-height: 47px;
  padding: 0 8px 0 20px;
  line-height: 125%;
  border: 0 none;
  font-size: 18px;
  font-family: "Arial", sans-serif !important;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle; }

#pty_form #pty_submit {
  font-family: "Arial", sans-serif !important;
  padding-top: 0;
  border: 0 none;
  text-align: center;
  padding: 0 8px;
  font-size: 18px;
  background: #bf1e2e !important;
  width: 48%;
  color: #FFF;
  text-shadow: none;
  margin-left: 0;
  height: 47px;
  margin-top: 0; }

#pty_form #pty_submit:hover {
  background-color: #BF1E2E;
  opacity: 0.9; }

#pty_mainText ul li {
  background-repeat: no-repeat;
  padding-left: 33px;
  position: relative;
  height: 38px;
  left: 0;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: -16px;
  font-family: inherit; }

#pty_close {
  display: block;
  height: 36px;
  position: absolute;
  text-align: center;
  z-index: 1000;
  background: 0;
  text-shadow: none !important;
  font-family: "Arial", sans-serif !important;
  color: #ccc;
  width: 38.5px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  top: 10px;
  right: 10px;
  padding-top: 10px; }

#pty_close:hover {
  color: #888888; }

/* 2.0 additions */
.contact-social-row {
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%; }

.contact-social-row a {
  /*display: block;*/
  /**display: inline;*/
  width: 33.3333%;
  height: 220px;
  float: left;
  color: white;
  position: relative;
  padding: 20px; }

.contact-social-row a span.heading {
  font-size: 24px;
  font-weight: 400; }

.contact-social-row a span.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  font-size: 48px; }

.contact-social-row a span.cta {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: 12px;
  line-height: 20px; }
  .contact-social-row a span.cta:before {
    position: relative;
    top: 5px;
    font-size: 24px;
    margin-right: 0.4em; }

.contact-social-row a.facebook {
  background-color: #0568b1; }

.contact-social-row a.twitter {
  background-color: #05a6db; }

.contact-social-row a.google {
  background-color: #d94937; }

.contact-social-row img {
  width: 100%; }

@media (max-width: 767px) {
  #page-middle .contact-social-row {
    margin-top: 10px; } }
@media (max-width: 559px) {
  #page-middle .contact-social-row a {
    width: 100%; } }
.button,
.button:visited,
a.more-link,
a.more-link:visited {
  /*display:inline-block;
  text-transform:uppercase;
  font-weight:600;
  font-size:14px;
  margin-bottom:0;
  color: $bodyWhiteColor;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: $buttonColor;
  -webkit-box-shadow: 0 4px #991320;
  -moz-box-shadow: 0 4px #991320;
  box-shadow: 0 4px #991320;
  padding: 13px 15px;*/
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  background-color: #04a9ba;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 155px;
  padding-top: 0;
  padding-bottom: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: white;
  margin-top: 15px;
  margin-bottom: 0; }
  .button:hover,
  .button:visited:hover,
  a.more-link:hover,
  a.more-link:visited:hover {
    color: white;
    background-color: #04b2c4; }
  .button:active,
  .button:visited:active,
  a.more-link:active,
  a.more-link:visited:active {
    background-color: #04a0b0; }
  @media (max-width: 767px) {
    .button,
    .button:visited,
    a.more-link,
    a.more-link:visited {
      width: 100%;
      left: 0;
      margin-left: 0; } }

a.more-link {
  position: relative;
  left: 50%;
  margin-left: -77px;
  margin-top: 25px; }
  @media (max-width: 767px) {
    a.more-link {
      width: 100%;
      left: 0;
      margin-left: 0; } }

#slide1 .button {
  margin-top: 0;
  width: 200px; }

/* Post social */
#page-middle header img {
  width: 100%;
  /*max-width: auto;*/
  height: auto; }

.post-share {
  margin-bottom: 20px;
  text-align: right;
  /*.btn {
  	display:inline-block;
  	font-size:18px;
  	
  }*/ }

a.btn {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  margin-right: 0px;
  margin-left: 0px;
  color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  behavior: url(http://growthdevil.com/wp-content/themes/GD/css/border-radius.htc);
  background-color: #04a9ba;
  width: 30px;
  height: 30px;
  line-height: 30px;
  /*
  	&:hover	{
  		background-color: darken($brandRed, 2%);
  	}
  
  	&:active {
  		background-color: darken($brandRed, 5%);
  	}*/ }
  a.btn:hover {
    color: white;
    background-color: #04b2c4; }
  a.btn:active {
    background-color: #04a0b0; }

a.icon-twitter {
  background-color: #05a6db; }
  a.icon-twitter:visited {
    background-color: #05a6db; }
  a.icon-twitter:hover {
    background-color: #048fbd; }
  a.icon-twitter:active {
    background-color: #04799f; }

a.icon-facebook {
  background-color: #0568b1; }
  a.icon-facebook:visited {
    background-color: #0568b1; }
  a.icon-facebook:hover {
    background-color: #045793; }
  a.icon-facebook:active {
    background-color: #034575; }

a.icon-google {
  background-color: #d94937; }
  a.icon-google:visited {
    background-color: #d94937; }
  a.icon-google:hover {
    background-color: #cb3927; }
  a.icon-google:active {
    background-color: #b13222; }

a.icon-linkedin {
  background-color: #0078b2; }
  a.icon-linkedin:visited {
    background-color: #0078b2; }
  a.icon-linkedin:hover {
    background-color: #006393; }
  a.icon-linkedin:active {
    background-color: #004f75; }

a.icon-pinterest {
  background-color: #ee5357; }
  a.icon-pinterest:visited {
    background-color: #ee5357; }
  a.icon-pinterest:hover {
    background-color: #eb373c; }
  a.icon-pinterest:active {
    background-color: #e81b21; }

a.icon-rss {
  background-color: #ffad27; }
  a.icon-rss:visited {
    background-color: #ffad27; }
  a.icon-rss:hover {
    background-color: #ffa108; }
  a.icon-rss:active {
    background-color: #e99000; }

figure {
  width: 100%;
  display: inline-block;
  *display: inline;
  margin-bottom: 5px; }
  figure a {
    display: inline-block;
    width: 100%;
    max-height: 466px;
    overflow: hidden; }
    @media (max-width: 1024px) {
      figure a {
        height: auto; } }
  figure figcaption {
    margin-top: 0px;
    font-size: 11px;
    text-transform: uppercase;
    text-align: right;
    color: #909090; }

.single figure a {
  display: inline-block;
  width: 100%;
  height: 465px;
  overflow: hidden; }
  .single figure a img {
    /*min-height: 465px;*/ }
  @media (max-width: 1024px) {
    .single figure a {
      height: auto; } }

/* Mobile first menu design */
.menu-top-nav-container {
  display: none; }

#header .container {
  position: static; }

.top_nav {
  position: absolute;
  right: 20px; }

.top_nav ul {
  text-align: left;
  float: right;
  padding-top: 8px; }
  @media (min-width: 767px) {
    .top_nav ul {
      padding-top: 15px; } }

.top_nav ul li {
  /*text-align: center;*/
  *zoom: 1;
  list-style: none;
  float: left; }

.top_nav li a {
  display: inline-block;
  *display: inline;
  text-align: center;
  width: 100%;
  color: #454e5c;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 21px;
  font-weight: 600;
  padding: 8px 2px;
  position: relative;
  line-height: 0px; }
  .top_nav li a span {
    display: none; }
    @media (min-width: 380px) {
      .top_nav li a span {
        display: inline; } }
  .top_nav li a .icon-list {
    color: black;
    position: relative;
    top: 7px;
    line-height: 5px;
    /*-webkit-font-smoothing: none; */
    margin-right: 0;
    font-size: 34px; }
    @media (min-width: 380px) {
      .top_nav li a .icon-list {
        margin-right: 2px; } }
  .top_nav li a:hover {
    color: #0082c3; }
  .top_nav li a:hover .icon-list {
    color: #0082c3; }

.top_nav ul li.current_page_item a {
  color: #0082c3; }

#toggle {
  z-index: 2;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  font-size: 26px;
  color: black;
  padding-top: 4px;
  text-decoration: none; }

#toggle:hover {
  /*background:#45ABD6;*/
  color: #bf1e2e; }

.menu-top-nav-container {
  display: block; }

/*
.top_nav ul li {
	display: inline-block;
	*display: inline;
}

.top_nav li a {
	padding: 8px 10px;
}

*/
#toggle {
  display: none; }

@media (max-width: 359px) {
  #homepage .container {
    padding: 40px 10px; } }
/* from Style.css*/
#page-left .widget_area {
  /*padding-right: 20px;*/ }

#page-left .widget_area aside {
  /*width: 95%;*/ }

#page-left .widget_area aside:not(:first-child) {
  border-top: 0px solid #ccc; }

#page-left .widget_area h3 {
  font-size: 18px;
  font-family: 'proxima-nova', 'Arial', 'arial';
  padding-bottom: 10px;
  font-weight: bold; }

#page-left #mc_embed_signup #mce-EMAIL {
  display: inline-block;
  margin-right: 10px;
  height: 40px;
  position: relative;
  top: -2px;
  background: url(http://growthdevil.com/wp-content/themes/GD/css/images/mail_ico.png) no-repeat 10px center white;
  border: 1px solid #ccc;
  padding: 2px 15px 4px 35px;
  font-size: 16px; }

#page-left #mc_embed_signup #mc-embedded-subscribe {
  display: inline-block;
  height: 40px;
  width: auto;
  border-radius: 3px;
  cursor: pointer;
  border-bottom: 4px solid #0197A6;
  font-family: Arial, arial;
  font-size: 14px;
  color: #fff;
  line-height: 100%;
  background-color: #00a9ba; }

/* WPCurve / JP Edit */
.button2 {
  display: inline-block;
  width: auto;
  border-radius: 3px;
  cursor: pointer;
  border-bottom: 4px solid #13ADD5;
  font-family: Arial, arial;
  font-size: 14px;
  color: #fff;
  line-height: 100%;
  background-color: #16B9E4;
  padding: 11px 30px 11px 15px;
  text-decoration: none;
  margin-bottom: 20px; }

.button2:hover {
  opacity: 0.9; }

.paginate {
  margin-top: 60px;
  margin-bottom: 0px; }

ul.pagings {
  list-style: none;
  text-align: left;
  display: block;
  width: 100%;
  padding-left: 0; }
  @media (min-width: 380px) {
    ul.pagings {
      display: inline-block; } }

ul.pagings li {
  display: block;
  width: 100%;
  min-width: 45px;
  height: 40px;
  text-align: center;
  color: #454e5c; }
  @media (min-width: 380px) {
    ul.pagings li {
      float: left;
      width: auto; } }

ul.pagings li a,
ul.pagings li .ddd {
  color: #454e5c;
  font-size: 13px;
  line-height: 40px;
  display: block;
  width: 100%;
  /*height: 100%;*/
  border: 3px solid transparent; }

ul.pagings li a:hover {
  /*border-color: black;*/
  color: black;
  background-color: #f1f1f1; }

ul.pagings li a.current {
  border-color: #04a9ba; }

input[type="text"], input[type="email"], input[type="password"] {
  line-height: normal !important; }

#page-title {
  position: relative; }

#page-title h1 {
  padding-right: 60px; }

.contact-us-form label.gfield_label {
  display: none !important; }

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #7f8c8d;
  background-color: #fff;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 1px;
  font-size: 14px;
  font-family: "open Sans"; }

textarea {
  padding: 10px 15px; }

input[type="submit"] {
  background-color: #04a9ba;
  border-radius: 2px;
  width: 155px;
  font-family: "open Sans";
  padding-top: 10px;
  padding-bottom: 10px;
  height: 50px; }
  @media (max-width: 767px) {
    input[type="submit"] {
      width: 100%; } }

.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form textarea {
  width: 100% !important;
  font-size: 14px !important;
  padding: 0 15px; }

.contact-us-form textarea {
  padding: 10px 15px !important; }

/* END WPCurve / JP Edit */
.post {
  /*border-bottom: 1px solid #e5e5e5;*/
  /*margin-top: 47px;*/ }

/* Hide properties generated by In Depth Article plugin */
span[itemprop="name"],
span[itemprop="author"] {
  display: none; }

.drop-menu {
  position: absolute;
  z-index: 5;
  width: 300px;
  display: block;
  right: 0;
  top: 0;
  padding: 20px 45px;
  background: #1a1a1a;
  box-shadow: inset 2px -2px 8px rgba(0, 0, 0, 0.7); }
  .drop-menu .cross {
    position: absolute;
    top: 12px;
    right: 36px;
    width: 44px;
    height: 35px;
    padding-top: 10px;
    cursor: pointer;
    text-align: center; }
    .drop-menu .cross .icon-close {
      color: white;
      font-size: 16px; }
      .drop-menu .cross .icon-close:hover {
        color: #0082c3; }
  .drop-menu ul {
    padding: 0;
    list-style: none; }
    .drop-menu ul li {
      border-bottom: 1px solid #5f5f5f;
      margin-bottom: 20px; }
      .drop-menu ul li a {
        display: block;
        color: #fff;
        font-size: 20px;
        padding: 0 0 20px;
        font-weight: 600; }
        .drop-menu ul li a:hover {
          color: #0082c3; }

#slides .inner {
  position: relative;
  text-align: center;
  width: 100%;
  padding-top: 18%;
  padding-left: 10px;
  padding-right: 10px; }
  @media (max-width: 768px) {
    #slides .inner {
      padding-top: 28%; } }
  @media (max-width: 380px) {
    #slides .inner {
      padding-top: 38%; } }
  #slides .inner h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: #ffffff;
    text-transform: uppercase;
    font-style: bold;
    /*letter-spacing: 1px;*/
    margin-bottom: -5px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); }
    @media (max-width: 768px) {
      #slides .inner h1 {
        font-size: 44px;
        line-height: 48px; } }
    @media (max-width: 380px) {
      #slides .inner h1 {
        font-size: 38px;
        line-height: 40px; } }
  #slides .inner h2 {
    font-weight: 300;
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); }
    @media (max-width: 768px) {
      #slides .inner h2 {
        font-size: 24px;
        line-height: 35px; } }
    @media (max-width: 380px) {
      #slides .inner h2 {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px; } }
  #slides .inner .button {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    /*border: 1px solid darken($buttonColor, 1%);*/ }
  #slides .inner .slides-navigation {
    position: absolute;
    top: 0;
    left: 0; }

#slide2.inner {
  position: relative;
  text-align: left;
  width: 960px;
  margin: auto;
  padding-top: 8%; }

/* ==========================================================================
   Tweetable styles
   ========================================================================== */
#tweetables {
  font-size: 1.9em;
  line-height: 1.6em;
  margin-bottom: 0; }

#tweetables h4 {
  margin-bottom: 30px; }

#tweetables ol {
  counter-reset: my-awesome-counter;
  list-style-type: none;
  margin: 0 0 40px;
  padding: 0; }

#tweetables ol li {
  position: relative;
  list-style-type: none;
  padding-left: 0;
  border-bottom: 1px solid #a1a1a1;
  margin-bottom: 70px;
  padding: 2px 40px 20px 50px;
  font-size: 0.89em;
  font-style: italic;
  line-height: 26px; }
  #tweetables ol li span {
    font-size: 17px;
    line-height: 30px; }
  #tweetables ol li:last-child {
    margin-bottom: 0; }

#tweetables ol li:before {
  position: absolute;
  display: block;
  content: counter(my-awesome-counter);
  counter-increment: my-awesome-counter;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  font-weight: 900;
  background: #2d2e30;
  font-style: normal; }

#tweetables li .social-tweetable {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 12px;
  height: 36px; }

#tweetables li .social-tweetable a {
  position: relative;
  float: right;
  margin-left: 10px;
  border: 2px solid #a1a1a1;
  background: #a1a1a1;
  color: #fff;
  text-align: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 0px 2px white;
  -moz-box-shadow: inset 0px 0px 0px 2px white;
  box-shadow: inset 0px 0px 0px 2px white;
  -webkit-transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, background 0.15s ease-in-out;
  width: 36px;
  height: 36px;
  line-height: 35px;
  color: #fff;
  font-weight: 900;
  font-style: normal; }
  #tweetables li .social-tweetable a:hover, #tweetables li .social-tweetable a:active {
    border-color: #2d2e30;
    background: #2d2e30; }

#tweetables li .social-tweetable a i {
  position: relative; }
  #tweetables li .social-tweetable a i.icon-twitter {
    top: -1px;
    left: 0;
    font-size: 0.9em; }

/* widget_search */
.widget_search {
  margin-bottom: 30px; }

.widget_search form {
  position: relative; }

.widget_search label {
  display: none; }

.widget_search input[type="text"],
.widget_search input[type="submit"],
.widget_search input[type="email"] {
  border-radius: 0;
  background: white;
  border: 1px solid black;
  color: #454e5c; }

.widget_search input[type="text"],
.widget_search input[type="email"] {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  padding-left: 20px;
  /*padding-right: 35%;*/ }

.widget_search input[type="submit"] {
  position: relative;
  top: -1px;
  height: 50px;
  width: 100%;
  padding: 0;
  text-transform: titlecase;
  color: black;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0; }

.widget_search input[type="submit"]:hover {
  background: #303030;
  color: white; }

@media (min-width: 767px) {
  .widget_search input[type="text"],
  .widget_search input[type="email"] {
    height: 40px; }

  .widget_search input[type="submit"] {
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35%; } }
/* footer widgets */
#footer .widget_area .widget {
  padding: 50px 30px 0 30px;
  /*background-color: red*/ }

#footer .widget_area .widget:first-child {
  padding-left: 0; }

#footer .widget_area .widget:last-child {
  padding-right: 0; }

#footer .widget_area .widget h4 {
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 20px; }

#footer_signup .widget_search input[type="submit"],
#footer_signup .widget_search input[type="email"] {
  border-radius: 0;
  background: black;
  border: 1px solid white;
  color: white;
  margin-top: 0; }

#footer_signup .widget_search input[type="submit"]:hover {
  background: #303030;
  text-transform: titlecase; }

@media (max-width: 767px) {
  #footer .widget_area .widget {
    padding: 30px 0 0 0; } }
/* widget tabs */
.pptwj-loader {
  display: none; }

.pptwj-tabs-wrap {
  padding: 3px 0 0; }

.pptwj-tabs-wrap ul {
  list-style: none outside none;
  margin: 0;
  padding: 0; }

.pptwj-tabs-wrap .tab-links {
  margin: 0;
  padding: 0 5px;
  position: relative;
  padding: 0;
  background-color: #000;
  border-bottom: none;
  height: 54px; }

.pptwj-tabs-wrap .tab-links li {
  border: none;
  display: inline;
  float: left;
  margin: -1px 0;
  padding: 0;
  width: 50%; }

.pptwj-tabs-wrap .tab-links li a {
  background: none;
  color: #999;
  display: block;
  width: 100%;
  float: left;
  font-weight: bold;
  font-size: 14px;
  background-color: none;
  font-weight: normal;
  text-decoration: none;
  text-transform: capitalize;
  padding: 0;
  padding-left: 30px;
  line-height: 54px;
  color: white;
  font-size: 13px;
  border: 1px solid white; }

.pptwj-tabs-wrap .tab-links li a.selected, .pptwj-tabs-wrap .tab-links li a:hover {
  border-radius: 5px 5px 0 0;
  color: #fff;
  text-decoration: none;
  border-radius: 0; }

.pptwj-tabs-wrap .tab-links li a:hover {
  /*border: 1px solid $brandBlackLight;*/
  background: #303030;
  color: white; }

.pptwj-tabs-wrap .tab-links li a.selected {
  border: 1px solid black;
  background: white;
  color: black; }

.pptwj-tabs-wrap .boxes {
  border: 1px solid #e5e5e5;
  border-radius: 0 0 3px 3px;
  position: relative;
  border: 1px solid black;
  border-radius: 0;
  padding: 20px 25px;
  padding-top: 0; }

.pptwj-tabs-wrap .boxes ul {
  padding: 2px 0 0; }

.pptwj-tabs-wrap .boxes ul li {
  border-bottom: 1px solid #e5e5e5;
  font-size: 13px;
  overflow: hidden;
  margin: 0;
  padding: 5px 8px;
  padding: 0;
  border-bottom: none;
  padding-top: 20px;
  clear: both; }

.pptwj-tabs-wrap .boxes ul li.odd {
  background: #fff;
  background: transparent; }

.pptwj-tabs-wrap .boxes ul li.even {
  background: #fcfcfc;
  border-left: none;
  border-right: none;
  border-top: none;
  background: transparent; }

.pptwj-tabs-wrap .boxes ul li a {
  color: #333; }

.pptwj-tabs-wrap .boxes ul li a:hover {
  color: #006ea4; }

.pptwj-tabs-wrap .boxes ul li img {
  background: #fff;
  border: 1px solid #e5e5e5;
  float: left;
  margin: 0 7px 0 0;
  border: none;
  padding: 0;
  margin-right: 15px; }

.pptwj-tabs-wrap .boxes ul li a.item-title {
  overflow: hidden;
  	/*float: left;
  	display: block;
  */
  /*padding-top: 10px;*/
  display: block;
  margin-top: 5px;
  margin-bottom: 8px; }

.pptwj-tabs-wrap .boxes ul li .meta {
  color: #888;
  font-size: 90%; }

.pptwj-tabs-wrap .boxes ul.tab-filter-list {
  border: none;
  margin: -1px;
  background: #4C5360;
  padding: 0;
  text-align: center;
  display: none; }

.pptwj-tabs-wrap .boxes ul.tab-filter-list li {
  border: none;
  padding: 2px 8px 3px; }

/*.pptwj-tabs-wrap .tab-filter-list{ display: inline-block; border: 0 !important; }*/
.pptwj-tabs-wrap .boxes ul.tab-filter-list a {
  color: #ddd;
  font-size: 11px;
  margin: 0 8px;
  text-decoration: none;
  text-transform: uppercase; }

.pptwj-tabs-wrap .boxes ul.tab-filter-list a.selected, .pptwj-tabs-wrap .boxes ul.tab-filter-list a:hover {
  color: #fff;
  text-decoration: none; }

.pptwj-loader {
  background: #fff;
  left: 0;
  opacity: 0.4;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%; }

/* Twitter */
ul.kebo-tweets {
  overflow: visible !important; }
  ul.kebo-tweets .ktweet {
    position: relative;
    margin-top: 0;
    line-height: 21px;
    /* hide name and date */ }
    ul.kebo-tweets .ktweet .ktext {
      margin-top: 0 !important;
      min-height: 0;
      /*a,
      a:visited,
      a:hover,
      a:active {
          color: white;
      }*/ }
      @media (max-width: 768px) {
        ul.kebo-tweets .ktweet .ktext {
          /*text-align: center;*/ } }
    ul.kebo-tweets .ktweet .kmeta {
      position: absolute;
      bottom: -20px; }
      @media (max-width: 768px) {
        ul.kebo-tweets .ktweet .kmeta {
          /*left: 50%;
          margin-left: -60px;*/ } }
      ul.kebo-tweets .ktweet .kmeta .kdate {
        color: white;
        position: relative; }
        ul.kebo-tweets .ktweet .kmeta .kdate time {
          font-size: 12px; }
        ul.kebo-tweets .ktweet .kmeta .kdate:before {
          content: "\e200";
          font-family: icomoon;
          speak: none;
          font-style: normal;
          font-weight: 400;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
          margin-right: 10px;
          font-size: 20px;
          position: relative;
          top: 3px; }
    ul.kebo-tweets .ktweet .kfooter,
    ul.kebo-tweets .ktweet a.kaccount {
      display: none !important; }

#fancybox-outer,
#fancybox-inner
#fancybox-content {
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-border-radius: 7px; }

.about-form_wrapper {
  width: 700px;
  margin: 0 !important;
  max-width: 100%; }
  .about-form_wrapper .gform_heading {
    background-color: #EFEFF1;
    margin: 0 !important;
    padding: 20px;
    width: 100%;
    -moz-border-radius: 7px 7px 0 0;
    border-radius: 7px 7px 0 0;
    -webkit-border-radius: 7px 7px 0 0;
    text-align: center;
    border-bottom: 1px solid #D3D3D4;
    background: #f0f0f2;
    background-image: -webkit-linear-gradient(#f5f5f7, #e9e9ea);
    background-image: -moz-linear-gradient(#f5f5f7, #e9e9ea);
    background-image: -ms-linear-gradient(#f5f5f7, #e9e9ea);
    background-image: -o-linear-gradient(#f5f5f7, #e9e9ea);
    background-image: linear-gradient(#f5f5f7, #e9e9ea);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #d3d3d4;
    -webkit-border-radius: 7px 7px 0 0;
    -moz-border-radius: 7px 7px 0 0;
    -ms-border-radius: 7px 7px 0 0;
    -o-border-radius: 7px 7px 0 0;
    border-radius: 7px 7px 0 0;
    -webkit-box-shadow: 0 1px 0 #fff;
    -moz-box-shadow: 0 1px 0 #fff;
    -ms-box-shadow: 0 1px 0 #fff;
    -o-box-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #fff;
    cursor: default; }
    .about-form_wrapper .gform_heading .gform_title {
      font-weight: 300;
      font-size: 30px;
      margin-top: 0; }
    .about-form_wrapper .gform_heading .gform_description {
      color: #999; }
  .about-form_wrapper .gform_body {
    padding: 20px 20px 0; }
  .about-form_wrapper .gform_footer {
    padding: 0 20px; }
  .about-form_wrapper .top_label input.medium,
  .about-form_wrapper .top_label select.medium {
    width: 100%;
    font-size: 14px !important;
    padding-left: 15px; }
  .about-form_wrapper .top_label textarea {
    padding: 10px 15px;
    font-size: 14px !important; }
  .about-form_wrapper .gfield:not(.message) {
    display: inline-block;
    width: 49% !important;
    margin-bottom: 0; }
    @media (max-width: 768px) {
      .about-form_wrapper .gfield:not(.message) {
        width: 100% !important; } }
    .about-form_wrapper .gfield:not(.message) input {
      margin-bottom: 5px; }
  .about-form_wrapper .gfield.name,
  .about-form_wrapper .gfield.number,
  .about-form_wrapper .gfield.url {
    margin-right: 10px; }
  .about-form_wrapper .top_label .gfield_label {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px; }
/* Style for LGM Page */
#lgm .lgm-table {
	width: 100%;
	display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;              /* OLD - Firefox 19- (doesn't work very well) */
  display: -ms-flexbox;           /* TWEENER - IE 10 */
  display: -webkit-flex;          /* NEW - Chrome */
  display: flex; 
}

#lgm .lgm-table .title {
	font-size: 20px;
	font-weight: bold;
}

#lgm .lgm-table .lgm-col {
	margin: 5px;
}

#lgm .lgm-table .timeline {
	font-size: 15px;
	font-weight: bold;
	color: #bf2030;
}

#lgm .lgm-table .timeline-line {
	border-top: 1px solid #bf2030;
	height: 30px;
	margin-top: 20px;
}

#lgm .lgm-table .timeline-line:after {
	content: ' ';
	border-left: 1px solid #bf2030;
	height: 20px;
	margin-top: -10px;
	float: right;
}

#lgm .lgm-table .timeline-line:before {
	content: ' ';
	border-left: 1px solid #bf2030;
	height: 20px;
	margin-top: -10px;
	float: left;
}

#lgm .lgm-table .col1, #lgm .lgm-table .col2, #lgm .lgm-table .col3 {
	width: 20%;
}

#lgm .lgm-table .col4 {
	width: 40%;
}
#lgm .lgm-table .items {
  display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;              /* OLD - Firefox 19- (doesn't work very well) */
  display: -ms-flexbox;           /* TWEENER - IE 10 */
  display: -webkit-flex;          /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column; 
  flex-direction: column;
  height: 450px;
}
#lgm .lgm-table .items div {
    padding: 15px;
    background: #fff;
  text-align: center;
  margin: 5px 0;
  flex: 1;
  -webkit-box-flex: 1;
  display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;              /* OLD - Firefox 19- (doesn't work very well) */
  display: -ms-flexbox;           /* TWEENER - IE 10 */
  display: -webkit-flex;          /* NEW - Chrome */
  display: flex;  
  -webkit-flex-direction: column; 
  flex-direction: column;
  align-content: center;
  justify-content: center;
  border: 1px solid #aaa;
  font-weight: bold;
}

#lgm .lgm-tasks {
	width: 100%;
}
#lgm .lgm-tasks .task {width: 100%; float: left; }
#lgm .lgm-tasks .image {
	width: 25%;
	float: left;
	padding: 10px 0 0;
}


#lgm .lgm-tasks .content {
	width: 75%;
	float: left;
	padding: 5px 0 10px 10px;
}

#lgm .lgm-tasks .content h3 {
    font-size: 1.4em;
    color: #bf2030;
	padding: 0 0 5px;
	margin: 0;
}
#lgm h2 {margin-top: 20px;   }
#lgm .lgm-tasks p.sub-heading {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 125%;
}
@media (max-width: 949px) {
    #lgm .lgm-table { display: inherit !important; }
    #lgm .lgm-table .lgm-col { width: 100% !important; }    
}