/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */

























.lightGray_bg{
 background-color: #e6e7e8;
}
.darkGray_bg{
 background-color: #404041;
}
.darkBlack_bg{
 background-color: #323132;
}
.foundation ul, 
.foundation ol{
 list-style-type: none; 
}
/*  UTILITY  ============================================================================= */
.ptrbl-half { padding: 0.5rem !important; } /* top, right, bottom, left padding */
.ptrbl-75 { padding: 0.75rem !important; } /* top, right, bottom, left padding */
.ptrbl-1 { padding: 1rem !important; } /* top, right, bottom, left padding */
.prl1{ padding: 0 1rem !important; }
.ptrbl-1half { padding: 1.5rem !important; } /* top, right, bottom, left padding */
.ptrbl-2 { padding: 2rem !important; } /* top, right, bottom, left padding */
.prl2{ padding: 0 2rem !important; }
.pt-05 { padding-top: 0.5rem !important; }
.pb-05 { padding-bottom: 0.5rem !important;; }
.pt-1 { padding-top: 1rem !important;; }
.pb-1 { padding-bottom: 1rem !important;; }
.pt-2 { padding-top: 2rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pt-30px { padding-top: 1.875rem !important; }
.pb-30px { padding-bottom: 1.875rem !important; }
.pt-60px { padding-top: 3.75rem !important; }
.pt-40{ padding-top: 2.5rem !important; }
.pb-40{ padding-bottom: 2.5rem !important; }
.pb-60px { padding-bottom: 3.75rem !important; }
.pt-130px { padding-top: 8.125rem !important; }
.pb-130px { padding-bottom: 8.125rem !important; }
.pt-150px { padding-top: 9.375rem !important; }
.pb-150px { padding-bottom: 9.375rem; }
.pl2{ padding-left: 2rem !important; }
.pl3{ padding-left: 3rem !important; }
.pl4{ padding-left: 4rem !important; }
.pl8 { padding-left: 8vw !important; }
.pr8 { padding-right: 8vw !important; }
.prl5{ padding: 0 5rem !important; }
.pad-0{ padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important }

.margin-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8{ margin-top: 0.5rem !important; }
.mb-8{ margin-bottom: 0.5rem !important; }
.mt-16{ margin-top: 1rem !important; }
.mr-16 { margin-right: 1rem !important; }
.mr2 { margin-right: 2rem !important; }
.mr3 { margin-right: 3rem !important; }
.mb-16{ margin-bottom: 1rem !important; }
.mt-24{ margin-top: 1.5rem !important; }
.mb-24{ margin-bottom: 1.5rem !important; }
.m1 { margin: 1rem !important; }
.m2 { margin: 2rem !important; }
.mt2 { margin-top: 2rem !important; }
.mb1 { margin-bottom: 1rem !important; }
.mt-32{ margin-top: 2rem !important; }
.mb-32, .post-password-form{ margin-bottom: 2rem !important; }
.mt-40{ margin-top: 2.5rem !important; }
.mb-40{ margin-bottom: 2.5rem !important; }
.mt-60{ margin-top: 3.75rem !important; }
.mb-60{ margin-bottom: 3.75rem !important; }
.mt-130{ margin-top: 8.125rem !important; }
.mb-130{ margin-bottom: 8.125rem !important; }
.mlr-10{ margin-left: 10%; margin-right: 10%; }
.mlr-15{ margin-left: 15%; margin-right: 15%; }
.mlr-20{ margin-left: 20%; margin-right: 20%; }
.mlr-30{ margin-left: 30%; margin-right: 30%; }

.width-10 { width: 10% !important; }
.width-20 { width: 20% !important; }
.width-30 { width: 30% !important; }
.width-40 { width: 40% !important; }
.width-50 { width: 50% !important; }
.width-60 { width: 60% !important; }
.width-70 { width: 70% !important; }
.width-80 { width: 80% !important; }
.width-90 { width: 90% !important; }
.width-100 { width: 100% !important; }

.maxHeight500{ max-height: 500px; }
.maxWidth550{ max-width: 550px; }

.columnCount1{ column-count: 1; }
.columnCount2{ column-count: 2; }
.columnCount3{ column-count: 3; }
.columnCount4{ column-count: 4; }
.noBorder{ border: none !important; }

.flex{ display: flex; }
.directionrow{ flex-direction: row; }
.directioncol{ flex-direction: column; }
.flowwrap{ flex-flow: wrap; }
.flowwnorap{ flex-flow: nowrap; /* default */ }
.flex20{ flex: 0 1 20%;}
.flexquarter{ flex: 0 1 25%;}
.flexhalf{ flex: 0 1 50%;}
.flex2full{ flex: 1 1 50%;}
.flexfull{ flex: 0 1 100%;}
.flexgrow{ flex-grow: 1;}
.justify-evenly{ justify-content: space-evenly; }
.justify-between{ justify-content: space-between; }
.justify-around{ justify-content: space-around; }
.justify-center{ justify-content: center; }
.align-center{ /* vertically on row direction */
  align-items: center;
  align-content: center;
}
.align_start{ /* vertically on row direction */
  align-items: flex-start;
  align-content: flex-start;
}
.center_self{
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  width: max-content;
}
.center_vert_horz{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  width: fit-content;
}
.center_vert{
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  width: fit-content;
}
.center_children {
    display: grid;
    place-items: center;
}
.centered-text { text-align: center !important; }
.boldless { font-weight: 600 !important; }
.bold { font-weight: 700 !important; }
.bolder { font-weight: 900 !important; }
.bold-italic { font-weight: 700; font-style: italic; }
.text-shadow { text-shadow: 0px 0px 4px rgba(0, 0, 0, 1); }
.right{ float: right; }
.absright{position: absolute; right: 0; top: 0;}
.left{ float: left; }
.absleft{position: absolute; left: 0; top: 0;}
.indent{margin: 0 0 0 25px; padding: 0;}
.position-relative { position: relative !important; }
.position_abs { position: absolute !important; }
.color-inherit{ color: inherit !important; }
.abscenter{ position: absolute !important; left: 0 !important; right: 0 !important; }
.zIndexTop{ z-index: 9999; }
.zIndexbottom{ z-index: -1; }
.lineheight0{ line-height: 0; }
.lineheight1{ line-height: 1; }
.lineheight1half{ line-height: 1.5; }
.lineheight2{ line-height: 2; }
.lineheight2half{ line-height: 2.5; }
.lineheight3{ line-height: 3; }
.text_shadow { text-shadow: 0 0 4px #000; }
.rel{ position: relative; }
.green-text { color: #6F963E; }
.blue-text { color: #1E75BB; }
.white-text { color: #fff !important; }
.black-text { color: #000 !important; }
.magenta-text { color: #8b1f61; }
.darkGray-text{ color: #404041;  }
.blackish-text { color: #222 !important; }
.lightGray-text{ color: #58585b; }
.orange-text{ color: #f47920; }
.orange-btn{
  background-color: #f47920;
  padding: 0.7rem 1.5rem;
  color: #fff;
}
.whiteBG { background-color: #fff !important; }
.blackBG { background-color: #000 !important; }
.blackishBG { background-color: #222 !important; }
.orange_bg{ background-color: #f47920; }
.lightGray_bg{ background-color: #c1c1c1; }
.darkGray_bg{ background-color: #404041; }
a.orange-btn:hover{
  color: #fff;
}
.orange_border_btm_sm{
  border-bottom: 3px solid #f47920; 
}
.orange_border_top_sm{
  border-top: 3px solid #f47920; 
}
.orange_border_top_md{
  border-top: 10px solid #f47920; 
}
.orange_border_top_5{
  border-top: 5px solid #f47920; 
}
.orange_border_btm_5{
  border-bottom: 5px solid #f47920; 
}
.block{ display: block !important; }


/*  Font Size  ============================================================================= */
.halfrem{ font-size: 0.5rem; }
.pt8rem{ font-size: 0.8rem; }
.pt9rem{ font-size: 0.9rem; }
.onerem{ font-size: 1rem; }
.one2rem{ font-size: 1.2rem; }
.onehalfrem{ font-size: 1.5rem; }
.one7rem{ font-size: 1.7rem; }
.tworem{ font-size: 2rem; }
.two3rem{ font-size: 2.3rem; }
.twohalfrem{ font-size: 2.5rem; }
.threerem{ font-size: 3rem; }
.fourrem{ font-size: 4rem; }
.fiverem{ font-size: 5rem; }

/** adjustable font sizes **/
.base02r{ font-size: calc(0.2rem + 2vw); }
.base05r{ font-size: calc(0.5rem + 2vw); }
.base1r{ font-size: calc(1rem + 2vw); }
.base1half{ font-size: calc(1.5rem + 2vw); }
.base1pt3{ font-size: calc(1.3rem + 1vw) }
.base1{ font-size: calc(1rem + 1vw) }
.basept9{ font-size: calc(0.9rem + 1vw) }
.basept8{ font-size: calc(0.8rem + 1vw) }
.base2half{ font-size: calc(2.5rem + 1vw) }
.base2r{ font-size: calc(2rem + 2vw); }
.base3r{ font-size: calc(3rem + 2vw); }

/** adjustable line heights **/
.baseLineheight{ line-height: calc(1.1em + 0.5vw); }

.ninevw{ font-size: 9vw; }
.tenvw{ font-size: 10vw; }
.elevenvw{ font-size: 11vw; }
.twelvevw{ font-size: 12vw; }
.upper{ text-transform: uppercase; }
.foundation h1, 
.foundation h2,
.foundation h3,
.foundation h4,
.foundation h5,
.foundation h6,
body.foundation,
body.foundation a,
body.foundation p,
body.foundation span,
body.foundation label,
body.foundation input{
  font-family: 'Source Sans Pro', sans-serif !important;
}
body.foundation .twoColMain a{
  color: #f47920;
  transition: all 0.2s; 
}
body.foundation .twoColMain a:hover{
  opacity: 0.8; 
}
.trans{
 transition: all 0.2s; 
}
.fadehover:hover{
 opacity: 0.8; 
}
.fadeBoxin{
  opacity: 1 !important;
  visibility: visible !important;
}
.fadein:hover{
  opacity: 1;
}
.fadeout:hover{
  opacity: 0;
}
.hide{ display: none; }
.show{ display: block; }

/*  GROUPING  ============================================================================= */
.group::before,
.group::after{
    content:"";
    display:table;
}
.group::after{
    clear:both;
}

































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
/*   font-family: inherit; /* 1 */ */
  font-size: 100%; /* 1 */
/*   line-height: 1.15; /* 1 */ */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}
.fa-2x {
    font-size: 2em
}
.fa-3x {
    font-size: 3em
}
.fa-4x {
    font-size: 4em
}
.fa-5x {
    font-size: 5em
}
.fa-fw {
    width: 1.28571429em;
    text-align: center
}
.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}
.fa-ul > li {
    position: relative
}
.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}
.fa-li.fa-lg {
    left: -1.85714286em
}
.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}
.pull-right {
    float: right
}
.pull-left {
    float: left
}
.fa.pull-left {
    margin-right: .3em
}
.fa.pull-right {
    margin-left: .3em
}
.fa-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg)
    }
    100% {
        -moz-transform: rotate(359deg)
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg)
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg)
    }
    100% {
        -o-transform: rotate(359deg)
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}
.fa-rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}
.fa-rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}
.fa-rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg)
}
.fa-flip-horizontal {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1)
}
.fa-flip-vertical {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1)
}
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}
.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}
.fa-stack-1x {
    line-height: inherit
}
.fa-stack-2x {
    font-size: 2em
}
.fa-inverse {
    color: #fff
}
.fa-glass:before {
    content: "\f000"
}
.fa-music:before {
    content: "\f001"
}
.fa-search:before {
    content: "\f002"
}
.fa-envelope-o:before {
    content: "\f003"
}
.fa-heart:before {
    content: "\f004"
}
.fa-star:before {
    content: "\f005"
}
.fa-star-o:before {
    content: "\f006"
}
.fa-user:before {
    content: "\f007"
}
.fa-film:before {
    content: "\f008"
}
.fa-th-large:before {
    content: "\f009"
}
.fa-th:before {
    content: "\f00a"
}
.fa-th-list:before {
    content: "\f00b"
}
.fa-check:before {
    content: "\f00c"
}
.fa-times:before {
    content: "\f00d"
}
.fa-search-plus:before {
    content: "\f00e"
}
.fa-search-minus:before {
    content: "\f010"
}
.fa-power-off:before {
    content: "\f011"
}
.fa-signal:before {
    content: "\f012"
}
.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}
.fa-trash-o:before {
    content: "\f014"
}
.fa-home:before {
    content: "\f015"
}
.fa-file-o:before {
    content: "\f016"
}
.fa-clock-o:before {
    content: "\f017"
}
.fa-road:before {
    content: "\f018"
}
.fa-download:before {
    content: "\f019"
}
.fa-arrow-circle-o-down:before {
    content: "\f01a"
}
.fa-arrow-circle-o-up:before {
    content: "\f01b"
}
.fa-inbox:before {
    content: "\f01c"
}
.fa-play-circle-o:before {
    content: "\f01d"
}
.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}
.fa-refresh:before {
    content: "\f021"
}
.fa-list-alt:before {
    content: "\f022"
}
.fa-lock:before {
    content: "\f023"
}
.fa-flag:before {
    content: "\f024"
}
.fa-headphones:before {
    content: "\f025"
}
.fa-volume-off:before {
    content: "\f026"
}
.fa-volume-down:before {
    content: "\f027"
}
.fa-volume-up:before {
    content: "\f028"
}
.fa-qrcode:before {
    content: "\f029"
}
.fa-barcode:before {
    content: "\f02a"
}
.fa-tag:before {
    content: "\f02b"
}
.fa-tags:before {
    content: "\f02c"
}
.fa-book:before {
    content: "\f02d"
}
.fa-bookmark:before {
    content: "\f02e"
}
.fa-print:before {
    content: "\f02f"
}
.fa-camera:before {
    content: "\f030"
}
.fa-font:before {
    content: "\f031"
}
.fa-bold:before {
    content: "\f032"
}
.fa-italic:before {
    content: "\f033"
}
.fa-text-height:before {
    content: "\f034"
}
.fa-text-width:before {
    content: "\f035"
}
.fa-align-left:before {
    content: "\f036"
}
.fa-align-center:before {
    content: "\f037"
}
.fa-align-right:before {
    content: "\f038"
}
.fa-align-justify:before {
    content: "\f039"
}
.fa-list:before {
    content: "\f03a"
}
.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}
.fa-indent:before {
    content: "\f03c"
}
.fa-video-camera:before {
    content: "\f03d"
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}
.fa-pencil:before {
    content: "\f040"
}
.fa-map-marker:before {
    content: "\f041"
}
.fa-adjust:before {
    content: "\f042"
}
.fa-tint:before {
    content: "\f043"
}
.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}
.fa-share-square-o:before {
    content: "\f045"
}
.fa-check-square-o:before {
    content: "\f046"
}
.fa-arrows:before {
    content: "\f047"
}
.fa-step-backward:before {
    content: "\f048"
}
.fa-fast-backward:before {
    content: "\f049"
}
.fa-backward:before {
    content: "\f04a"
}
.fa-play:before {
    content: "\f04b"
}
.fa-pause:before {
    content: "\f04c"
}
.fa-stop:before {
    content: "\f04d"
}
.fa-forward:before {
    content: "\f04e"
}
.fa-fast-forward:before {
    content: "\f050"
}
.fa-step-forward:before {
    content: "\f051"
}
.fa-eject:before {
    content: "\f052"
}
.fa-chevron-left:before {
    content: "\f053"
}
.fa-chevron-right:before {
    content: "\f054"
}
.fa-plus-circle:before {
    content: "\f055"
}
.fa-minus-circle:before {
    content: "\f056"
}
.fa-times-circle:before {
    content: "\f057"
}
.fa-check-circle:before {
    content: "\f058"
}
.fa-question-circle:before {
    content: "\f059"
}
.fa-info-circle:before {
    content: "\f05a"
}
.fa-crosshairs:before {
    content: "\f05b"
}
.fa-times-circle-o:before {
    content: "\f05c"
}
.fa-check-circle-o:before {
    content: "\f05d"
}
.fa-ban:before {
    content: "\f05e"
}
.fa-arrow-left:before {
    content: "\f060"
}
.fa-arrow-right:before {
    content: "\f061"
}
.fa-arrow-up:before {
    content: "\f062"
}
.fa-arrow-down:before {
    content: "\f063"
}
.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}
.fa-expand:before {
    content: "\f065"
}
.fa-compress:before {
    content: "\f066"
}
.fa-plus:before {
    content: "\f067"
}
.fa-minus:before {
    content: "\f068"
}
.fa-asterisk:before {
    content: "\f069"
}
.fa-exclamation-circle:before {
    content: "\f06a"
}
.fa-gift:before {
    content: "\f06b"
}
.fa-leaf:before {
    content: "\f06c"
}
.fa-fire:before {
    content: "\f06d"
}
.fa-eye:before {
    content: "\f06e"
}
.fa-eye-slash:before {
    content: "\f070"
}
.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}
.fa-plane:before {
    content: "\f072"
}
.fa-calendar:before {
    content: "\f073"
}
.fa-random:before {
    content: "\f074"
}
.fa-comment:before {
    content: "\f075"
}
.fa-magnet:before {
    content: "\f076"
}
.fa-chevron-up:before {
    content: "\f077"
}
.fa-chevron-down:before {
    content: "\f078"
}
.fa-retweet:before {
    content: "\f079"
}
.fa-shopping-cart:before {
    content: "\f07a"
}
.fa-folder:before {
    content: "\f07b"
}
.fa-folder-open:before {
    content: "\f07c"
}
.fa-arrows-v:before {
    content: "\f07d"
}
.fa-arrows-h:before {
    content: "\f07e"
}
.fa-bar-chart-o:before {
    content: "\f080"
}
.fa-twitter-square:before {
    content: "\f081"
}
.fa-facebook-square:before {
    content: "\f082"
}
.fa-camera-retro:before {
    content: "\f083"
}
.fa-key:before {
    content: "\f084"
}
.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}
.fa-comments:before {
    content: "\f086"
}
.fa-thumbs-o-up:before {
    content: "\f087"
}
.fa-thumbs-o-down:before {
    content: "\f088"
}
.fa-star-half:before {
    content: "\f089"
}
.fa-heart-o:before {
    content: "\f08a"
}
.fa-sign-out:before {
    content: "\f08b"
}
.fa-linkedin-square:before {
    content: "\f08c"
}
.fa-thumb-tack:before {
    content: "\f08d"
}
.fa-external-link:before {
    content: "\f08e"
}
.fa-sign-in:before {
    content: "\f090"
}
.fa-trophy:before {
    content: "\f091"
}
.fa-github-square:before {
    content: "\f092"
}
.fa-upload:before {
    content: "\f093"
}
.fa-lemon-o:before {
    content: "\f094"
}
.fa-phone:before {
    content: "\f095"
}
.fa-square-o:before {
    content: "\f096"
}
.fa-bookmark-o:before {
    content: "\f097"
}
.fa-phone-square:before {
    content: "\f098"
}
.fa-twitter:before {
    content: "\f099"
}
.fa-facebook:before {
    content: "\f09a"
}
.fa-github:before {
    content: "\f09b"
}
.fa-unlock:before {
    content: "\f09c"
}
.fa-credit-card:before {
    content: "\f09d"
}
.fa-rss:before {
    content: "\f09e"
}
.fa-hdd-o:before {
    content: "\f0a0"
}
.fa-bullhorn:before {
    content: "\f0a1"
}
.fa-bell:before {
    content: "\f0f3"
}
.fa-certificate:before {
    content: "\f0a3"
}
.fa-hand-o-right:before {
    content: "\f0a4"
}
.fa-hand-o-left:before {
    content: "\f0a5"
}
.fa-hand-o-up:before {
    content: "\f0a6"
}
.fa-hand-o-down:before {
    content: "\f0a7"
}
.fa-arrow-circle-left:before {
    content: "\f0a8"
}
.fa-arrow-circle-right:before {
    content: "\f0a9"
}
.fa-arrow-circle-up:before {
    content: "\f0aa"
}
.fa-arrow-circle-down:before {
    content: "\f0ab"
}
.fa-globe:before {
    content: "\f0ac"
}
.fa-wrench:before {
    content: "\f0ad"
}
.fa-tasks:before {
    content: "\f0ae"
}
.fa-filter:before {
    content: "\f0b0"
}
.fa-briefcase:before {
    content: "\f0b1"
}
.fa-arrows-alt:before {
    content: "\f0b2"
}
.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}
.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}
.fa-cloud:before {
    content: "\f0c2"
}
.fa-flask:before {
    content: "\f0c3"
}
.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}
.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}
.fa-paperclip:before {
    content: "\f0c6"
}
.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}
.fa-square:before {
    content: "\f0c8"
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}
.fa-list-ul:before {
    content: "\f0ca"
}
.fa-list-ol:before {
    content: "\f0cb"
}
.fa-strikethrough:before {
    content: "\f0cc"
}
.fa-underline:before {
    content: "\f0cd"
}
.fa-table:before {
    content: "\f0ce"
}
.fa-magic:before {
    content: "\f0d0"
}
.fa-truck:before {
    content: "\f0d1"
}
.fa-pinterest:before {
    content: "\f0d2"
}
.fa-pinterest-square:before {
    content: "\f0d3"
}
.fa-google-plus-square:before {
    content: "\f0d4"
}
.fa-google-plus:before {
    content: "\f0d5"
}
.fa-money:before {
    content: "\f0d6"
}
.fa-caret-down:before {
    content: "\f0d7"
}
.fa-caret-up:before {
    content: "\f0d8"
}
.fa-caret-left:before {
    content: "\f0d9"
}
.fa-caret-right:before {
    content: "\f0da"
}
.fa-columns:before {
    content: "\f0db"
}
.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}
.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}
.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}
.fa-envelope:before {
    content: "\f0e0"
}
.fa-linkedin:before {
    content: "\f0e1"
}
.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}
.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}
.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}
.fa-comment-o:before {
    content: "\f0e5"
}
.fa-comments-o:before {
    content: "\f0e6"
}
.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}
.fa-sitemap:before {
    content: "\f0e8"
}
.fa-umbrella:before {
    content: "\f0e9"
}
.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}
.fa-lightbulb-o:before {
    content: "\f0eb"
}
.fa-exchange:before {
    content: "\f0ec"
}
.fa-cloud-download:before {
    content: "\f0ed"
}
.fa-cloud-upload:before {
    content: "\f0ee"
}
.fa-user-md:before {
    content: "\f0f0"
}
.fa-stethoscope:before {
    content: "\f0f1"
}
.fa-suitcase:before {
    content: "\f0f2"
}
.fa-bell-o:before {
    content: "\f0a2"
}
.fa-coffee:before {
    content: "\f0f4"
}
.fa-cutlery:before {
    content: "\f0f5"
}
.fa-file-text-o:before {
    content: "\f0f6"
}
.fa-building-o:before {
    content: "\f0f7"
}
.fa-hospital-o:before {
    content: "\f0f8"
}
.fa-ambulance:before {
    content: "\f0f9"
}
.fa-medkit:before {
    content: "\f0fa"
}
.fa-fighter-jet:before {
    content: "\f0fb"
}
.fa-beer:before {
    content: "\f0fc"
}
.fa-h-square:before {
    content: "\f0fd"
}
.fa-plus-square:before {
    content: "\f0fe"
}
.fa-angle-double-left:before {
    content: "\f100"
}
.fa-angle-double-right:before {
    content: "\f101"
}
.fa-angle-double-up:before {
    content: "\f102"
}
.fa-angle-double-down:before {
    content: "\f103"
}
.fa-angle-left:before {
    content: "\f104"
}
.fa-angle-right:before {
    content: "\f105"
}
.fa-angle-up:before {
    content: "\f106"
}
.fa-angle-down:before {
    content: "\f107"
}
.fa-desktop:before {
    content: "\f108"
}
.fa-laptop:before {
    content: "\f109"
}
.fa-tablet:before {
    content: "\f10a"
}
.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}
.fa-circle-o:before {
    content: "\f10c"
}
.fa-quote-left:before {
    content: "\f10d"
}
.fa-quote-right:before {
    content: "\f10e"
}
.fa-spinner:before {
    content: "\f110"
}
.fa-circle:before {
    content: "\f111"
}
.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}
.fa-github-alt:before {
    content: "\f113"
}
.fa-folder-o:before {
    content: "\f114"
}
.fa-folder-open-o:before {
    content: "\f115"
}
.fa-smile-o:before {
    content: "\f118"
}
.fa-frown-o:before {
    content: "\f119"
}
.fa-meh-o:before {
    content: "\f11a"
}
.fa-gamepad:before {
    content: "\f11b"
}
.fa-keyboard-o:before {
    content: "\f11c"
}
.fa-flag-o:before {
    content: "\f11d"
}
.fa-flag-checkered:before {
    content: "\f11e"
}
.fa-terminal:before {
    content: "\f120"
}
.fa-code:before {
    content: "\f121"
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}
.fa-location-arrow:before {
    content: "\f124"
}
.fa-crop:before {
    content: "\f125"
}
.fa-code-fork:before {
    content: "\f126"
}
.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}
.fa-question:before {
    content: "\f128"
}
.fa-info:before {
    content: "\f129"
}
.fa-exclamation:before {
    content: "\f12a"
}
.fa-superscript:before {
    content: "\f12b"
}
.fa-subscript:before {
    content: "\f12c"
}
.fa-eraser:before {
    content: "\f12d"
}
.fa-puzzle-piece:before {
    content: "\f12e"
}
.fa-microphone:before {
    content: "\f130"
}
.fa-microphone-slash:before {
    content: "\f131"
}
.fa-shield:before {
    content: "\f132"
}
.fa-calendar-o:before {
    content: "\f133"
}
.fa-fire-extinguisher:before {
    content: "\f134"
}
.fa-rocket:before {
    content: "\f135"
}
.fa-maxcdn:before {
    content: "\f136"
}
.fa-chevron-circle-left:before {
    content: "\f137"
}
.fa-chevron-circle-right:before {
    content: "\f138"
}
.fa-chevron-circle-up:before {
    content: "\f139"
}
.fa-chevron-circle-down:before {
    content: "\f13a"
}
.fa-html5:before {
    content: "\f13b"
}
.fa-css3:before {
    content: "\f13c"
}
.fa-anchor:before {
    content: "\f13d"
}
.fa-unlock-alt:before {
    content: "\f13e"
}
.fa-bullseye:before {
    content: "\f140"
}
.fa-ellipsis-h:before {
    content: "\f141"
}
.fa-ellipsis-v:before {
    content: "\f142"
}
.fa-rss-square:before {
    content: "\f143"
}
.fa-play-circle:before {
    content: "\f144"
}
.fa-ticket:before {
    content: "\f145"
}
.fa-minus-square:before {
    content: "\f146"
}
.fa-minus-square-o:before {
    content: "\f147"
}
.fa-level-up:before {
    content: "\f148"
}
.fa-level-down:before {
    content: "\f149"
}
.fa-check-square:before {
    content: "\f14a"
}
.fa-pencil-square:before {
    content: "\f14b"
}
.fa-external-link-square:before {
    content: "\f14c"
}
.fa-share-square:before {
    content: "\f14d"
}
.fa-compass:before {
    content: "\f14e"
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}
.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}
.fa-gbp:before {
    content: "\f154"
}
.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}
.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}
.fa-won:before,
.fa-krw:before {
    content: "\f159"
}
.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}
.fa-file:before {
    content: "\f15b"
}
.fa-file-text:before {
    content: "\f15c"
}
.fa-sort-alpha-asc:before {
    content: "\f15d"
}
.fa-sort-alpha-desc:before {
    content: "\f15e"
}
.fa-sort-amount-asc:before {
    content: "\f160"
}
.fa-sort-amount-desc:before {
    content: "\f161"
}
.fa-sort-numeric-asc:before {
    content: "\f162"
}
.fa-sort-numeric-desc:before {
    content: "\f163"
}
.fa-thumbs-up:before {
    content: "\f164"
}
.fa-thumbs-down:before {
    content: "\f165"
}
.fa-youtube-square:before {
    content: "\f166"
}
.fa-youtube:before {
    content: "\f167"
}
.fa-xing:before {
    content: "\f168"
}
.fa-xing-square:before {
    content: "\f169"
}
.fa-youtube-play:before {
    content: "\f16a"
}
.fa-dropbox:before {
    content: "\f16b"
}
.fa-stack-overflow:before {
    content: "\f16c"
}
.fa-instagram:before {
    content: ""
}
.fa-flickr:before {
    content: "\f16e"
}
.fa-adn:before {
    content: "\f170"
}
.fa-bitbucket:before {
    content: "\f171"
}
.fa-bitbucket-square:before {
    content: "\f172"
}
.fa-tumblr:before {
    content: "\f173"
}
.fa-tumblr-square:before {
    content: "\f174"
}
.fa-long-arrow-down:before {
    content: "\f175"
}
.fa-long-arrow-up:before {
    content: "\f176"
}
.fa-long-arrow-left:before {
    content: "\f177"
}
.fa-long-arrow-right:before {
    content: "\f178"
}
.fa-apple:before {
    content: "\f179"
}
.fa-windows:before {
    content: "\f17a"
}
.fa-android:before {
    content: "\f17b"
}
.fa-linux:before {
    content: "\f17c"
}
.fa-dribbble:before {
    content: "\f17d"
}
.fa-skype:before {
    content: "\f17e"
}
.fa-foursquare:before {
    content: "\f180"
}
.fa-trello:before {
    content: "\f181"
}
.fa-female:before {
    content: "\f182"
}
.fa-male:before {
    content: "\f183"
}
.fa-gittip:before {
    content: "\f184"
}
.fa-sun-o:before {
    content: "\f185"
}
.fa-moon-o:before {
    content: "\f186"
}
.fa-archive:before {
    content: "\f187"
}
.fa-bug:before {
    content: "\f188"
}
.fa-vk:before {
    content: "\f189"
}
.fa-weibo:before {
    content: "\f18a"
}
.fa-renren:before {
    content: "\f18b"
}
.fa-pagelines:before {
    content: "\f18c"
}
.fa-stack-exchange:before {
    content: "\f18d"
}
.fa-arrow-circle-o-right:before {
    content: "\f18e"
}
.fa-arrow-circle-o-left:before {
    content: "\f190"
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}
.fa-dot-circle-o:before {
    content: "\f192"
}
.fa-wheelchair:before {
    content: "\f193"
}
.fa-vimeo-square:before {
    content: "\f194"
}
.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}
.fa-plus-square-o:before {
    content: "\f196"
}
.fa-space-shuttle:before {
    content: "\f197"
}
.fa-slack:before {
    content: "\f198"
}
.fa-envelope-square:before {
    content: "\f199"
}
.fa-wordpress:before {
    content: "\f19a"
}
.fa-openid:before {
    content: "\f19b"
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}
.fa-yahoo:before {
    content: "\f19e"
}
.fa-google:before {
    content: "\f1a0"
}
.fa-reddit:before {
    content: "\f1a1"
}
.fa-reddit-square:before {
    content: "\f1a2"
}
.fa-stumbleupon-circle:before {
    content: "\f1a3"
}
.fa-stumbleupon:before {
    content: "\f1a4"
}
.fa-delicious:before {
    content: "\f1a5"
}
.fa-digg:before {
    content: "\f1a6"
}
.fa-pied-piper-square:before,
.fa-pied-piper:before {
    content: "\f1a7"
}
.fa-pied-piper-alt:before {
    content: "\f1a8"
}
.fa-drupal:before {
    content: "\f1a9"
}
.fa-joomla:before {
    content: "\f1aa"
}
.fa-language:before {
    content: "\f1ab"
}
.fa-fax:before {
    content: "\f1ac"
}
.fa-building:before {
    content: "\f1ad"
}
.fa-child:before {
    content: "\f1ae"
}
.fa-paw:before {
    content: "\f1b0"
}
.fa-spoon:before {
    content: "\f1b1"
}
.fa-cube:before {
    content: "\f1b2"
}
.fa-cubes:before {
    content: "\f1b3"
}
.fa-behance:before {
    content: "\f1b4"
}
.fa-behance-square:before {
    content: "\f1b5"
}
.fa-steam:before {
    content: "\f1b6"
}
.fa-steam-square:before {
    content: "\f1b7"
}
.fa-recycle:before {
    content: "\f1b8"
}
.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}
.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}
.fa-tree:before {
    content: "\f1bb"
}
.fa-spotify:before {
    content: "\f1bc"
}
.fa-deviantart:before {
    content: "\f1bd"
}
.fa-soundcloud:before {
    content: "\f1be"
}
.fa-database:before {
    content: "\f1c0"
}
.fa-file-pdf-o:before {
    content: "\f1c1"
}
.fa-file-word-o:before {
    content: "\f1c2"
}
.fa-file-excel-o:before {
    content: "\f1c3"
}
.fa-file-powerpoint-o:before {
    content: "\f1c4"
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}
.fa-file-code-o:before {
    content: "\f1c9"
}
.fa-vine:before {
    content: "\f1ca"
}
.fa-codepen:before {
    content: "\f1cb"
}
.fa-jsfiddle:before {
    content: "\f1cc"
}
.fa-life-bouy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}
.fa-circle-o-notch:before {
    content: "\f1ce"
}
.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0"
}
.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}
.fa-git-square:before {
    content: "\f1d2"
}
.fa-git:before {
    content: "\f1d3"
}
.fa-hacker-news:before {
    content: "\f1d4"
}
.fa-tencent-weibo:before {
    content: "\f1d5"
}
.fa-qq:before {
    content: "\f1d6"
}
.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}
.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}
.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}
.fa-history:before {
    content: "\f1da"
}
.fa-circle-thin:before {
    content: "\f1db"
}
.fa-header:before {
    content: "\f1dc"
}
.fa-paragraph:before {
    content: "\f1dd"
}
.fa-sliders:before {
    content: "\f1de"
}
.fa-share-alt:before {
    content: "\f1e0"
}
.fa-share-alt-square:before {
    content: "\f1e1"
}
.fa-bomb:before {
    content: "\f1e2"
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.dnd-section {
  padding: 30px 0px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 879px) {
  .dnd-section > .row-fluid {
    padding: 0 0.5em;
  }
  .dnd-section[class*="force-full-width-section"] > .row-fluid {
    padding: 0px;
  }
}
@font-face {
  font-family: 'robotolight';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-Light-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Light-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Light-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Light-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'robotoregular';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-Regular-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Regular-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Regular-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Regular-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'robotomedium';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-Medium-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Medium-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Medium-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Medium-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'robotoitalic';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-Italic-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Italic-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Italic-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Italic-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'robotobold';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-Bold-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Bold-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Bold-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-Bold-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'robotobold_italic';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/Roboto-BoldItalic-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-BoldItalic-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-BoldItalic-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/Roboto-BoldItalic-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'roboto_condensedregular';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/RobotoCondensed-Regular-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/RobotoCondensed-Regular-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/RobotoCondensed-Regular-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/RobotoCondensed-Regular-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal;
          }

@font-face {
  font-family: 'FontAwesome';
  src: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/fonts/fontawesome-webfont.eot") format('embedded-opentype'),
    url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/fontawesome-webfont.woff") format('woff'),
      url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/fontawesome-webfont.ttf") format('truetype'),
        url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/fonts/fontawesome-webfont.svg") format('svg');
          font-weight: normal;
          font-style: normal
          }


/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

html {
  font-size: 16px;
}

body {
  font-family: 'robotoregular', 'tahoma', sans-serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.5;
  background-color: #fafafa;
}

p {
  margin: 0;
  padding: 0 0 .5em 0;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin: 0;
  font-weight: 700;
  font-family: 'robotobold', sans-serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  padding: 0.5em 0;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.25rem;
}

@media (max-width: 879px) {
  h2, h3, h4 {
    line-height: 1.2;
  }
}

h4 {
  font-size: 1.175rem;
  padding: 0 0 .5em 0;
}

h5 {
  font-size: 1rem;
  padding: 0 0 .5em 0;
}

h6 {
  font-size: .9rem;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
}
ul {
  padding: 0;
  list-style-type: square;
  margin-left: 2em;
  margin-bottom: .5em;
}
ul li {
  line-height: 1.5em;
  margin-bottom: .5em;
}

ol {
  padding-left: 30px;
}

ul li,
ol li {}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote, q {
  quotes: none;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

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

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sub {
  vertical-align: sub;
  font-size: 85%;
  position: static;
  line-height:inherit;
}
sup {
  vertical-align: super;
  font-size: 85%;
  position: static;
  line-height:inherit;
}

sub {
  bottom: -0.25em;
}

ul li sub {
  vertical-align: sub;
  font-size: 85%;
  position: static;
  line-height: inherit;
}

:focus {
  outline: auto;
  outline-color: green;
  outline: none;
}

.disable-focus-styles :focus {
  outline: none;
}

strong, .strong {
  font-family: 'robotobold', sans-serif;
}

em {
  font-family: 'robotoitalic', sans-serif;
}

/* @media (max-width: 767px) {
html {
font-size: 12.0px
}
}

@media (max-width: 480px) {
html {
font-size: 9.6px
}
} */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

h3.form-title,
form {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  font-family: 'robotoregular', 'tahoma', sans-serif;
  margin-left: 0;
}
p.header {
  background: no-repeat;
  min-height: 100%;
}
h3.form-title:empty { 
  display: none;
}
input.email-edit.hs-input {
  width: 100% !important;
}
.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1.1;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-size: 1em;
  padding: 15px 53px;
  
  text-decoration: none;
  font-family:arial;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  /* border-color: #21222a; */
  
  color: #fff;
}

/* .hs-button:active {
background-color: #71727a;
border-color: #71727a;
} */


.hs-form label {
  color: #1a1a1a;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
}

.hs-form .hs-error-msgs label,
.hs-error-msgs label {
  margin-top: .5rem;
  color: #ff0000;
}

.hs-error-msgs,
.hs-form .hs-error-msgs {
  padding: 0;
  list-style: none;
  margin: 0;
}

input#hs-pwd-widget-password,
.hs-search-field__input,
.hs-input {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0px;
  border: 1px solid #CCC;
  font-size: 1em;
  padding: 2px 0px;
  text-indent: 5px;
  border-radius: 5px;
  background: none repeat scroll 0% 0% #FFF;
  width: 100%;
  color: #1a1a1a;
}

input#hs-pwd-widget-password {
  height: auto !important;
  margin-top: 0px !important;
}

select.hs-input {
  cursor: pointer;
}

textarea.hs-input {

}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #666666;
}

.hs-input::-webkit-input-placeholder {
  color: #666666;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #ff0000;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #ff0000;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  /* padding-top: 6px; */
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}
.hs-error-msgs li {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

.hs_error_rollup,
.field {
  padding: 0 0 .5em 0;
  margin: .5em;
}
.hs-button.primary.large {
  margin: .5em .5em 0;
}

.hs-field-desc {
  color: #1a1a1a;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: 'robotoregular', 'tahoma', sans-serif;
}

@media (max-width: 767px) {
  h3.form-title,
  form {
    max-width: 100%;
  }
}

@media (max-width: 400px), (max-device-width: 480px) and (min-device-width: 320px) {
  .hs-form .hs-form-field .hs-input:not([type="checkbox"]):not([type="radio"]) {
    width: 100% !important;
  }
}






/* Main Styling */


.faq-page .row-fluid .span9+.span3 > div {
  margin-top: 1em;
}

.faq-page form .hs-richtext h3 {
  margin: .5em;
  padding: 0 0 .5em 0;
  color: #1a1a1a;
}

.faq-page .hs-form-required {
  display: none;
}

.faq-page textarea.hs-input {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark-color(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: textarea;
  -webkit-rtl-ordering: logical;
  flex-direction: column;
  resize: auto;
  cursor: text;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  margin: 0em;
  font: 400 13.3333px Arial;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark-color(rgb(118, 118, 118), rgb(195, 195, 195));
  border-image: initial;
  padding: 2px;
  font-family: inherit;
}

.faq-page .hs-button.primary.large{
  background-color: #bd3c1d;
  color: white;
}

.faq-page .actions{
  text-align:center;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-menu-item a {
  /* display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5); */
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  /* color: rgba(0, 0, 0, 0.7); */
}

.hs-menu-item.active a {
  /* color: rgba(0, 0, 0, 0.9); */
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: .5em;
  border: 0;
}

th,
td {
  padding: .25em .5em;
  border-top: 1px solid #1a1a1a;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-top-width: 1px;
}

thead th {
  vertical-align: bottom;
}

tbody + tbody {
  border-top: 1px solid #dee2e6;
}

tr:last-child {
  border-bottom: 1px solid #1a1a1a;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your Website pages
look if there is anything specific to your Website pages.
*********************************************************************************
****************************************************************************** */

body .fancybox-overlay {
  background-image: url(https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/images/fancybox_overlay.png);
}
::marker{ display: none; content: '';}
.fancybox-overlay #fancybox-loading,
.fancybox-close, 
.fancybox-overlay .fancybox-prev span, 
.fancybox-overlay .fancybox-next span {
  background-image: url(https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/images/fancybox_sprite.png) !important;
}
.fancybox-close{
  background-size: 44px 152px;
  background-image: url(https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/images/fancybox_sprite@2x.png) !important;
}

.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5 {
  margin: .5em;
  color: #1a1a1a;
}
.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5:last-child {
  margin-bottom: 0;
}
.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5 span {
  font-size: .875em;
  font-weight: normal;
  font-family: 'robotoregular', 'tahoma', sans-serif;
}
.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5 a, 
.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5 a:visited {
  text-decoration: underline;
  color: #bd3c1d;
}
.row-fluid > .span3.dnd-column .span12.dnd-column .widget-type-rich_text h5 a:hover {
  text-decoration: none;
  color: #bd3c1d;
}

.cm-normal-menu .menu-5 .hs-menu-wrapper > ul > li {
  width: 18.333333333333%;
}

.cm-normal-menu .menu-5 .hs-menu-wrapper>ul>li.hs-services-training {
  width: 6.6666666666667%;
}
.cm-normal-menu .menu-5 .hs-menu-wrapper>ul>li.hs-services-training > a {
  display: none;
}
/*======= after market  page ===*/

.after-market-body .dnd-column {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.after-market-body .dnd-section[class*="-force-full-width-section"] .dnd-column {
  padding: 0;
}

.after-market-body h4 {
  margin-top: 1em; 
  color: #1a1a1a;
}

table.fltRight {
  float: right;
}

table.fltRight td,table.fltRight tr {
  border: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
}

.cm-normal-menu .band-level-3b.menu-4  .hs-menu-wrapper>ul>li {
  width: 23.333333333333%;
}

.prod-page .span12.dnd-column {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.prod-page .dnd-column{
  margin-top:0;
  margin-bottom:0;
}

.span3 .dnd-column {
  border-radius: .3125em;
}

.inc-page .cm-standard-menu .hs-menu-wrapper>ul {
  margin-bottom: 1em;
}


table.tb-yellow tr:nth-child(odd) {
  background-color: #f3e2ba ;
}

table.tb-yellow td {
  background: transparent;
  vertical-align: baseline;
} 

.brochures-page .hs_cos_wrapper_type_rich_text hr,
.ammonia-page .hs_cos_wrapper_type_rich_text hr{
  border-style: inset;
  border-width: 1px;
  height: 0;
}

ul.bk-list > li > a {
  text-decoration: underline;
}

.faq-page .dnd-module {
  background: transparent !important;
}

/*======= end after market  page ===*/



/*======= burner page ===========*/

.burner-page .cm-menu-wrapper.simple .hs-menu-wrapper > ul > li > a {
  font-family: 'robotobold', sans-serif;
  padding: 0.25em 0;
  display: block;
  color: #e5e5e5;
}

.burner-page .cm-normal-menu .hs-menu-wrapper ul ul {
  list-style-type: square;
  margin-left: 2em;
  margin-bottom: .5em;
}

.burner-page .cm-normal-menu .hs-menu-wrapper ul ul li {
  line-height: 1.5em;
  margin-bottom: .5em;
  padding: 0;
  color: #e5e5e5;
}

.burner-page .cm-menu-wrapper.simple .hs-menu-wrapper > ul > li > a:empty {
  display: none;
}

.burner-page .cm-normal-menu .hs-menu-wrapper ul ul li.active-branch{
  color: #faca50;
}

.burner-det-page .cm-normal-menu .hs-menu-wrapper > ul > li > a {
  font-family: 'robotobold', sans-serif;
  color: #e5e5e5;
  cursor: text;
}

/*======= end burner page ===========*/

.burner-det-page .dnd-section > .row-fluid>.dnd-column {
  padding: 1.25em 0;
  margin-top: 0;
  margin-bottom: 0;
}

.burner-det-page .dnd-section[class*="force-full-width-section"]>.row-fluid>.dnd-column.span12, 
.burner-det-page .dnd-section[class*="force-full-width-section"]>.row-fluid>.span12.dnd-module {
  padding: 0;
}

.pkg-burner-page .span3 .body-container__website .dnd-section > .row-fluid .dnd-column {
  background-color: #f3e2ba;
  padding: 0 .5em;
  border-radius: .3125em;
  margin-top: 1em;
  width: 100%;
}

.pkg-burner-page .span3 .body-container__website .dnd-column {
  margin: 0;
}

.pkg-burner-page .span3 .body-container__website h5{
  margin: .5em;
  color: #1a1a1a;
  margin-bottom: 0;
}

.aside h5:first-child {
  margin-top: 0!important;
}

.pkg-burner-page .span3 .body-container__website h5 span {
  font-family: 'robotoregular', 'tahoma', sans-serif;
  font-size: .875em;
  font-weight: normal;
}

.pkg-burner-page .span3 .body-container__website h5 a {
  text-decoration: underline;
  color: #bd3c1d;
}

.pkg-burner-page .span3 .body-container__website h5 a:hover {
  text-decoration: none;
}

.spec-sheets-page .widget-type-rich_text a,
.spec-sheets-page .widget-type-rich_text a:visited {
  text-decoration: underline;
  color: #bd3c1d;
}
.spec-sheets-page .widget-type-rich_text a:hover {
  text-decoration: none;
}

/*===== inspection services page ========*/

.inspec-service .body-container.body-container__website.top-sec img {
  width: 100%;
  padding-right: 10px;
}

.inspec-service .body-container.body-container__website.top-sec .dnd-column {
  margin: 0;
  width: 100%;
}

.inspec-service .widget-type-linked_image {
  display: block;
  width: 100%;
}

.inspec-service .main-sec h3.form-title {
  padding-left: .5em;
  font-family: 'robotobold', sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

.inspec-service .main-sec form {
  padding: 0 0 10px;
}

.inspec-service .main-sec .hs-richtext.hs-main-font-element p {
  padding: 0;
  color: #1a1a1a;
}

.inspec-service .main-sec .hs-richtext.hs-main-font-element {
  padding: 3px 0 0 0;
  margin: .5em .5em 0;
}

.linky {
  border-radius: 5px;
  border: none;
  background-color: #bd3c1d;
  font-size: 125%;
  color: white;
  margin: 0;
  padding: 3px;
  display: inline-block;
  line-height: normal;
  font-family: arial;
}

.linky:hover {
  background-color: #E14520;
  color: #fff;
}

table.tb-yellow.tb-eve tr.shaded {
  background-color: #f3e2ba !important;
}

table.tb-yellow.tb-eve tr {
  background: transparent !important;
}

.cm-video-container .dnd-module {
  margin-top: 0;
  margin-bottom: 0;
}

.cm-image-overlay .dnd-section>.row-fluid> .dnd-column {
  padding: 1.25em 0;
  margin-top: 0;
  margin-bottom: 0;
}

ul.deco-line a {
  text-decoration: underline;
  color: #bd3c1d;
}

ul.deco-line a:hover {
  text-decoration: none;
}

.contact-page hr {
  border-bottom: 1px solid #666666;
  background-color: transparent;
  height: 0;
  margin: 0;
  padding-bottom: 1.7px;
}
.contact-page strong {
  font-family: inherit;
  font-weight: inherit;
}

.main-contact-sec .dnd-section {
  overflow: hidden;
}
.main-contact-sec .dnd-row {
  margin: 0 -0.83333333333333%;
}
.main-contact-sec .span12.dnd-column,
.contact-top-sec .span12.dnd-column {
  margin-bottom: 0;
}
.main-contact-sec .span12.dnd-column {
  margin-top: 0;
}

.fancybox-title-float-wrap .child{
  white-space: normal !important;
}

a.decor-line {
  text-decoration: underline;
  color: #bd3c1d;
}

a.decor-line:hover {
  text-decoration: none;
  color: #bd3c1d;
}

.cm-contact-content .dnd-module {
  margin-bottom: .25em !important;
}

.inc-page .inputs-list>li label {
  line-height: 20px;
}

.inc-page .inputs-list>li{
  margin-bottom: 0;
  line-height:24px;
}

.faq-page form .hs-richtext h3 {
  margin: .5em;
  padding: 0 0 .5em 0;
  color: #1a1a1a;
  font-size: 1em;
  line-height: 1.5;
  margin-top: 0;
}

.inc-page-main hr{
  background-color: #999;
}

.faq-page .hs-input{
  color: #666;
}
/*===== end inspection services page ========*/

/** edits by Kyle **/
.home_bg_image{
 position: relative; 
/*   border-bottom: 10px solid ; */
  overflow: hidden;
  height: 600px;
}
.darkFade{
 position: absolute;
   top: 0;
   height: 100%;
  width: 100%;
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 46%, rgba(0,0,0,0.6965161064425771) 100%);
  z-index: 2;
}
.home_bg_image img{
  width: 100vw;
  object-fit: cover;
  height: 600px;
}
.home_bg_image .hs_cos_wrapper{
  line-height: 0;
  position: fixed;
  z-index: -1;
  top: 0;
}
.home-page .flexslider img {
    margin: 0 !important;
}

/** Resources Page **/
.header_bg{
  height: 400px;
  width: 100vw;
  position: relative; 
  border-bottom: 10px solid #f47920;
  overflow: hidden;
}
.header_bg img{
 transform: translateY(35px);
  object-fit: cover;
  height: 100% !important;
}
.title_sub{
  bottom: 0;
  padding: 0;
  padding-bottom: calc(3rem - 1vw);
  width:100%;
}
.global_solutions{
  position: absolute;
  bottom: 110px;
  z-index: 3;
  width: 50%;
  max-width: 900px;
}
.global_solutions .first{
  line-height: 0.7;
    font-size: 3.2rem;
    font-weight: 900;
  padding: 0;
}
.global_solutions .second{
  line-height: 1;
    font-size: 4rem;
    font-weight: 900;
  padding: 0 0 1rem 0;
}

.icons{
  background-color: #e6e7e8;
  position: relative;
}
.foundation .icons .hs_cos_wrapper{
  display: flex;
  flex-flow: wrap;
  padding: 3rem;
  justify-content: space-around;
}
.foundation .icons.lessPad .hs_cos_wrapper {
    padding: 1rem 3rem;
}
.foundation .icons a{
  color: #58585b;
  width: 140px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1rem;
}
.foundation .icons a.icon-vapor_control:before{
 font-size: 2.3rem !important; 
}
.icons.tight_icons a {
    width: 100px;
}
.icons.tighter_icons a {
    width: 90px;
}
.foundation .icons a:before{
  color: #a7a9ac;
  display: block;
  margin: 0 auto 10px;
  transition: all 0.3s;
  font-size: 3rem;
}
.foundation .icons a:hover:before{
  color: #f47920;
}
section.resources{
  background: #f47920;
  position: relative;
}
.resources .page-center{
 display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  padding: 0 2rem 2rem;
}
.resources h2{
 text-align: center;
    font-size: 2rem;
    line-height: 3;
    text-transform: uppercase;
    font-weight: 700; 
}
.resources .page-center > a{
  background: #fff;
  padding: 1rem;
  flex-basis: 30%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
  transition-duration: 0.3s;
  transition-property: background;
  color: #000;
  overflow: hidden;
}
.resource_icon{
  background-color: #f47920;
  border-radius: 30px;
  height: 50px;
  width: 50px;
  text-align: center;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
} 
.resource_icon.papers{
background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/articles-papers-icon.svg');
}
.resource_icon.brochures{
background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/brochures-icon.svg');
}
.resource_icon.videos{
background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/videos-icon.svg');
}
.resources h3{ 
  font-weight: 600;
 text-transform: uppercase;
  line-height: 2;
 color: #000;
  font-size: 1.2rem;
    margin: 10px 0 0 0;
}
.resources .hs_cos_wrapper{
  padding: 0 0 2rem 0; 
  flex: 1 0 auto;
}
.solutions_blurb{ 
  position: relative;
  background: #00000091;
  line-height: 0;
  z-index: 1;
}
.solutions_blurb img{
  width: 100vw;
  height: 1000px;
  mix-blend-mode: multiply; 
  object-fit: cover;
  line-height: 0;
}
.solutions_blurb > h1{
  position: absolute;
    left: 50%;
    transform: translate(-40px);
    top: calc(3vw*2);
    font-size: 4vw;
    text-align: right;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 600px;
}
.solutions_blurb > div{
display: flex;
  border-top: 5px solid #f47920;
  position: absolute;
  bottom: 0;
  max-height: 400px;
  overflow: hidden;
  width: 100%;
}
.solutions_blurb > div .container{
  max-width: 570px;
}
.solutions_blurb .global_solutions{
 position: relative; 
  bottom: 0;
  width: 100%;
}
.solutions_blurb > div span{
  flex-basis: 50%;
  color: #fff;
}
.solutions_blurb > div span:nth-child(1){
  background-color: #404041; 
  padding: 2rem 3rem 2rem 10%;
}
.solutions_blurb > div span:nth-child(2){
  background-color: #607d8b52;
  padding: 2rem 10% 2rem 3rem;
}
.solutions_blurb > div span:nth-child(2) h2:before{
  content: '';
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-location-map-white.svg');
    display: inline-block;
    width: 300px;
    height: 100px;
    background-repeat: no-repeat;
  flex-basis: 34%;
  margin: 0 20px 0 0;
}
.solutions_blurb .map_text{
    font-weight: 600;
    font-size: calc(1rem + 1vw);
    line-height: 1;
}
.solutions_blurb h2,
.solutions_blurb h3{
text-transform: uppercase;
}
.solutions_blurb .white_map{
  display: flex;
    align-items: center;
    margin: 0 0 0.9rem 0;
}
.solutions_blurb p{
 line-height: 1.5; 
}
.locations_whiteBG{
  background: #fff;
  padding: 2rem;
}
.locations_whiteBG .page-center{
  background: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/world-map-gray-blank.svg') no-repeat;
  background-position: center 0;
    background-size: 75%;
    background-blend-mode: lighten;
    background-color: #ffffffcc;
  padding-bottom: 7rem;
}
.locations_whiteBG h1{
  font-size: 6vw;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-align: center;
  color: #404041;
}
.locations_whiteBG h1 span{
  margin: 0 1.2vw 0 0;
}
.locations_whiteBG ul{
    display: flex;
    color: #404041;
    flex-flow: column wrap;
    height: 270px;
    align-content: space-evenly;
    width: 75%;
    margin: 0 auto;
}
.locations_whiteBG ul li{
  text-transform: uppercase;
}
.locations_whiteBG ul li::marker{
  
}

/*** Resources Page ***/
/* about zeeco and video section hiding on resources page */
.hs-content-id-38812830386 .body-container-wrapper > .container-fluid{ 
  display: none; 
} 
/** new theme overrides **/
.foundation .dnd-section{
 padding: 0 !important; 
}
.foundation .dnd-section>.row-fluid {
    max-width: 100% !important;
    padding: 0 !important;
}
.foundation .row-fluid .span12 {
    width: 100% !important;
    margin: 0 !important;
}
/** end new theme overrides **/

.parallax_vid .hs_cos_wrapper{
  height: 300px;
  width: 100vw;
}
.parallax_vid video{
 object-fit: cover; 
  position: fixed;
    z-index: -1;
    top: 0;
}


/** Sticky Header **/
.header2.sticky{
  background: #04060894 !important;
}
.header2.sticky .logo img{ opacity: 0; }
.header2.sticky .logoNavSearch .logo{
 background: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/Zeeco-logo-text-only-white.svg') no-repeat; 
  top: -6px;
}
.twoColMain{
  padding: 1rem 0;
}
.twoColMain section{
  display: flex;
  padding: 2rem 0;
  width: 100%;
  position: relative;
  justify-content: space-between;
}
.twoColMain .hs_cos_wrapper section > div{
  padding-top: 0;
  width: 580px;
}
.twoColMain .hs_cos_wrapper section:nth-child(even) > div{
  order: -1;
}
.twoColMain.services_template .hs_cos_wrapper section:nth-child(even) > div{
  order: 1;
}
.twoColMain .hs_cos_wrapper section img {
    height: 300px;
    width: 47%;
    object-fit: cover;
}
.solutions_blurb>div span {
    padding: 2rem 3rem !important;
}

/* service template resources section */
.resources_gray .resource_icon {
    height: 40px !important;
    width: 40px !important; 
    background-size: 14px;
}
.resources_gray a{
  width: 170px;
  overflow: hidden;
}
.resources_gray a > .hs_cos_wrapper{
  flex-grow: 1;
  text-align: left;
}
.resources_gray .header-search form input {
    width: 220px !important;
    max-width: 220px !important;
    border-color: #fff;
    background: url(https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/search.svg) transparent 7% 50% no-repeat;
    background-size: 10px;
    padding: 7px 0 7px 35px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #fff !important;
}
.resources_gray .header-search form label { display: none; }
.foundation .hs-search-field__suggestions a{
  color: #333;
  padding: 3px 5px;
}

.foundation .header-search ul.hs-search-field__suggestions{
  width: 100%;
}

/* Internal template */
.internal .header_bg{
  border: none;
}
.internal_links a{
 padding: 6px; 
}
.internal_links a .hs_cos_wrapper{
  display: inline-block;
}
.internal_links a:after{
  content: '|';
  font-size: 1rem;
  padding: 0 1rem;
}
.internal_links a:nth-last-child(1):after{
  display: none;
}

/* Global Locations page template */
.threecolGloballoc{
  column-count: 3;
  height: 100%;
  column-fill: auto; 
}
.threecolGloballoc li{
  margin: 0;
  font-weight: 600;
}
.threecolGloballoc div{
  margin: 1rem 0 0 0;
}
.contact_sales{
  display: inline-block;
    border-radius: 15px;
    border: 2px solid #999;
}
.foundation .infoBox{
    position: absolute;
    background: white;
    padding: 5px 15px;
    border: 2px solid #f47920;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
}
.foundation .infoBox span{
    width: 10px;
    height: 10px;
    background-color: #555;
    color: #fff;
    padding: 7px 10px 13px 10px;
    border-radius: 50px;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.foundation .infoBox span:hover{
  cursor: pointer;
}
.foundation .infoBox a{
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
}

/* landing template */
.landing .header_bg{
 height: 680px; 
}
/* contact form */
.foundation form, 
.foundation .submitted-message {
  background-color: transparent;
  padding: 0.5rem 0;
}
.foundation .submitted-message p {
  color: #07ea07;
}
.foundation .hbspt-form input,
.foundation .hbspt-form select,
.foundation .hbspt-form textarea{
  background-color: #e6e7e8;
  padding: 0.6rem;
  color: #000;
  border: none;
}
.foundation .hbspt-form textarea{
 height: 75px; 
}
.foundation .hs-form label{
 color: #000;
  text-transform: uppercase;
}
.foundation .hs-form .hs-error-msgs label, 
.foundation .hs-error-msgs label {
    margin-top: .5rem;
    color: red !important;
  font-size: 0.8rem;
}
.foundation input[type=submit]{
  background-color: #f47920;
  color: #fff;
  padding: 1rem 1.5rem;
  margin: 0.5rem 0 0 0 !important;
  text-transform: uppercase;
}
.foundation .hs_error_rollup, 
.foundation .field {
    margin: 0;
}
.floating_form{
  box-shadow: 1px 1px 5px 2px #d6d6d6;
    position: absolute;
    top: -465px;
    z-index: 5;
    right: 0;
    background: #fff;
    padding: 0.5rem 2rem 2rem 2rem;
}
/** end contact form **/

/*** MEDIA QUERIES START ***/
@media (min-width: 1500px) { /** 1500 or above **/
  .locations_whiteBG h1,
  .solutions_blurb>h1{
    font-size: 3rem;
  }
  .threeremmax{
    font-size: 3rem;
  }
}
@media (min-width: 1200px) { /** 1200 or above **/
  .resources_gray .hs-search-field{
    top: 50px;
    left: 20px;
    height: fit-content;
  }
}

@media (max-width: 1250px) {
  .contact-page .cm-contact-content p {
    word-break: break-word;
  }
}

@media (max-width: 1024px) {
  .home_bg_image .global_solutions,
  .home_bg_image .flex-control-paging{
    left: 6%;
  }
  .solutions_blurb>div {
    display: flex;
    max-height: initial;
    width: 100%;
    flex-flow: row wrap;
  }
  .solutions_blurb>div .container {
    max-width: initial;
    float: none;
  }
  .solutions_blurb>div span {
    flex-basis: 100%;
  }
  .solutions_blurb>div span:nth-child(2) h2:before {
    flex-basis: 30%;
  }
  .solutions_blurb .global_solutions {
    margin: 0;
  }
  .solutions_blurb>div {
    max-height: initial;
  }
  .global_solutions .first {
    font-size: 2.2rem;
  }
  .global_solutions .second {
    font-size: 2.5rem;
  }
  .twoColMain .hs_cos_wrapper section>div {
    width: 49%;
  }
  .foundation .icons .hs_cos_wrapper {
    justify-content: center;
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .body-container-wrapper img {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /*     display: block; */
  }
}

@media (max-width: 879px) {
  
  .inc-page .cm-standard-menu .hs-menu-wrapper>ul {
    margin-bottom: 0em;
  }
}

@media (min-width: 769px){
  .resources .page-center > a{
    height: 360px;
  }
.resources .page-center > a:before{
  white-space: pre;
    content: '
      » Articles \a \a 
      » Case Studies \a \a  
      » Presentations \a \a 
      » Spec Sheets \a \a
      » Tech Papers
      ';
    position: absolute;
    border: #fff solid 3px;
    top: 39px;
    left: 20px;
    right: 20px;
    bottom: 25px;
    opacity: 0;
    color: #fff;
    padding: 2rem 1rem 2rem;
    font-size: 1rem;
    transition-duration: 0.3s;
    transition-property: opacity;
}
.resources .page-center > a:hover:before{
  opacity: 1;
}
.resources .page-center > a:hover h3,
.resources .page-center > a:hover p{
  opacity: 0;
}
.resources .page-center > a:hover{
  background: #000000b5 url(https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/resources-articles-hover.jpg) no-repeat center;
  background-blend-mode: multiply;
  background-size: cover;
}
.resources .page-center > a:hover span{
 background-color: #f47920;
    padding: .4rem 1.2rem 0.5rem;
    color: #fff;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: fit-content;
    top: 8px;
}
.resources .page-center > a:hover .resource_icon{
  left: 50%;
  margin-left: -20px;  
  position: relative;
}
  .landing .title_sub{
    left: 30%;
  }
} /* 769 and above */

@media (max-width: 767px) and (min-width: 480px){
  .hide-phone {
    display: block;
  }
}

@media (max-width: 768px){ /* tablet and mobile */
  .flex-control-paging{
    flex-flow: row wrap;
  }
  .aboutTxtBlock, .aboutVideoBlock{ float: none; max-width: 100%; }
  .logoNavSearch .navigation-primary ul li:last-child {
    display: block !important;
  }
  .global_solutions{
    bottom: 160px;
    width: 90%;
  }
 .flex-control-paging {
    bottom: 15px !important;
  }
  .flex-control-paging li{
    flex: 0 1 100% !important;
    width: 100% !important;
    margin: 0.5rem 0 !important;
  }
  
  .mob_justify_center{
		justify-content: center;
	}
	.mob_hide{
		display: none;
	}
	.mob_stacked{
		flex-flow: wrap;
		justify-content: center;
		align-items: center;
		align-content: space-between;
	}
	.mob_stacked > *{
		flex-basis: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	  text-align: center !important;
    max-width: 100% !important;
	}
	.mob_center_self{
	  position: relative;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%, -50%);
	}
	.mob_center_self_lr{
	  position: relative;
	  left: 50%;
	  transform: translate(-50%);
	}
  .mob_padb0{
   padding-bottom: 0rem !important; 
  }
  .mob_mar2{
   margin-bottom: 2rem !important; 
  }
  .mob_onerem{
    font-size: 1.2rem !important;
  }
  
  .foundation .icons a {
    flex-basis: auto;
  }
  .twoColMain .hs_cos_wrapper section {
    flex: 0 1 100%;
    padding: 1rem 0;
    flex-wrap: wrap;
  }
  .twoColMain .hs_cos_wrapper section img {
    width: 100% !important;
    height: 200px;
  }
  .twoColMain .hs_cos_wrapper section>div { 
    padding-top: 1.5rem;
    width: 100%;
  }
  .twoColMain .hs_cos_wrapper section:nth-child(even) > div{
  order: 0;
  }
  .parallax_vid video {
    position: relative;
  }
  .locations_whiteBG ul li {
    font-size: .9rem;
  }
}
@media (max-width: 767px) {
  table.tb-yellow {
    max-width: 100%;
    overflow-x: auto;
    display: block;
  }
  .flares-page .dnd-section .span5 + .span4 {
    order: unset;
  }
  .case-study-page {
    padding-bottom: 10px;
  }

  .burner-det-page .row-fluid.image-type-row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .burner-det-page .row-fluid.image-type-row-fluid .dnd-column.image-type-column {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .top-sec .dnd-section > .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .top-sec .dnd-section > .row-fluid > .dnd-column {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .pkg-burner-page .span9 .dnd-section>.row-fluid .span4.dnd-column {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .pkg-burner-page .span9 .dnd-section>.row-fluid .span8.dnd-column {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
  }

  .pkg-burner-page .span9 .dnd-section>.row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pkg-burner-page .span9 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pkg-burner-page .span3 .body-container__website .dnd-section>.row-fluid .dnd-column {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .inc-page img {
    float: none !important;
    margin-left: 0 !important;
    width: 100%;
  }

  .prod-page .row-fluid>.span3.dnd-column {
    margin-top: 20px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .row-fluid > .span9.dnd-column {
    margin-bottom: 0;
  }
  .row-fluid > .span3.dnd-column {
    margin-top: 0;
  }
  .after-market-body .dnd-column {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cm-normal-menu .band-level-3b.menu-4 .hs-menu-wrapper>ul>li {
    width: auto;
  }

  .cm-normal-menu .menu-5 .hs-menu-wrapper>ul>li.hs-services-training {
    width: 100%;
  }

  .cm-normal-menu .menu-5 .hs-menu-wrapper>ul>li {
    width: auto;
  }

  .after-market-body .hs_cos_wrapper_type_rich_text h3 {
    padding: 0.5em 0 !important;
  }
  .after-market-body .dnd-section:last-of-type{
    padding-bottom: 15px !important;
  }
  .burner-det-page .dnd-section>.row-fluid>.dnd-column {
    padding: 0.5em 0;
  }

  .top-sec .dnd-section[class*="force-full-width-section"]>.row-fluid>.dnd-column.span12,
  .inspec-service .body-container.body-container__website.top-sec .dnd-column{
    padding: 0 !important;
  }
  .inspec-service figure.cm-video-wrapper {
    margin-top: 0.5em;
  }
  .inspec-service figure.cm-video-wrapper img {
    width: 100%;
  }
  .refinery-page .dnd-section ,
  .marine-page .dnd-section ,
  .lng-page .dnd-section ,
  .flares-page .dnd-section{
    padding-top:0 !important;
    padding-bottom:0 !important;
  }
  .refinery-page .dnd-section .span4,
  .marine-page .dnd-section .span4,
  .lng-page .dnd-section .span4,
  .flares-page .dnd-section .span4 {
    order: 2;
    width: 98.333333333333%;
  }
  .refinery-page .dnd-section .span8,
  .marine-page .dnd-section .span8,
  .lng-page .dnd-section .span8,
  .flares-page .dnd-section .span8 {
    order: 1;
    width: 100%;
  }
  .refinery-page .dnd-section >div,
  .marine-page .dnd-section >div,
  .lng-page .dnd-section >div,
  .flares-page .dnd-section>div {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .refinery-page .dnd-section >div:before,
  .refinery-page .dnd-section >div:after,
  .marine-page .dnd-section >div:before,
  .marine-page .dnd-section >div:after,
  .lng-page .dnd-section >div:before,
  .lng-page .dnd-section >div:after,
  .flares-page .dnd-section >div:before,
  .flares-page .dnd-section >div:after {
    display: none;
  }
  .refinery-page .dnd-section .span4 *,
  .marine-page .dnd-section .span4 *,
  .lng-page .dnd-section .span4 *,
  .flares-page .dnd-section .span4 * {
    align-items: flex-start !important;
  }

  .cm-image-overlay .dnd-section>.row-fluid>.dnd-column {
    padding: 0.5em 0;
  }

  .home-page .container-fluid.body-container.body-container__website {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  .faq-page form .hs-richtext h3 {
    font-size: 1em;
    margin-top: 0;
    line-height: normal;
  }

  .inspec-service .body-container.body-container__website.top-sec img {
    padding-right: 0;
  }

  .ami-page-wrapper fieldset .field {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }

  .ami-page-wrapper .input {
    margin-right: 0 !important;
  }

  .ami-page-wrapper form .hs-richtext {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 540px){

}

@media (max-width: 480px) {
  .hide-phone {
    display: none;
  }
  .brochures-page .hs_cos_wrapper_type_rich_text hr, .ammonia-page .hs_cos_wrapper_type_rich_text hr {
    margin: 0;
  }
  .home_bg_image img {
    height: 700px;
  }
  .solutions_blurb>div span {
    padding: 2rem 1.5rem !important;
  }
  .foundation .icons .page-center {
    justify-content: space-between;
  }
  .resources .page-center > a {
    flex-basis: 100%;
    margin-bottom: 1.5rem;
  }
/*   .resources .page-center > a:before{
    content: '» Articles \a \a » Case Studies \a \a » Presentations';  
  } */
  .solutions_blurb>h1{
    font-size: 1.7rem;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .locations_whiteBG ul {
    height: auto;
  }
  .locations_whiteBG .page-center{
   background-size: 100%; 
  }
   .solutions_blurb .map_text {
    width: 50%;
  }
  
} /** 480 or less **/

@media (max-width: 375px) {
  .logoNavSearch .logo {
    margin: 1.5rem 0 0 1rem !important;
  }
  .top_bar{
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .solutions_blurb img {
      height: 1100px;
  }
  
}

.ami-page {
  background-color: #000000;
}
#hdr {
  padding: 0;
  margin: 0;
  position: relative;
}
#hdr .page-center {
  max-width: 950px;
}
#hdr img {
  vertical-align: middle;
}
.ami-page-wrapper .dnd-section > .row-fluid {
  max-width: 950px;
  background-color: #FFFFFF;
  padding-left: 16px;
  padding-right: 16px;
}
.ami-page-wrapper form,
.ami-page-wrapper form fieldset {
  max-width: 100%;
}
.ami-page-wrapper .widget-type-rich_text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  color: #333333;
  line-height: normal;
}
.ami-page-wrapper .widget-type-rich_text h1 {
  font-family: inherit;
  font-size: 1.5em;
  line-height: 1.25em;
  margin: 0;
  color: inherit;
  padding-top: 7px;
  padding-bottom: 0;
}
.ami-page-wrapper p {
  margin: 1em 0;
  padding: 0;
}
.ami-page-wrapper strong {
  color: #990000;
  font-weight: bold;
  font-family: inherit;
}
.ami-page-wrapper form .hs-richtext {
  padding: 0 0 .5em 0;
  margin: .5em;
}
.ami-page-wrapper form span.hs-form-required {
  display: none;
}
@media (min-width: 481px) {
  .ami-page-wrapper form fieldset.form-columns-2 > .hs-form-field {
    width: calc(50% - 1em);
  }
  .ami-page-wrapper form fieldset.form-columns-3 > .hs-form-field {
    width: calc(32.7% - 1em);
  }
}

.cm-gl-tw .span8 {
  float: right;
}

.cm-gl-tw .dnd-section .span12 {
  margin: 0;
  width: 100%;
}

.cm-gl-tw .span8,.cm-gl-tw .span4 {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.25em 0;
}

.cm-gl-tw .span8 h3 {
  padding: 0 0 .5em 0;
}


@media(max-width:767px){
  .cm-gl-tw .span8 {
    float: none;
  }

  .cm-gl-tw .span8, .cm-gl-tw .span4 {
    padding: 0.5em 0;
  }

  .cm-gl-tw .span8 h3 {
    padding: 0.5em 0;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   
  /* IE10+ CSS styles go here */
  .resources .page-center>a {
    margin: 5px;
    flex-basis: 20%;
  }
  .aboutTxtBlock{
    width: 100%;
    max-width: 100%;
  }
  .careers_orange {
    width: 200px !important;
  }
  .parallax_vid .hs_cos_wrapper {
    width: 100%;
  }
  .foundation.services-new .footer2 .global_locations {
    background-image: none;
  }
  
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

a:hover{
  cursor: pointer;
}
.header {
  background-image: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/raw_assets/public/Zeeco-En_June_2020/images/header-bg.gif");
    background-repeat: repeat-x;
    background-color: #f7f7f7;
    position: relative;
    min-height: 103px;
    z-index: 99;
    }
.header .span12 {
  margin: 0 0.83333333333333%;
}

/*** Kyle additions ***/
.header2{
  background: rgba(0,0,0,0.5) !important; 
  position: fixed;
  top: 0;
  width: 100vw;
  transition: all 0.5s;
  z-index: 99999;
}
.header2 *{
 z-index: 99999; 
}
.top_bar{ background-color: #404041; }
.top_bar .page-center,
.minorNav2,
.logoNavSearch,
.submenu.level-1{
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}
.logoNavSearch{
 align-items: flex-start; 
}
.top_bar a{
  color: #d9d9d9;
}
.top_bar a:hover, 
.minorNav2 a:hover{
  color: #e6e7e8;
}
.minorNav2 a{
  color: #fff;
  margin: 1rem;
}
.foundation .contact{
  background-color: #f47920;
   padding: 0.2rem 1rem;
}
.foundation .contact_larger{
  background-color: #f47920;
   padding: 0.5rem 1rem;
}
.social_small{
  display: flex;
  flex-flow: row nowrap;
}
.social_small li{
  padding: 0.5rem 0.3rem;
}
.top_bar .phoneNum{
 margin: 0 0 0 1.2rem; 
}
.top_bar .phoneNum:after{
 margin: 0 0.5rem;
  content: "|";
}
.top_bar .header_email{
  margin: 0 1.2rem 0 0; 
}

.logo-grouping {
  float: left;
  cursor: pointer;
}
.logo-grouping .logo {
  width: 100%;
  max-width: 94px;
  max-height: 99px;
  top: 13px;
  position: absolute;
}
.header a {
  text-decoration: none;
}
.logo-grouping h2 {
  font-family: 'robotobold_italic', sans-serif;
  line-height: 1em;
  font-size: 1.25em;
  color: #333;
  padding: 2em 0 0 5em;
}

.nav-block {
  position: relative;
}
.nav-menu {
  display: none;
}
.minor-nav {
  float: right;
  margin-top: .5em;
}
.header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header ul li {
  margin-bottom: 0px;
}
.main-nav li, .minor-nav li {
  display: inline-block;
  float: left;
  margin-right: 2em;
}
.main-nav li:last-child, .minor-nav li:last-child {
  margin-right: 0;
}
.main-nav li a, .minor-nav li a {
  font-family: 'roboto_condensedregular', sans-serif;
  text-transform: uppercase;
  letter-spacing: .025em;
  text-decoration: none;
  color: #333;
}
.main-nav li a {
  font-size: 1em;
  padding: .3125em .625em;
}
.main-nav li.active-branch > a,
.main-nav li:hover > a {
  color: #f7f7f7;
  background-color: #ca5235;
  border-radius: .3125em;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 153, 128, 1);
}
/*** Kyle additions ***/
.logoNavSearch .logo{
 margin: 0 1rem 0 1.5rem; 
  position: relative;
  top: -27px;
  background-repeat: no-repeat;
    width: 200px;
    text-align: center;
    background-position: 0 22px;
  transition: all 0.5s;
}
.logoNavSearch .nav-block{
  flex-grow: 1; 
  z-index: 9999999;
}
.logoNavSearch .main-nav{
  position: relative;
  margin: 0;
}
.logoNavSearch .main-nav li{
  margin: 0 0.5rem 0 0;
}
.logoNavSearch .main-nav li a{
  color: #fff !important;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
  transition: all 0.2s;
  
}
 .logoNavSearch .main-nav li.active-branch a{
    background: none !important;
    box-shadow: none !important; 
  }
.logoNavSearch .main-nav li:hover a,
.logoNavSearch .main-nav li:focus a,
.minorNav2 a.header_link:hover{
  background: none !important;
  color: #f47920 !important;
  box-shadow: none !important;
}
.logoNavSearch .main-nav li:hover{
  background: none !important;
}
.logoNavSearch .navigation-primary ul li:last-child{
    display: none; 
  }
.logoNavSearch .header-search{
 margin: 0 1rem 0 0;
  min-width: 150px;
  position: relative;
  z-index: 999999;
}

.logoNavSearch .header-search form input {
    width: 170px !important;
  max-width: initial !important;
  border-color: #fff;
  background: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/search.svg') transparent 7% 50% no-repeat;
      background-size: 10px;
    padding: 5px 0 5px 23px;
    text-transform: uppercase;
    font-size: 0.6rem;
  color: #fff !important;
} 

.logoNavSearch .header-search form input::placeholder,
.logoNavSearch .header-search form input:-ms-input-placeholder,
.logoNavSearch .header-search form input::-ms-input-placeholder,
.foundation input::placeholder{
  color: #fff !important;
}
.logoNavSearch .header-search form label {
  display: none;
}
  
.minor-nav li a {
  font-size: .875em;
  padding: 2px 5px;
} 
.minor-nav li a:hover {
  color: #666666;
}

.dropdown {
  position: absolute;
  z-index: 9999;
  background-color: #f7f7f7;
  height: 0;
  overflow: hidden;
  opacity: 0;
  filter: alpha (opacity = 0);
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  -ms-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
.minor-nav li:hover .dropdown {
  height: auto;
  overflow: auto;
  opacity: 10;
  filter: alpha (opacity = 100);
}
.dropdown li {
  float: none;
  display: list-item;
  margin-right: 0;
  line-height: 1.5;
}
.dropdown li a {
  display: block;
  white-space: nowrap;
  padding: .5em 1em;
}
.dropdown li a:hover {
  background-color: #ca5235;
  color: #f7f7f7;
}

.header-lang-switcher .lang_switcher_class {
  display: block;
}
.header-lang-switcher .globe_class {
  width: auto;
  height: auto;
  cursor: default;
  background: none;
  border-radius: 0px;
}
.header-lang-switcher .lang_list_class {
  position: static;
  transform: none;
  display: block;
  text-align: inherit;
}
.header-lang-switcher .lang_list_class:before,
.header-lang-switcher .lang_list_class:after {
  content: none;
}
.header-lang-switcher .lang_list_class li {
  line-height: 1.5;
  border: none;
  padding: 0;
  font-size: inherit;
  background: none;
}
.header-lang-switcher .lang_list_class li:first-child,
.header-lang-switcher .lang_list_class li:last-child {
  padding: 0;
  border: none;
}
.header-lang-switcher .lang_list_class li a {
  text-decoration: none;
  color: #333;
}
.header-lang-switcher .lang_list_class li a:hover {
  background-color: #ca5235;
  color: #f7f7f7;
}

.header-search form {
  background: transparent;
  max-width: 100%;
  padding: 0;
  border-radius: 0px;
  display: flex;
  margin-top: 2px;
}
.header-search form input.hs-search-field__input {
  max-width: 117px;
  width: 100%;
  line-height: normal;
  margin-right: -4px;
  font-family:arial;
  color: #666;
  margin-right: 1px;
}
.header-search form button {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0px;
  border: 1px solid #CCC;
  font-size: 1em;
  padding: 2px 9px 2px 0;
  text-indent: 5px;
  border-radius: 5px;
  background: none repeat scroll 0% 0% #FFF;
  color: #666;
  cursor: pointer;
  font-family:arial;
}
.header-search form button > * {
  display: none;
}
.header-search form button:before {
  content: 'Search ';
}

.main-nav {
  list-style: none;
  margin-top: 3.75em;
  position: absolute;
  right: 0;
}

.custom-menu-primary .submenu.level-1 > li.about > a:after,
.custom-menu-primary .submenu.level-1 > li.products-applications > a:after,
.custom-menu-primary .submenu.level-1 > li.resources > a:after {
  content: none;
}
.custom-menu-primary .submenu.level-1 > li.about .child-trigger,
.custom-menu-primary .submenu.level-1 > li.products-applications .child-trigger,
.custom-menu-primary .submenu.level-1 > li.resources .child-trigger,
.custom-menu-primary .submenu.level-1 > li.about .submenu,
.custom-menu-primary .submenu.level-1 > li.products-applications .submenu,
.custom-menu-primary .submenu.level-1 > li.resources .submenu {
  display: none !important;
}

.moz .header-search form input.hs-search-field__input {
  max-width: 99.16px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), not all, not all, not all, only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx){
  .header-search form input.hs-search-field__input {
    max-width: 88px;
  }
}

@media(min-width: 880px) {
  .minor-nav li a.active {
    border-radius: .3125em;
    box-shadow: inset 0px 1px 0px 0px rgba(255, 153, 128, 1);
  }
}

.header-search ul.hs-search-field__suggestions {
  position: absolute;
  background: #fff;
  z-index: 1;
  left: 0;
}

.header-search .hs-search-field--open .hs-search-field__suggestions {
  padding: 5px;
}
@media (min-width: 961px) {
  nav#nav.main-nav {
    display: block !important;
  }
  .child-trigger {
    display: none;
  }
}
@media (max-width: 1024px){
 
}

@media (max-width: 1024px) and (min-width: 961px) {
  .main-nav li {
    margin-right: 1em;
  }
}
@media (max-width: 1024px) and (min-width: 880px) {
  .logoNavSearch .main-nav li a {
    font-size: 0.8rem;
  }
}

@media (max-width: 960px) and (min-width: 880px) {
  .main-nav li {
    margin-right: 0.5em;
  }
}

@media (max-width: 930px) and (min-width: 880px) {
  .main-nav li a {
    font-size: 14.5px;
  }
}

@media (max-width: 879px) {
  .nav-menu {
  display: block;
  float: right;
  font-size: 2em;
  line-height: 1em;
  color: #fafafa;
  padding: .25em;
  background: none repeat scroll 0% 0% #bb3c1d;
  margin-top: 0.5em;
  border-radius: 5px;
  position: absolute;
  right: 0.1em;
}
.nav-menu:hover {
  cursor: pointer;
} 
  
  .moz .header-search form input.hs-search-field__input {
    max-width: 90%;
  }

  @media only screen and (-webkit-min-device-pixel-ratio: 2), not all, not all, not all, only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx){
    .header-search form input.hs-search-field__input {
      max-width: 90%;
    }
  }
  
  .main-nav {
    display: none;
    background-color: #bd3c1d;
    position: absolute;
    top: .625em;
    z-index: 2000;
    width: 100%;
    margin-top: 0;
    top: calc(3.75em + 0.625em);
    top: 103px
  }
  .minor-nav {
    margin-top: 0;
    float: none;
  }
  .header-lang-switcher .lang_list_class li,
  .main-nav li {
    float: none;
    width: 100%;
    margin-right: 0;
    padding: 0;
    line-height: 2.5em;
    border-bottom: 1px solid #973017;
  }
  .header-lang-switcher .lang_list_class li:last-child,
  .main-nav li:last-child {
    border-bottom: none;
  }
  .main-nav li {
    display: block;
  }
  header.header .main-nav li a {
    color: #f7f7f7;
    display: block;
    padding: 0 0 0 1em;
  }
  .header-lang-switcher .lang_list_class li a:not(:hover) {
    background: transparent !important;
  }
  .minor-nav li a {
    font-size: 1em;
  }
  .dropdown {
    position: relative;
    background-color: #bd3c1d;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .dropdown li a {
    padding-left: 1.5em;
  }
  .header-search form input.hs-search-field__input {
    max-width: 90%;
  }
  .header-search form button {
    width: 90%;
  }
  .header-lang-switcher .lang_list_class li a:hover,
  body header.header .main-nav li.active-branch > a,
  body header.header .main-nav li:hover > a,
  body header.header .main-nav .custom-menu-primary li.active-branch > a,
  body header.header .main-nav .custom-menu-primary li:hover > a {
    color: #f7f7f7;
    background-color: #1a1a1a;
    border-radius: 0;
    box-shadow: none;
  }

  .child-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
  }
  li.has-submenu.menu-item > a.menu-link:after {
    content: "\f13a";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    position: absolute;
    top: 12.93500px;
    right: 12px;
  }
  li.has-submenu.menu-item.child-open > a.menu-link:after {
    transform: rotate(180deg);
  }
  li.header-search {
    float: none;
    padding-left: 1em;
    margin-top: 0;
  }

  .header-search ul.hs-search-field__suggestions {
    position: relative;
    max-width: 90%;
  }

  .header-search .hs-search-field--open .hs-search-field__suggestions {
    margin-bottom: 10px;
  }

  .header-search ul.hs-search-field__suggestions a {
    color: rgba(26,26,26,1.0) !important;
    padding: 0 !important;
  }

  .header-search ul.hs-search-field__suggestions li:hover a {
    background: transparent !important;
  }
  
}/* 879 and smaller end */


@media (min-width: 769px and max-width: 879px) {
  .foundation .main-nav,
  .foundation .navigation-primary .submenu, 
  .foundation .navigation-primary{
    display: block;
  }
  .foundation .nav-menu {
    display: none;
  }
}

@media (min-width: 769px) {
  .foundation nav#nav.main-nav {
    display: block !important;
  }
}

@media (max-width: 768px){ /* 768 and smaller */
  
  /** Edits by Kyle for the new site 
   * 
   * class foundation is for the site
   * each template has a class on the body
   * 
   * **/
  .header2 .minorNav2 .header_link,
  .header2 .minorNav2 ul{
    display: none;
  }
  .logoNavSearch {
    justify-content: space-between;
  }
  .logoNavSearch .header-search {
    position: absolute;
    top: 58px;
    right: 62px;
    width: 233px;
    margin: 0;
  }
  .logoNavSearch .logo{
    background: none;
    width: auto;
    margin: 15px 0 0 2rem;
  }
  .sticky .logoNavSearch .logo{
    margin: 1rem 0 0 3rem;
    width: 130px;
    height: 50px; 
  }
  .logoNavSearch .nav-menu {
    display: block !important;
    padding: 12px 16px 0 0;
    right: 0;
    background: transparent;
    margin: 0;
  }
  .foundation .main-nav li {
    display: block;
  }
  
/* mobile hamburger icon to X */
.foundation #navIcon {
  width: 50px;
  height: 45px;
  position: relative;
}

.foundation #navIcon span{
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  transition: .25s ease-in-out;
}

.foundation #navIcon span:nth-child(1) {
  top: 0px;
}

.foundation #navIcon span:nth-child(2),
.foundation #navIcon span:nth-child(3) {
  top: 15px;
}

.foundation #navIcon span:nth-child(4) {
  top: 30px;
}

.foundation #navIcon.open span:nth-child(1),
.foundation #navIcon.open span:nth-child(4){
  top: 15px;
  width: 0%;
  left: 50%;
}

.foundation #navIcon.open span:nth-child(2) {
  transform: rotate(45deg);
}

.foundation #navIcon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
  .logoNavSearch .nav-block{
    width: 60vw;
    left: 0;
    position: absolute;
    top: 0;
  }
  .logoNavSearch .main-nav{
    background-color: #404041; 
    top: 41px;
  }
  .logoNavSearch .header-lang-switcher .lang_list_class li, .main-nav li {
    border-bottom: 1px solid #535454 !important;
  }
  .logoNavSearch .main-nav li a{
    font-weight: 600;
    display: flex !important;
    align-items: center;
  }
  .logoNavSearch .main-nav li a:before{
    content: '';
    display: inline-block;
    width: 33px;
    height: 23px;
    margin: 1rem 0.7rem;
    background-repeat: no-repeat;
    filter: brightness(100);
  }
  .logoNavSearch .main-nav li.about a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/Flaming-Zeeco-logo.svg');
  }
  .logoNavSearch .main-nav li.products a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/products-icon.svg');
  }
  .logoNavSearch .main-nav li.services a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/aftermarket-icon.svg');
  }
  .logoNavSearch .main-nav li.markets a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/market-applications-icon.svg');
  }
  .logoNavSearch .main-nav li.resources a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/tech-papers-icon.svg');
  }
  .logoNavSearch .main-nav li.careers a:before{
  background-image: url('https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/svg/careers-icon.svg');
  }  
  
  .logoNavSearch .main-nav li:hover a{
    color: #fff !important;
    background-color: #f47920 !important;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 85px;
  }
  .main-nav {
    top: 85px;
  }
  .logo-grouping h2 {
    font-size: 1em;
    padding: 1.5em 0 0 5em;
  }
  .logo-grouping .logo {
    max-width: 65px;
    top: 5px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
}
.footer a {
  text-decoration: underline;
}
.footer a.phone {
  text-decoration: none;
}

.footer .span25 > * {
  font-size: .875em;
}
.footer .span25 p {
  margin: 0 0 0.5em 0;
}

.footer .address {
  float: left;
  font-size: .875em;
}
.footer .copyright p:last-child {
  padding: 0;
}
.social {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social li {
  margin-bottom: 0;
  float: left;
  display: inline-block;
  margin-right: 1.375em;
}
.social li:last-child {
  margin-right: 0;
}
.social li a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: none;
}

/**** Kyle additions ***/
.footer2{
  display: flex;
  flex-wrap: wrap;
}
.footer2 > section{
  padding: 2rem;
  background-color: #404041;
  flex: 1 1 50%;
}
.footer2 .varied{
  color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: overlay;
}
.footer2 .varied > div{
  float: right;
  width: 100%;
  max-width: 540px;
}
.footer2 .varied h1{
  color: #fff;
  padding-top: 0;
  font-weight: 700;
}
.footer2 .varied ul.global_locs{
  column-count: 2;
}
.footer2 .varied ul{
  margin: 0;
}
.footer2 .varied ul li{
  text-transform: uppercase;
}
.footer2 .varied ul.global_locs li:nth-child(-n+6){
  margin: 0 2rem 1rem 0;
}
.footer2 .varied ul.global_locs li:nth-child(6){
  margin: 0 2rem 315px 0;
}
.footer2 .contact_form{
  background-color: #222;
  flex-basis: 50%;
}
.footer2 .contact_form > div{
  max-width: 500px;
}
.footer2 .contact_form h2{
  color: #f47920;
  padding: 0 0 1rem 0;
  font-weight: 700;
}
.foundation.services-new .footer2 .varied{
  background-image: url("https://7724363.fs1.hubspotusercontent-na1.net/hubfs/7724363/Zeeco-En_June_2020/images/world-map-gray-blank.svg");
}

/* Footer contact form */
.footer2 .submitted-message p {
  color: #07ea07;
}
.footer2 .hs-form label{
 color: #fff;
}
/** end contact form **/

.footer2 .legal{
  background-color: #404041;
  padding: 1rem;
  flex-basis: 100%;
  border-top: 1px solid #a7a9ac;
}
.footer2 .legal .page-center{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
}
.footer2 .legal_txt .orange{
  margin: 0 1rem 0 0;
}
.footer2 .social_small, 
.footer2 .social_small li{
 margin: 0;
  list-style: none;
}
.footer2 .social_small li a{
  color: #d9d9d9;
}

@media (max-width: 879px) {
  .social li {
    padding: .5em 0 1em .5em;
  }
  .footer .address {
    padding: .5em .5em 0;
  }
}

@media (max-width: 767px) {
  .footer .span25 {
    padding: 0 .5em;
  }
}

@media (max-width: 768px) {
  .footer2 .varied h1{
  font-size: 1.5rem;
  }
}

@media (max-width: 550px) {
  .footer .address,
  .social, .social li {
    float: none;
  }
  .footer2 > div{ padding: 1rem; }
  .footer2 .varied h1{
  font-size: 1.3rem;
    padding: 0 0 0.5rem 0;
  }
  .footer2 .varied .page-center{
  float: none;
  }
  .footer2 .varied ul.global_locs li:nth-child(6){
  margin: 0 2rem 230px 0;
  }
  .footer2 .varied ul li{
    font-size: 0.8rem;
  }
}
@media (max-width: 450px) {
  .footer2 > section{
    flex: 1 1 100%;
  } 
}
@media (max-width: 375px) {
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.blog-header {
  background-color: transparent;
  text-align: center;
}

.blog-header__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.3rem 20px;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-sidebar.span3 {
  padding: 3.3rem 0px;
}
.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0px;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
}
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
  .blog-index__post-content--large.without-image {
    padding-left: 0;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: 'robotoregular', 'tahoma', sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'robotoregular', 'tahoma', sans-serif;
  margin-bottom: 3.3rem;
  margin-left: 0 !important;
}
.blog-pagination a {
  vertical-align: middle;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: 'robotoregular', 'tahoma', sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-post__body {
  margin-bottom: 20px;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: transparent;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  /* text-decoration: none; */
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.section.post-footer .grecaptcha-badge {
  margin-left: 0;
}
/* .blog-comments .hs-submit {
  text-align: center;
} */
/* .blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid #494A52;
  color: #494A52;
}
.blog-comments .hs-button:hover {
  background-color: #494A52;
  color: #fff;
} */
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}


/*             Blog Listing with Sidebar            */
.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
-webkit-flex: 1; /* Safari */
-ms-flex: 1; /* IE 10 */
flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
flex-basis: 31.914893614%;

}
img.featured-image {
  height: auto !important;
  width: 100% !important;
  object-fit: cover;
}


.post-item .page-center {
  padding-left: 0;
  padding-right: 0;
}
.content-wrapper.page-center > .blog-index,
.blog-recent-posts__list {
  margin: 0 -15px;
}

.section.post-footer .comment-date, 
.section.post-footer .comment-from {
  display: block;
}

div#comments-listing {
  border: 2px solid #eee;
  padding: 20px;
}
div#comments-listing .comment.depth-0:first-child {
  border-top: none;
  padding-top: 0;
}
div#comments-listing:empty {
  display: none;
}
div#comments-listing:not(:empty) + div .hs-form {
  margin-top: 30px;
}

.blog-index__post-content.blog-index__post-content--large.without-image {
  padding-left: 0;
}
.section.post-footer .hs_recaptcha {
  margin-top: 10px;
}


@media (max-width: 767px) {
  .blog-post__body img[style*="float"] {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block;
  }
  .blog-recent-posts__list {
    display: block;
  }
  .post-item .page-center {
    display: block;
  }
  .post-item .page-center .span4 {
    margin-bottom: 10px;
  }
  .blog-sidebar.span3 {
    padding: 0 0 3.3rem 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */
.cm-toggled-menu{
  background-color: #e5b43d;
  border-top: 2px solid #f0c154;
  border-bottom: 2px solid #d4a539;
}

.cm-toggled-menu h2 {
  font-size: 1.875em;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
  float: left;
  color: #1a1a1a;
}
.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'robotoregular', 'tahoma', sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
ul#hsresults li a {
  color: #bd3c1d;
  text-decoration: underline;
  font: inherit;
}

ul#hsresults li {
  font-size: 1em;
  padding: .5em;
  background-color: #f5e1b8;
  font-family: robotoregular, tahoma, sans-serif;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 879px){
  .search-page form button {
    width: auto;
  }
  .search-page.cm-toggled-menu h2 {
    line-height: 1.2;
    font-size: 1.5em;
    margin-bottom: 5px;
    padding: 0 0.3em;
  }
  .search-page form input.hs-search-field__input {
    display: block;
  }
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}
.search-page form input.hs-search-field__input {
  max-width: 315px;
  margin-right: 20px;
}
.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: 'robotobold', sans-serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}


@media (max-width:767px){
  .flares-page .dnd-section:last-child{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}