/* ==========================================================================
HubSpot Migrations Services - COS Boilerplate v2.0.0                              
========================================================================== */


/* ==========================================================================
Table of Contents:

1. EXTERNAL RESOURCES
2. BASE STYLES
3. COS STRUCTURE
4. MAIN NAVIGATION
5. BLOG
6. FORMS
7. BUTTONS
8. MISCELLANEOUS
9. MOBILE MEDIA QUERIES
========================================================================== */


/* ==========================================================================
1. EXTERNAL RESOURCES                                            
========================================================================== */


/* =============== @import, @font-face, and CSS File Includes =============== */

/* EX: @import url('http://example.com/example_style.css'); */
@import url('//fonts.googleapis.com/css?family=Open+Sans:regular,300,200,400,700,800,600,|Shadows+Into+Light:200,300,400,700,800,600,'); 
@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
/* HubSpot_Boilerplate-modules.css is required to address style issues with the default modules and responsive grid layout */
/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom; /* Suppress the space beneath the baseline */
}
img.alignRight, img.alignright{ margin: 0 0 5px 15px; }
img.alignLeft, img.alignleft{ margin: 0 15px 5px 0; }

/* Reduces min-height on bootstrap structure */
.row-fluid [class*="span"] { min-height: 1px; }

/* Blog Social Sharing */
.hs-blog-social-share .hs-blog-social-share-list {
  margin: 0;
  list-style: none !important;
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
  height: 30px;
  list-style: none !important;
}
@media (max-width: 479px){
  .hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item:nth-child(2) {
    float: none !important; /* Stack social icons into two rows on phones */
  }
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item .fb-like > span{
  vertical-align: top !important; /* Aligns Facebook icon with other social media icons */
}
.hs-blog-social-share-list li.hs-blog-social-share-item.hs-blog-social-share-item-linkedin .IN-widget {
    vertical-align: top !important;
}

/* Captcha */
#recaptcha_response_field {
  width: auto !important;
  display: inline-block !important;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field { min-height: 0;line-height: 12px; }

@media all and (max-width: 400px) {
  /* beat recaptcha into being responsive, !importants and specificity are necessary */
  #captcha_wrapper,
  #recaptcha_area,
  #recaptcha_area table#recaptcha_table,
  #recaptcha_area table#recaptcha_table .recaptcha_r1_c1 {
    width: auto !important;
    overflow: hidden; 
  }
  #recaptcha_area table#recaptcha_table .recaptcha_r4_c4 { width: 67px !important; }
  #recaptcha_area table#recaptcha_table #recaptcha_image { width:280px !important; }
}

/* Videos */
video {
  max-width: 100%;
  height: auto;
}

/* Date Picker */
#calroot {
  width: 202px !important;
  line-height: normal;
}
#calroot,
#calroot *,
#calroot *:before,
#calroot *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
} 
#calroot select {
  min-height: 0 !important;
  padding: 1px 2px !important;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet MS", Verdana, sans-serif !important;
  font-size: 10px !important;
  line-height: 18px !important;
  font-weight: normal !important;
} 
#caldays {
  margin-bottom: 4px;
}

/* Responsive Embed Container (iFrame, Object, Embed)*/
@media only screen and (max-width: 767px){
  .hs-responsive-embed,
  .hs-responsive-embed.hs-responsive-embed-youtube,
  .hs-responsive-embed.hs-responsive-embed-wistia,
  .hs-responsive-embed.hs-responsive-embed-vimeo {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .hs-responsive-embed iframe, 
  .hs-responsive-embed object, 
  .hs-responsive-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}
.hs-responsive-embed.hs-responsive-embed-instagram {
  padding-top: 0px;
  padding-bottom: 116.01%;
}
.hs-responsive-embed.hs-responsive-embed-pinterest {
  height: auto;
  overflow: visible;
  padding: 0 0 0 0;
}
.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
  position: static;
  width: auto;
  height: auto;
}
iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 568px) {
  iframe {
    max-width: 100%;
  }
}

/* Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]
select {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Fix radio button and check box fields in multi column forms*/
.hs-form fieldset[class*="form-columns"] input[type="checkbox"].hs-input,
.hs-form fieldset[class*="form-columns"] input[type="radio"].hs-input {
  width: auto;
}

/* System Template Forms */
#email-prefs-form .email-edit {
  width: 100% !important;
  max-width: 507px !important;
}
#hs-pwd-widget-password {
  height: auto !important;
}

/* Menus */
.hs-menu-wrapper ul {
  padding: 0; 
}

/* Horizontal Menu
========================================================================== */

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
  list-style: none;
  margin: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  display: inline-block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:before {
  content: " ";
  display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:after {
  content: " ";
  display: table;
  clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
  float: left;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  display: inline-block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
  position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  left: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  display: block;
  white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 100%;
  top: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}
.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
  position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children {
  position: static;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: none;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:before {
  content: " ";
  display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:after {
  content: " ";
  display: table;
  clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li {
  float: left;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
  display: inline-block;
}

/* Vertical Menu
========================================================================== */ 

.hs-menu-wrapper.hs-menu-flow-vertical {
  width: 100%;
}
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  list-style: none;
  margin: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical li a {
  display: block;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-menu-depth-1 > a {
  width: auto;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
  position: relative;
}

/* Flyouts */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  left: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  display: block;
  white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 100%;
  top: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 767px) {
  .hs-menu-wrapper, .hs-menu-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
    display: block;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: block;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    float: none;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
  .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.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
    display: block;
  }

  /* Stacking Horizontal Nav for Mobile */
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal ul ul ul {
    padding: 0;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    white-space: normal;
  }

  /* Stacking Vertical Nav for Mobile */
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper  {
    position: static;
    opacity: 1;
    visibility: visible;
  }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts .hs-menu-children-wrapper {
  visibility: visible;
  opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Space Module */
.widget-type-space { visibility: hidden; }

/* Blog Author Section */
.hs-author-social-links { display: inline-block; }
.hs-author-social-links a.hs-author-social-link {
  width: 24px;
  height: 24px;
  border-width: 0px;
  border: 0px;
  line-height: 24px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  display: inline-block;
  text-indent: -99999px;
}
.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}

/* Fix for CTA border box issue */
.hs-cta-wrapper a {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
* jQuery FlexSlider v2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/

/* Wrapper */
.hs_cos_wrapper_type_image_slider {
  display: block;
  overflow: hidden
}

/* Browser Resets */
.hs_cos_flex-container a:active,
.hs_cos_flex-slider a:active,
.hs_cos_flex-container a:focus,
.hs_cos_flex-slider a:focus  {outline: none;}
.hs_cos_flex-slides,
.hs_cos_flex-control-nav,
.hs_cos_flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */

/* FlexSlider Default Theme
*********************************/
.hs_cos_flex-slider {margin: 0 0 60px; padding: 0; background: #fff; border: 0; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; zoom: 1;}
.hs_cos_flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .hs_cos_flex-viewport {max-height: 300px;}
.hs_cos_flex-slider .hs_cos_flex-slides {zoom: 1;}

.carousel li {margin-right: 5px}

/* FlexSlider Necessary Styles
*********************************/
.hs_cos_flex-slider .hs_cos_flex-slides > li {display: none; -webkit-backface-visibility: hidden; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.hs_cos_flex-slider .hs_cos_flex-slides img {width: 100%; display: block; border-radius: 0px;}
.hs_cos_flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .hs_cos_flex-slides element */
.hs_cos_flex-slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .hs_cos_flex-slides {display: block;}
* html .hs_cos_flex-slides {height: 1%;}


/* Direction Nav */
.hs_cos_flex-direction-nav {*height: 0;}
.hs_cos_flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url("//cdn2.hubspotqa.net/local/hub/124/file-52894-png/bg_direction_nav.png") no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.hs_cos_flex-direction-nav .hs_cos_flex-next {background-position: 100% 0; right: -36px; }
.hs_cos_flex-direction-nav .hs_cos_flex-prev {left: -36px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next {opacity: 0.8; right: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-prev {opacity: 0.8; left: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next:hover, .hs_cos_flex-slider:hover .hs_cos_flex-prev:hover {opacity: 1;}
.hs_cos_flex-direction-nav .hs_cos_flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Direction Nav for the Thumbnail Carousel */
.hs_cos_flex_thumbnavs-direction-nav {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.hs_cos_flex_thumbnavs-direction-nav {*height: 0;}
.hs_cos_flex_thumbnavs-direction-nav a {width: 30px; height: 140px; margin: -60px 0 0; display: block; background: url("//cdn2.hubspotqa.net/local/hub/124/file-52894-png/bg_direction_nav.png") no-repeat 0 40%; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 1; -webkit-transition: all .3s ease;}
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-next {background-position: 100% 40%; right: 0px; }
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-prev {left: 0px;}
.hs-cos-flex-slider-control-panel img { cursor: pointer; }
.hs-cos-flex-slider-control-panel img:hover { opacity:.8; }
.hs-cos-flex-slider-control-panel { margin-top: -30px; }



/* Control Nav */
.hs_cos_flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.hs_cos_flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.hs_cos_flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.hs_cos_flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.hs_cos_flex-control-paging li a.hs_cos_flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.hs_cos_flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.hs_cos_flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.hs_cos_flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.hs_cos_flex-control-thumbs img:hover {opacity: 1;}
.hs_cos_flex-control-thumbs .hs_cos_flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .hs_cos_flex-direction-nav .hs_cos_flex-prev {opacity: 1; left: 0;}
  .hs_cos_flex-direction-nav .hs_cos_flex-next {opacity: 1; right: 0;}
}

.hs_cos_flex-slider .caption {
  background-color: black;
  position: static;
  font-size: 2em;
  line-height: 1.1em;
  color: white;
  padding: 0px 5% 0px 5%;
  width: 100%;
  top: 40%;
  text-align: center;
}
.hs_cos_flex-slider .superimpose .caption {
  color: white;
  font-size: 3em;
  line-height: 1.1em;
  position: absolute;
  padding: 0px 5% 0px 5%;
  width: 90%;
  top: 40%;
  text-align: center;
  background-color: transparent;
}

@media all and (max-width: 400px) {
  .hs_cos_flex-slider .superimpose .caption {
    background-color: black;
    position: static;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    width: 90%;
    padding: 0px 5% 0px 5%;
    top: 40%;
    text-align: center;
  }
}

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
  color: white;
}
/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
  max-height: 150px;
  margin: 0px;
  padding: 0px;
  border-width: 0px;
}

/* responsive pre elements */
pre { overflow-x: auto; }

/* responsive pre tables */
table pre { white-space: pre-wrap; }

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

/* adding minimal spacing for blog comments */
.comment { margin: 10px 0 10px 0; }

/* make sure lines with no whitespace don't interefere with layout */
.hs_cos_wrapper_type_rich_text,
.hs_cos_wrapper_type_text,
.hs_cos_wrapper_type_header,
.hs_cos_wrapper_type_section_header,
.hs_cos_wrapper_type_raw_html,
.hs_cos_wrapper_type_raw_jinja,
.hs_cos_wrapper_type_page_footer {
  word-wrap: break-word;
}

/* HTML 5 Reset */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}

/* Support migrations from wordpress */
.wp-float-left {
  float: left;
  margin: 0 20px 20px 0;
}

.wp-float-right {
  float: right;
  margin: 0 0 20px 20px;
}

/* Responsive Google Maps */
#map_canvas img, .google-maps img { max-width: none; }


/* ==========================================================================
2. BASE STYLES                                             
========================================================================== */

/* =============== Base =============== */

*, *: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;
  font-size: 10px;
  font-family: sans-serif;
} 

body {
  background: #fff;
  font-family: Open Sans,sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #777777;
}

/* Page Center */
.container-fluid .row-fluid .page-center {
  float: none;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}


/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #3399FF;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #3399FF;
  text-shadow: none;
}


/* =============== 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 {
  margin:0 0 15px;
  letter-spacing: -1px;
  font-family: 'Open Sans',sans-serif;  
  font-weight: normal;
  color: #1d2127;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
  font-size:36px;
  line-height:44px;
}
h2 {
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
}
h3 {
  font-size: 25px;
  line-height: 40px;
}
h4 {
  font-size:21px;
  letter-spacing: 0px;
  line-height:1;
  color: #d50707;
}
h5 {
  font-size:20px;
  line-height:1;
}
h6 {
  font-size:18px;
  line-height:1;
}

/* Anchor Links */
a { 
  color: #d50707;
  text-decoration: none;
}
a:hover, a:focus { 
  color: #8e0c0c;
  text-decoration: underline;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}
.body-container  .hs_cos_wrapper_type_rich_text ul {}
/* Block Quotes */
blockquote {}
blockquote p {}
blockquote small {}
.body-container  .hs_cos_wrapper_type_rich_text ul {}
/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 0px;
  border: none;
  margin: 0;
}


/* =============== EU Cookie Confirmation Bar =============== */

/* Confirmation Outer Wrapper*/
#hs-eu-cookie-confirmation {}

/* Confirmation Inner Wrapper*/
#hs-eu-cookie-confirmation-inner {}
#hs-eu-cookie-confirmation-inner p{}

/* Confirmation Button */
#hs-en-cookie-confirmation-buttons-area {}
a#hs-eu-confirmation-button {}


/* ==========================================================================
3. 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-container-wrapper {
  min-height: 161px;
  background: #fff;
}
.custom-landing .header-container-wrapper {
  min-height: 121px;
}
.header-container {}
.custom-header .page-center {
  max-width: 100% !important;
}
.custom-top-header {
  border-bottom: 1px solid #ededed;
  background: #f4f4f4;
  min-height: 40px;
  line-height: 0;
}
.custom-header-phone {
  width: 70% !important;
  float: left !important;
  padding: 5px;
  padding-bottom: 0;
}
.custom-header-phone .header-contact {
  white-space: nowrap;
  display: inline-block;
  color: #777777;
  margin: 0;
  vertical-align: text-top;
  font-family: "Open Sans", sans-serif;
  font-size: 12.6498px;
  line-height: 22px;
  font-weight: 400;
  padding-top: 3px;
}
.custom-header-phone .header-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-header-phone .header-contact ul li {
  position: relative;
  display: block;
  float: left;
  line-height: 14px;
  color: #777777;
}
.custom-header-phone .header-contact ul li+li {
  margin-left: 2px;
}
.custom-header-phone .header-contact ul li a {
  color: #4e4e4e;
  text-decoration: none;
  position: relative;
  display: block;
  border-radius: 4px;
}
.custom-header-phone .header-contact ul li a span {
  display: block;
  padding: 6px 10px;
  font-size: 12.6498px;
  color: #777;
}
.custom-header-phone .header-contact ul li a i {
  display: inline-block;
  margin: 0 5px;
  color: #777777;
  position: relative;
  top: 1px;
  margin-right: 3px;
  margin-left: 0;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.custom-header-phone .header-contact ul li a b {
  font-weight: 800;
  color: #777777;
}
div.phone {
  display: none;
}
.custom-header-search {
  width: 30% !important;
  float: left !important;
  padding: 5px;
  margin: 0 !important;
  text-align: right;
  padding-bottom: 0;
}
.custom-header-search .searchform-popup {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.custom-header-search .share-links {
  vertical-align: middle;
  display: inline-block;
  margin: 0 5px 0 -5px;
  padding-left: 27px;
  font-size: 15.9992px;
}
.custom-header-search .share-links a {
  vertical-align: middle;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  position: relative;
  display: inline-block;
  text-indent: -9999em;
  text-align: center;
  border-radius: 30px;
  margin: 0 2px;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  font-size: 14px;
  color: #333;
  box-shadow: none;
  background: transparent;
  width: 24px;
  height: 24px;
  border: none;    
  margin-left: -2px;
}
.custom-header-search .share-links a:before {
  font-family: "FontAwesome";
  text-indent: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 23px;
  height: 22px;
  margin: auto;
}
.custom-header-search .share-links a.share-linkedin:hover {
  background: #0073b2;
  color: #fff;
}
.custom-header-search .share-links a.share-twitter:hover {
  background: #1aa9e1;
  color: #fff;
}
.custom-header-search .share-links a.share-facebook:hover {
  background: #3b5a9a;
  color: #fff;
}
.share-links .share-facebook:before {
  content: "\f09a";
}
.share-links .share-twitter:before {
  content: "\f099";
}
.share-links .share-linkedin:before {
  content: "\f0e1";
}
.custom-header-search .searchform-popup a.search-toggle {
  cursor: pointer;
  display: none;
  width: 40px;
  height: 34px;
  line-height: 40px;
  text-align: center;
  position: relative;
  z-index: 1003;
  font-size: 1.2857em;
  color: #999999;
}
.custom-header-search .searchform-popup form.searchform {
  border-radius: 20px;
  position: relative;
  display: inline-block;
  line-height: 40px;
  font-size: 13px;
  padding: 0;
  vertical-align: middle;
  width: auto;
  margin-left: 15px;
  margin-bottom: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.custom-header-search .searchform-popup fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
  margin-right: -2px;
}
.custom-header-search .searchform-popup .text {
  float: left;
  display: inline-block;
  text-align: left;
}
.custom-header-search .searchform-popup input[type="text"] {
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
  outline: none;
  box-shadow: none;
  margin-bottom: 0;
  float: left;
  background: transparent;
  color: #555555;
  border-radius: 20px 0 0 20px;
  height: 34px;
  line-height: 34px;
  border: none;
  padding: 0 12px;
  width: 140px;
  font-family: "Open Sans", sans-serif;
}
.custom-header-search .searchform-popup input[type="text"]:focus {
  outline: none;
}
.custom-header-search .searchform-popup .button-wrap {
  float: left;
  display: inline-block;
  text-align: left;
}
.custom-header-search .searchform-popup button.btn.btn-special {
  text-transform: none;
  overflow: visible;
  white-space: nowrap;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  outline: none;
  box-shadow: none;
  float: left;
  border: none;
  margin-bottom: 0;
  background: transparent;
  border-radius: 0 20px 20px 0;
  text-shadow: none;
  height: 34px;
  line-height: 34px;
  padding: 0 13px;
  color: #c3c3c3;
  font-size: 14px;
}
.custom-bottom-header {
  position: relative;
  background-color: #ffffff;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: initial;
  background-image: none;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: -o-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: linear-gradient(to bottom, #f6f6f6, #ffffff);
  background-repeat: repeat-x;
  border-bottom: 1px solid #e9e9e9;
  padding: 4.5px 0;
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(to bottom, #ffffff, #ffffff);
  -webkit-transition: background 0.3s ease 0s;
  -moz-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  top: 0;
}
.custom-bottom-header .page-center > div > div {
  position: relative;
  min-height: 68px !important;
  padding-left: 15px;
  padding-right: 15px;
}
.custom-logo {
  text-align: left;
  position: relative;
  vertical-align: middle;
  padding: 0;
  width: auto !important;
  float: left !important;
}
.custom-logo > div {
  max-width: 250px;
  min-width: 100px;
  min-height: 70px;
}
.custom-logo a {
  display: inline-block;
  max-width: 100%;
}
.custom-logo a img {
  vertical-align: middle;
  height: auto;
  display: inline-block;
  color: transparent;
  max-width: 100%;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.fix .custom-bottom-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100% !important;
  top: 0px;
  background-color: #ffffff;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: initial;
  background-image: none;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: -o-linear-gradient(top, #f6f6f6, #ffffff);
  background-image: linear-gradient(to bottom, #f6f6f6, #ffffff);
  background-repeat: repeat-x;
  z-index: 99;
}
.fix .custom-logo > div {
  max-width: 150px;
  min-height: 50px;
}
.fix .custom-logo a img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  padding-top: 5px;
}
/* =============== Content =============== */

.body-container-wrapper {
  border-top: 1px solid #cccccc;
}
.body-container {}

.content-wrapper {}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}
.body-container-wrapper blockquote {
  border-left: 5px solid #eee;
  padding: 10px 20px;
  margin: 0 0 20px;
}
.custom-body {
  padding: 40px 0;
}

.custom-body .page-center{
  padding: 0px 15px;
}
.simple-banner .page-center {
  padding: 0 15px;
}
.simple-banner h1 {
  letter-spacing: -1px;
  text-transform: none;
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 2.2em;
  font-weight: 200;
  margin: 0;
  min-height: 37px;
  line-height: 46px;
  padding: 0 0 2px;
  font-family: Open Sans,sans-serif;
  color: #d50707;
  margin-bottom: -11px;
  padding-bottom: 12px;
  border-bottom: none;
  border-top: 5px solid #d50707;
  margin-top: -3px;
}
/* =============== Footer =============== */

.footer-container-wrapper {}
.footer-container {}
.custom-footer-bottom-section {
  padding: 20px 0;
  font: 13px "Roboto Slab",serif;
  color: #555555;
  background-color: #060606;
}
.custom-footer-bottom-section .page-center {
  padding-left: 15px;
  padding-right: 15px;
}
.custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid {
  display: table;
  table-layout: fixed;
}
.custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid:before,
.custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid:after {
  display: none;
}
.custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid > div {
  width: auto;
  margin-left: 0;
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.widget-span.custom-footer-logo-copyright-link {
  padding: 10px 8px 10px 0;
  text-align: left;
  width: 100%;
}
.widget-span.custom-footer-logo-copyright-link p {
  display: inline-block;
  margin-right: 25px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  top: 1px;
}
.widget-span.custom-footer-logo-copyright-link p img {
  display: inline-block;
  max-width: 80px;
  height: auto;
  vertical-align: middle;
}
.widget-span.custom-footer-logo-copyright-link aside {
  display: inline-block;
  margin: 0;
  margin-right: 20px;
}
.widget-span.custom-footer-logo-copyright-link aside ul {
  font-size: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-span.custom-footer-logo-copyright-link aside ul li {
  display: inline-block;
  line-height: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin: 0;
}
.widget-span.custom-footer-logo-copyright-link aside ul li:not(:last-child):after {
  content: "|";
  font-weight: 300;
  position: relative;
  top: -1px;
  margin: 0 0 0 9px;
}

.widget-span.custom-footer-logo-copyright-link aside ul li + li {
  padding: 3px 0 3px 15px;
}
.widget-span.custom-footer-logo-copyright-link aside ul li a {
  color: #ffffff;
}
.widget-span.custom-footer-copyright p {
  margin: 0;
}
.widget-span.custom-footer-copyright {
  padding: 10px 0 10px 8px;
  text-align: right;
  width: 100%;
}
.custom-footer-wrapper {
  color: #777777;
  background-color: #0e0e0e;
  font-size: 0.9em;
  padding: 0;
  position: relative;
}
.custom-footer-top-section .page-center {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-top: 54px;
}
.widget-span.custom-get-in-touch-link {
  font-size: 1.6em;
  z-index: 9;
  letter-spacing: initial;
  font-family: Shadows Into Light;
  font-weight: 400;
  color: #ffffff;
  background: #d50707;
  margin: -70px 0 0 0;
  position: absolute;
  width: auto !important;
  padding: 9px 19px 15px 20px;
}
.widget-span.custom-get-in-touch-link a {
  color: #ffffff;
}
.widget-span.custom-get-in-touch-link:before {
  left: -10px;
  border-right: 10px solid #646464;
  border-top: 16px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  width: 7px;
  border-right-color: #bf0303;
}
.custom-footer-link-wrapper > .row-fluid-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
.custom-footer-link-wrapper > .row-fluid-wrapper > .row-fluid > div {
  width: 25%;
  margin-left: 0;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.widget-span.custom-footer-link-section .custom-footer-link {
  margin-bottom: 30px;
  margin-top: 30px;
}
.custom-footer-link .hs-menu-wrapper > ul {
  display: block;
}
.custom-footer-link .hs-menu-wrapper > ul > li > a {
  font-weight: 400;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 7px;
  font-size: 1.2698em;
  line-height: 1.4;
  cursor: text;
  display:block;
}
.custom-footer-link .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}
.custom-footer-link .hs-menu-wrapper > ul > li > ul > li {
  padding: 3px 0 3px 15px;
  line-height: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-footer-link .hs-menu-wrapper > ul > li > ul > li > a {
  color: #fff;
  display: inline !important;
  white-space: normal !important;
}
.custom-footer-link .hs-menu-wrapper > ul > li > ul > li:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #333;
  margin-left: -11px;
  margin-right: 5px;
}
.widget-span.custom-footer-link-section .custom-footer-link.last {
  margin-top: 0;
  margin-bottom: 0;
}
.custom-footer-bottom-address p {
  margin: 0;
  text-align: center;
}
.custom-footer-bottom-address p {
  margin: 0;
  text-align: center;
}
.custom-footer-address-section h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 400;
  text-transform: none;
  font-size: 1.2698em;
  line-height: 1.4;
  letter-spacing:normal;
}
.custom-footer-address-section  ul {
  font-size: 1em;
  border-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-footer-address-section ul li {
  color: #777777;
  line-height: 24px;
  margin-bottom: 10px;
}
.custom-footer-address-section ul li i {
  float: left;
  text-align: center;
  width: 16px;
  top: -2px;
  margin: 4px 9px 10px 0;
  font-size: 1.2em;
  position: static !important;
}
.custom-footer-address-section ul li a {
  color: #fff;
}
.share-links.default-skin {
  margin-bottom: 30px;
  margin-top: 30px;
  position:relative;
}
.share-links.default-skin a {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 2px;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  font-size: 14px;
  color: #fff;
  text-indent: -9999em;
  position:relative;
  text-align: center;
  display: inline-block;
  margin-right: -1px;
}
.share-links.default-skin a:before {
  font-family: "FontAwesome";
  text-indent: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 23px;
  height: 22px;
  margin: auto;
}
.share-links.default-skin a.share-facebook {
  background: #3b5a9a;
}
.share-links.default-skin a.share-twitter {
  background: #1aa9e1;
}
.share-links.default-skin a.share-linkedin {
  background: #0073b2;
}


.share-links.default-skin a.share-facebook:hover {
  opacity: 0.8;
}
.share-links.default-skin a.share-twitter:hover {
  opacity: 0.8;
}
.share-links.default-skin a.share-linkedin:hover {
  opacity: 0.8;
}
.widget-span.custom-footer-link-section .custom-footer-link.first {
  margin-bottom: 30px;
  margin-top: 0;
}
.widget-span.custom-footer-link.inbound-marketing,
.widget-span.custom-footer-link.outbound-marketing{
  margin-bottom:25px;
}
.custom-footer-link.inbound-marketing .hs-menu-wrapper > ul {
  padding-bottom: 5px;
}
.widget-span.custom-footer-link-section .custom-footer-link.last .hs-menu-wrapper > ul {
  margin-bottom: 30px !important;
}

/* ==========================================================================
4. MAIN NAVIGATION                                            
========================================================================== */


/* =============== Custom Menu Primary =============== */
@media screen and (min-width:992px) {
  .custom-menu-primary {
    text-align: right;
    vertical-align: middle;
    width: auto !important;
    padding: 14px 0;
    padding-left: 30px;
    float: right !important;
    margin: 0 !important;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
  }

  /* Parent List */
  .custom-menu-primary .hs-menu-flow-horizontal > ul{
    text-align: left;
    background: transparent;
    display: block;
    border-radius: 6px;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li{
    display: block;
    position: relative;
    margin: 1px 20px 1px 0;
    line-height: 24px;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > a{
    text-align: left;
    position: relative;
    padding: 9px 12px 8px;
    display: inline-block;
    text-decoration: none;
    line-height: 20px;
    font-family: Open Sans,sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #4e4e4e;
    padding-top: 30px;
    padding-bottom: 27px;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li:hover > a, 
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.active > a{
    color: #d50707;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul {
    min-width: 100%;
    position: absolute !important;
    left: 0 !important;
    text-align: left;
    top: -2000px;
    -webkit-transition: transform 0.2s ease-out !important;
    -moz-transition: transform 0.2s ease-out !important;
    transition: transform 0.2s ease-out !important;
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    font-family: Open Sans,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    min-width: 180px;
    padding: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-top: 0 solid #ccc;
    border-top-width: 5px;
    background-color: #ffffff;
    border-top-color: #d50707;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li:hover > ul {
    top: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li {
    display: block;
    position: relative;
    line-height: 24px;
    padding: 0;
    float: none;
    font-size: 16px;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > a {
    text-align: left;
    position: relative;
    display: block;
    font-weight: 400;
    padding: 8px;
    font-size: 0.9em;
    line-height: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    white-space: nowrap;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    text-decoration: none;
    color: #777777;
    border-bottom-color: #f2f2f2;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li:hover > a, 
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li > a:hover{
    color: #777777;
    background-color: #f4f4f4;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li:hover > ul > li > a, 
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li:hover > a{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li.hs-item-has-children > a:before {
    content: "\f0da";
    float: right;
    margin-right: -2px;
    font-family: "FontAwesome";
    font-weight: normal;
    line-height: 22px;
    color: #d50707;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul {
    min-width: 180px;
    padding: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-top: 0 solid #ccc;
    z-index: 10;
    position: absolute;
    left: 100%;
    display: none;
    opacity: 0;
    border-top-width: 5px;
    border-top-color: #d50707;
    background: #fff;
    margin-top: -10px !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li:not(:first-child) > ul > li > ul{
    -webkit-animation: menuFadeInLeft 0.2s ease-out;
    animation: menuFadeInLeft 0.2s ease-out;
    left: 100% !important;
    display: none !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li:not(:first-child) > ul > li:hover > ul {
    display: block !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li:hover > ul {
    top: 0px;
    opacity: 1;
    display: block;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li {
    display: block;
    position: relative;
    line-height: 24px;
    padding: 0;
    float: none;
    font-size: 16px;;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li > a {
    text-align: left;
    position: relative;
    display: block;
    font-weight: 400;
    padding: 8px;
    font-size: 0.9em;
    line-height: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    white-space: nowrap;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    text-decoration: none;
    color: #777777;
    border-bottom-color: #f2f2f2;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li:hover > ul > li > a, 
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li:hover > a{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li:last-child > a {
    border: none;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services {
    position: static !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul {
    width: 100% !important;
    padding: 25px 20px 10px;
    min-width: 1110px !important;
    margin-top: -18px !important;
    display: none !important;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 1110px !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services:hover>ul {
    display: block !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li {
    width: 25% !important;
    float: left;
    padding: 0 15px 10px;
    display: block;
    position: relative;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li>a {
    color: #333333;
    font-weight: 600;
    padding: 0;
    padding-bottom: 5px;
    text-transform: uppercase;
    line-height: 24px;
    font-size: 24px;
    border: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li.hs-item-has-children>a:before {
    display: none;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li>ul {
    position: relative !important;
    display: block !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 15px !important;
    top: -0px !important;
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > a {
    margin-left: -8px;
    line-height: 20px;
    padding: 4px 8px;
    border: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > ul {
    margin-top: 15px !important;
    position: relative !important;
    display: block !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    padding: 0;
    padding-left: 10px;
    top: -0px !important;
    opacity: 1;
    display: block;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > ul>li>a {
    line-height: 20px;
    font-weight: normal;
    margin-left: -8px;
    padding: 4px 8px;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > ul>li>a {
    line-height: 20px;
    font-weight: normal;
    margin-left: -8px;
    padding: 4px 8px;
    font-size: 0.9em;
    color: #777777;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li:hover>ul {
    top:0px !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > ul {
    top: 0px !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li:not(:last-child) > ul > li:last-child {
    width: 80%;
    margin-left: 0;
    margin-right: auto;
    display: block;
    text-align: center;
    padding: 0 10px;
    background-color: #d50707;
    color: #ffffff;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li:not(:last-child) > ul > li:last-child > a {
    width: 80% !important;
    text-align: center;
    padding: 15px 0;
    margin-right: auto;
    margin-left: 0;
    margin-top: 2em;
    background-color: #d50707;
    color: #ffffff;
    white-space: normal !important;
  }
  /* Override max width on menu links */
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    position: absolute;
    z-index: 10;
    left: 0;
  }

  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
  }
  .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-header-phone .mobile-toggle, 
  .custom-menu-primary.mobile, 
  #nav-panel-close, 
  .panel-overlay{
    display: none !important;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li:hover>a {
    background: transparent;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li:hover > a, 
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li.Services > ul > li > ul > li > ul>li:hover>a {
    background-color: transparent;
    color: #d50707;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > ul > li > ul > li:last-child > a {
    border: none;
  }
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li>a, 
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li>ul>li>a, 
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul>li>ul>li>ul>li>a{
    white-space: normal !important;
  }

  @keyframes menuFadeInLeft {

    0% {

      opacity: 0;

      transform: translateX(-30px);

    }

    100% {

      opacity: 1;

      transform: translateX(0);

    }

  }


  @-webkit-keyframes menuFadeInLeft {

    0% {

      opacity: 0;

      -webkit-transform: translateX(-30px);

    }

    100% {

      opacity: 1;

      -webkit-transform: translateX(0);

    }

  }

  @keyframes menuFadeInLeft {

    0% {

      opacity: 0;

      transform: translateX(-30px);

    }

    100% {

      opacity: 1;

      transform: translateX(0);

    }

  }


  .sidebar-toggle {
    display: none;
  }
  .fix .custom-menu-primary {
    padding: 0;
    padding-left: 30px;
  }
  .fix .custom-menu-primary .hs-menu-flow-horizontal > ul > li > a {
    padding-top: 24px;
    padding-bottom: 12px;
  }
  .fix .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul {
    margin-top: -14px !important;
  }
}


/* =============== Mobile Toggle Menu =============== */

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

@media (max-width: 991px){
  .custom-menu-primary.desktop{
    display: none !important;
  }
  /* Menu Reset */
  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
  }

  /* ===== Mobile Toggle Button ===== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /**************************************/
    top: 0px;           /* Position Button at right of screen */
    right: 10px;        /**************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: #ffffff; /* Background color */
    border: 1px solid #000;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #000; 
  }
  .mobile-trigger:hover{
    text-decoration: none; 
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
  }

  /* Toggle Button Icon */
  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #000; /* Icon color */
    display: inline-block;
  }
  .mobile-trigger i:before{ top: -6px; } /* Position top line */
  .mobile-trigger i:after{ top: 6px; } /* Position bottom line */
  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
    background-color: #fff; /* Icon color */
  }

  /* ===== Mobile Child Toggle Buttons ===== */

  .child-trigger{
    display: block !important;
    padding: 0 !important;
    width: 25px !important;
    height: 25px !important;
    cursor: pointer;
    text-align: center;
    font-family: "FontAwesome";
    line-height: 25px;
    vertical-align: top;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    border-radius: 3px;
    position: absolute;
    right: 5px;
    top: 7px;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger:before {
    content: "\f067";
  }
  .child-trigger.child-open:before {
    content: "\f068";
  }

  /* ===== Mobile Menu Styles ===== */  



  /* Hide menu on mobile */

  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
  }
  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    overflow: visible;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 0px; 
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    text-indent: 0px; /* Indent Child lists */
  }

  /* Level 4 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 0px; /* Indent Child lists */
  }
}


/* ==========================================================================
5. BLOG                                        
========================================================================== */
.date {
  float: left;
  margin-right: 10px;
  text-align: center;
  width: 40px;
}
.custom-blog-content {
  padding: 10px 25px;
  float: left;
  width: calc(100% - 50px);
}
.date .day {
  line-height: 22px;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  background: #f4f4f4;
  border-radius: 2px 2px 0 0;
  display: block;
  font-size: 16px;
  color: #d50707;
}
.date .month {
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07) inset;
  color: #fff;
  font-size: 0.9em;
  padding: 0 0 2px;
  display: block;
  background-color: #d50707;
}
.post-meta {
  float: right;
  width: calc(100% - 75px);
  font-size: 0.9em;
  line-height: 22px;
  color: #777777;
}
.meta-author {
  display: inline-block;
  padding-right: 8px;
}
.blog-post-title {
  background-color: #ffffff;
  padding: 0px 0 6px;
}
.blog-post-title .page-center {
  padding: 0 15px;
}
.blog-post-title h1 {
  position: relative;
  letter-spacing: -1px;
  display: inline-block;
  font-size: 2.2em;
  font-weight: 200;
  margin: 0;
  min-height: 37px;
  line-height: 46px;
  padding: 0 0 2px;
  color: #d50707;
  margin-bottom: -11px;
  padding-bottom: 12px;
  border-bottom: none;
  border-top: 5px solid #d50707;
  margin-top: -3px;
}
.custom-blog-post-content {
  background: #fff;
  padding: 75px;
}
.blog-post-wrapper h1 {
  font-size: 2em;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 5px;
}
.post-block.post-share {
  margin: 15px 0 0 0;
  padding: 20px 0 15px 0;
  float: left;
  width: 100%;
}
.post-block.post-share h3 {
  letter-spacing: normal;
  line-height: 32px;
  font-size: 1.8em;
  font-weight: 200;
  margin: 0 0 20px;
  margin-right: 15px;
  margin-top: 5px;
  text-transform: none;
  display: inline-block;
  color: #0088cc;
  margin-bottom: 33px;
}
.post-block.post-share h3 i {
  margin-right: 7px;
}
.post-block.post-share .share-links {
  vertical-align: middle;
  display: inline-block;
  margin-top: -5px;
}
.post-block.post-share .share-links a {
  font-size: 14px;
  color: #fff;
  text-indent: -9999em;
  text-align: center;
  width: 2.2857em;
  height: 2.2857em;
  display: inline-block;
  margin: 0.2857em 0.5714em 0.2857em 0;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.post-block.post-share .share-links .share-facebook {
  background: #3b5a9a;
}
.post-block.post-share .share-links .share-facebook:before {
  content: "\f09a";
}
.post-block.post-share .share-links a:before {
  font-family: "FontAwesome";
  text-indent: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 23px;
  height: 22px;
  margin: auto;
}
.post-block.post-share .share-links .share-linkedin {
  background: #0073b2;
}
.post-block.post-share .share-links .share-linkedin:before {
  content: "\f0e1";
}
.post-block.post-share .share-links .share-googleplus {
  background: #dd4b39;
}
.post-block.post-share .share-links .share-googleplus:before {
  content: "\f0d5";
}
.post-block.post-share .share-links .share-email {
  background: #dd4b39;
}
.post-block.post-share .share-links .share-email:before {
  content: "\f0e0";
}
.post-block.post-share .share-links .share-email:hover {
  color: #fff;
  background: #e47365;
}
.post-block.post-share .share-links .share-googleplus:hover {
  color: #fff;
  background: #e47365;
}
.post-block.post-share .share-links .share-linkedin:hover {
  color: #fff;
  background: #0094e5;
}
.post-block.post-share .share-links .share-twitter:hover {
  color: #fff;
  background: #45bbe9;
}
.post-block.post-share .share-links .share-facebook:hover {
  color: #fff;
  background: #4d71bb;
}
.post-block.post-share .share-links .share-twitter {
  background: #1aa9e1;
}
.custom-comment-form {
  background: #fff;
  margin: 0;
  padding: 20px 0 15px 0;
}
.custom-comment-form .page-center {
  padding: 0 15px;
}
.section.post-footer .hs-richtext h3 {
  color: #0088cc;
  font-size: 1.8em;
  font-weight: 200;
  margin: 0 0 20px;
  line-height: 32px;
  letter-spacing: normal;
}
.section.post-footer .hs-richtext p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 20px;
}
/* =============== General Blog Styles =============== */


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


/* Blog Post */
.hs-blog-post {
  background: #ecf2f4;
}


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


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


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

.blog .blog-content {
  width: 75% !important;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  float: left;
  padding-top: 35px;
  padding-bottom: 40px;
}

/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {
  margin-top: 60px;
  position: relative;
}


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

}


/* Blog Title */
.hs-blog-header {
  padding: 0 15px 6px;
}
.hs-blog-header h1 {
  letter-spacing: -1px;
  text-transform: none;
  position: relative;
  z-index: 2;
  font-weight: 200;
  margin: 0;
  min-height: 37px;
  line-height: 46px;
  padding: 0 0 2px;
  display: inline-block;
  font-size: 2.2em;
  color: #d50707;
  margin-bottom: -11px;
  padding-bottom: 12px;
  border-bottom: none;
  border-top: 5px solid #d50707;
  margin-top: -3px;
  text-transform: uppercase;
}

.hs-blog-header h1 a{}


/* Blog Post Title */
.post-header h2,.post-listing-simple {
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
  color: #1d2127;
}
.post-header h2 a,.post-listing-simple a {}

.post-header h2 a:hover,.post-listing-simple a:hover {
  text-decoration: none;
}


/* Blog Author and Avatar */
#hubspot-author_data {}

#hubspot-author_data:after {
  content: '';
  display: block;
  clear: both;
}

#hubspot-author_data a.author-link {}

#hubspot-author_data .hs-author-avatar {}

#hubspot-author_data .hs-author-avatar img {
  width: 50px;
  float: left;
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}



/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
  padding-bottom: 10px;
  float:left;
  width: 100%;
}
.blog-listing-wrapper .post-listing .post-item .post-body p {
  margin: 0;
}
.blog-listing-wrapper .post-listing .post-item .post-body {
  line-height: 24px;
  margin: 0 0 20px;
}

.blog-post-wrapper .post-body {
  line-height: 24px;
}



/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {
  position: relative;
  margin-bottom: 30px;
  border-radius: 4px;
}
.hs-blog-post .hs-featured-image-wrapper {
  margin-bottom: 0;
}
.hs-featured-image-wrapper img{
  border-radius: 4px;
}
.hs-featured-image-wrapper i {
  font-size: 14px;
  line-height: 28px;
}
.hs-featured-image-wrapper .hs-featured-image-link {
  border-radius: 100%;
  bottom: 8px;
  cursor: pointer;
  color: #fff;
  display: block;
  height: 30px;
  padding: 0;
  position: absolute;
  right: 8px;
  text-align: center;
  width: 30px;
  opacity: 0;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  z-index: 1000;
  background-color: #0088cc;
}
.hs-featured-image-wrapper:hover .hs-featured-image-link {
  opacity: 1;
}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;
  max-width: 100%;
  height: auto;
  width: 100%;
  float: none;
  margin: 0;
  object-fit: cover;
}

.hs-featured-image {
  float: none;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

/* Read More Link */
a.more-link {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  float: right;
  margin: 0;
  border-radius: 3px;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  border-color: #d50707 #d50707 #bf0303;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #d50707;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  top: 20px;
}
a.more-link:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #8e0c0c;
  border-color: #8e0c0c #8e0c0c #8e0c0c;
}
/* Blog Topics List */
#hubspot-topic_data {
    margin: 40px;
    
}

#hubspot-topic_data a.topic-link {
  background: #182027 none repeat scroll 0 0;
  border-radius: 20px;
  padding: 5px 25px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family:"Open Sans";
  font-size:12.6px;
  line-height:22px;
  font-weight:400;
  margin-bottom: 10px;
}

/* Blog Social Sharing Icons */
.hs-blog-social-share {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 0 0 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  height: auto;
}


/* Blog Commments */
#comments-listing {
}
div#comments-listing:empty {
  margin: 0px;
  border: none;
}
#comments-listing.no-comments {
  border: none;
}

.comment {
  margin: 10px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
}

.comment.depth-0 {
  border-bottom: 1px solid #000 !important;
  border-top: medium none !important;
  margin: 0 10px 10px !important;
  padding: 0 15px !important;
}

.comment.depth-0:last-child {
  border-bottom: none !important;
}

.comment-body {
  border-bottom: medium none;
  padding: 0;
}

.comment-from h4 a {
  text-decoration: none;
}

.comment-reply-to{
  margin-bottom: 15px;
}

.comment-from h4 {
  margin: 0;
  padding-top: 15px;
}

.comment-date {
  color:  !important;
  display: block !important;
  font-size: 13px;
  text-align: right;
}

.comment-from { font-weight: bold; }

.comment-body { padding: 10px 0; }

.custom_listing_comments{
  border: 1px solid #E2E2E2;
  display: block;
  line-height: 165%;
  padding: 15px;
  line-height:26.4px;
}

.comment-from, .comment-date {
  display: block !important;
  text-align: left !important;
}
#comments-listing:not([data-has-comments="true"]) {
  display: none;
}

.hs-author-social-section, #hubspot-author_data .hs-author-avatar {
  margin-top: 10px;
}
/* Pagination */
.blog-pagination {
  clear: both;
}

.blog-pagination a {
  display: inline-block;
  padding-right: 10px;
}

.blog-pagination a.previous-posts-link {}

.blog-pagination a.all-posts-link {}

.blog-pagination a.next-posts-link {}

/* Blog All Posts Page */
.hs-content-path-blog-all {}
div.post-listing-simple {}
div.post-listing-simple .post-item {}
h2.post-listing-simple {}
h2.post-listing-simple a {}


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

.blog .blog-sidebar {
  padding-left: 9px;
  padding-right: 15px;
  float: left;
  width: 25% !important;
  position: relative;
  padding-top: 35px;
  padding-bottom: 40px;
  margin: 0 !important;
  position: sticky;
  top: 54px;
}

/* Blog Modules */
.blog .blog-sidebar .widget-span {
}
.blog .blog-sidebar h1,
.blog .blog-sidebar h2,
.blog .blog-sidebar h3,
.blog .blog-sidebar h4,
.blog .blog-sidebar h5,
.blog .blog-sidebar h6,
.blog .blog-sidebar .from-title{
  margin: 0 0 33px 0;
  margin-bottom: 15px;
  font-size: 1.1429em;
  margin-top: 0;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 700;
  color: #313131;
  text-transform: uppercase;
  text-decoration: none;
}

.blog .blog-sidebar ul {
  list-style: none;
  padding: 0;
  font-size: 0.9286em;
  border-bottom: 1px solid #ededed;
  margin-top: -8px;
  margin-bottom: 0;
}

.blog .blog-sidebar ul li{
  line-height: 1.4;
  border-top: 1px solid #ededed;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin: 0;
  padding: 8px 0 8px 15px;
  color: #666666;
}
.blog .blog-sidebar ul li:first-child {
  border-top: 0px solid #ededed;
}
.blog .blog-sidebar ul li:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #333;
  margin-left: -11px;
  margin-right: 1px;
}
.blog .blog-sidebar ul li a{
  color: #666666;
  line-height: 1.4;
  font-size: 0.9286em;
}

.blog .blog-sidebar ul li a:hover {
  color: #0088cc;
  text-decoration: none;
}
.filter-link-count {
  display: none;
}
.custom-tags, 
.custom-recent-posts, 
.custom-sidebar-form{
  margin-bottom: 30px;
}

/* =============== Blog Author Page and Author Bio =============== */

.hs-blog-listing .hs-author-profile {
  border-bottom: 1px solid #ccc;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}

.hs-blog-post .hs-author-profile {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
}

.hs-author-profile .hs-author-profile:after {
  content: '';
  display: block;
  clear: both;
}

/* Author Avatar */
.hs-author-profile .hs-author-avatar {
  float: left;
  margin-right: 15px;
  max-width: 100px;
}

.hs-author-profile .hs-author-avatar img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 100%;
}

/* Author Bio Wrapper*/
.hs-author-profile .hs-author-bio {
  overflow: hidden;
}

/* Author Name */
.hs-author-profile h2.hs-author-name {
  margin: 0 0 10px 0;
}


/* Author Social Follow Me */
.hs-author-profile .hs-author-social-section {}
.hs-author-profile .hs-author-social-label {}
.hs-author-profile .hs-author-social-links {}
.hs-author-profile .hs-author-social-link {}
.hs-author-profile .hs-social-facebook {}
.hs-author-profile .hs-social-linkedin {}
.hs-author-profile .hs-social-twitter {}
.hs-author-profile .hs-social-google-plus {}
/* .rec-hs-featured-image-wrapper {
max-width: 50px;
border-radius: 4px;
float: left;
margin-right: 15px;
}
.rec-hs-featured-image-wrapper img {
border-radius: 4px;
}
.recent_posts-inner {
width: 100% !important;
float: left;
padding: 0 0 15px 0;
border-bottom: 1px solid #ececec;
margin-bottom: 15px;
}
.recent-link {
display: block;
font-size: 14px;
line-height: 22px;
}
.rec-post-date {
line-height: 22px;
font-size: 0.9286em;
color: #888888;
}
.recent_posts .recent_posts-inner:last-child {
border: none;
} */
.slick-arrow {
  display: none !important;
}
.rec-hs-featured-image-wrapper {
  width: 50px;
  float: left;
  margin-right: 15px;
}
.recent_posts-inner {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  border-top: 1px solid #ececec;
  padding: 15px 0;
}
.recent_posts-inner:first-child {
  padding-top: 0;
  border: none;
}
.recent_posts-inner .recent-link {
  display: block;
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 22px;
}
.recent_posts-inner .rec-post-date {
  font-family: "Open Sans";
  font-size: 13.0004px;
  line-height: 22px;
  font-weight: 400;
  color: #888888;
}
.blog .blog-sidebar ul.slick-dots, 
.related-posts ul.slick-dots{
  border: none;
  margin: 0;
  text-align: center;
}
.blog .blog-sidebar ul.slick-dots li, 
.related-posts ul.slick-dots li{
  padding: 0;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.blog .blog-sidebar ul.slick-dots li:before, 
.related-posts ul.slick-dots li:before{
  display: none;
}
.blog .blog-sidebar ul.slick-dots li button, 
.related-posts ul.slick-dots li button{
  width: 10px !important;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid rgb(25, 40, 48);
  opacity: 0.5;
  text-indent: -111111px;
  display: block;
  padding: 0;
  cursor: pointer;
}
.blog .blog-sidebar ul.slick-dots li button:focus, 
.related-posts ul.slick-dots li button:focus{
  outline: none;
}
.blog .blog-sidebar ul.slick-dots li:hover button, 
.related-posts ul.slick-dots li:hover button{
  background-color: rgb(15, 19, 23);
}
.blog .blog-sidebar ul.slick-dots li.slick-active button, 
.related-posts ul.slick-dots li.slick-active button{
  background-color: rgb(15, 19, 23);
  opacity: 1;
}

hr.tall {
  margin: 44px 0;
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15), transparent);
  border: 0;
  height: 1px;
  box-sizing: content-box;
}
.related-posts-inner h4.sub-title {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #1d2127;
  text-transform: uppercase;
}
.related-posts .page-center {
  padding: 0 15px;
}
.related-post-item {
  width: 33.33%;
  float: left;
  margin: 0 15px;
}
.related-post-date {
  text-align: center;
  width: 40px;
  margin: 3px 10px 8px 0;
  float: left;
}
.related-post-date .day {
  font-weight: bold;
  padding: 10px 0;
  background: #f4f4f4;
  border-radius: 2px 2px 0 0;
  display: block;
  font-size: 16px;
  color: #d50707;
}
.related-post-date .month {
  border-radius: 0 0 2px 2px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07) inset;
  color: #fff;
  font-size: 0.9em;
  padding: 0 0 2px;
  display: block;
  background-color: #d50707;
}
.related-post-item .hs-featured-image-wrapper {
  margin-bottom: 20px;
  overflow: hidden;
}
.related-post-item .hs-featured-image-wrapper img{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.related-post-item .hs-featured-image-wrapper:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.related-title a {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}
.related-posts {
  margin-bottom: 20px;
}
/* ==========================================================================
6. FORMS                                        
========================================================================== */


/* =============== Global Form Styles =============== */

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

.body-container h3.form-title {}

/* Form Field */
.hs-form-field, .widget-type-google_search .hs-button.primary, 
.custom_error_message input.hs-button.primary.large {}

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

/* Labels and Legends */
.body-container label {
  font-family: Montserrat,sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #4b4746;
  display: block;
}

.hs-form-field > label {}
input[type="text"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"],
nput[type="file"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
/* One Line Inputs */
.body-container input[type="text"],
.body-container input[type="password"], 
.body-container input[type="datetime"], 
.body-container input[type="datetime-local"], 
.body-container input[type="date"], 
.body-container input[type="month"], 
.body-container input[type="time"], 
.body-container input[type="week"], 
.body-container input[type="number"], 
.body-container input[type="email"], 
.body-container input[type="url"], 
.body-container input[type="search"], 
.body-container input[type="tel"], 
.body-container input[type="color"],
.body-container input[type="file"],
.body-container textarea,
.body-container select {
  width: 100%;
  max-width: 500px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 0;
  display: block;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  background-color: #f5f8fa;
  border: 1px solid #cbd6e2;
}


.body-container input[type="text"]:focus,
.body-container input[type="password"]:focus, 
.body-container input[type="datetime"]:focus, 
.body-container input[type="datetime-local"]:focus, 
.body-container input[type="date"]:focus, 
.body-container input[type="month"]:focus, 
.body-container input[type="time"]:focus, 
.body-container input[type="week"]:focus, 
.body-container input[type="number"]:focus, 
.body-container input[type="email"]:focus, 
.body-container input[type="url"]:focus, 
.body-container input[type="search"]:focus, 
.body-container input[type="tel"]:focus, 
.body-container input[type="color"]:focus,
.body-container input[type="file"]:focus,
.body-container textarea:focus,
.body-container select:focus {
  outline: none;
  border-color: rgba(82,168,236,0.8);
}

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

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

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  padding: 0;
}
ul.hs-error-msgs.inputs-list label {

}
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}

/* Required */
input:focus:required:invalid, 
textarea:focus:required:invalid, 
select:focus:required:invalid {}

input:focus:required:invalid:focus, 
textarea:focus:required:invalid:focus, 
select:focus:required:invalid:focus {}

/* Error */
.hs-error-msgs label{    
  color: #f2545b;
  white-space: normal;
  font-weight: normal;
  line-height: 18px;
  font-family: Montserrat,sans-serif;
  font-size: 13px;
  display: block;
  margin-top: -18px;
  padding-bottom: 18px;
}

.hs-input.invalid.error {
  border-color: #c87872;
}
.hs-input.invalid.error:focus {
  border-color: #b9554d;
}
/* Placeholder Text */
::-webkit-input-placeholder {} /* Webkit Browsers */
:-moz-placeholder {} /* Firefox 18- */
::-moz-placeholder {} /* Firefox 19+ */
:-ms-input-placeholder {} /* IE10 */


/* Placeholder Text */
.custom-header-search .searchform-popup input::-webkit-input-placeholder {
  opacity: 0.7 !important;
  color: #555555;
} /* Webkit Browsers */
.custom-header-search .searchform-popup input:-moz-placeholder {
  opacity: 0.7 !important;
  color: #555555;
} /* Firefox 18- */
.custom-header-search .searchform-popup input::-moz-placeholder {
  opacity: 0.7 !important;
  color: #555555;
} /* Firefox 19+ */
.custom-header-search .searchform-popup input:-ms-input-placeholder {
  opacity: 0.7 !important;
  color: #555555;
} /* IE10 */
/* =============== Multi Column Form =============== */

.hs-form fieldset.form-columns-1 {}
.hs-form fieldset.form-columns-1 .hs-form-field {}
.hs-form fieldset.form-columns-2 {}
.hs-form fieldset.form-columns-2 .hs-form-field {}
.hs-form fieldset.form-columns-3 {}
.hs-form fieldset.form-columns-3 .hs-form-field {}

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

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


/* =============== 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"] {}


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

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


/* ==========================================================================
7. BUTTONS                                        
========================================================================== */


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

/* All Global Buttons (Excluding CTAs)
========================================================================== */
.body-container .hs-button.primary,
.body-container input[type="submit"],
.body-container input[type="button"] {
  cursor: pointer;
  text-decoration: none !important;
  white-space: normal;
  padding: 12px 24px;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  font-weight: 700;
  line-height: 12px;
  position: relative;
  text-align: center;
  border-radius: 0;
  background: #ff7a59;
  border-color: #ff7a59;
  color: #ffffff;
  font-size: 12px;
  font-family: Montserrat,sans-serif;
}

.body-container .hs-button.primary:hover,
.body-container input[type="submit"]:hover,
.body-container input[type="button"]:hover {

}

.body-container .hs-button.primary:focus,
.body-container input[type="submit"]:focus,
.body-container input[type="button"]:focus {
  outline: none;
}


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


/* ==========================================================================
8. MISCELLANEOUS                                      
========================================================================== */
.hs-blog-social-share ul{
  padding: 0!important;
  margin:0 !important;
  background:none !important;
  list-style:none !important;
}

form ul{
  padding: 0!important;
  margin:0 !important;
  background:none !important;
  list-style:none !important;
}

.subscribe-options label span {}

.landing-page.one-column .body-container .widget-type-form,
.error-template.one-column .body-container .widget-type-google_search, 
.body-container .widget-type-password_prompt.custom_error_message, 
.body-container .widget-type-email_simple_subscription, 
.error-template .body-container-wrapper form, 
.password-template .body-container-wrapper form, 
.custom-search-page .body-container-wrapper form {
  width: 50%;
}

.body-container-wrapper .main-content,
.body-container-wrapper .sidebar{
  margin-bottom:30px;
}

.sample-contact-from {
  margin-top: 0px;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin-top: 10px;
  margin-bottom: 20px;
}


input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-results-button, 
input[type="search"]::-webkit-search-results-decoration 
{ 
  display: none; 
}
.subscribe-options label span {
  font-weight: 400 !important;
}
.subscribe-options label {
  padding-right: 20px;
  display: inline-block;
  margin: 0;
}
.blog .body-container label {
  font-weight: normal;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 22px;
  color: #777777;
}
.blog .body-container .hs-form-required {
  color: #777777;
}
.blog .body-container input[type="email"] {
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
  text-align: left;
  background: #fff;
  color: #777;
  line-height: 1.42857;
  padding: 6px 8px;
  font-size: 14px;
  vertical-align: middle;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  font-family: "Open Sans",sans-serif;
  font-weight: 400;
  max-width: 174px;
}
.blog .body-container .hs-button.primary {
  margin-top: 15px;
  border: 1px solid #ccc;
  color: #fff;
  padding: 6px 10px;
  border-radius: 3px;
  line-height: 1.42857;
  background: #d50707;
  border-color: #d50707;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  font-size: 14px;
  font-family: "Open Sans",sans-serif;
}
.blog .body-container .hs-button.primary:hover {
  background: #0077b3;
  border-color: #0077b3;
}

.hs-blog-post .widget-type-blog_comments input.hs-button.primary {
  margin-bottom: 30px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #ccc;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  border-color: #bf0303;
  background: transparent none repeat scroll 0 0;
  border-radius: 25px;
  border-width: 2px;
  color: #182027;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.33;
  padding: 11px 21px;
  text-shadow: none;
  text-transform: uppercase;
}
.hs-blog-post .widget-type-blog_comments input.hs-button.primary:hover {
  border-color: #0077b3;
  background-color: #0077b3;
  color: #fff;
}

.hs-blog-post .widget-type-blog_comments input[type="text"], 
.hs-blog-post .widget-type-blog_comments input[type="email"], 
.hs-blog-post .widget-type-blog_comments textarea {
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 3px;
  outline: none;
  text-align: left;
  background: #fff;
  color: #777;
  line-height: 1.42857;
  padding: 6px 8px;
  font-size: 14px;
  vertical-align: middle;
  border: 1px solid #dde4e6;
  box-shadow: 0 1px 1px rgba(0,0,0,0.075) inset;
  font-family:"Open Sans";
  font-size:14px;
  font-weight:400;
  letter-spacing:normal;
  line-height:20px;
  margin-bottom: 18px;
}


.blog.hs-blog-post .body-container .hs-error-msgs label{    
  color: #f2545b;
  white-space: normal;
  font-weight: normal;
  line-height: 18px;
  font-family: Montserrat,sans-serif;
  font-size: 13px;
  display: block;
  margin-top: -18px;
  padding-bottom: 18px;
}
/* Styles that do not fit into any of the available sections above can go here. */


/* ==========================================================================
9. MEDIA QUERIES                              
========================================================================== */


/* =============== Screen sizes smaller than .page-center =============== */
@media (max-width: 1169px) and (min-width: 992px) {
  .custom-menu-primary .hs-menu-flow-horizontal>ul>li.Services>ul {
    min-width: 885px !important;
    margin-top: -4px !important;
    max-width: 930px !important;
  }
}
@media (max-width: 1169px) {
  .custom-logo {
    padding-bottom: 4px;
    padding-top: 3px;
  }
  .fix .custom-logo {
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .custom-logo > div {
    max-width: 170px;
  }
  .custom-menu-primary {
    padding: 0;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li > a {
    padding-left: 9px;
    padding-right: 9px;
  }
  .container-fluid .row-fluid .page-center {
    max-width: 960px;
  }
  .custom-header-phone {
    width: 55% !important;
  }
  .custom-header-search{
    width: 45% !important;
  }
  .header-container-wrapper {
    min-height: 132px;
  }
  .custom-landing .header-container-wrapper {
    min-height: 92px;
  }
}


@media (max-width: 991px) {
  .container-fluid .row-fluid .page-center {
    max-width: 720px;
  }
  .header-container-wrapper {
    min-height: 125px;
  }
  .custom-landing .header-container-wrapper {
    min-height: 84px;
  }
  .custom-header-search .share-links{
    display: none;
  }
  .custom-header-phone .mobile-toggle {
    vertical-align: middle;
    cursor: pointer;
    width: 40px;
    height: 34px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: #999999;
    font-size: 14.1424px;
    position: relative;
    top: 0px;
    left: -1px;
  }
  .custom-header-search .searchform-popup a.search-toggle {
    display: block;
    font-size: 14.1424px;
    float: right;
    position: relative;
    top: 0px;
  }
  .custom-header-search .searchform-popup form.searchform {
    display: inline-block;
    margin-left: 0;
    min-width: 223px;
  }
  .custom-header-search .searchform-popup form.searchform {
    margin-left: 0;
    display: none;
  }
  .custom-header-search  .searchform-popup.form-open form.searchform {
    display: block;
  }
  .custom-top-header, 
  .custom-header > div:first-child{
    min-height: 41px;
  }
  .custom-logo > div {
    max-width: 110px;
  }
  .custom-logo {
    padding-bottom: 0;
    padding-top: 4px;
  }
  .panel-overlay {
    opacity: 0;
  }
  .panel-left {
    display: none;
  }
  .mobile-open .panel-overlay {
    background: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 8999;
    min-height: 100vh;
    opacity: 0.35;
    -webkit-transition: opacity 0.2s ease-in-out 0s;
    -moz-transition: opacity 0.2s ease-in-out 0s;
    transition: opacity 0.2s ease-in-out 0s;
  }
  #nav-panel-close {
    text-align: center;
    text-decoration: none;
    top: 85px;
    width: 40px;
    z-index: 9000;
    display: block;
    font-size: 17px;
    height: 40px;
    line-height: 38px;
    position: fixed;
    background-color: #1d2127;
    left: 260px;
    right: auto;
    margin-left: -40px;
    margin-right: auto;
    -webkit-transform: translate(-260px);
    -moz-transform: translate(-260px);
    -ms-transform: translate(-260px);
    -o-transform: translate(-260px);
    transform: translate(-260px);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    color: #fff;
  }
  .mobile-open #nav-panel-close {
    margin-left: 0;
    -webkit-transition: transform 0.3s ease-in-out 0s, margin ease-in-out 0s;
    -moz-transition: transform 0.3s ease-in-out 0s, margin ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, margin ease-in-out 0s;
    z-index: 9000;
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -ms-transform: translate(0px);
    -o-transform: translate(0px);
    transform: translate(0px);
    margin-left: 0;
    margin-right: auto;
  }
  .custom-menu-primary.mobile {
    z-index: 9001;
    -webkit-transition: transform 0.2s ease-in-out 0s;
    -moz-transition: transform 0.2s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s;
    font-size: 0.9em;
    position: fixed;
    height: 100%;
    width: 260px !important;
    top: 0;
    background-color: #1d2127;
    color: #ffffff;
    left: 0;
    right: auto;
    -webkit-transform: translate(-300px);
    -moz-transform: translate(-300px);
    -ms-transform: translate(-300px);
    -o-transform: translate(-300px);
    transform: translate(-300px);
    margin: 0 !important;
  }
  .mobile-open .custom-menu-primary.mobile {
    -webkit-transition: transform 0.3s ease-in-out 0s;
    -moz-transition: transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s;
    z-index: 9001;
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -ms-transform: translate(0px);
    -o-transform: translate(0px);
    transform: translate(0px);
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    margin: 14px 0;
    padding: 0 10px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul>li {
    float: left !important;
  }
  .custom-menu-primary .hs-menu-wrapper ul li:hover > a, 
  .custom-menu-primary .hs-menu-wrapper > ul>li.active{
    background-color: #282d36;
    color: #ffffff;
  }
  .custom-menu-primary .hs-menu-wrapper > ul>li>a {
    letter-spacing: normal;
    margin: 1px 0 0;
    padding: 5px 6px;
    line-height: 25px;
    font-weight: 400;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    position: relative;
    display: block;
    outline: medium none;
    text-decoration: none;
    text-align: left;
    padding-right: 33px;
    color: #fff;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul {
    padding: 0 0 0 10px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li {
    line-height: 24px;
    float: left;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a {
    text-decoration: none;
    text-align: left;
    margin: 1px 0 0;
    padding: 5px 6px;
    line-height: 25px;
    font-weight: 400;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    position: relative;
    display: block;
    padding-right: 33px;
    color: #ffffff;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul {
    padding: 0 0 0 10px;
  }
  .custom-menu-primary .share-links {
    vertical-align: middle;
    font-size: 1em;
    margin: 15px 0;
    padding: 0 5px;
    text-align: center;
    color: #fff;
  }
  .custom-menu-primary .share-links a {
    font-size: 14px;
    color: #fff;
    text-indent: -9999em;
    text-align: center;
    width: 2.2857em !important;
    height: 2.2857em;
    display: inline-block;
    margin: 0.2857em 0.5714em 0.2857em 0;
    border-radius: 4px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .share-links .share-facebook {
    background: #3b5a9a;
  }
  .share-links .share-facebook:before {
    content: "\f09a";
  }
  .share-links a:before {
    font-family: "FontAwesome";
    text-indent: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: 23px;
    height: 22px;
    margin: auto;
  }
  .share-links .share-twitter {
    background: #1aa9e1;
  }
  .share-links .share-twitter:before {
    content: "\f099";
  }
  .share-links .share-linkedin {
    background: #0073b2;
  }
  .share-links .share-linkedin:before {
    content: "\f0e1";
  }
  .share-links .share-facebook:hover {
    color: #fff;
    background: #4d71bb;
  }
  .share-links .share-twitter:hover {
    color: #fff;
    background: #45bbe9;
  }
  .share-links .share-linkedin:hover {
    color: #fff;
    background: #0094e5;
  }
  .blog .blog-content {
    width: 100% !important;
  }
  .sidebar-toggle {
    display: none;
    cursor: pointer;
    background: #fff;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 40px;
    margin: auto;
    font-size: 17px;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    border-radius: 0 6px 6px 0;
    border: 1px solid #ccc;
    border-left-width: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    display: block;
    color: #777777;
  }
  .sidebar-toggle:hover {
    color: #0088cc;
  }
  .sb-open .sidebar-overlay {
    background: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 8999;
    min-height: 100vh;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out 0s;
    -moz-transition: opacity 0.2s ease-in-out 0s;
    transition: opacity 0.2s ease-in-out 0s;
  }
  .blog .blog-sidebar {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 260px !important;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9000;
    -webkit-transform: translate(-260px);
    -moz-transform: translate(-260px);
    -ms-transform: translate(-260px);
    -o-transform: translate(-260px);
    transform: translate(-260px);
    -webkit-transition: transform 0.2s ease-in-out 0s;
    -moz-transition: transform 0.2s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s;
    padding-top: 15px;
  }
  .sidebar-toggle i:before {
    content: "\f054";
  }
  .blog.sb-open .blog-sidebar {
    z-index: 9000;
    -webkit-transition: transform 0.3s ease-in-out 0s;
    -moz-transition: transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -ms-transform: translate(0px);
    -o-transform: translate(0px);
    transform: translate(0px);
  }
  .blog.sb-open .sidebar-toggle i:before {
    content: "\f00d";
  }
  .blog.sb-open .sidebar-overlay {
    opacity: 0.35;
  }
  .custom-header-phone .header-contact {
    padding-top: 2px;
    position: relative;
    top: 3px;
  }
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    white-space: normal;
  }
  .custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid {
    display: block;
  }
  .custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid > div {
    width: 100%;
    display: block;
  }
  .widget-span.custom-footer-copyright {
    padding: 10px 0 10px 0px;
    text-align: left;
    width: 100%;
  }
  .widget-span.custom-footer-logo-copyright-link p {
    margin-top: 0;
    position: relative;
    top: 0;
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .custom-footer-link-wrapper > .row-fluid-wrapper > .row-fluid > div {
    width: 100%;
    margin-left: 0;
  }
  .share-links.default-skin {
    margin-bottom: 23px;
  }
  .widget-span.custom-footer-link.outbound-marketing {
    margin-bottom: 30px;
  }
  .widget-span.custom-footer-link.inbound-marketing {
    margin-bottom: 25px;
  }
  .custom-header-search .searchform-popup form.searchform {
    line-height: 40px;
    font-size: 13px;
    top: 45px;
    position: absolute;
    left: auto;
    right: -22px;
    z-index: 9;
    width: 298px;
  }
  .custom-header-search .searchform-popup form.searchform:before {
    content: "";
    position: absolute;
    top: -23px;
    width: 22px;
    height: 22px;
    border: 11px solid transparent;
    border-bottom-color: rgb(153, 153, 153);
    display: block;
    left: auto;
    right: 27px;
  }
  .custom-header-search .searchform-popup input[type="text"] {
    width: 242px;
    height: 40px;
    border-right: 1px solid #ccc;
    padding-left: 20px;
  }
  .custom-header-search .searchform-popup button.btn.btn-special {
    padding: 0px 20px 0 13px;
    border-radius: 0 20px 20px 0;
    text-shadow: none;
    color: #555555;
    height: 41px;
  }
  .custom-header-search .searchform-popup form.searchform {
    right: 0;
    width: 276px;
  }
  .custom-header-search .searchform-popup button.btn.btn-special {
    padding: 0px 8px 0 13px;
  }
  .custom-header-search .searchform-popup form.searchform:before {
    right: 5px;
  }
  .custom-blog-sidebar {
    height: 100vh;
    overflow: auto;
  }
}


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

@media (max-width: 767px) {
  .landing-page.one-column .body-container .widget-type-form,
  .error-template.one-column .body-container .widget-type-google_search, 
  .body-container .widget-type-password_prompt.custom_error_message, 
  .body-container .widget-type-email_simple_subscription, 
  .error-template .body-container-wrapper form, 
  .password-template .body-container-wrapper form, 
  .custom-search-page .body-container-wrapper form {
    width: 100%;
  }  
  .container-fluid .row-fluid .page-center {
    max-width: 100%;
  }
  .hs-author-profile .hs-author-avatar {
    float: none;
    margin-right: 15px;
    max-width: 100px;
    margin: 30px auto;
  }
  .custom-header-phone .header-contact {
    display: none;
  }
  .hs-author-profile h2.hs-author-name {
    margin: 0 0 10px 0;
    text-align: center;
  }

  .custom_error_message #hs-pwd-widget-password {
    width: 100% !important;
  }

  .custom_error_message {
    width: 100% !important;
  }
  .header-container-wrapper {
  }
  .body-container input[type="text"],
  .body-container input[type="password"], 
  .body-container input[type="datetime"], 
  .body-container input[type="datetime-local"], 
  .body-container input[type="date"], 
  .body-container input[type="month"], 
  .body-container input[type="time"], 
  .body-container input[type="week"], 
  .body-container input[type="number"], 
  .body-container input[type="email"], 
  .body-container input[type="url"], 
  .body-container input[type="search"], 
  .body-container input[type="tel"], 
  .body-container input[type="color"],
  .body-container input[type="file"],
  .body-container textarea,
  .body-container select {
    max-width: 100%;
  }
  .blog-post-wrapper .post-body p img{
    width: 100% !important;
    max-width: 100% !important;
  }
  .custom-header-phone {
    width: 55px !important;
    max-width: 100%;
  }
  .custom-header-search {
    width: calc(100% - 55px) !important;
  }
  .custom-footer-link-wrapper > .row-fluid-wrapper > .row-fluid > div {
    width: 100%;
  }
  .custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid {
    display: block;
  }
  .custom-footer-bottom-section .page-center > .row-fluid-wrapper > .row-fluid > div {
    display: block;
  }
  .widget-span.custom-footer-copyright {
    text-align: left;
    padding: 10px 0;
  }
  .widget-span.custom-footer-logo-copyright-link p {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .widget-span.custom-footer-logo-copyright-link {
    padding: 10px 0;
    width: 100%;
    text-align: left;
  }
  .widget-span.custom-footer-logo-copyright-link aside {
    display: block;
    margin-top: 5px;
    margin-right: 0;
  }
  .share-links.default-skin {
    margin: 30px 0px 19px;
    font-size: 0;
  }
  .widget-span.custom-footer-link.inbound-marketing, 
  .widget-span.custom-footer-link.outbound-marketing {
    margin-bottom: 30px;
  }
  .widget-span.custom-footer-link-section .custom-footer-link.last {
    margin-bottom: 30px;
  }
  .custom-header-phone .mobile-toggle {
    left: 0;
  }
  .custom-top-header, .custom-header > div:first-child {
    min-height: 40px;
  }
  .custom-logo {
    padding-top: 6px;
  }
  .share-links.default-skin a {
    margin-right: 2px;
  }
  .hs-blog-header h1, 
  .blog-post-title h1, 
  .simple-banner h1{
    font-size: 28px;
    line-height: 46px;
  }
  .header-container-wrapper {
    min-height: 120px;
  }
  .custom-footer-link.inbound-marketing .hs-menu-wrapper > ul {
    padding-bottom: 0;
  }
  .custom-header-search .searchform-popup form.searchform {
    width: 316px;
  }
  .custom-header-search .searchform-popup input[type="text"] {
    width: 282px;
  }
}  


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

@media (max-width: 479px) {
  .subscription-template .subscribe-options {
    padding-right: 20px;
  }
  .hs-blog-header h1, 
  .blog-post-title h1, 
  .simple-banner h1{
    font-size: 26px;
    line-height: 37px;
  }
  .subscription-template .checkbox-row span.fakelabel span {
    margin-left: 17px;
    font-size: 13px;
  }
  #submitbutton {
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .subscribe-options {
    overflow: visible;
  }
  .custom-header-phone .mobile-toggle {
    top: -4px;
    left: 0;
    font-size: 13.1323px;
  }
  .custom-logo {
    padding-top: 13px;
    width: 100% !important;
    text-align: center;
    padding-bottom: 14px;
  }
  .custom-logo a {
    display: block;
    max-width: 100%;
  }
  .custom-logo > div {
    max-width: 110px;
    margin: 0 auto;
  }
  .header-container-wrapper {
    min-height: 141px;
  }
  .custom-landing .header-container-wrapper {
    min-height: 102px;
  }
  .blog .blog-sidebar h1, .blog .blog-sidebar h2, .blog .blog-sidebar h3, .blog .blog-sidebar h4, .blog .blog-sidebar h5, .blog .blog-sidebar h6, .blog .blog-sidebar .from-title {
    line-height: 1.4;
    font-size: 14.8577px;
    margin-bottom: 13px;
  }
  .blog .blog-sidebar {
    padding-left: 15px;
  }
  .recent_posts-inner .recent-link {
    font-size: 13px;
    line-height: 20px;
  }
  .recent_posts-inner .rec-post-date {
    font-size: 12.0718px;
    line-height: 20px;
  }
  .blog-listing-wrapper .post-listing .post-item .post-body {
    font-size: 13px;
  }
  .post-meta {
    line-height: 20px;
    font-size: 11.7px;
    width: calc(100% - 50px);
  }
  .blog-post-wrapper .post-body {
    font-size: 13px;
  }
  .hubspot-topic_data {
    font-size: 11.7px;
    line-height: 20px;
  }
  .custom-blog-post-content {
    padding: 75px 30px;
  }
  .post-block.post-share h3 {
    font-size: 23.4px;
    line-height: 29.09px;
  }
  .section.post-footer .hs-richtext h3 {
    font-size: 23.4px;
    line-height: 29.09px;
  }
  .section.post-footer .hs-richtext p {
    font-size: 13px;
  }
  .related-posts-inner h4.sub-title, 
  .related-title a{
    font-size: 18.5714px;
    line-height: 24.5455px;
  }
  .related-post-body, 
  .related-more-link{
    font-size: 13px;
    line-height: 24px;
  }
  #hubspot-topic_data a.topic-link {
    font-size: 11.7px;
    line-height: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul>li>a, 
  .child-trigger, 
  .custom-menu-primary .hs-menu-wrapper > ul ul li a, 
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    font-size: 11.7px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    margin: 14px 0;
  }
  .child-trigger {
    top: 7px;
  }
  body {
    font-size: 13px;
    line-height: 20px;
  }
  h1 {
    font-size: 26px;
    line-height: 37px;
  }
  h2 {
    font-size: 24px;
    line-height: 37px;
  }
  h3 {
    font-size: 23px;
    line-height: 30px;
  }
  h4 {
    font-size: 21px;
  }
  .custom-header-search .searchform-popup form.searchform:before {
    right: 12px;
    width: 14px;
    border-width: 7px;
    top: -29px;
    border-color: transparent;
    border-bottom-color: rgb(153, 153, 153);
    left: 14px;
  }
  .custom-header-search .searchform-popup form.searchform {
    width: calc(100% + 10px);
    right: auto;
    left: -5px;
    top: 44px;
  }
  .custom-header-search .searchform-popup button.btn.btn-special, 
  .custom-header-search .searchform-popup input[type="text"]{
    height: 30px;
  }
  .custom-header-search .searchform-popup {
    display: block;
  }
  .custom-header-search .searchform-popup .button-wrap {
    width: 40px;
  }
  .custom-header-search .searchform-popup .text {
    width: calc(100% - 54px);
  }
  .custom-header-search .searchform-popup input[type="text"] {
    width: 100%;
    padding-left: 0;
  }
  .custom-blog-content {
    padding-left: 0;
  }
  .custom-header-phone {
    width: 40px !important;
  }
  .custom-header-search .searchform-popup a.search-toggle {
    top: -4px;
    font-size: 13.1323px;
    float: left;
  }
}



@media (max-width: 350px) {

  .hs-blog-post .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    width: 300px!important;
    overflow: scroll !important;
    max-width: 100% !important;
  }
}