/* @import url('http://example.com/example_style.css'); */

/* @font-face{ font-family: "Source Open Sans", sans-serif; font-weight:600; font-style:normal; } */

/**
* CSS @imports must be at the top of the file.      
* Add them above this section.                             
*/
/* ==========================================================================

Index:         

1. BASE STYLES   
- Variables
- Macros
- Base
- Typography

2. COS STRUCTURE
- Structure
- Header
- Content
- Footer

3. MAIN NAVIGATION
- Custom Menu Primary
- Mobile Menu

4. TEMPLATE MODULE CLASSES
- Common Template Classes
- Site Pages
- Landing Pages
- System Pages

5. COS COMPONENTS
- Blog
- Forms
- Buttons

6. MISCELLANOUS

7. MOBILE MEDIA QUERIES

========================================================================== */

/* ==========================================================================
1. BASE STYLES                                             
========================================================================== */

/* ==========================================================================
Variables                                               
========================================================================== */

/**
* Find the most consistently used font styles, colors, and container widths 
* for your site and assign them to the jinja variables below for easy use 
* and reference. 
*
* Apply the variable as shown below.  Ignore the jingja comment tags.
*
* 
*/

/* Colors */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */

/* Typography */
            /*  */
                         /*  */
                          /*  */

/* Containers */
 /* Used on '.page-center' in 'Base' and in the 'Portrait tablet to landscape and desktop' media query */

/* ==========================================================================
Macros                                                  
========================================================================== */

/** 
* Create jinja macros for CSS3 properties that need browser prefixes.
*
* Apply the style as shown below on it's own CSS property line.  
* Ignore the jinja comment tags. 
*
* 
*/

 

/** 
* Example of how to apply the above macro (ignore the jinja comment tags):
*
* a {
*   color: red;
*   font-size: 12px;
*    
* }
*/

/* ==========================================================================
Base                                                    
========================================================================== */
body, div, span, small, p, em, i, b, th, td, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, textarea {
  padding: 0;
  margin: 0;
}

/** 
* Box Sizing
* 
* Applies a natural box layout model to all elements so that width and padding 
* are essentially combined, making responsive styles easier to manage.
*/

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  font-weight: 400;
  background: #fff;
  color: #7c7c7d;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

@media(min-width: 1600px) {
  body {
    font-size: 18px;
  }
}

/**
* Page Center
*
* Apply .page-center to full-width modules.
*/

.container-fluid .row-fluid .page-center {
  float: none;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 940px) {

  .container-fluid .row-fluid .page-center {
    max-width: 95%;    
  }

}

a { color: #e57025; text-decoration: none; }
a:hover, a:focus { color: #333; text-decoration: underline; }

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}



/* Corrects width issues in table elements created via the wysiwyg editor */
table tr td img {
  max-width: initial;
}

/* ==========================================================================
Typography
========================================================================== */

/* Basic text */
p {} 
small {}
strong {}
em {}
cite {}
code {}
pre {}

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

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 { font-weight: 400;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
  font-size: 32px;
  font-family: "Raleway", sans-serif;
  border-bottom: 2px solid #d8d7d7;
  margin-bottom: 10px;    
}
h2 { color: #e57025; }
h3 {}
h4 {}
h5 {}
h6 {}

/* Lists */
ul, ol {
  list-style: inherit;
  margin: 0 0 0 20px;
}
ul ul, ul ol, ol ol, ol ul {}
li {
  padding-top: 10px;    
}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  list-style-type: decimal;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}

.button,
.button:visited,
.hs-button,
.hs-button:visited {
  color: #fff;
  background: #e57025;
  border-radius: 50px;
  margin: 5px 5px 0 0;
  padding: 15px 43px;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  Transition: ease-in-out .2s all;
  font-family: "Raleway", sans-serif;
}

.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  background: #7c7c7d;
}

/* ==========================================================================
2. COS STRUCTURE                                            
========================================================================== */

/* ==========================================================================
Structure                                               
========================================================================== */

/* The outer wrappers of your website */
.header-container-wrapper, 
.body-container-wrapper, 
.footer-container-wrapper {}

/* The inner wrappers of your website */
.header-container, 
.body-container, 
.footer-container {}

/* ==========================================================================
Header
========================================================================== */

.header {
  background: #fff;
  height: 160px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  padding: 0 0 10px 0;
  transition: all .3s ease 0s;
}

.utility-bar {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 20px 0 0;
}

.utility-bar a,
.utility-bar a:visited {
  color: #003f60;
  font-size: 14px;
  position: relative;
  text-decoration: none;
}

.utility-bar a:hover,
.utility-bar a:focus {
  color: #1272a4;
  text-decoration: underline;
}

.utility-bar a span,
.utility-bar a:visited span {
  text-decoration: underline;
}

.utility-bar .utility-left,
.utility-bar .utility-right {
  margin: 5px 0;
}

.utility-bar .utility-left a:before,
.utility-bar .utility-left a:visited:before {
  content: '';
  width: 19px;
  height: 19px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 10px;
  /* background-image: url('https://powersafetraining.org/wp-content/themes/infinite-child/dev-images/Alliance_bug_100.jpg'); */
  background-image: url('https://283614.fs1.hubspotusercontent-na1.net/hubfs/283614/Alliance_Logo_PROCESS%20mark%20only.png');
  background-size: contain;
}

.utility-bar .utility-right a,
.utility-bar .utility-right a:visited {
  color: #7c7c7d;
  font-size: 19px;
}

.utility-bar .utility-right a:hover,
.utility-bar .utility-right a:focus {
  color: #2f2f2f;
}

.utility-bar .utility-right a .fa,
.utility-bar .utility-right a:visited .fa {
  color: orange;
  font-weight: bold;
  display: inline-block;
  margin-right: 15px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.header-flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 0;
  width: 100%;
  transition: all .15s ease 0s;
}

.header-logo {
  height: 35px;
  margin: 0 0 20px;
}

.logo img {
  max-height: 100%;
}

.header.dark-header {
  position: fixed;
  height: 75px;
}

.header.dark-header .utility-bar {
  display: none;
}

.navbar-toggle {
  background: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  float: none;
  color: #fff;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-top: 0px;
  padding: 0 6px;
  position: relative;
  right: auto;
  top: 0;
  width: 32px;
  height: 32px;
  z-index: 1001;
  outline: none;
}

.navbar-toggle:hover, .navbar-toggle:focus {
  background: transparent;
  outline: none;
  cursor: pointer;
}

.navbar-toggle:hover .icon-bar {
  background: #2f2f2f;
}

.navbar-toggle .icon-bar {
  background-color: orange;
  border-radius: 0px;
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all .1s linear 0s;
  width: 100%;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navbar-toggle.active, .navbar-toggle.active:focus {
  background: transparent;
}

.navbar-toggle.active .icon-bar {
  display: none;
}

.navbar-toggle.active .icon-bar+.icon-bar {
  margin-top: 6px;
}

.navbar-toggle.active .icon-bar.first {
  display: block;
  transform: rotate(-45deg);
  position: relative;
  top: 4px;
  left: 1px;
}

.navbar-toggle.active .icon-bar.last {
  display: block;
  transform: rotate(45deg);
  position: relative;
  top: -4px;
  left: 1px;
}

.navbar-collapse {
  background: #1f1f1f;
  position: fixed;
  right: -260px;
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  padding: 60px 30px;
  width: 260px;
  z-index: 700;
  transition: all 0.3s ease 0s;
}

.navbar-collapse.active {
  right: 0;
  transition: all 0.3s ease 0s;
}

.navbar-collapse.active .close-nav {
  background: transparent;
  border: none;
  border-radius: 0;
  float: none;
  color: #fff;
  margin-bottom: 30px;
  margin-right: 0px;
  margin-top: 0px;
  padding: 0 6px;
  position: relative;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  z-index: 1001;
  outline: 0;
}

.navbar-collapse.active .close-nav .icon-bar {
  background-color: #7c7c7d;
  border-radius: 0px;
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all .1s linear 0s;
  width: 100%;
}

.navbar-collapse.active .close-nav .icon-bar.first {
  display: block;
  transform: rotate(-45deg);
  position: relative;
  top: 4px;
  left: 0;
}

.navbar-collapse.active .close-nav .icon-bar.last {
  display: block;
  transform: rotate(45deg);
  position: relative;
  top: 0;
  left: 0;
}

.navbar-collapse.active .close-nav:hover .icon-bar {
  background: #fff; 
}

.desktop-nav {
  display: none;
}

@media (min-width: 480px) {

  .navbar-collapse {
    right: -425px;
    width: 425px;
  }

  body.active, .header.active {
    right: 425px;
  }
}

@media(min-width: 580px) {

  .header {
    height: 135px;
  }

  .utility-bar {
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 20px 30px;
  }

  .utility-bar .utility-left,
  .utility-bar .utility-right {
    margin: 0;
  }
}

@media(min-width: 768px) {

  .header-nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }

}

@media(min-width: 992px) {
  .utility-bar {
    margin: 20px 30px 20px 0;
  }

  .header-flex {
    padding: 0;
  }

  .header-logo {
    margin: 0;
    padding: 0 10px 0 0;
  }

  .header-nav .hs-menu-wrapper {
    padding: 0 !important;
  }

  .header.dark-header .header-flex {
    margin: 20px 0 0;
  }

  .navbar-toggle {
    display: none !important;
  }

  .desktop-nav {
    display: block;
  }
}

@media(min-width: 1200px) {
  .header-logo {
    padding: 0;
  }

  .header-nav {
    padding: 15px 0 0 0;
  }
}


/* ==========================================================================
Content                                                 
========================================================================== */

.body-container-wrapper {}
.body-container {
  margin: 30px auto 100px;
  min-height: 250px;  
  line-height: 1.5;
}

.body-container a {
  font-weight: bold;
}

.widget-type-post_listing,
.widget-type-post_filter {
  margin: 25px 0;
}

/* Unique Pages
========================================================================== */

/* Homepage */

/* Contact Us */

/* About Us */


/* Modular & Reusable Components
========================================================================== */

/* HS Menu Flow Vertical */
.hs-menu-flow-vertical {
  margin-bottom: 25px;
}

.hs-menu-flow-vertical ul {
  padding-left: 0!important;
}

.hs-menu-flow-vertical ul li {
  padding: 0;
}

.hs-menu-flow-vertical ul li a {
  display: block;
  color: #fff;
  text-align: center;    
  margin-bottom: 5px;
  height: 59px;
  line-height: 59px;
  font-size: 16px;
  font-weight: normal;
  background-color: #06354f;
  text-decoration: none;
  text-transform: uppercase;
}

.hs-menu-flow-vertical ul li a:hover {
  background-color: #f38035;
}

/* Global Javascript */
.global-javascript { display: none!important; }

/* ==========================================================================
Footer
========================================================================== */

.footer-top {
  background: #7c7c7d;
  color: #fff;
  padding: 50px 20px 60px;
  margin: 0;
}

.footer-top .footer-left,
.footer-top .footer-middle {
  margin: 0 0 20px;
}

.footer-top h3 {
  color: #cccccc;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 900;
  margin: 10px 0 15px;
  text-transform: uppercase;
}

.footer-top p {
  margin: 0 0 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.footer-top a,
.footer-top a:visited {
  color: #fff;
  display: block;
  font-weight: 300;
  font-size: 15px;
  margin: 5px 0;
}

.footer-top a:hover,
.footer-top a:focus {
  color: #000;
  text-decoration: none;
}

.footer-top a .fa,
.footer-top a img {
  margin: 0;
}

.footer-icon {
  min-width: 18px;
  margin: 0 12px 0 0;
  display: inline-block;
}

.footer-top .button,
.footer-top .button:visited {
  background: #2f2f2f;
  display: inline;
  white-space: nowrap;
}

.footer-top .button:hover,
.footer-top .button:focus {
  background: #e57025;
}

.footer-top .footer-right a,
.footer-top .footer-right a:visited {
  font-size: 30px;
}

.footer-bottom {
  background: #2f2f2f;
  color: #7c7c7d;
  padding: 24px 20px 20px;
}

.footer-bottom a,
.footer-bottom a:visited {
  color: #545454;
  font-size: 16px;
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #fff;
  text-decoration: none;
}

@media(min-width: 768px) {

  .footer-top .footer-top-wrap {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .footer-top .footer-left,
  .footer-top .footer-middle,
  .footer-top .footer-right {
    padding: 0 15px;
    width: 33.333333%;
  }

  .footer-top .footer-middle,
  .footer-top .footer-right {
    border-left: 1px solid #fff;
  }

}

/* ==========================================================================
3. MAIN NAVIGATION                                            
========================================================================== */

/* ----------- Navigation Styles Only -------------- */

.nav {
  margin: 0 0 20px 0;
  padding: 0;
}

.nav ul,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  list-style: none outside none;
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
}

.nav ul li, .nav ul li:visited,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  float: none;
}

.nav ul li a, .nav ul li a:visited, .nav ul li a:focus, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  background: transparent;
  border-bottom: 1px solid #979797;
  color: #979797;
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 10px;
  max-width: none;
  overflow: visible;
  padding: 17px 0;
  position: relative;
  text-transform: uppercase;
}

.nav ul li a:hover {
  border-bottom: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.nav li.arrow > a:after, .nav li.arrow > a:visited:after {
  content: '\f054';
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  right: 12px;
  top: 18px;
  font-size: 14px;
  line-height: 1;
  transition: all .1s linear 0s;
}

.nav li.arrow > a:hover:after, .nav li.arrow.drop > a:after {
  transform: rotate(90deg);
  transition: all .1s linear 0s;
}

/* ----------- Second Level Nav ------------- */

.nav ul ul,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: all .3s linear 0s;
  list-style-type: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  position: relative;
}

.nav li.arrow.drop ul,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children.drop ul.hs-menu-children-wrapper {
  max-height: 900px;
  visibility: visible;
  opacity: 1;
}

.nav li.arrow ul li {
  margin: 0;
  padding: 0;
  text-transform: none;
}

.nav li.arrow ul li a, .nav li.arrow ul li a:visited,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper > li > a,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper > li > a:visited {
  padding: 10px 10px 10px 25px;
  text-transform: none;
  font-size: 16px;
  max-width: none;
  width: auto;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li ul > li.active > a {
  background: #27657B;
  color: #fff;
  text-decoration: none;
}

@media(min-width:992px) {
  .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }

  .nav ul,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    float: right;
    list-style-type: none;
    margin: 0 10px 0 0;
    padding: 0;
  }

  .nav ul li,
  .nav ul li:visited,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    float: left;
    display: block;
    margin: 0;
    padding: 0 10px;
    position: relative;
    width: auto;
  }

  .nav ul li a,
  .nav ul li a:visited,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:visited {
    background: transparent;
    border: none;
    color: #999999;
    float: left;
    font-size: 13px;
    margin: 0;
    padding: 5px 0;
    transition: none;
    text-transform: uppercase;
  }

  .nav ul li a:focus,
  .nav ul li a:hover,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:focus {
    background: transparent;
    color: #333333;
    text-decoration: none;
  }

  .nav .hs-menu-wrapper > ul > li:last-child > a,
  .nav .hs-menu-wrapper > ul > li:last-child > a:visited,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child > a,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child > a:visited {
    background-color: #e57025;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 50px;
  }

  .nav .hs-menu-wrapper > ul > li:last-child > a:hover,
  .nav .hs-menu-wrapper > ul > li:last-child > a:focus,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:last-child a:hover,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:last-child a:focus {
    background-color: #7c7c7d;
  }

  .nav li.arrow > a:after,
  .nav li.arrow > a:visited:after {
    content: "\f107";
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 14px;
    line-height: 1;
    transition: all .1s linear 0s;
  }

  .nav li.arrow > a:hover:after,
  .nav li.arrow.drop > a:after {
    color: #7c7c7d;
    transition: all .1s linear 0s;
    transform: none;
  }

  /* ------ Second Level Nav ---- */

  .nav ul li.arrow > ul,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper {
    background: #2e2e2e;
    padding: 10px 0;
    position: absolute;
    top: 66px;
    left: calc(50% - 110px);
    width: 220px;
  }
  
  .header.dark-header .nav ul li.arrow>ul,
  .header.dark-header .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
    top: 50px;
  }

  .nav li.arrow ul li,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li{
    padding: 1px 12px;
    width: 100%;
  }

  .nav li.arrow ul li:hover,
  hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li:hover {
    background: #393939;
  }

  .nav li.arrow ul li a,
  .nav li.arrow ul li a:visited,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li > a,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:visited {
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    width: 100%;
  }

  .nav li.arrow ul li a:hover,
  .nav li.arrow ul li a:focus,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:hover,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:focus {
    background: transparent;
  }
}

/* ==========================================================================
Custom Menu Primary
========================================================================== */

 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

@media screen and (min-width:941px) {

  .custom-menu-primary {
    margin-top: -26px;
    margin-bottom: -1px;
  }

  /* Parent List */
  .custom-menu-primary .hs-menu-wrapper > ul{ 
    float: right;
    position: relative;
    z-index: 30;
    text-transform: uppercase;    
    background:;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
    float: left;
    font-family: 'Gotham Cond A', 'Gotham Cond B';
    font-size: 25px;
    margin-left: 27px;
    padding-top: 0;
    padding-bottom: 25px;
    z-index: 1;        
    background:;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a{
    color:#06354f;
    font-weight: normal;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
    color:#008bbf;
    text-decoration: none;
  }

  /* Child List */
  .custom-menu-primary .hs-menu-wrapper > ul ul{
    background: #fff;
    top: 35px;
    left: 0;
    width: 204px;
    border: 2px solid #0e91c3;
    padding-bottom: 10px;
    z-index: 3;        
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    padding: 0;
    background:;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    color:#06354f;
    display: block;
    font-size: 20px;
    padding: 10px 0 0 10px;
    font-weight: normal;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
    color:#008bbf;
    text-decoration: none;
  }

  /* Override max width on menu links */
  .custom-menu-primary .hs-menu-wrapper > ul li a, 
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
  }

  /* Fix menu disappearing on desktop after toggling mobile menu */
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }

}

/* ==========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
========================================================================== */

/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media (max-width: 940px){

  /* Variables
  ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary{
    margin-top: 41px;
    position: relative;
    z-index: 30;
    text-transform: uppercase;
  }

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible;
    opacity: 1;
    position: static;
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper{
    background-color:; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }


  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    padding: 0;
    font-family: 'Gotham Cond A', 'Gotham Cond B'; 
    text-align: center;
    padding: 0 0 15px;
    font-size: 24px;
    margin-left: 0;        
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    color:#06354f; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper ul li a:focus{
    text-decoration: none;
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:#008bbf; /* link hover color set by global mobile-aColorHover variable */
    text-decoration: none;
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul {
    display: none;
    background: #fff;
    position: absolute;
    top: 35px;
    left: 0;
    width: 200px;
    border: 2px solid #0e91c3;
    padding-bottom: 10px;
    z-index: 3; 
    position: static;
    width: 100%;
    display: none;
    margin: 5px 0;
  }
  .custom-menu-primary .hs-menu-wrapper ul.mobile-open {
    visibility: visible!important;
    display: block!important;        
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    padding: 0!important;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    font-size: 22px;
    padding: 10px 0 0 10px;
    display: block;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
    text-decoration: none;
  }

  .body-container-wrapper .main-content h2 {
    font-size: 24px;      
  }

}
/* ==========================================================================
4. TEMPLATE MODULE SELECTORS                                         
========================================================================== */

/* Common Template Selectors                                             
========================================================================== */

body.one-column {}
body.two-column {}
body.three-column {}
.content-wrapper {}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}

/* Common One Column Selectors */
body.site-page.one-column, 
body.landing-page.one-column, 
body.error-template.one-column, 
body.password-template.one-column, 
body.subscription-template.one-column {}

body.site-page.one-column .main-content, 
body.landing-page.one-column .main-content, 
body.error-template .main-content, 
body.password-template .main-content, 
body.subscription-template .main-content {}

/* Common Two Column Selectors */
body.site-page.two-column, 
body.landing-page.two-column, 
body.blog {}  

body.site-page.two-column .main-content, 
body.landing-page.two-column .main-content, 
body.blog .blog-content {}

/* Common Three Column Selectors */
body.site-page.three-column, 
body.landing-page.three-column {}

body.site-page.three-column .main-content, 
body.landing-page.three-column .main-content {}

/* Site Pages                                            
========================================================================== */

/* One Column Template */
body.site-page.one-column {}
body.site-page.one-column .content-wrapper {}
body.site-page.one-column .main-content {}

/* Two Column Template */
body.site-page.two-column {}
body.site-page.two-column .content-wrapper {}
body.site-page.two-column .main-content {}
body.site-page.two-column .sidebar.right {}

/* Three Column Template */
body.site-page.three-column {}
body.site-page.three-column .content-wrapper {}
body.site-page.three-column .main-content {}

/* Landing Pages                                           
========================================================================== */

/* One Column Template */
body.landing-page.one-column {}
body.landing-page.one-column .content-wrapper {}
body.landing-page.one-column .main-content {}

/* Two Column Template */
body.landing-page.two-column {}
body.landing-page.two-column .content-wrapper {}
body.landing-page.two-column .main-content {}
body.landing-page.two-column .sidebar.right {}

/* Three Column Template */
body.landing-page.three-column {}
body.landing-page.three-column .content-wrapper {}
body.landing-page.three-column .main-content {}

/* System Pages                                          
========================================================================== */

/* Error Templates 404, 500 */
body.error-template.one-column {}
body.error-template.one-column .content-wrapper {}
body.error-template.one-column .main-content {}

/* Password template */
body.password-template.one-column {}
body.password-template.one-column .content-wrapper {}
body.password-template.one-column .main-content {}

/* Email Subscribition templates */
body.subscription-template.one-column {}
body.subscription-template.one-column .content-wrapper {}
body.subscription-template.one-column .main-content {}

/* ==========================================================================
5. COS COMPONENTS                                        
========================================================================== */

/* ==========================================================================
Blog                                         
========================================================================== */

/* Blog Post and Listing Body Class */
body.blog {}

/* Blog Post */
body.hs-blog-post {}

/* Blog Listing */
body.hs-blog-listing {}

/* Blog Columns Wrapper */
.blog .content-wrapper {}


/* Blog Content Column
========================================================================== */

.blog .blog-content {}

/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-header h1 {}
.hs-blog-header h1 a{}

/* Blog Post Title */
.post-header h2 {}
.post-header h2 a {
  text-decoration: none!important;
}

/* Blog Author and Avatar */
#hubspot-author_data {}
#hubspot-author_data a.author-link {}
#hubspot-author_data .hs-author-avatar {
  width: 150px;
  height: 150px;
  margin: 10px 0;
}
#hubspot-author_data .hs-author-avatar img {}
#hubspot-author_data .hs-author-social-section {
  margin: 0 0 10px;
}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {
  margin-bottom: 20px;
}
.blog-listing-wrapper .post-listing .post-item .post-body {
  margin-top: 10px;
  margin-bottom: 10px;    
}
.blog-post-wrapper .post-body {
  margin-top: 10px;
  margin-bottom: 10px;      
}

.blog .content-wrapper ul {
  list-style-position: inside;
}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link {}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;
  max-height: auto; /* was originally 170px */
  max-width: 210px;
  height: auto;
  width: auto;
  display: inline-block !important;
  float: right;
  margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {
  margin-top: 20px;
}

.custom_listing_comments {
  margin: 20px 0;
}

/* Blog Topics List */
#hubspot-topic_data {}
#hubspot-topic_data a.topic-link {}

/** 
* Blog Social Sharing icons
*
* Overrides defaults to better align icons and prevent overlapping 
*/

.hs-blog-social-share {
  padding: 10px 0 0 0;
  height: auto;
}

.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
  padding: 0;
}

/** 
* Blog Commments 
*
* Custom styles are listed below, as the COS does not provide default styles.
*/

#comments-listing {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}
.comment {
  margin: 10px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

/* Pagination */
.blog-pagination {}
.blog-pagination a {}
.blog-pagination a.previous-posts-link {}
.blog-pagination a.all-posts-link {}
.blog-pagination a.next-posts-link {}

/** 
* Blog Author Page 
*
* ALWAYS be sure to set styles to these selectors, as the COS does not provide default styles
*/

.hs-author-profile {}
.hs-author-profile h2.hs-author-name {}
.hs-author-profile .hs-author-bio {
  margin: 10px 0 0;
}
.hs-author-profile .hs-author-avatar {
  width: 150px;
  height: 150px;
}
.hs-author-profile .hs-author-avatar img {}
h3.hs-author-listing-header {
  margin: 10px 0 30px;
}

/** 
* Blog All Posts Page
*
* ALWAYS be sure to set styles to these selectors, as the COS does not provide default styles
*/

body.hs-content-path-blog-all {}
div.post-listing-simple {}
div.post-listing-simple .post-item {}
h2.post-listing-simple {
  border-bottom: 0;
}
h2.post-listing-simple a {
  text-decoration: none!important;    
}

/* Blog Sidebar
========================================================================== */

.blog .blog-sidebar {}

/* Blog Modules */
.blog .blog-sidebar .widget-span {}

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

/* All Global Forms
========================================================================== */
h3.form-title {
  margin-top: 25px;
}

/* Form Field */
.hs-form-field {}

/* Labels */
body .body-container-wrapper label {}
body .body-container-wrapper .hs-form-field > label {}

/* One Line Inputs */
/* body .body-container-wrapper input[type="text"],
body .body-container-wrapper input[type="password"], 
body .body-container-wrapper input[type="datetime"], 
body .body-container-wrapper input[type="datetime-local"], 
body .body-container-wrapper input[type="date"], 
body .body-container-wrapper input[type="month"], 
body .body-container-wrapper input[type="time"], 
body .body-container-wrapper input[type="week"], 
body .body-container-wrapper input[type="number"], 
body .body-container-wrapper input[type="email"], 
body .body-container-wrapper input[type="url"], 
body .body-container-wrapper input[type="search"], 
body .body-container-wrapper input[type="tel"], 
body .body-container-wrapper input[type="color"],
body .body-container-wrapper textarea,
body .body-container-wrapper select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  padding: 4px 6px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 10px;
}

body .body-container-wrapper input[type="text"]:focus,
body .body-container-wrapper input[type="password"]:focus, 
body .body-container-wrapper input[type="datetime"]:focus, 
body .body-container-wrapper input[type="datetime-local"]:focus, 
body .body-container-wrapper input[type="date"]:focus, 
body .body-container-wrapper input[type="month"]:focus, 
body .body-container-wrapper input[type="time"]:focus, 
body .body-container-wrapper input[type="week"]:focus, 
body .body-container-wrapper input[type="number"]:focus, 
body .body-container-wrapper input[type="email"]:focus, 
body .body-container-wrapper input[type="url"]:focus, 
body .body-container-wrapper input[type="search"]:focus, 
body .body-container-wrapper input[type="tel"]:focus, 
body .body-container-wrapper input[type="color"]:focus,
body .body-container-wrapper textarea:focus,
body .body-container-wrapper select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
} */

/* Multiple Line Inputs */
body .body-container-wrapper textarea { }
body .body-container-wrapper textarea:focus {}

/* Multiple Selection Inputs */
body .body-container-wrapper form.hs-form .hs-form-field ul.inputs-list li input {}
body .body-container-wrapper input[type="radio"] {}
body .body-container-wrapper input[type="checkbox"] {}

body .body-container-wrapper .inputs-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0!important;
}

body .body-container-wrapper .inputs-list li {
  padding: 0;
}

/* Drop Downs */
body .body-container-wrapper select {}
body .body-container-wrapper select:focus {}

/* Required */
body .body-container-wrapper input:focus:required:invalid, 
body .body-container-wrapper textarea:focus:required:invalid, 
body .body-container-wrapper select:focus:required:invalid {}

body .body-container-wrapper input:focus:required:invalid:focus, 
body .body-container-wrapper textarea:focus:required:invalid:focus, 
body .body-container-wrapper select:focus:required:invalid:focus {}

/* Placeholder Text */
::-webkit-input-placeholder { /* Webkit Browsers */
  /* color: #555;
  opacity: 1; */
}
:-moz-placeholder { /* Firefox 18- */
  /* color: #555;
  opacity: 1; */
}
::-moz-placeholder { /* Firefox 19+ */
  /* color: #555;
  opacity: 1; */
}
:-ms-input-placeholder { /* IE10 */
  /* color: #555;
  opacity: 1; */
}

/* Form Module
========================================================================== */

/* Form Field */
.hs_cos_wrapper_type_form .hs-form-field {}

/* Descriptions */
.hs_cos_wrapper_type_form .hs-field-desc {}

/* Labels */
.hs_cos_wrapper_type_form label {}
.hs_cos_wrapper_type_form .hs-form-field > label {}

/* One Line Inputs */
.hs_cos_wrapper_type_form input[type="text"],
.hs_cos_wrapper_type_form input[type="password"], 
.hs_cos_wrapper_type_form input[type="datetime"], 
.hs_cos_wrapper_type_form input[type="datetime-local"], 
.hs_cos_wrapper_type_form input[type="date"], 
.hs_cos_wrapper_type_form input[type="month"], 
.hs_cos_wrapper_type_form input[type="time"], 
.hs_cos_wrapper_type_form input[type="week"], 
.hs_cos_wrapper_type_form input[type="number"], 
.hs_cos_wrapper_type_form input[type="email"], 
.hs_cos_wrapper_type_form input[type="url"], 
.hs_cos_wrapper_type_form input[type="search"], 
.hs_cos_wrapper_type_form input[type="tel"], 
.hs_cos_wrapper_type_form input[type="color"],
.hs_cos_wrapper_type_form input[type="file"],
.hs_cos_wrapper_type_form textarea,
.hs_cos_wrapper_type_form select {}

.hs_cos_wrapper_type_form input[type="text"]:focus,
.hs_cos_wrapper_type_form input[type="password"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime-local"]:focus, 
.hs_cos_wrapper_type_form input[type="date"]:focus, 
.hs_cos_wrapper_type_form input[type="month"]:focus, 
.hs_cos_wrapper_type_form input[type="time"]:focus, 
.hs_cos_wrapper_type_form input[type="week"]:focus, 
.hs_cos_wrapper_type_form input[type="number"]:focus, 
.hs_cos_wrapper_type_form input[type="email"]:focus, 
.hs_cos_wrapper_type_form input[type="url"]:focus, 
.hs_cos_wrapper_type_form input[type="search"]:focus, 
.hs_cos_wrapper_type_form input[type="tel"]:focus, 
.hs_cos_wrapper_type_form input[type="color"]:focus,
.hs_cos_wrapper_type_form input[type="file"]:focus,
.hs_cos_wrapper_type_form textarea:focus,
.hs_cos_wrapper_type_form select:focus {}

/* Separate Styles for Multiple Line Inputs */
.hs_cos_wrapper_type_form textarea {}
.hs_cos_wrapper_type_form textarea:focus {}

/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {}
.hs_cos_wrapper_type_form select:focus {}

/* Multiple Selection Inputs */
.hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li input {}
.hs_cos_wrapper_type_form input[type="radio"] {}
.hs_cos_wrapper_type_form input[type="checkbox"] {}

/* Blog Comment Form
========================================================================== */

/* Label */
#comment-form .hs-form-field > label {}
#comment-form label {}

/* Inputs */
#comment-form input[type="text"] {}
#comment-form input[type="text"]:focus {}

#comment-form textarea {}
#comment-form textarea:focus {}

#comment-form input[type="checkbox"] {}

#comment-form .hs-button.primary {
  margin-top: 15px;
}

/* Error */
body .hs-common-error-message {}


/* Blog Subscription Form
========================================================================== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field > label {}
#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"] {}
#hs_form_target_blog_subscription input[type="email"]:focus {}

#hs_form_target_blog_subscription input[type="radio"], #hs_form_target_blog_subscription input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

/* Google Search Form
========================================================================== */

/* Label */
.widget-type-google_search label {
  display: block;
  font-size: 1.17em;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-weight: bold;
  margin-top: 25px;
}

/* Input */
.widget-type-google_search input[type="text"] {}
.widget-type-google_search input[type="focus"] {}

.widget-type-google_search .hs-button.primary {
  font-weight: normal;
}

/* Multi Column Form
========================================================================== */

body .hs-form fieldset.form-columns-1 {}
body .hs-form fieldset.form-columns-1 .hs-form-field {}

body .hs-form fieldset.form-columns-2 {}
body .hs-form fieldset.form-columns-2 .hs-form-field {}

body .hs-form fieldset.form-columns-3 {}
body .hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.inputs-list li input {}
body input[type="radio"] {}
body input[type="checkbox"] {}
body form.hs-form fieldset { max-width: none; }
body form.hs-form fieldset .hs-form-field { padding: 0 10px 0 0; }
body form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
body form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
body form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
body form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 400px) {
  body form.hs-form fieldset .hs-form-field { padding: 0; }
  body form.hs-form fieldset.form-columns-3 .hs-form-field,
  body form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  body form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100%; }
  body form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}

/* ==========================================================================
Buttons                                              
========================================================================== */

/* All Global Buttons (Excluding CTAs)
========================================================================== */

/* body .body-container-wrapper .hs-button.primary,
body .body-container-wrapper input[type="submit"],
body .body-container-wrapper input[type="button"] {
  color: #fff;
  background: #e57025;
  border-radius: 50px;
  margin: 5px 5px 0 0;
  padding: 15px 43px;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  Transition: ease-in-out .2s all;
  font-family: "Raleway", sans-serif;
}

body .body-container-wrapper .hs-button.primary:hover,
body .body-container-wrapper input[type="submit"]:hover,
body .body-container-wrapper input[type="button"]:hover,
body .body-container-wrapper .hs-button.primary:focus,
body .body-container-wrapper input[type="submit"]:focus,
body .body-container-wrapper input[type="button"]:focus  {
  background: #7c7c7d;
} */

/* Form Module Button
========================================================================== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}
.hs_cos_wrapper_type_form .hs-button.primary.large:hover {}
.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}

/* Blog Comment Button
========================================================================== */
#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}

/* Blog Subscription Button
========================================================================== */
#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}

/* Google Search Button
========================================================================== */
.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}

/* CTA Buttons
========================================================================== */

/** 
* Override global CTA styles by wrapping the CTA module in a module group 
* that has an ID, and use that ID to prefix your CTA selector. Example shown below.
*
* All overriding properties require !important tags. 
*/
#module-group-ID .cta_button {}
#module-group-ID .cta_button:hover {}
#module-group-ID .cta_button:focus {}

/* ==========================================================================
6. MISCELLANOUS                                        
========================================================================== */

/** 
* Styles that do not fit into available sections above can go here.
* For example, one would place 3rd party plugin overriding styles here.
*
* This section is NOT for 'Custom' styles.  All custom styles must go in the
* proper sections above.
*
* For instance, custom header and footer styles must go in the HEADER and 
* FOOTER sections.  Custom styles for anything in-between the header and footer 
* (such as, styles that are unique to the HOMEPAGE only), must go in the 
* CONTENT section.
*/ 

.page-anchor-link {
    display: block;
    position: relative;
    top: -120px;
}

/* ==========================================================================
7. MOBILE MEDIA QUERIES                              
========================================================================== */

/* Screen sizes smaller than site maxWidth (.page-center)
========================================================================== */

@media (min-width: 941px) and (max-width: 1230px) {

  body {
    overflow-x: hidden;
  }    

  /* Last menu item fly fix */
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:last-child.hs-item-has-children ul.hs-menu-children-wrapper{
    left: auto;
    right: 0px;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child.hs-item-has-children > ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper{
    right: 100%;
  }    

}

@media (min-width: 941px) and (max-width: 1020px) {

  .container-fluid .row-fluid .page-center {
    padding-left: 15px;
    padding-right: 15px;
  } 

}

@media (max-width: 1200px) {}

/* Landscape tablet and smaller devices
========================================================================== */

@media (max-width: 940px) {

  .header-container-wrapper:before {
    bottom: initial;
    top: 120px;
    width: 100%;
    background: url(//527859.fs1.hubspotusercontent-na1.net/hubfs/527859/Layout/head-bg-center-s.jpg);
    height: 39px;        
  }

  .header-container-wrapper:after {
    bottom: initial;
    right: 0;
    width: 51px;
    height: 39px;
    top: 120px;
    background: url(//527859.fs1.hubspotusercontent-na1.net/hubfs/527859/Layout/head-bg-right-s.jpg);        
  }

  .header-container .page-center {
    background: none;
    padding-bottom: 0px;        
  }

  .custom_header-top {
    width: 100%!important;
    position: static;
    margin: 10px 0!important;
  }

  .custom_header-Logo-1557225347069-1557225491294 a {
    display: block;
    margin: 18px auto 20px;
    float: inherit;
    text-align: center;        
  }

  .custom_header-Logo-1557225347069-1557225491294 a img {
    max-width: 75%;
    max-height: 64px;        
  }

  .custom_header-log-in-button .btn {
    position: static;
    display: block;
    margin: 20px auto;        
  }

  .body-container-wrapper .main-content ul {
    padding-left: 10px;
  }

  .footer-container-wrapper {       
  }

  .custom_footer-menu {
    display: none!important;
  }

  .info {
    position: static;
    text-align: center;
  }    

  .information {
    text-align: center;
    border-top: none;
    margin-top: 10px;
  }

}

@media (max-width: 767px) {

  .sidebar,
  .blog-sidebar {
    margin-top: 20px;
  }

}

/* Landscape phones and smaller devices
========================================================================== */

@media (max-width: 479px) {}

@media (max-width: 380px) {

  .custom_header-search form.hs-form .field .input .hs-input {
    width: 90px;
  }    

}

@-moz-document url-prefix() { 

  .custom_header-search {
    margin-top: 4px;
    margin-left: 9px!important;
  } 

  .custom_header-phone-login .tel {
    margin-right: 0;
  } 

}

/* ------------- Mojo Styles ----------------- */

/* -------- Interior Page Banner --------- */

.infinite-page-title-wrap {
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.infinite-page-title-wrap .infinite-page-title-overlay {
  background-color: #e57025;
  opacity: 0.5;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.infinite-page-title-wrap .infinite-page-title-content {
  padding: 60px 0 50px ;
  position: relative;
}

.infinite-page-title-wrap .infinite-page-title-content h1 {
  border: none;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 2px;
  margin: 0 0 0 0;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 768px) {

  .infinite-page-title-wrap .infinite-page-title-content {
    padding: 126px 0 116px ;
  }

  .infinite-page-title-wrap .infinite-page-title-content h1 {
    font-size: 54px;
    padding: 0 50px;
  }
}

@media(min-width: 1200px) {
  .infinite-page-title-wrap .infinite-page-title-content h1 {
    padding: 0 100px;
  }
}

/* ---------- Structure and padding and such ------------- */

.mojo-flex .body-container {
  margin: 107px auto 0;
  min-height: 0;
}

body.mojo-flex .body-container-wrapper .hs-button.primary,
body.mojo-flex .body-container-wrapper .hs-button.primary:visited,
body input.hs-button.primary.large,
body input.hs-button.primary.large:visited {
  color: #fff;
  background: #e57025;
  border-radius: 50px;
  border: none;
  margin: 5px 5px 0 0;
  padding: 10px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  Transition: ease-in-out .2s all;
  text-transform: uppercase;
  letter-spacing: 2px;
}

body.mojo-flex .body-container-wrapper .hs-button.primary:hover,
body.mojo-flex .body-container-wrapper .hs-button.primary:focus,
body input.hs-button.primary.large:hover,
body input.hs-button.primary.large:focus {
  background: #e57025;
  cursor: pointer;
}

a.cta_button,
a.cta_button:visited {
  color: #fff;
  background: #e57025;
  border-radius: 50px;
  border: none;
  margin: 10px 0;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  Transition: ease-in-out .2s all;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.cta_button:hover,
a.cta_button:focus {
  background: #e57025;
  cursor: pointer;
  text-decoration: none;
}

body .body-container-wrapper .white .hs-form-field > label,
body .body-container-wrapper .white li.hs-form-booleancheckbox span {
  color: #fff;
}

.std-padding,
.reg-padding {
  padding: 40px 0 40px;
  position: relative;
}

.std-padding.extra-padding {
  padding: 80px 0 80px;
}

.std-padding.no-padding {
  padding: 0;
}

.std-padding.bottom-padding {
  padding: 0 0 40px 0;
}

.std-padding {
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-content {
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

.column-content {
  position: relative;
  z-index: 5;
}

.top-title {
  margin: 0 0 40px 0;
  position: relative;
  z-index: 5;
}

.column-content .form-title {
  display: none;
}

.two-flex, .three-flex, .four-flex {
  display: flex;
  flex-flow: column;
}

.content-shader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white p,
.white blockquote,
.white ul,
.white ol,
.white .column-content > div > div {
  color: #fff;
}

.white .column-content > div > p > a, .white .column-content > div > p > a:visited {
  color: #fff;
  text-decoration: underline;
}

.white .column-content > div > h3 > a, .white .column-content > div > h3 > a:visited {
  color: #fff;
  text-decoration: none;
}

@media(min-width: 768px) {

  .page-content {
    padding: 0 30px;
  }

  .two-flex, .three-flex {
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .four-flex {
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .two-flex .column-content {
    width: 47%;
  }

  .two-flex .column-content.form-left {
    width: 58%;
  }

  .two-flex .column-content.form-right {
    width: 37%;
  }

  .two-flex .column-content.sixty {
    width: 60%;
  }

  .two-flex .column-content.thirty-five {
    width: 35%;
  }

  .three-flex .column-content {
    width: 30%;
  }

  .four-flex .column-content {
    width: 47%;
  }     
}

@media(min-width: 992px) {
  .std-padding,
  .reg-padding {
    padding: 60px 0 60px;
  }

  .std-padding.bottom-padding {
    padding: 0 0 60px 0;
  }

  .std-padding.extra-padding {
    padding: 100px 0 100px;
  }

  .column-content.forty {
    width: 40%;
  }

  .column-content.fifty {
    width: 50%;
  }

  .column-content.sixty {
    width: 60%;
  }

  .four-flex .column-content {
    width: 22%;
  }
}

@media(min-width: 1200px) {
  .std-padding,
  .reg-padding {
    padding: 50px 0 50px;
  }

  .std-padding.bottom-padding {
    padding: 0 0 50px 0;
  }

  .std-padding.extra-padding {
    padding: 140px 0 140px;
  }

  .page-content {
    padding: 0 100px;
    margin: 0 auto;
    max-width: 1180px;
  }

  .page-content.max {
    max-width: none;
  }
}


/* --------------- Form Styles ---------------- */

.centered-form {
    max-width: 900px;
    margin: 0 auto 20px;
}

.form-group, .hs-form-field {
    margin: 0 0 20px 0;
}

fieldset {
  max-width: none !important;
}

.hs-form-field {
    width: 100%;
    display: block;
}

.hubspot-form {
    display: block;
 	position: relative;
    margin: 0 auto;
    max-width: 600px;
}

.hs-form-required {
    margin: 0 0 0 2px;
}

.form-control {
    border-radius: 0;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.white label {
    color: #fff;
}

label {
  color: #e57025;
    display: block;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    text-transform: uppercase;
		line-height: 40px;
}

.inputs-list label {
  color: #7c7c7d;
}

.hs-form-field ul.inputs-list.multi-container {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

form .hs-form-field input[type="checkbox"],
form .hs-form-field input[type="radio"] {
    margin: 2px 10px 0 0;
}

form .hs-form-checkbox label {
    font-weight: 400;
    text-transform: none;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="phone"],
form input[type="url"],
form input[type="tel"] {
    background: #f0f1f1;
    border-radius: 0px;
    padding: 10px 15px;
    height: auto;
    line-height: 1.3;
    border: 1px solid #f0f1f1;
    font-size: 17px;
    width: 100% !important;
}

form select {
    border-radius: 0px;
    border: 1px solid #f0f1f1;
    background: #f0f1f1;
    width: 100% !important;
    height: auto;
    font-size: 17px;
    line-height: auto;
    padding: 0 15px;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="phone"]:focus,
form input[type="url"]:focus,
form input[type="tel"]:focus,
form select:focus,
.form-control:focus {
    border: 1px solid #f0f1f1;
    background: #f0f1f1;
    outline: none;
    box-shadow: none
}

form textarea {
    min-height: 100px;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 0px;
    width: 100%;
    border: 1px solid #f0f1f1;
    background: #f0f1f1;
}

.radio, .checkbox {
    line-height: 1;
    margin: 0 0 15px 0;
}

form .radio label,
form .radio.inline label,
form .checkbox label,
form .checkbox.inline label {
    text-transform: none;
    font-weight: 400;
    line-height: 1.4;
}

form .radio input[type="radio"],
form .radio.inline input[type="radio"],
form .checkbox input[type="checkbox"],
form .checkbox.inline input[type="checkbox"] {
    margin: 3px 0 0 -20px;
}

.hs-menu-item.hs-menu-depth-1.hs-item-has-children.arrow a {
	padding-right:20px;
}




/* Gravity LP styles */
.h1-top-bottom-border h1 {
  border-top: 2px solid #d8d7d7;
  border-bottom: 2px solid #d8d7d7;`
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}

/* checkmark icon as bullet */
.icon-list {
  list-style-type: none;
}
.icon-list li:before {
  content: '';
	display: inline-block;
	background-image: url('https://info.alliancesafetycouncil.org/hubfs/PowerSafe/lp-images/icon-checkmark.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 25px;
	width: 25px;
	position: relative;
  left: -10px;
	top: 7px;
}