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

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

/****************************************/
/* HubSpot Style Boilerplate            */
/****************************************/

/* These includes are optional, but helpful. */
$(function() {

  /** 
     * Mobile Nav
     *
     * Hubspot Standard Toggle Menu
     */

  $('.custom-menu-primary').addClass('js-enabled');

  /* Mobile button with three lines icon */
  $('.custom-mobile-menu .hs-menu-wrapper').before('<button class="mobile-trigger"><i class="fas fa-bars"></i></button>');

  /* Uncomment for mobile button that says 'MENU' 
        $('.custom-menu-primary .hs-menu-wrapper').before('<div class="mobile-trigger">MENU</div>');
    */

  $('.custom-menu-primary .flyouts .hs-item-has-children > a').after(' <div class="child-trigger"><i></i></div>');
  $('.mobile-trigger').click(function() {
    $(this).next('.custom-mobile-menu .hs-menu-wrapper').slideToggle(250);
    $('body').toggleClass('mobile-open');
    $('.hs-menu-children-wrapper').slideUp(250);
    return false;
  });

  $('.child-trigger').click(function() {
    $(this).parent().siblings('.hs-item-has-children').find('.child-trigger').removeClass('child-open');
    $(this).parent().siblings('.hs-item-has-children').find('.hs-menu-children-wrapper').slideUp(250);
    $(this).next('.hs-menu-children-wrapper').slideToggle(250);
    $(this).next('.hs-menu-children-wrapper').children('.hs-item-has-children').find('.hs-menu-children-wrapper').slideUp(250);
    $(this).next('.hs-menu-children-wrapper').children('.hs-item-has-children').find('.child-trigger').removeClass('child-open');
    $(this).toggleClass('child-open');
    return false;
  });

  //wrap submenu content in span
  $('.custom-menu-primary .hs-menu-wrapper > ul > li:nth-child(2) > ul > li, .custom-mobile-menu .hs-menu-wrapper > ul > li:nth-child(2) > ul > li').wrapInner('<span class="custom-dropdown-item" />');
  
  //wrap submenu content in span
  $('.custom-menu-primary .hs-menu-wrapper > ul > li:nth-child(3) > a').addClass('active');

  //append another anchor tag in submenu li
  $('.custom-menu-primary .hs-menu-wrapper > ul > li:nth-child(2) > ul > li:nth-child(1) > span, .custom-mobile-menu .hs-menu-wrapper > ul > li:nth-child(2) > ul > li:first-child > span').append('<a href="https://soundparticles.com/products/soundparticles/plans"><span class="callout">Buy</span></a>');
  $('.custom-menu-primary .hs-menu-wrapper > ul > li:nth-child(2) > ul > li:nth-child(2) > span, .custom-mobile-menu .hs-menu-wrapper > ul > li:nth-child(2) > ul > li:last-child > span').append('<a href="https://my.soundparticles.com/login#air"><span class="callout">Buy</span></a>');

  //append icon in mobile-menu
  $('.custom-mobile-menu ul > li.hs-item-has-children > a').append('<i class="fas fa-chevron-down"></i>');

  //on click child menu open
  $('.custom-mobile-menu ul > li.hs-item-has-children > a').click(function(e){
    e.preventDefault();
    $(this).next('.hs-menu-children-wrapper').slideToggle(250);
    $(this).parent().siblings('.hs-item-has-children').find('.hs-menu-children-wrapper').slideUp(250);
    $(this).next('.hs-menu-children-wrapper').children('.hs-item-has-children').find('.hs-menu-children-wrapper').slideUp(250);
  });

  //no-banner
  if ($('.hs-banner-area').size() < 1) {
    $('body').addClass('no-banner')
  }

  //For Back to Top JS
  $('.footer-container-wrapper').after('<a id="back-to-top" href="#top"><i class="fas fa-chevron-up"></i></a>');
  $("#back-to-top").hide();

  $(window).scroll(function(){
    if ($(window).scrollTop()>100){
      $("#back-to-top").fadeIn(500);
    }
    else
    {
      $("#back-to-top").fadeOut(500);
    }
  });
  //back to top
  $("#back-to-top").click(function(){
    $('body,html').animate({scrollTop:0},500);
    return false;
  });
});
/* 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.com/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.com/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; }
/* ==========================================================================
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("https://use.typekit.net/sce2zqq.css");

@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5BrandsRegular.eot") format("embedded-opentype"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/fa-brands-400.woff2") format("woff2"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5BrandsRegular.woff") format("woff"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5BrandsRegular.ttf") format("truetype"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5BrandsRegular.svg") format("svg");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5FreeSolid.eot") format("embedded-opentype"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/fa-solid-900.woff2") format("woff2"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5FreeSolid.woff") format("woff"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5FreeSolid.ttf") format("truetype"), 
    url("//5878953.fs1.hubspotusercontent-na1.net/hubfs/5878953/SoundParticles_July2019/Fonts/FontAwesome5FreeSolid.svg") format("svg");
  font-style: normal;
  font-weight: 900;
}



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

:root{
  --color-gray-1: #13161A;
  --color-gray-2: #181B1F;
  --color-gray-3: #22262A;
  --color-gray-4: #2e3136;
  --color-gray-5: #383b40;
  --color-gray-6: #4c4d53;
  --color-gray-7: #69696e;
  --color-gray-8: #98989c;
  --color-gray-8_5: #bbbbbd;
  --color-gray-9: #dddddd;
  
  --pure-white: #fff;
  
  --color-blue: #2E6E9F;
  --color-orange: #A26939;
  --color-green: #41904B;
  --color-red: #A24943;
  --color-purple: #804ABC;
  --color-yellow: #9C8D39;

  --color-primary: var(--color-blue);
  --color-secondary: var(--color-gray-6);
  --color-accent: var(--color-orange);
  --color-success: var(--color-green);
  --color-danger: var(--color-red);
  --color-warning: var(--color-yellow);
  
  --background-color-1: var(--color-gray-1);
  --background-color-2: var(--color-gray-2);
  --background-color-3: var(--color-gray-3);
  --background-color-4: var(--color-gray-4);
  
  --color-contrast-1:   var(--color-gray-9);
  --color-contrast-2:   var(--color-gray-8);
  --color-contrast-3:   var(--color-gray-7);
  

}

*, *: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;
} 

html {
  direction: ltr;
  overflow-x: hidden;
  font-family: sans-serif;
  line-height: 1.5em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--background-color-1);
  color: var(--color-gray-9);
  font-family: proxima-nova, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  font-weight: 400;
}

/* Page Center */
.container-fluid .row-fluid .page-center {
  float: none;
  margin: 0 auto;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #39f;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: rgba(255,255,255,0.2);
  text-shadow: none;
}


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

/* Basic text */
p {
  margin: 0 0 20px;
  letter-spacing: 0.025em;
  line-height: 1.5em;
} 
small {}
strong {}
em {}
cite {}
code {}
pre {}

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

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  color: var(--color-contrast-1);
  font-weight: 200;
  letter-spacing: -.05em;
  margin: 0;
  margin-top: 1.5em;
  margin-bottom: 0.7em;
  -webkit-font-smoothing: antialiased;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
  font-size: 50px;
  line-height: 1.25em;
}
h2 {
  font-size: 27px;
  font-weight: 300;
  line-height: 1.6em;
}
h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6em;
  text-transform: uppercase;
}
h4 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5em;

}
h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: uppercase;
}
h6 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}



.sp-font,
.sp-font-center {
  font-family: aviano-future, Helvetica, Arial, sans-serif;
  text-transform: none;
  transform: scaleX(0.9);
  transform-origin: left;
  color: #dddddd;
  line-height: 1em;
}

.sp-font-center {
  transform-origin: center;
  text-align: center;
}

@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 2.924rem;
  }

  h2 .h2 {
    font-size: 1.854rem;
  }

  html {
    font-size: 14px;
  }

  .lead {
    letter-spacing: 0.025em;
    font-size: 1.15rem;
  }
}

@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 2.752rem;
  }

  h2 .h2 {
    font-size: 1.751rem;
  }
}

@media (max-width: 340px) {
  h1,
  .h1 {
    font-size: 2.408rem;
  }

  h2 .h2 {
    font-size: 1.442rem;
  }

  h3 .h3 {
    font-size: 1.125rem;
  }

  html {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 1.3em;
}

h1,
.h1 {
  letter-spacing: 0em;
  text-transform: none;
  font-weight: 300;
  line-height: 1.2;
}

h2,
.h2 {
  letter-spacing: 0.025em;
  text-transform: none;
  color: rgba(221, 221, 221, 0.9);
  font-weight: 800;
  line-height: 1.2;
}

h3,
.h3 {
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: rgba(221, 221, 221, 0.7);
  font-weight: 800;
  line-height: 1.5;
}

h4,
.h4 {
  letter-spacing: 0.025em;
  text-transform: none;
  color: rgba(221, 221, 221, 0.8);
  line-height: 1.4;
}

h5,
.h5 {
  letter-spacing: 0.025em;
  text-transform: none;
  color: rgba(221, 221, 221, 0.7);
  line-height: 1.5;
}

h6,
.h6 {
  letter-spacing: 0.025em;
  text-transform: none;
  color: rgba(221, 221, 221, 0.7);
  line-height: 1.5;
}

p {
  margin-top: 1em;
  line-height: 1.5;
}

small {
  letter-spacing: 0.025em;
  color: rgba(221, 221, 221, 0.7);
  line-height: 1.5;
}

strong:not(.toast-header strong) {
  color: rgba(221, 221, 221, 0.9);
  font-weight: 800;
}

label {
  font-weight: bold;
  margin-right: 1.25rem;
  margin-top: 0.5rem;
  color: rgba(221, 221, 221, 0.9);
  letter-spacing: 0.025em;
  font-size: 1rem;
}

.lead {
  letter-spacing: 0.025em;
  font-weight: 500;
}

p,
li,
.text-paragraph {
  letter-spacing: 0.025em;
  font-size: 1rem;
  color: rgba(221, 221, 221, 0.45);
}


/* Anchor Links */
a { 
  color: var(--color-contrast-1);
  text-decoration: none;
  outline: none;
}
a:hover, a:focus { 
  color: var(--pure-white);
   text-decoration: none;
}

.clickable{
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: bold;
}

/* Lists */
ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
}
ul ul, ul ol, ol ol, ol ul {}
li {}

/* Block Quotes */
blockquote {
  border-left: 3px solid #0a55aa;
  background-color: #f4f4f4;
  padding-left: 15px;
}
blockquote p {}
blockquote small {}

/* Horizontal Rules */
hr {
  color: var(--color-contrast-3);
  background-color: var(--color-contrast-3);
  height: 1px;
  border: none;
}


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


.blog-post-content-wrapper{
  display: flex;
  justify-content: center;
}
.blog-post-content{
  max-width: 850px; 

}
.content-wrapper{
  padding-top: 30px;
}


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

.header-container-wrapper {
  min-height: 93px;
}
.header-container {}

#custom-header-wrapper {
  position: relative;
  z-index: 1030;
}

#custom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--background-color-4);
  -webkit-transition: min-height 0.3s ease;
  transition: min-height 0.3s ease;
  width: 100%;
  z-index: 1001;
  position: fixed;
  height: auto;
  -webkit-box-shadow: 0px -6px 37px 22px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px -6px 37px 22px rgba(0,0,0,0.4);
  box-shadow: 0px -6px 37px 22px rgba(0,0,0,0.4);
}

#custom-header .page-center > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: ease height 300ms;
  transition: ease height 300ms;
}

#custom-header .page-center {
  position: relative;
}

#custom-header .page-center > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-height: 100%;
}

#custom-header .page-center > div > div:after, 
#custom-header .page-center > div > div:before {
  content: none;
}

#custom-logo-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#custom-logo-wrapper > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-height: 100%;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
}

#custom-logo-wrapper > div > div:after, 
#custom-logo-wrapper > div > div:before {
  content: none;
}

.widget-span .custom-logo {
  margin: 27px 0;
  position: relative;
  z-index: 1;
  float: none;
  width: auto;
}

.custom-logo img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  height: 46px;
}

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

.body-container-wrapper {}
.body-container {
  color: var(--color-contrast-2);
  line-height: 26px;
}

.no-banner .body-container{
  padding-top: 50px; 
}

.content-wrapper {}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}


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

.footer-container-wrapper {}
.footer-container {}

#custom-footer-wrapper {
  display: block;
  background: #212529;
  border-top: 4px solid #212529;
  font-size: 0.9em;
  margin-top: 50px;
  padding: 0;
  position: relative;
  clear: both;
}

#custom-footer-top .page-center > div > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  width: auto;
}

#custom-footer-top .page-center > div > div:after, 
#custom-footer-top .page-center > div > div:before {
  content: none;
}

.widget-span .custom-social-icon-wrapper {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-social-icons {
  margin: 0;
  padding: 0;
  width: auto;
  list-style: none;
}

.footer-social-icons li {
  display: inline-block;
  margin: -2px 1px 0 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
  line-height: 24px;
}

.footer-social-icons li a {
  border-radius: 100%;
  display: block;
  text-align: center;
  color: #333 ;
  text-decoration: none;
  font-size: 0.8rem;
  height: 48px;
  line-height: 48px;
  width: 48px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.footer-social-icons li a i {
  color: #fff;
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

 .fa-chevron-left:before {
    content: "\f104" !important;
  }

.footer-social-icons li:hover.social-icons-facebook a {
  background: #3b5a9a;
}

.footer-social-icons li:hover.social-icons-instagram a {
  background: #7c4a3a;
}

.footer-social-icons li:hover.social-icons-youtube a {
  background: #c3191e;
}

.footer-social-icons li:hover.social-icons-twitter a {
  background: #1aa9e1;
}

.footer-social-icons li:hover.social-icons-linkedin a {
  background: #0073b2;
}

.widget-span .custom-newsletter {
  margin-left: 0;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.custom-newsletter a {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  line-height: 1.5;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 3rem;
  padding-left: 3rem;
  font-size: 1.2em ;
  font-weight: 600 ;
  border-radius: 35px;
  border-color: #c65415 #c65415 #984010;
  background-color: #c65415;
  color: #ffffff ;
  cursor: pointer;
  text-decoration: none;
}

.custom-newsletter a:hover {
  border-color: #e86b26 #e86b26 #c65415;
  background-color: #e86b26;
}

.widget-span .custom-menu {
  margin-left: 0;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.custom-menu a {
  margin-right: 1rem;
  color: #777;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.custom-menu a:last-child {
  margin: 0;
}

.custom-menu a:hover {
  text-decoration: none;
  color: #FFF;
}

#custom-footer-bottom {
  background: #1c2023;
}

#custom-footer-bottom .page-center {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#custom-footer-bottom .page-center > div > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: .25rem;
  padding-bottom: .25rem;
  width: auto;
}

#custom-footer-bottom .page-center > div > div:after, 
#custom-footer-bottom .page-center > div > div:before {
  content: none;
}

.widget-span .custom-footer-image {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom-footer-image a {
  display: block;
  margin-top: .25rem;
  margin-bottom: .5rem;
  opacity: .5;
  color: #777;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.custom-footer-image img {
  position: relative;
  top: 2px;
  height: 18px;
  vertical-align: middle;
}

.custom-footer-image a:hover {
  opacity: .8;
  text-decoration: none;
  color: #FFF;
}

.widget-span .custom-copyright {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  margin-left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.custom-copyright p {
  color: #555;
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  line-height: 26px;
}


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


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

.custom-menu-primary .hs-menu-wrapper > ul > li:nth-child(4) > a.active{

  color: var(--pure-white);
}

#custom-menu-wrapper {
  width: auto;
  float: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important;
}

#custom-menu-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-height: 100%;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
}

#custom-menu-wrapper > div > div {
  padding: 1rem 0;
  min-height: 70px;
}
#custom-menu-wrapper > div > div:after, 
#custom-menu-wrapper > div > div:before {
  content: none;
}

.widget-span .custom-menu-primary {
  float: none;
  width: auto;
}

.custom-menu-primary .hs-menu-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.custom-menu-primary .hs-menu-wrapper > ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul > li {
  line-height: 24px;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: var(--color-contrast-1);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a:after{
  margin-left: .255em;
  vertical-align: .255em;
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  content: "\f078";
  font-weight: 900;
  border: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0 0 0 4px;
  font-size: .6rem;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:last-child > a {
  /* used to make the last element a different color like when we had the book a demo button in orange */
}

.custom-menu-primary .hs-menu-wrapper > ul > li.active > a, 
.custom-menu-primary .hs-menu-wrapper > ul > li:not(:last-child):hover > a {

  color: #fff;
  text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:last-child > a:hover {
  color: #fff !important;

  text-decoration: none;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul {
  float: left;
  font-size: 1rem;
  color: #212529;
  background-clip: padding-box;
  border-radius: 0 4px 4px;
  border: 0;
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
  margin: 0;
  min-width: 200px;
  padding: 5px 0;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  border-top: 0;
  top: auto;
  background-color: #0088cc;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:hover > ul {
  -webkit-transform: translate3d(0, 2px, 0);
  transform: translate3d(0, 2px, 0);
}

.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:hover > a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  border-bottom: 5px solid #CCC;
  border-bottom-color: #0088cc;
  background: #0088cc;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li {
  line-height: 24px;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li > .custom-dropdown-item {
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  padding-left: 18px;
  padding-right: 18px;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li > .custom-dropdown-item > a {
  border-bottom: 1px solid #f7f7f7;
  font-size: 0.8em;
  font-weight: 400;
  padding: 0;
  position: relative;
  text-transform: none;
  letter-spacing: -0.5px;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  border-bottom-color: #007ebd;
  color: #fff;
  text-decoration: none !important;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li:last-child > .custom-dropdown-item > a {
  border-bottom: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li > .custom-dropdown-item > a > .callout {
  display: flex;
  justify-content: space-between;
  border-radius: 2px;
  padding: 0 5px;
  margin-left: 5px;
  background-color: #fff !important;
  color: #0092db !important;
}

.custom-menu-primary .hs-menu-wrapper>ul ul li:hover > span {
  background: #0092db;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li a {
  text-decoration: none !important;
  display: block;
  width: 100%;
  clear: both;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #f7f7f7;
  font-size: 0.8em;
  font-weight: 400;
  padding: 6px 18px 6px 18px;
  position: relative;
  text-transform: none;
  letter-spacing: -0.5px;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  border-bottom-color: #007ebd;
  color: #fff;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li:last-child > a {
  border-bottom: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li:hover > a {
  background: #0092db;
}

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

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width: 992px) {
  .custom-menu-primary .hs-menu-wrapper,
  .custom-menu-primary .hs-menu-wrapper > ul ul { 
    display:block !important;
  }

  #custom-mobile-header-wrapper {
    display: none; 
  }

}


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

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

@media (max-width: 991px){


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

  .mobile-trigger {
    -webkit-appearance: none;
    font-family: inherit;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    padding: 0.533rem 0.933rem;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 0 0 0 1rem;
    float: right;
    color: #FFF;
    outline: 0;
    display: block;
    position: relative;
    z-index: 1;
    background: #0088cc;
  }
  .mobile-trigger {
    position: absolute;
    top: 27px;
    right: 15px;
  }

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

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

  #custom-header-wrapper {
    display: none;
  }

  #custom-mobile-header-wrapper {
    position: relative;
    z-index: 1030;
  }

  #custom-mobile-header {
    width: 100%;
    z-index: 1001;
    position: fixed;
    background: var(--background-color-4);
    -webkit-transition: min-height 0.3s ease;
    transition: min-height 0.3s ease;
  }

  #custom-mobile-header .page-center {
    position: relative;
  }

  .widget-span .custom-mobile-menu {
    float: none;
    width: 100%;
    display: block;
    min-height: 0;
    margin-left: 0;
  }

  /* Hide menu on mobile */
  .custom-mobile-menu .hs-menu-wrapper,
  .custom-mobile-menu .hs-menu-children-wrapper{
    display: none;
  }  

  .custom-mobile-menu .hs-menu-wrapper {
    width: 100%;
    overflow-y: auto !important;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow-y: auto !important;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li {
    float: none !important;
    display: block;
    border-bottom: 1px solid var(--color-contrast-3);
    clear: both;
    position: relative;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li > a {
    display: block;
    width: 100%;
    clear: both;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 15px;
    letter-spacing: 0.025em;
    font-style: normal;
    line-height: 20px;
    padding: 7px 8px;
    margin: 1px 0;
    border-radius: 4px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1px;
    margin-bottom: 1px;
    color: var(--color-contrast-3);
    text-decoration: none;
    position: relative;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li > a > .fa-chevron-down {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.6rem;
  }

  .fa-chevron-down:before {
    content: "\f078";
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li.active > a {
    color: var(--color-contrast-1);
  }
  .custom-mobile-menu .hs-menu-wrapper > ul > li:last-child {
    border-bottom: 0;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li:last-child > a {
    color: #c65415;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li:last-child > a:hover {
    color: #fff;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul {
    display: none;
    padding-left: 20px;
    color: #212529;
    font-size: 13px;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li {
    border-bottom: 1px solid #e8e8e8;
    clear: both;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 24px;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li:last-child {
    border-bottom: 0;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li > span.custom-dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li span {
    display: flex !important;
    justify-content: space-between;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li > span.custom-dropdown-item > a {
    font-size: 13px;
    font-style: normal;
    line-height: 20px;
    padding: 0;
    margin: 1px 0;
    border-radius: 4px;
    text-align: left;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li > span.custom-dropdown-item > a > span.callout {
    border-radius: 2px;
    padding: 0 5px !important;
    background-color: #fff!important;
    color: #0092db!important;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li:hover > span.custom-dropdown-item {
    background: #0092db;
    color: #fff;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li:hover > span.custom-dropdown-item > a {
    color: #fff;
    background-color: transparent;
  }

  .custom-mobile-menu .hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    display: none; 
  }

  .custom-mobile-menu .hs-menu-wrapper>ul ul li a {
    display: block;
    width: 100%;
    font-weight: 400;
    color: #212529;
    font-size: 13px;
    font-style: normal;
    line-height: 20px;
    padding: 7px 8px;
    margin: 1px 0;
    border-radius: 4px;
    text-align: left;
  }

  .custom-mobile-menu .hs-menu-wrapper>ul ul li:first-child > a {
    margin-top: 0;
  }

  .custom-mobile-menu .hs-menu-wrapper>ul ul li a:hover{
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;  
  }

  .custom-mobile-menu .hs-menu-wrapper>ul ul li>span.custom-dropdown-item>a {
    color: #0088cc;
  }


}

/* ==========================================================================
5. BLOG                                        
========================================================================== */


/* =============== General Blog Styles =============== */

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

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

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

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


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

.blog .blog-content {}

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

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

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

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

.post-page-header{
  margin: 30px 0;
}

span.filter-link-count {
  display: 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 {
  max-width: 70px;
  padding: 10px 10px 10px 0;
}
#hubspot-author_data .hs-author-avatar img {
  height: auto !important;
  max-width: 100%;
}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {
  /*margin:0 0 30px;
  padding:0 0 30px;*/
}
.blog-listing-wrapper .post-listing .post-item .post-body {}
.blog-post-wrapper .post-body {}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link {}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;

  height: auto;
  width: auto;
  display: block !important;
  float: right;
  margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {
  display:block;
  margin:15px 0;
}

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

/* Blog Social Sharing Icons */
.hs-blog-social-share {
  margin-top: 20px;
  padding: 10px 0 0 0;
  height: auto;
}
.body-container .hs-blog-social-share li{
  background: none;
  padding: 0;
}
#comment-form .hs_subscribe li {
  list-style: none;
  padding: 0;
}


/* Blog Commments */
#comments-listing {
  margin-bottom: 30px;
  margin-top: 30px;
}

#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-body {
  border-bottom: medium none;
  display: block;
  padding: 0;
}

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

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

.comment-date {
  display: block !important;
  font-size: 13px;
  text-align: left;
}
.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;
}

/* Pagination */
.blog-pagination {
  text-align: center;
}
.blog-pagination a {
  color: var(--color-contrast-1);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
  margin: 0 10px 4px;
}
.blog-pagination a.previous-posts-link {}
.blog-pagination a.all-posts-link {}
.blog-pagination a.next-posts-link {}

.blog-pagination__link--active{
  border-radius: 50%;
  color: var(--background-color-1);
  background-color: var(--color-contrast-1);
}

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

/* Blog Modules */
.blog .blog-sidebar .widget-span {
  margin:0 0 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;
  overflow: hidden;
}
.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 {}



/* =============== Post Double Columns =============== */

@media (min-width: 576px){
  .blog-post-double-column p{
    width: calc(50% - 10px);
  }
  
  .blog-post-double-column p:nth-child(1){
    float: left;
    margin-right: 10px;
  }
  .blog-post-double-column p:nth-child(2){
    float: right;
    margin-left: 10px;
  }
}

/* =============== Post Quotes Block =============== */


p.quote-block{
  font-size: 130%;
  line-height: 1.6em;
  border-left: 3px solid #0088cc;
  padding-left: 20px;
  font-weight: 100;
  font-style: italic;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-justify: left !important;
}
p.quote-block::before{
  content: url(https://blog.soundparticles.com/hubfs/quote-opening.png);
  display: block;
  float: left;
  opacity: 40%;
  margin-right: 15px;
  margin-bottom: -5px;
  margin-top: 6px;
}
/*
p.quote-block::after{
  content: url(https://blog.soundparticles.com/hubfs/quote-closing.png);
  display: block;
  float: right;
}*/

/* =============== Custom Images styles for posts =============== */

.post-body img {
    border-radius: 12px;
}



/* =============== Custom blog listing =============== */
.post-item-spaced{
  padding: 2% !important;
}

.post-item-title{
  margin-top: 20px;
  font-size: 26px;
  line-height: 1.3em;
  
}

.post-item-title a{
  text-decoration: none !important;
}


.hs-opengraph-image-wrapper{

}
.hs-opengraph-image-link{

}
.hs-opengraph-image{
  border-radius: 12px;
}
.text-detail{
  font-size: 11px;
  line-height: 1.8em;
}


.columns-item{
  width: 100.0%;

}


@media (min-width: 480px){
  .columns-item{
      width: 100.0%; 
  }
}
@media (min-width: 576px){
  .columns-item{
      width: 100.0%;
  }
}
@media (min-width: 768px){
  .columns-item{
     width: 50.0%; 
  }
}
@media (min-width: 992px){
  .columns-item{
     width: 33.3%;   
  }
}
@media (min-width: 1200px){
  .columns-item{
     width: 33.3%;
  }
}

.columns-container{
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -2%;
}

.post-body-small, .post-body-small p, .post-body-small span{
  font-size: 12px !important;
  line-height: 1.7em !important;
  color: #777 !important;
  letter-spacing: 0.3px !important;
  text-align: left !important;
}


/* ==========================================================================
6. FORMS                                        
========================================================================== */


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

/* Form Field */
.hs-form-field {
  margin-bottom: 18px;
}

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

/* Labels and Legends */
label {}
body .hs-form-field > label,
.widget-type-google_search label,
li.hs-form-booleancheckbox label {
  display: block;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}

/* One Line Inputs */
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"],
input[type="file"],
textarea,
select:not(.custom-select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: var(--color-contrast-1) !important;
  border: 1px solid var(--color-contrast-3);
  background-color: var(--color-contrast-3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 25px;
  padding: 10px 15px;
  margin-left: -5px;
  margin-right: -5px;
}

input[type="text"]:focus,
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus,
input[type="file"]:focus,
textarea:focus,
select:not(.custom-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:not(.custom-select) {}
select:not(.custom-select):focus {}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  padding: 0;
}
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{
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
  color: var(--color-danger) !important;
  font-size: 14px;
  margin-bottom: 4px;
}
ul.no-list.hs-error-msgs.inputs-list {
  list-style: none;
  padding: 0;
}
.hs-form-required {
  color: var(--color-danger) !important;
}
input.invalid.error,
textarea.error, 
select:not(.custom-select).error{
  border-color: var(--color-danger); 
}

/* Placeholder Text */
::-webkit-input-placeholder {} /* Webkit Browsers */
:-moz-placeholder {} /* Firefox 18- */
::-moz-placeholder {} /* Firefox 19+ */
:-ms-input-placeholder {} /* 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="submit"] {
  margin-top: 15px;
}
#comment-form input[type="text"] {}
#comment-form input[type="text"]:focus {}

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

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

#comment-form .hs-form:before {
  content: "Leave a Reply";
  display: block;
  margin: 0 0 25px;
  font-size: 30px;
}

/* =============== 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) =============== */
.hs-image-social-sharing-24{
  opacity: 0.7;
}
.hs-image-social-sharing-24:hover{
  opacity: 1;
}

.hs-button.primary,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none !important;
  display: inline-block;
  margin: 15px 0;
  font-weight: 700;
  line-height: 12px;
  position: relative;
  text-align: center;
  border-radius: 24px;
  border-style: solid;
  border-width: 1px;
  padding: 12px 24px;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-contrast-1);
  font-size: 15px;
  text-transform: uppercase;
}

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

}

.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {

}


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

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;
}


.form-title{
  font-size: 2.6em;
  line-height: 44px;
  font-weight: 700;
  text-transform: none;
  color: #fff;
}

#email-prefs-form h3 {
  color: #fff;
}

/*Form Background Styling*/

.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_google_search,
.widget-type-blog_subscribe,
.widget-span.widget-type-form,
.error-template .body-container .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_google_search,
.password-template .body-container form,
.subscription-template .body-container .widget-type-email_simple_subscription form,
div#comment-form,
.body-container .hs_cos_wrapper_type_form,
.hs-search-field__bar, .section.post-footer {
  display:block;
  margin: 30px 0;
  background-color: var(--background-color-3);
  border-radius: 12px;
  padding: 20px 40px;
}

.landing-page.one-column .body-container .widget-type-form,
.error-template .body-container .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_google_search,
.password-template .body-container form,
.subscription-template .body-container .widget-type-email_simple_subscription form,
.subscription-template .body-container .hs-search-field__bar,
.password-template .body-container .hs-search-field__bar,
.error-template .body-container .hs-search-field__bar,
.landing-page.one-column .body-container .hs-search-field__bar{
  width: 50%;
}

.hs-search-field__bar {
  max-width: 600px;
  width: 100% !important;
}
.hs-search-field__bar form {
  width: 100% !important;
}

.section.post-footer .hs-form:before {
  content: "Leave a Reply";
  display: block;
  font-size: 24px;
  margin: 0 0 40px;
  color: var(--color-contrast-1);
}

.section.post-footer *{
  color: var(--color-contrast-1);
}
.section.post-footer .hs-button.primary{
  color: white; 
}
.submitted-message {
  color: var(--color-contrast-1);
}

.section.post-footer input.hs-button.primary {
  margin-top: 15px;
}

.fa, .fab, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa, .far, .fas {
  font-family: "Font Awesome 5 Free";
}

.fa, .fas {
  font-weight: 900;
}

.fa-bars:before {
  content: "\f0c9";
}

/* Styles that do not fit into any of the available sections above can go here. */

.hs-banner-area {
  display: block;
  background-color: #202529;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.hs-banner-area .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.hs-banner-area .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.hs-banner-area .inner-wrapper h2 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  color: #fff;
  line-height: 1.2em;
  margin: 15px 10px 10px;
  font-size: 30px;
  display: inline-block;
}

.custom-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

strong {
  font-weight: 700 ;
}

.custom-btn a {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  color: #fff;
  display: inline-block;
  list-style: none;
  margin: 5px 0 5px 1px;
  padding: 0 15px;
  text-transform: uppercase;
  height: 40px;
  border-radius: 4px;
  line-height: 40px;
  background-color: #c65415;
  margin-left: 1rem;
}

.custom-btn a:hover {
  background-color: #e86b26;
  text-decoration: none;
}

.blog-sidebar h3 {
  font-size: 2.6em;
  line-height: 44px;
  font-weight: 700;
  text-transform: none;
}

.post-social-sharing{
  text-align: right; position: absolute; right: 0; bottom: 0;
}

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

@media (max-width: 575px){
  .post-social-sharing{
    text-align: center; position: initial;
  }
}

@media (min-width: 576px){
  .container-fluid .row-fluid .page-center{
    max-width: 540px;
  }
  .hs-banner-area .inner-wrapper h1{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; 
  }
  .custom-btn{
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; 
  }
}

@media (min-width: 768px){
  .container-fluid .row-fluid .page-center{
    max-width: 720px;
  }
  .widget-span .custom-footer-image{
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; 
  }
  .widget-span .custom-copyright{
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

@media (min-width: 992px){
  .container-fluid .row-fluid .page-center{
    max-width: 960px;
  }
  #custom-menu-wrapper > div > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: stretch;
    align-self: stretch; 
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    height: 100%;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    margin-left: 2px; 
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: normal;
    border-radius: 4px;
    color: #CCC;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    padding: 0.5rem 1rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: var(--color-contrast-2);
  }
  .widget-span .custom-social-icon-wrapper{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; 
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .widget-span .custom-newsletter{
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; 
  }
  .widget-span .custom-menu{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .widget-span .custom-copyright{
    -ms-flex-pack: start;
    justify-content: flex-start;  
  }

  #back-to-top {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    background: #404040;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    color: #FFF;
    display: block;
    height: 9px;
    opacity: 0;
    padding: 10px 10px 35px;
    position: fixed;
    right: 10px;
    text-align: center;
    text-decoration: none;
    min-width: 50px;
    z-index: 1040;
    font-size: 0.8em;
    opacity: 0.75;
  }

  #back-to-top:hover{
    color: #0099e6;
  }

  .fa-chevron-up:before {
    content: "\f077";
  }

}

@media (min-width: 1200px){
  .container-fluid .row-fluid .page-center{
    max-width: 1140px;
  }
}


/* =============== Screen sizes smaller than .page-center =============== */

@media (max-width: 991px) {
  .custom-footer-image img {
    top: 1px;
  }
  #custom-footer-wrapper{
    border-top: 5px solid #212529; 
  }
  #back-to-top{
    display: none !important; 
  }
  .custom-lp-header .widget-span .custom-logo {
    margin-bottom: 15px !important;
  }
}


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

@media (max-width: 767px) {

  .hs-search-field__bar {
    max-width: 100%;
  }
  .landing-page.one-column .body-container .widget-type-form,
  .error-template .body-container .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_google_search,
  .password-template .body-container form,
  .subscription-template .body-container .widget-type-email_simple_subscription form{
    width: 100%;
  }
  .hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-bottom: 20px;
  }
  .subscribe-options label {
    margin: 0;
  }
  .hs-form {
    margin-bottom: 30px
  }
  #comment-form .hs-form {
    margin-bottom: 0;
  }
  .blog-sidebar {
    padding-top: 30px;
  }
  .checkbox-row span.fakelabel span {
    width: calc(100% - 40px);
  }
  .subscribe-options label span {
    white-space: normal;
    padding-right: 30px;
  }
  .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    max-width: 100%;
    float: none;
    display: block !important;
    margin: 20px 0;
  } 
  .hs-author-profile .hs-author-bio,
  .hs-author-profile .hs-author-social-section,
  .hs-author-profile .hs-author-avatar,
  .hs-blog-listing .hs-author-profile{
    width: 100%;
    float: left;
  }
  .hs-author-profile .hs-author-avatar img {
    margin-bottom: 5px;
  }
  #recaptcha_area, #recaptcha_table {
    width: 318px!important;
    overflow-x: auto !important;
    max-width: 100% !important;
  }	
  .section.post-body img {
    float: none !important;
    /*display: block !important;*/ /* This messed with video thumbnails, duplicating them */
    margin: 15px auto !important;
  }
  .custom-mobile-menu .hs-menu-wrapper>ul ul li>span.custom-dropdown-item>a>span.callout{
    width: auto; 
  }
}  

@media (max-width: 575px){
  h2 {
    line-height: 40px;
  }
  .mobile-trigger {
    right: 14px;
  }
  body {

  }
}


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

@media (max-width: 479px) {
  .grecaptcha-badge {
    width: auto !important;
    overflow: auto;
    max-width: 256px;
    overflow-x: hidden;
  }


}
@import url('http://soundparticles.com/assets/css/theme.css');
@import url('http://soundparticles.com/assets/css/theme-elements.css');
@import url('http://soundparticles.com/assets/css/theme-blog.css');
@import url('http://soundparticles.com/assets/css/theme-shop.css');
@import url('http://soundparticles.com/assets/vendor/fontawesome-free/css/all.min.css');
@import url('http://soundparticles.com/assets/vendor/animate/animate.min.css');
@import url('http://soundparticles.com/assets/vendor/simple-line-icons/css/simple-line-icons.min.css');
@import url('http://soundparticles.com/assets/vendor/owl.carousel/assets/owl.carousel.min.css');
/*****************************************/
/* Start your style declarations here    */
/*****************************************/