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


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

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


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


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

/* EX: @import url('http://example.com/example_style.css'); */
@import url('//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

/* 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 iFrames */
iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 568px) {
  iframe {
    max-width: 100%;
  }
}
 
/* Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]
select {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

.carousel li {margin-right: 5px}

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

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


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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

html, body {
	min-height: 100%;
	margin: 0;
	padding: 0;
} 
body {
	background: #fff;
	font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	line-height: 1.25;
	color: #351617;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Center */
.container-fluid .row-fluid .page-center {
	float: none;
	width: 1170px;
	max-width: 90vw;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px
}
.eventDetails h3:after {
        content: " ";
    width: 30px;
    height: 2px;
    display: block;
    background: var(--yellow);
    margin: 20px 0;
}
.hs-content-name-child-serving-landing-page-jan-2024 .custom-cta {
    background: #008080 !important;
    color: #fff !important;
}
.hs-content-name-child-serving-landing-page-jan-2024 .custom-cta span{
    color: #fff !important;
}
.form-privacy {
    margin-top: 40px;
}
.sub-up-body .page-header {
    display: none;
}
.hs-content-name-criminal-justice div#hs_cos_wrapper_module_1663663912881971 {
    padding-left: 25px;
}
.span12.widget-span.widget-type-cell.page-center.content-wrapper.sub-em-body {
    padding-top: 0;
}
.sub-up-body div#content {
    min-height: 200px;
    padding-top: 20px;
}
.ofcourse-started {
    margin-top: 90px;
}
img.ofcourse-right-img {
    width: 85%;
    margin-top: 25px;
}
.ofcourse-avail {
    border-top: 5px solid #00ACAA;
}
.sp-right.klikman {
    padding-top: 10px;
}
.hs-content-name-mental-health-landing-page-2023 div#heading {
    padding-bottom: 120px;
}
div#brown-bar {
    margin-top: -60px;
}
.mental-brown-sec.page-center.content-wrapper {
    background: var(--brown);
    border-radius: 70px;
    color: #fff;
    padding: 20px 50px;
    font-style: italic;
}
div#lead-courses {
    padding: 0;
    margin-top: 40px;
}
.hs-content-name-government-july-2023 .hs_state.hs-state.hs-fieldtype-select.field.hs-form-field {
    padding-left: 0 !important;
}
div#no-speaker-customer {
    padding-bottom: 80px;
}
.hs-content-name-customer-office-hours-webinar-aug-2023 div#about {
    padding-top: 50px;
}
.hs-content-name-charity-navigator-webinar-september-2023 .hs_email {
    padding-left: 15px !important;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .imgContainer {
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    float: right!important;
    padding: 15px;
    text-align: center;
    width: 100%!important;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic h3 {
    font-size: 32px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate h3 {
    font-size: 32px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced h3 {
    font-size: 32px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic h4 {
    font-size: 24px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate h4 {
    font-size: 24px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced h4 {
    font-size: 24px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic p {
    font-size: 20px !important;
  min-height: 100px;
  margin-top: 25px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate p {
    font-size: 20px !important;
  min-height: 100px;
  margin-top: 25px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced p {
    font-size: 20px !important;
  margin-top: 25px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 #lead-courses .span4{
  min-height:362px;
}
.hs-content-name-connect-a-social-care-summit-2024-public-page .header-container {
    background: var(--beige);
    padding-bottom: 40px;
}
.hs-content-name-connect-a-social-care-summit-2024-public-page div#heading {
    padding-top: 30px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic .hs-button {
    margin: auto !important;
    display: inline-block;
    float: none;
  background-color: #008080 !important;
  background-position: 88%;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate .hs-button {
    margin: auto !important;
    display: inline-block;
    float: none;
  background-color: #e5a925 !important;
  color: #351617 !important;
  background-position: 88%;
  background-image: url(https://company.findhelp.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) !important;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced .hs-button {
    margin: auto !important;
    display: inline-block;
    float: none;
  background-color: #351617 !important;
  background-position: 88%;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 div#lead-courses {
    margin-bottom: 30px;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic .hs-button:hover {
    background-position: 92%;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate .hs-button:hover {
    background-position: 92%;
}
.hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced .hs-button:hover {
    background-position: 92%;
}
.hs-content-name-nonprofit-hub-follow-up-navigator-training-sept-20 .hs-state legend.hs-field-desc {
    display: block !important;
}
.ce-basic {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 30px;
}
.hs-content-name-connect-a-social-care-summit-2024 .header-container {
    padding-bottom: 180px;
    border-bottom: 5px solid var(--teal);
}
.hs-content-name-connect-a-social-care-summit-2024 div#heading {
    padding-top: 0;
    margin-top: -110px;
  padding-bottom: 100px;
}
.hs-content-name-connect-a-social-care-summit-2024 div#sidebar {
    margin-top: -100px !important;
}
.hs-content-name-connect-a-social-care-summit-2024 div#heading h1 {
    padding-bottom: 25px;
}
.hs-content-name-connect-a-social-care-summit-2024 #heading .borderBottom {
    border-bottom: none;
}
.hs-content-name-connect-a-social-care-summit-2024 div#whoIsAB {
    background: var(--beige) !important;
  padding-bottom: 50px !important;
}
.\32 023-agenda .custom-cta {
    display: inline-block;
}

.hs-content-name-connect-a-social-care-summit-2024 .span12.widget-span.widget-type-cell.page-center.content-wrapper.conf-carousel {
    padding-top: 90px;
    padding-bottom: 70px;
}
.conf-tracks {
    padding-bottom: 100px;
}
.span12.widget-span.widget-type-cell.conf-carousel.content-wrapper {
    padding-top: 60px;
  padding-bottom: 60px
}
.hs-content-name-connect-a-social-care-summit-2024-public-page .agenda .imgContainer {
    width: 85% !important;
    margin: 40px auto 100px !important;
    float: none !important;
}
.hs-content-name-connect-a-social-care-summit-2024-public-page div#whoIsAB {
    background: var(--beige) !important;
}
.hs-content-name-connect-a-social-care-summit-2024-public-page .header-container-wrapper {
    border-bottom: 5px solid var(--teal);
}
.hs-content-name-connect-a-social-care-summit-2024-public-page #heading {
    border-bottom: none !important;
}
.hs-content-name-connect-a-social-care-summit-2024 .span12.widget-span.widget-type-cell.imgContainer {
    background: var(--beige);
}
.ce-intermediate {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 30px;
}
.ce-advanced {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 30px;
}
.ce-basic h3 {
    font-size: 40px;
    margin-bottom: 10px;
}
.ce-basic h4 {
    font-size: 30px;
    font-weight: normal;
}
.ce-basic p {
    font-size: 24px !important;
    font-style: italic;
}
.ce-intermediate h3 {
    font-size: 40px;
    margin-bottom: 10px;
}
.ce-intermediate h4 {
    font-size: 30px;
    font-weight: normal;
}
.ce-intermediate p {
    font-size: 24px !important;
    font-style: italic;
}
.ce-advanced h3 {
    font-size: 40px;
    margin-bottom: 10px;
}
.ce-advanced h4 {
    font-size: 30px;
    font-weight: normal;
}
.ce-advanced p {
    font-size: 24px !important;
    font-style: italic;
}
.ce-basic .cta_button {
    clear: both;
    display: inline-block;
    background: #008080 !important;
}
.ce-intermediate .cta_button {
    clear: both;
    display: inline-block;
    background: #e5a925 !important;
}
div#lead-courses .span4 {
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}
.hs-content-name-florida-itn-webinar-for-mcos-may-2023 .hs_email {
    padding-left: 15px !important;
}
.ce-advanced .cta_button {
    clear: both;
    display: inline-block;
    background: #351617 !important;
}
.mental-brown-sec.page-center.content-wrapper p {
    margin-bottom: 0;
    line-height: 2;
}
.span12.widget-span.widget-type-cell.mental-brown-sec.page-center.content-wrapper a {
    color: #E59724;
}
.hs-content-name-ec-celeadlearningseries_landing .wistia_responsive_wrapper {
    position: relative !important;
}
.hs-content-name-release-notes-subscription-page .hs_email {
    padding-left: 0 !important;
}
.hs-content-name-release-notes-subscription-page div#speakers {
    display: none;
}
.hs-content-name-release-notes-subscription-page div#about {
    padding-top: 40px;
}
.hs-content-name-release-notes-subscription-page div#sidebar {
    margin-bottom: 80px;
}
.hs-content-name-product-roadmap-webinar-march-2023 #heading h2:after {
content: " ";
    display: block;
    height: 2px;
    margin: 0;
    width: 30px;
    position: absolute;
    top: -18px;
}
.ytp-cued-thumbnail-overlay-image {
    background: none !important;
}
.hs-content-name-plinko-lead-capture-page-2023 div#sidebar {
    margin-top: -110px;
  margin-bottom: 80px;
}
.hs-content-name-plinko-lead-capture-page-2023 div#about {
    padding-top: 40px;
}
.hs-content-name-food-equality-landing-page .vjs-hubspot.vjs-paused:not(.vjs-scrubbing):not(.vjs-seeking) .vjs-big-play-button {
    display: none !important;
}
.hs-content-name-food-equality-landing-page .vjs-hubspot.vjs-paused:not(.vjs-scrubbing):not(.vjs-seeking) .vjs-big-play-button {
    display: none !important;
}
.hs-content-name-food-equality-landing-page button.vjs-big-play-button.play-button-circle {
    background: none !important;
}
.hs-content-name-food-equality-landing-page button.vjs-big-play-button.play-button-circle svg {
    display: none;
}
.hs-content-name-connect-summit-public-landing-page-2023 .hs_email {
    padding-left: 15px !important;
}
div#connect-offered {
    padding-top: 40px;
}
.hs-content-name-product-roadmap-webinar-march-2023 #heading h2 {
position:relative;
  margin-top: 20px;
}
.hs-content-name-expert-panel-webinar-march-2023 .hs_email {
    padding-left: 15px !important;
}
.hs-content-name-release-notes-subscription-page .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field {
    position: relative;
}
.hs-content-name-release-notes-subscription-page .hs_your_organization_name.hs-your_organization_name.hs-fieldtype-text.field.hs-form-field {
    position: relative;
}
.hs-content-name-release-notes-subscription-page .hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field {
    position: relative;
}
  .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 .speakersBox .fqhc-table td:last-child {
    width: 48% !important;
}
  .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 .speakersBox .fqhc-table td:first-child {
    width: 48% !important;
}
.ofcourse-head-right-col {
    position: absolute;
    right: -185px;
}
table.ofcourse-table tr:nth-child(2) td:nth-child(1) {
    width: 40%;
}
a.btn.btn-101.btn-201.cta_button.custom-cta.of-course-btn {
    padding: 12px 50px 12px 24px;
    vertical-align: top;
    font-size: 18px;
}
table.ofcourse-table p {
    font-size: 18px;
    margin-top: 10px;
}
table.ofcourse-table {
    background: #ECE9DE;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 49px;
  margin-top: 50px;
}
.ofcourse-avail h2 {
    margin-bottom: 25px;
}
.hs-content-name-american-pets-alive-webinar-jan--2023 .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px !important;
}
.hs-content-id-99314387083 .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px !important;
}
.hs-content-name-food-equality-webinar-feb-2023 .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px !important;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 #sidebar .hs-form label.hs-form-booleancheckbox-display:not(.hs-error-msg) {
    top: 0 !important;
}
.social-care .agenda {
    background: #fff !important;
}
.agenda .imgContainer{
  box-shadow:none !important;
}
.agenda .page-center {
    padding-top: 0;
}
table.day-table {
    text-align: left;
  background:#fff;
}
.hs-content-name-mental-health-mar-2023 .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px !important;
}
td.break-col-conf {
    background: var(--beige);
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 label.hs-form-booleancheckbox-display {
    padding-left: 0 !important;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 .hs_third_party_data_sharing.hs-third_party_data_sharing.hs-fieldtype-booleancheckbox.field.hs-form-field {
    width: 100%;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 legend.hs-field-desc {
    visibility: hidden;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 .hs-third_party_data_sharing:hover legend.hs-field-desc {
  visibility: visible !important;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 .hs_submit.hs-submit {
    margin-top: 70px !important;
}
.hs-content-name-connect-a-social-care-summit-2024 #heading .row-number-10 {
    display: none;
}
.conf-tracks .span12.widget-span.widget-type-cell.imgContainer {
    background: #fff !important;
}
.hs-content-name-connect-a-social-care-summit-2024 #heading {
    border-bottom:none !important;
}
.hs-content-name-connect-a-social-care-summit-2024 .span12.widget-span.widget-type-cell.pageSection.klsa-quote {
    display: none;
}
.hs-content-name-connect-a-social-care-summit-2024 .agenda .span12.widget-span.widget-type-cell.imgContainer {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0;
}
table.day-table td {
    border: 1px solid #f2f2f2;
    border-bottom: none;
    border-left: none;
    padding: 10px;
  font-size: 16px;
}
span.day12023.active {
    font-weight: bold;
}
span.day22023.active {
    font-weight: bold;
}
span.day12023 {
    cursor:pointer;
  text-transform:uppercase;
}
span.day22023 {
    cursor:pointer;
  text-transform:uppercase;
}
table.day-table th {
    border: 1px solid #f2f2f2;
    border-bottom: none;
    border-left: none;
    padding: 10px;
}
table.day-table tr:nth-child(even) {
    background: #fff;
}
table.day-table {
    width: 100%;
    border: 1px solid #f2f2f2;
    border-right: none;
  border-top: none;
}
.hs-content-name-welcome-home-virtual-screening-feb-2023 .hs-form input:checked:before{
  border:none !important;
}

.hs-content-name-welcome-home-virtual-screening-feb-2023 #sidebar .hs-form .form-columns-2 .field:nth-child(1).hs_email {
    padding-left: 0;
    width: 100%;
    padding-right: 22px;
}

div#about-film {
    padding: 40px 0;
}
table.ofcourse-table tr:nth-child(1) td {
    padding: 35px;
    font-size: 32px;
  background: transparent;
  text-align:left;
}
table.ofcourse-table h4 {
    color: #008080;
    margin-bottom: 5px;
    font-size: 24px;
}
table.ofcourse-table tr:nth-child(2) {
    border-bottom: 3px solid #ECE9DE;
}
table.ofcourse-table tr:nth-child(3) {
    border-bottom: 3px solid #ECE9DE;
}
table.ofcourse-table tr:nth-child(4) td:nth-child(1) {
    border-bottom-left-radius: 50px;
}
table.ofcourse-table tr:nth-child(4) td:nth-child(3) {
    border-bottom-right-radius: 50px;
}
table.ofcourse-table p {
    margin-bottom: 0;
}
table.ofcourse-table td {
    padding: 25px 35px;
    font-size: 20px;
  background: #fff;
}
table.ofcourse-table tr:nth-child(2) td:nth-child(2) {
    padding-left: 65px;
    font-size: 26px;
}
table.ofcourse-table tr:nth-child(3) td:nth-child(2) {
    padding-left: 65px;
    font-size: 26px;
}
.ofcourse-avail {
    padding-bottom: 80px !important;
}
.span12.widget-span.widget-type-cell.beigeBg.page-center.header-ce.of-head {
    padding-bottom: 100px !important;
}
.dont-see-ofcourse a {
    margin-left: 0 !important;
    margin-top: 10px !important;
    display: inline-block;
    padding: 12px 50px 12px 30px !important;
}
table.ofcourse-table tr:nth-child(4) td:nth-child(2) {
    padding-left: 65px;
    font-size: 26px;
}
.ofcourse-started h2 {
    font-size: 44px;
}
.ofcourse-started p {
    font-size: 28px;
    margin-top: 30px;
}
table.ofcourse-table tr:nth-child(1) {
    border-bottom: 3px solid #E5A925;
}
.hs_organization_s_system_of_record.hs-organization_s_system_of_record.hs-fieldtype-text.field.hs-form-field {
    padding-left: 20px;
}
.sub-up-footer .span5.widget-span.widget-type-custom_widget.footer-social-form-area {
    padding-top: 0;
}
div#strat-brown {
    display: none;
}
.sub-em-footer .span5.widget-span.widget-type-custom_widget.footer-social-form-area {
    padding-top: 0;
}
.custom-benefits img {
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}
.sub-up-header .logo-area:after {
    content: "Communication Preferences";
    font-weight: bold;
    font-size: 32px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    top: 110px;
    position: absolute;
    padding-left: 25px;
    background-position: left;
}
.sub-up-body #content {
    line-height: 40px !important;
  padding-left: 25px;
}
.hs-content-name-findhelp-features-webinar-dec-2022 div#mod-mod {
    display: none;
}
.hs-content-name-findhelp-feature-highlights-webinar-dec-2022 #mod-mod {
    display: none;
}
.hs_0-2\/current_system_of_record.hs-0-2\/current_system_of_record.hs-fieldtype-checkbox.field.hs-form-field li label {
    position: relative !important;
}
.hs_0-2\/current_system_of_record.hs-0-2\/current_system_of_record.hs-fieldtype-checkbox.field.hs-form-field input {
    margin-right: 10px;
    vertical-align: middle;
}
label#label-0-2\/current_system_of_record-3dbe31a5-74f7-4e78-8702-d828d39ea822_8523 {
    top: 0 !important;
}
.hs_0-2\/current_system_of_record.hs-0-2\/current_system_of_record.hs-fieldtype-checkbox.field.hs-form-field ul {
    margin-top: 30px !important;
}
#sidebar .hs_0-2\/current_system_of_record.hs-0-2\/current_system_of_record.hs-fieldtype-checkbox.field.hs-form-field label:not(.hs-error-msg) {
    top: 0 !important;
}
.hs_0-2\/current_system_of_record.hs-0-2\/current_system_of_record.hs-fieldtype-checkbox.field.hs-form-field {
    padding-left: 10px;
}
.sub-em-header .logo-area:after {
    content: "Manage Your Preferences";
    font-weight: bold;
    font-size: 32px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    top: 110px;
    position: absolute;
    padding-left: 25px;
    background-position: left;
}
.span12.widget-span.widget-type-cell.page-center.content-wrapper.sub-up-body.sub-un-body {
    padding-bottom: 100px;
}
.span12.widget-span.widget-type-cell.page-center.content-wrapper.sub-em-body {
    padding-bottom: 100px;
}
.sub-un-body form#email-prefs-form #content {
    position: relative;
    width: 70%;
}
html body .sub-un-body #email-prefs-form input.email-edit.hs-input {
    margin-top: 20px;
    box-shadow: 4px 3px 11px rgb(0 0 0 / 25%);
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
}
.sub-un-body form#email-prefs-form input#submitbutton {
    position: absolute;
    right: 5px;
    top: 46px;
}
.sub-up-body {
    min-height: 400px !important;
}
.sub-un-body {
    min-height: 400px !important;
}
.sub-em-body {
    min-height: 400px !important;
}

.hs-content-name-pa-information-webinar-1-oct-2022 div#mod-mod {
    display: none;
}
.hs-content-name-pa-information-webinar-2-oct-2022 div#mod-mod {
    display: none;
}
.hs_which_day_do_you_plan_on_attending_.hs-which_day_do_you_plan_on_attending_.hs-fieldtype-checkbox.field.hs-form-field label {
    position: relative;
}
.hs_which_day_do_you_plan_on_attending_.hs-which_day_do_you_plan_on_attending_.hs-fieldtype-checkbox.field.hs-form-field {
  padding-left:15px;
}
.hs_do_you_have_any_dietary_restrictions_.hs-do_you_have_any_dietary_restrictions_.hs-fieldtype-text.field.hs-form-field label {
    position: relative;
}
.hs_do_you_have_any_dietary_restrictions_.hs-do_you_have_any_dietary_restrictions_.hs-fieldtype-text.field.hs-form-field input[type=checkbox] {
          accent-color: #008080;
        }
.hs_do_you_have_any_dietary_restrictions_.hs-do_you_have_any_dietary_restrictions_.hs-fieldtype-text.field.hs-form-field {
  padding-left:15px;
}
.hs_do_you_have_any_dietary_restrictions_.hs-do_you_have_any_dietary_restrictions_.hs-fieldtype-text.field.hs-form-field input{
  padding-left:15px;
}
.hs_do_you_have_any_dietary_restrictions_.hs-do_you_have_any_dietary_restrictions_.hs-fieldtype-text.field.hs-form-field .input input {
    top: 45px !important;
    position: relative;
}
.hs-content-name-pa-information-webinar-1-oct-2022 textarea {
    min-height: 70px;
    height: 70px;
}
.hs-content-name-pa-information-webinar-1-oct-2022 .hs-form .field textarea {
    border: none !important;
    border-bottom: 1px solid #e5a925 !important;
}
.hs-content-name-oklahoma-priority-state-landing-page-aug-2022 .row-number-5 .span3:nth-child(4) .hs-button {
    display: none;
}
.hs-content-name-pa-information-webinar-2-oct-2022 textarea {
    min-height: 70px;
    height: 70px;
}
.hs-content-name-pa-information-webinar-2-oct-2022 .hs_what_are_you_hoping_to_learn_from_the_webinar_.hs-what_are_you_hoping_to_learn_from_the_webinar_.hs-fieldtype-textarea.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-1-oct-2022 .hs_what_are_you_hoping_to_learn_from_the_webinar_.hs-what_are_you_hoping_to_learn_from_the_webinar_.hs-fieldtype-textarea.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-2-oct-2022 .hs_what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_.hs-what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_.hs-fieldtype-textarea.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-1-oct-2022 .hs_what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_.hs-what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_.hs-fieldtype-textarea.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-2-oct-2022 .hs-form .field textarea {
    border: none !important;
    border-bottom: 1px solid #e5a925 !important;
}
.hs-content-name-pa-information-webinar-1-oct-2022 .hs_city.hs-city.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-2-oct-2022 .hs_city.hs-city.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px;
}
.hs-content-name-pa-information-webinar-1-oct-2022 #sidebar .hs_what_are_you_hoping_to_learn_from_the_webinar_ label:not(.hs-error-msg) {
    top: 75px !important;
}
.hs-content-name-pa-information-webinar-2-oct-2022 #sidebar .hs_what_are_you_hoping_to_learn_from_the_webinar_ label:not(.hs-error-msg) {
    top: 75px !important;
}
.hs-content-name-pa-information-webinar-1-oct-2022 #sidebar .hs_what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_ label:not(.hs-error-msg) {
    top: 75px !important;
}
.hs-content-name-pa-information-webinar-2-oct-2022 #sidebar .hs_what_questions_do_you_have_about_the_pending_pa_dhs_state_contract_ label:not(.hs-error-msg) {
    top: 75px !important;
}
.hs-content-name-pa-information-webinar-2-oct-2022 .hs_what_language_are_you_most_comfortable_participating_in_for_this_webinar_ {
    padding-left: 15px !important;
}
.hs-content-name-pa-information-webinar-1-oct-2022 .hs_what_language_are_you_most_comfortable_participating_in_for_this_webinar_ {
    padding-left: 15px !important;
}
.hs-content-name-nh-privacy-webinars-july-august-2022 div#mod-speakers {
    display: none;
}
.sub-em-body input.email-edit.hs-input + br + span {
    padding-left: 14px;
    margin-bottom: 15px !important;
    display: block;
}
.hs-content-name-azara-healthcare-webinar-2022 div#mod-speakers {
    display: none;
}
.sub-em-body .page-header h2 {
    display: none;
}
.sub-em-body input#submitbutton {
    color: #fff !important;
    background-color: #008080 !important;
    width: auto;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: bold;
    padding-left: 20px;
    background-size: 12px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height: auto;
    background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg);
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 11px !important;
}
.sub-em-body input#submitbutton:hover {
    background-position: 98%;
}
.sub-em-body input#globalresub2 {
    display: none;
}
.sub-em-body .page-header {
    padding-bottom: 0;
}
.subscribe-options label span {
    font-size: 1.2rem !important;
}
.one-speak #sidebar {
    margin-bottom: 120px;
}
.one-speak .span12.widget-span.widget-type-cell.one-one-speakers {
    padding: 60px 0 100px;
}
.one-speak div#about {
    padding-top: 30px !important;
}
.sub-em-body .page-header + br + strong {
    display: none;
}
div#globalresub-container {
    display: none;
}
.sub-em-body select#hs-localization-select {
    display: none;
}
.sub-em-body input[type="hidden"]+.header {
    display: none;
}
.sub-conf.scroll-header .logo-area a {
    margin-top: 7px;
    width: auto !important;
    overflow: hidden;
}
.sub-em-body .subscribe-options .header {
    display: none;
}
.sub-em-body .email-prefs .item {
    margin: 0;
}
.sub-em-body .email-prefs .item .item-inner {
    background: none !important;
    border: none;
    box-shadow: none !important;
}
.sub-em-body .subscribe-options {
    border-top: 1px solid #E59724;
    padding-top: 50px;
    margin-top: 50px;
}
.span12.widget-span.widget-type-cell.page-center.content-wrapper.sub-em-body {
    padding-bottom: 100px;
}
html body.hs-content-name-university-of-hawaii-webinar-2022 #mod-speakers .span12.widget-span.widget-type-cell.speakersBox {
    display: none !important;
}
.hs-content-name-nysac-ad-campaign-landing-page-june-2022 .hs_your_organization_name.hs-your_organization_name.hs-fieldtype-text.field.hs-form-field {
    padding-left: 20px;
}
.sub-up-header.sub-un-header .logo-area:after {
    content: "Email Unsubscribe";
}
.scroll-header .sub-up-header .logo-area:after {
    content: "";
}
.scroll-header .sub-em-header .logo-area:after {
    content: "";
  
}
.school-care .logo-area {
    display: none;
}
.school-care div#speakers {
    display: none;
}
.school-care div#about {
    display: none;
}
.school-care #sidebar h3.form-title {
  border-bottom: 5px solid #2771eb;
  color: #094074;
  background: #f1f3f6;
}
.school-care div#heading {
    padding-top: 15px;
    background: #fff;
    border-bottom: 5px solid #2771eb;
}
.school-care #sidebar .hs-button.primary {
    background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg) 85% center no-repeat #094074;
}
.school-care #sidebar {
    box-shadow: 0 10px 40px rgb(0 0 0 / 6%);
}
.school-care span.hs-form-required {
    color: #094074;
}
.school-care #sidebar .hs-button.primary:hover {
    background-position-x: 90%;
}
.school-care #sidebar .hs-form .hs_topic_of_interest label:not(.hs-error-msg) {
    top: 107px !important;
}
.school-care .hs_industry__new_.hs-industry__new_.hs-fieldtype-select.field.hs-form-field {
    padding-left: 15px;
}
.school-care .hs_topic_of_interest.hs-topic_of_interest.hs-fieldtype-textarea.field.hs-form-field {
    padding-left: 15px;
}
.school-care .hs_how_did_you_hear_about_us__c.hs-how_did_you_hear_about_us__c.hs-fieldtype-select.field.hs-form-field {
    padding-left: 15px;
}
.school-care .hs-form .hs-error-msg:before {
    background: none !important;
}
.school-care .hs_state.hs-state.hs-fieldtype-select.field.hs-form-field {
    padding-left: 0 !important;
}
.school-care textarea {
    min-height: 80px;
    height: 100px;
}
.school-care .hs-form .field textarea {
    border: none !important;
    border-bottom: 1px solid #094074 !important;
}
.school-care .hs-form label:before {
    position: absolute;
    content: "";
    left: -3px;
    top: 0;
    background: url(https://go.findhelp.com/hubfs/arrow-blue.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    transform: rotate(0deg);
    background-size: 75%;
}
.school-care .hs-form .field .hs-input {
    border-bottom: 1px solid #094074;
}
.school-care .footer-group {
    background: #094074;
}
.school-care #sidebar h3.form-title:before {
    background-image: url(https://go.findhelp.com/hubfs/arrow-blue.svg);
}
.school-care #heading h1:before {
    background-image: url(https://go.findhelp.com/hubfs/arrow-blue.svg);
}
.school-care .body-container.container-fluid {
    padding-bottom: 80px !important;
}
.school-care .header-container {
    background: #fff;
}
.school-care .header-container .span12.widget-span.widget-type-cell.beigeBg {
    background: #fff;
}
.school-care .header-container .span12.widget-span.widget-type-cell.page-center {
    padding: 0;
}
/*.scroll-header .sub-up-header {
   padding-bottom: 0 !important;
}*/
.span12.widget-span.widget-type-global_group.sub-up-header {
    padding-bottom: 165px;
    border-bottom: 3px solid #00ABA9;
}
/*.scroll-header .sub-em-header {
   padding-bottom: 0 !important;
}*/
.sub-em-body .page-header h1 {
    display: none;
}
.sub-em-body .page-header h2:before {
    content: "Hi there! Please update the email preferences for:";
    background: none;
    width: auto;
    top: 0px;
    margin-right: 30px;
    font-size: 1.2rem;
    left: 20px;
    color: #351617;
    font-weight:normal;
}
.sub-em-body .page-header h2 {
    color: #00aba9;
    font-size: 1.2rem;
    font-weight: bold;
}
.span12.widget-span.widget-type-global_group.sub-em-header {
    padding-bottom: 165px;
    border-bottom: 3px solid #00ABA9;
}
.span4.widget-span.widget-type-cell.imgcontainer .row-fluid-wrapper {
    background: #fff !important;
    box-shadow: 0 10px 60px rgba(0,0,0,.1);
    padding: 15px !important;
    border-radius: 10px;
    margin: 20px 0;
}
.eve-rep .hs_company {
    padding-left: 0 !important;
}
.eve-rep .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px;
}
.eve-rep label#label-email-9ed83d84-5774-45a0-81c6-d774e1890a58_9273 {
    top: 62% !important;
}
.eve-rep .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    padding-left: 15px;
    margin-top: 25px;
}
.eve-rep .hs_submit.hs-submit {
    padding-left: 15px;
}
.eve-rep div#heading {
    padding-bottom: 0;
}
.eve-rep #sidebar {
    margin-top: -120px;
}
.eve-rep .hs_will_you_attend_.hs-will_you_attend_.hs-fieldtype-checkbox.field.hs-form-field label {
    position: relative !important;
}
.eve-rep .hs_will_you_attend_.hs-will_you_attend_.hs-fieldtype-checkbox.field.hs-form-field {
    padding-left: 15px;
}
.eve-rep .hs-form ul li label:before {
    background: none;
}
.eve-rep .hs-form ul li input {
    margin-right: 10px;
}
.row-fluid-wrapper.row-depth-1.row-number-7 .imgContainer {
    width: 100% !important;
}
.health-equity .eventDetails h3:after {
    content: " ";
    width: 30px;
    height: 2px;
    display: block;
    background: none;
    margin: 20px 0;
}
.health-equity .pageTitle:after {
    content: " ";
    width: 30px;
    height: 2px;
    display: block;
    background: var(--yellow);
    margin: 20px 0;
}
.social-care div#sidebar {
    margin-top: 0;
}
.social-care #sidebar .hs-form .field.hs_email {
    position: relative;
    padding-left: 0;
}
.social-care #sidebar span {
    margin-top: 0;
    line-height: 18px;
}
.health-equity #hs_cos_wrapper_module_1616445697261470 {
    padding-right: 0 !important;
}
.speakers-50 {
    width: 100% !important;
}
.speakers-50-inner {
    width: 50%;
    float: left;
  margin-bottom: 40px;
}
.sp-left {
    width: 50%;
    float: left;
}
.speakersBox .sp-left img {
    width: 235px !important;
}
.sp-right {
    width: 50%;
    float: right;
  padding-top: 60px;
}
fieldset.form-columns-1 {
    position: relative;
  
}
body #sidebar .hs_error_rollup label.hs-main-font-element {
    top: auto !important;
}
.impactg {
    padding-top: 40px;
}
.mod-event-type{
  display:none !important;
}
.span12.widget-span.widget-type-cell.pageSection.cwe-leading {
    padding-bottom: 0;
}
.comm-colab #sidebar .hs_what_language_are_you_most_comfortable_participating_in_for_this_webinar_ label:not(.hs-error-msg) {
    top: 0px !important;
  margin-top: 24px !important;
}
.comm-colab #sidebar label.hs-form-checkbox-display:not(.hs-error-msg) {
    top: 60px !important;
  margin-top: 26px !important;
    
}
.comm-colab #sidebar .hs_what_language_are_you_most_comfortable_participating_in_for_this_webinar_ label:before {

    background: none !important;

}
.comm-colab label.hs-form-checkbox-display input[type="checkbox"] {
    margin-right: 10px;
}
.gt-findhelp a {
    margin-top: 0 !important;
}
.gt-findhelp h3 {
    margin-bottom: 15px !important;
}
.comm-colab #sidebar .hs-form .field.hs_email {
    position: relative;
    padding-left: 0;
}
.comm-colab .hs-form-checkbox-display .hs-input:checked:before {
  display:none !important;
}
.comm-colab .hs_submit.hs-submit {
    margin-top: 30px;
}
.cw-harness .cta_button {
    margin-top: 10px;
}
.cwe-wecan .cta_button {
    margin-top: 10px;
}
.hs_state.hs-state.hs-fieldtype-select.field.hs-form-field {
  padding-left: 20px !important;
}
.scnet .custom-cta {
    margin-top: 40px !important;
}
.span3.widget-span.widget-type-cell.cw-item {
    margin-top: 35px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 10px 60px rgba(0,0,0,.1);
}
.span3.widget-span.widget-type-cell.cw-item p {
    margin-bottom: 15px;
  font-size: 16px;
}
.cw-harness .custom-cta {
    margin-top: 30px;
}
.connect-ie #sidebar .hs-form .field.hs_email {
    padding-left: 0;
}
.connect-ie.exe-cess .hs_company.hs-company {
    padding-left: 15px;
}
.speakersBox .fqhc-table td:first-child {
    width: 25% !important;
  display: block !important;
}
.klsa-quote .newsImgPost {
    text-align: left;
    float: left !important;
}
#sidebar .hs-form .form-columns-2 .field:nth-child(1).hs_email {
    padding-left: 0;
}
.social-boxx {
    background: #fff;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 5px rgb(0 0 0 / 25%);
    margin: 40px 0;
}
.social-head {
    width: 100%;
}
.social-left {
    width: 50%;
  float:left;
}
.social-right {
    width: 50%;
  float:right;
}
.social-boxx table tr:nth-child(2n) td {
    background-color: var(--cream);
}
.social-boxx td {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ECE9DF;
}
.social-care a.btn.btn-101.btn-expert.btn-custom-box.custom-cta.cta_button {
    margin-top: 0;
    float: right;
  cursor: pointer;
}
.social-head {
    padding: 10px 15px 0;
    border-bottom: 4px solid #1AACA9;
    float: left;
}
    .sl-dots ol{
        list-style= none;
        width:100%;
    }
.social.table tr:nth-child(2) {
    border-bottom: 2px solid #311818;
}
.social.table tr:nth-child(5) {
    border-bottom: 2px solid #311818;
}
.social.table tr:nth-child(8) {
    border-bottom: 2px solid #311818;
}
.social-2 tr:nth-child(2) {
    border-bottom: 2px solid #311818;
}
.tenn .imgContainer {
    float: none !important;
    margin: auto;
    margin-right: auto;
    margin-left: auto !important;
    width: 100% !important;
}
.social-2 tr:nth-child(5) {
    border-bottom: 2px solid #311818;
}

.sl-dots ol li {
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-right: 5px;
}
.sl-dots {
    text-align: center;
}
.sl-dots ol li.active {
    background: #888;
}
.register-sessions {
    background: #351617;
    color: #fff;
    width: 100%;
    float: left;
    border-radius: 60px;
    padding: 15px 20px;
  margin-top: 30px;
}
.register-sessions a.btn.btn-101.btn-expert.btn-custom-box.custom-cta.cta_button {
    color: var(--brown);
    background: url(https://organizations.findhelp.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) 85% center no-repeat var(--yellow);
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 0;
    margin-right: 15px;
}
.social-boxx tr:last-child td {
    border-bottom: none;
}
.social-care div#whoIsAB {
    background: linear-gradient(180deg, var(--beige), white 400px);
  padding-bottom: 0;
}
.register-sessions h3:before {
    content: " ";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIyNC4yODUiIHZpZXdCb3g9IjAgMCAxNSAyNC4yODUiPjxwYXRoIGQ9Ik0xNTEuNDcxLDgwbC05LjI4NS05LjI4NWEyLjc3NywyLjc3NywwLDAsMC0zLjkyNywwbC05LjQ0Nyw5LjQ0N2EyLjc3NywyLjc3NywwLDAsMCwzLjkyNywzLjkyN2w3LjQ4My03LjQ4Myw3LjMyMiw3LjMyMkEyLjc3NywyLjc3NywwLDAsMCwxNTEuNDcxLDgwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODQuODk5IC0xMjcuOTk5KSByb3RhdGUoOTApIiBmaWxsPSIjZTY5ODAwIi8+PC9zdmc+);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: -21px;
    position: relative;
    top: 2px;
}
.register-sessions h3 {
    display: inline-block;
    padding-left: 50px;
    padding-top: 10px;
}
.social-care .custom-cta:hover {
    transition: all .3s ease-out;
    background-position-x: 90%;
    text-decoration: none;
}
.social-care .custom-cta {
    background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg) 85% center no-repeat var(--green);
    width: auto;
    height: auto;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 35px 10px 25px;
    float: none;
    margin-right: 20px;
    line-height: 1;
    transition: all .2s ease-in;
    margin-left: 20px;
}
.speakersBox .fqhc-table-2 td:first-child {
    width: 30% !important;
}
#mod-speakers .speakersBox .fqhc-table-2 p {
    font-size: 25px !important;
}
.speakersBox .fqhc-table td:last-child {
    width: 25% !important;
}
.connect-ie .hs_program_s__you_work_most_closely_with.hs-program_s__you_work_most_closely_with.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px;
}
.cw-item img {
    width: 100% !important;
    
}
.one-one #heading h2:after {
    content: " ";
    width: 0;
    height: 0;
    display: block;
    background: none;
    margin: 20px 0;
}
h3.yellow-btm:after {
    content: " ";
    width: 30px;
    height: 2px;
    display: block;
    background: var(--yellow);
    margin: 20px 0;
}
.one-one-leftcol {
    padding-bottom: 80px;
}
.one-one-cert {
    padding: 60px 0 80px;
}
.one-one-speakers{
    padding: 60px 0 80px;
}
.one-one div#about {
    padding-top: 60px !important;
}
.one-speak .span12.widget-span.widget-type-cell.one-one-speakers {
    padding: 60px 0 120px;
}
.one-speak div#about {
    padding-top: 30px !important;
}
h3.yellow-btm {
    line-height: 1.5;
}

.acc-box.grey-acc.resol {
    pointer-events: none;
    cursor: default;
}
a.resolve-btn {
    pointer-events: all;
    cursor: pointer;
}
.acc-box.grey-acc.resol.active .acc-content {
    display: none !important;
}
ul.ce-menu li {
    list-style: none;
    display: inline-block;
    margin-left: 20px;
}
.dis-intro iframe {
    height: auto;
    min-height: 210px;
}
.pageSection.dis-section {
    padding-bottom: 0 !important;
}
ul.ce-menu li:first-child {
    margin-left: 0;
}
.header-ce .span6 .span6:nth-child(2) {
    margin-left: 0;
}
ul.ce-menu {
    padding-left: 0;
    margin-top: 12px;
}
.ce-events-2021 .header-ce {
    padding: 30px 0;
}
.ce-events-2021 .custom-cta {
background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg) 85% center no-repeat var(--green);
    width: auto;
    height: auto;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 35px 10px 25px;
     float: none;
    margin-right: 20px;
    line-height: 1;
    transition: all .2s ease-in;
    margin-left: 20px;
}
.ce-events-2021 .custom-cta:hover {
transition: all .3s ease-out;
    background-position-x: 90%;
    text-decoration: none;
}
.one-one-box p {
    padding: 0 20px;
}
.sec-get-started h2 {
    padding-bottom: 15px;
}
.one-one-boxes {
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 40px;
}
.one-one-box {
    background: #fff;
    width: 48%;
    float: left;
    border-radius: 30px;
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.25);
    padding-bottom: 25px;
  min-height: 260px;
}
.one-one-box.two-one-box {
    float: right;
}
.one-one-box h4 {
    background: #ECE9DE;
    padding: 10px 20px;
    border-radius: 30px 30px 0px 0px;
}
.sec-get-started h2:before {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    height: 26px;
    top: 0px;
}
ul.ce-menu li a {
    color: #351617;
    font-size: 24px;
    font-weight: bold;
}
.sec-get-started {
    padding: 30px 0;
}
img.ce-right-dots {
    position: absolute;
    top: 180px;
}
form#filterform p {
    font-weight: 600;
}
.filter-right.filterbox {
    padding-left: 30px;
}
.filterbox {
    width: 50%;
    float: left;
}
.exe-cess .hs_company.hs-company {
    padding-left: 20px;
}
.exe-cess .hs_job_title {
    padding-left: 20px !important;
}
.filter-questions {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

h4.ready-claim:before {
    content: url(https://455700.fs1.hubspotusercontent-na1.net/hubfs/455700/Claim%20Banner%20Icon.png);
    position: absolute;
    height: 40px;
    left: 0;
    top: -10px;
}
h4.ready-claim {
    padding-left: 20px;
    position: relative;
}
.message-201 p {
    font-style: italic;
    font-size: 16px;
}
.expert-sec h3 {
    font-size: 32px;
}
.expert-sec h3:before {
    content: " ";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIyNC4yODUiIHZpZXdCb3g9IjAgMCAxNSAyNC4yODUiPjxwYXRoIGQ9Ik0xNTEuNDcxLDgwbC05LjI4NS05LjI4NWEyLjc3NywyLjc3NywwLDAsMC0zLjkyNywwbC05LjQ0Nyw5LjQ0N2EyLjc3NywyLjc3NywwLDAsMCwzLjkyNywzLjkyN2w3LjQ4My03LjQ4Myw3LjMyMiw3LjMyMkEyLjc3NywyLjc3NywwLDAsMCwxNTEuNDcxLDgwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODQuODk5IC0xMjcuOTk5KSByb3RhdGUoOTApIiBmaWxsPSIjZTY5ODAwIi8+PC9zdmc+);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: -21px;
    position: relative;
    top: -1px;
}
a.btn.btn-101.btn-expert.custom-cta.cta_button {
    display: inline-block;
    margin: 20px 0;
}
.span12.widget-span.widget-type-cell.beigeBg.page-center.header-ce {
    padding-bottom: 60px;
}
.ce-events-2021 #whoIsAB {
    padding-top: 40px;
    padding-bottom: 60px;
}
.hs_will_you_attend_ input:checked:before {
    display: block;
    content: " ";
    position: absolute;
    top: 4px !important;
    left: 18px !important;
    width: 11px;
    height: 7px;
    border: 3px solid var(--teal);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    border-radius: 3px;
    z-index: 10;
}
.hs_which_day_do_you_plan_on_attending_ label:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 7px;
    background: url(https://company.findhelp.com/wp-content/themes/aunt-bertha/img/menu-underline.svg) no-repeat center center;
    width: 11px;
    height: 7px;
    transform: rotate(-270deg);
}
.hs_which_day_do_you_plan_on_attending_ input:checked:before {
    display: block;
    content: " ";
    position: absolute;
    top: 4px !important;
    left: 18px !important;
    width: 11px;
    height: 7px;
    border: 3px solid var(--teal);
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    border-radius: 3px;
    z-index: 10;
}
.hs_will_you_attend_ input:checked {
    text-indent: -99999px;
    appearance: none !important;
    border: none !important;
}

.hs_which_day_do_you_plan_on_attending_ input:checked {
    text-indent: -99999px;
    appearance: none !important;
    border: none !important;
}
.hs_will_you_attend_ input {
   
}
.btn-201.cta_button.custom-cta {
    color: var(--brown);
    background:url(https://company.findhelp.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) 85% center no-repeat var(--yellow);
}
.custom-filter-form input[type="radio"] {
    display: inline-block;
    margin-right: 15px;
    margin-top: 5px;
}
.custom-filter-form label {
    font-size: 18px;
    color: var(--brown);
    vertical-align: top;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.custom-filter-form {
    margin-top: 80px;
}
.custom-filter-form h2 {
    padding-bottom: 25px;
}
.custom-filter-form select#state {
    width: 300px;
    font-size: 18px;
    height: 50px;
    box-shadow: none;
    appearance: none;
    line-height: 50px;
    vertical-align: middle;
    padding-top: 0;
    background-image: url(https://455700.fs1.hubspotusercontent-na1.net/hubfs/455700/Template_Packs/Axel/arrow.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
}
.row-fluid .custom-filter-form input[type="radio"] {
opacity: 1;

}
a.btn.btn-filter.custom-cta.cta_button {
    margin: 40px 0;
    display: block;
    width: 100px;
    cursor: pointer;
    clear: both;
}
.span12.widget-span.widget-type-cell.pageSection.beigeBg.custom-101 {
    padding-top: 0;
}
.filter-training-box {
    box-shadow: 0px 4px 20px 5px rgba(0,0,0,0.25);
    background: #fff;
    padding: 0;
    margin-bottom: 60px;
    border-radius: 15px;
  display:none;
}
.row-fluid [class*="span"].filter-training-box{
  display:none;
}
.filter-training-box p {
    font-size: 18px;
}
.filter-training-box h4 {
    font-size: 24px;
}
.message-201 {
    background: var(--beige);
    padding: 25px 20px 2px;
    margin: auto;
    border-radius: 15px;
    margin-top: 40px;
  box-shadow:0px 4px 20px 5px rgba(0,0,0,0.25)
}
p.spanish-text {
    margin-left: 0 !important;
}
  .spanish-text+a.btn.btn-101.cta_button.custom-cta {
    margin-left: 0;
}
img.exp-img {
    margin: auto;
    float: none;
    display: block;
}
.span12.widget-span.widget-type-cell.region.brownBg.claim-sec {
    text-align: center;
}

.custom-101 .custom-one, .custom-101 .custom-two {
    width: 31.6%;
    float: left;
    margin: 0 1.5% 60px 0;
    min-height: 400px;
}
.custom-101 a.btn.btn-101.btn-expert.btn-custom-box.custom-cta.cta_button {
    margin-left: 15px;
    margin-top: 30px;
}
.filter-training-box h4 {
    background: var(--beige);
    padding: 25px 15px 15px;
    border-radius: 15px 15px 0 0;
  margin-bottom: 20px;
}
.exe-cess .hs-form .field textarea {
    border: none !important;
    border-bottom: 1px solid #e5a925 !important;
}
.exe-cess .hs_submit_your_questions_for_the_q_a_portion_ {
    padding-left: 20px !important;
}
.span12.widget-span.widget-type-cell.page-center.content-wrapper.exe-sec1 {
    padding-bottom: 70px;
}
.exe-cess div#about {
    padding-top: 40px !important;
}
.filter-training-box p {
    padding: 0 15px;
}
.exe-cess #sidebar .hs-form .hs_submit_your_questions_for_the_q_a_portion_ label {
    top: 76% !important;
}
.exe-cess #sidebar .hs-form .hs_submit_your_questions_for_the_q_a_portion_ .input {
    height: 70px !important;
}
.exe-cess #sidebar .hs-form .hs_submit_your_questions_for_the_q_a_portion_ .input textarea {
    height: 70px !important;
    min-height: 70px !important;
}
.custom-two.filter-training-box a {
    color: var(--brown);
    background: url(https://company.auntbertha.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) 85% center no-repeat var(--yellow);
}
.header-lc h2:before{
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    height: 26px;
    top: 0px;
  width: 30px;
}
.browse-sec h2:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    height: 26px;
    margin-left: 0;
    left: -10px;
    top: 1px;
}
.our-approach {
    padding-left: 40px;
}
.span12.widget-span.widget-type-cell.beigeBg.page-center.header-lc h2 {
    margin-top: 70px;
    padding-bottom: 15px;
}
.learn-intro h4 {
    font-size: 24px;
}
.learning-center li {
    list-style: none;
    font-size: 22px;
    margin-bottom: 10px;
}
.learning-center ul {
    padding-left: 0;
}
.learning-center li:before {
    content: " ";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIyNC4yODUiIHZpZXdCb3g9IjAgMCAxNSAyNC4yODUiPjxwYXRoIGQ9Ik0xNTEuNDcxLDgwbC05LjI4NS05LjI4NWEyLjc3NywyLjc3NywwLDAsMC0zLjkyNywwbC05LjQ0Nyw5LjQ0N2EyLjc3NywyLjc3NywwLDAsMCwzLjkyNywzLjkyN2w3LjQ4My03LjQ4Myw3LjMyMiw3LjMyMkEyLjc3NywyLjc3NywwLDAsMCwxNTEuNDcxLDgwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODQuODk5IC0xMjcuOTk5KSByb3RhdGUoOTApIiBmaWxsPSIjZTY5ODAwIi8+PC9zdmc+);
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0;
    position: relative;
    top: 1px;
}

.learn-intro {
    padding-bottom: 130px;
}
.browse-sec h2 {
    background: #fbf9f4;
    padding: 35px 25px 35px 40px;
    border-radius: 12px 12px 0 0;
    font-size: 36px;
    margin-top: -110px;
    border-bottom: 4px solid #00acaa;
}
.span12.widget-span.widget-type-cell.app-sec2 {
    border-left: 1px solid #f7f6f2;
    border-right: 1px solid #f7f6f2;
  padding-bottom: 40px;
}
ul.ce-menu.learn-menu {
    float: right;
}
ul.ce-menu.learn-menu li a {
    font-size: 22px;
}
ul.ce-menu.learn-menu li:before {
    background: none !important;
}
.learning-center .header-container-wrapper {
    border-bottom: 4px solid #00ACAA;
}
.learning-center p {
    font-size: 22px;
}
.our-aproach h4 {
    margin-bottom: 0;
}
.our-aproach p {
    width: 80%;
    line-height: 1.3;
}
.browse-sec ul {
    margin-top: 0;
    margin-bottom: 40px;
}
.browse-sec h4 {
    font-size: 24px;
}
.browse-sec li {
    line-height: 1.4;
}
.case-studies {
    background: #351617;
    color: #fff;
    padding: 30px;
    margin: 0;
}
.case-studies h3 {
    margin-bottom: 0;
}
.case-studies p {
    width: 45%;
    margin-bottom: 0;
    line-height: 1.4;
    margin-top: 10px;
}
.acc-box {
    padding: 30px;
    border: 1px solid #F7F6F2;
}
.case-acc .col-md-6 {
    width: 50%;
    float: left;
}
.case-acc-white {
    width: 100%;
    float: left;
    clear: both;
}
.case-acc-grey {
    width: 100%;
    float: left;
    clear: both;
}
.acc-content {
    display: none;
}
.acc-title h3 {
    margin-bottom: 0;
    color: #000;
    font-size: 24px;
}
.acc-title p {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 10px;
  margin-bottom: 0;
}
.acc-box .acc-title h3:after {
    content: "";
    background: url(https://455700.fs1.hubspotusercontent-na1.net/hubfs/455700/lc-down.png);
    position: absolute;
    right: 0;
    top: 0;
    background-size: 100%;
    display: inline-block !important;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
}
.acc-box.grey-acc .acc-title h3:after {
    content: "";
    background: url(https://455700.fs1.hubspotusercontent-na1.net/hubfs/455700/lc-up.png);
    position: absolute;
    right: 0;
    top: 0;
    background-size: 100%;
    display: inline-block !important;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
  transform:rotate(180deg);
}
.acc-box.active .acc-title h3:after {
   transform:rotate(180deg);
}
.acc-box.grey-acc.active .acc-title h3:after {
   transform:rotate(0deg) !important;
}
.acc-box .acc-title h3 {
    position: relative;
}
.search-support {
    width: 100%;
    clear: both;
    margin: 80px 0 100px;
    float: left;
    background: #e49724;
    border-radius: 100px;
    padding: 20px 0;
}
.logo-bar-ar {
    display: none !important;
}
.logo-bar-ar {
    width: 100% !important;
    margin-top: 30px;
}
.acc-box.resol .acc-title h3:after {
    background: none;
}
.acc-box.active.resol .acc-title h3:after {
    background: none;
}
.support-col {
    width: 33.3%;
    float: left;
}
.support-col.support-1 h4 {
    text-align: right;
    margin-bottom: 0;
}
.support-1 h4:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    height: 26px;
    margin-left: 0;
    left: -10px;
    top: 6px;
    display: inline-block;
    position: relative;
    content: "";
    width: 15px;
}
.support-col.support-3 {
    text-align: center;
}
.support-col.support-3 .custom-cta, .resolve-btn {
    background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg) 85% center no-repeat var(--green);
    width: auto;
    height: auto;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 55px 10px 55px;
    float: none;
    margin-right: 20px;
    line-height: 1;
    transition: all .2s ease-in;
    margin-left: 20px;
}
.support-col.support-3 .custom-cta:hover, .resolve-btn:hover {
    transition: all .3s ease-out;
    background-position-x: 90%;
    text-decoration: none;
}
.acc-box.bor-bot {
    border-bottom: 2px solid #E5A925;
}
.acc-box.grey-acc {
    background: #FBF9F4;
}
a.resolve-btn {
    margin-top: 20px;
    display: inline-block;
    margin-left: 0;
    padding: 12px 58px 12px 35px;
}
.support-col.support-2 p {
    font-size: 14px;
    line-height: 1.3;
    padding: 0 10px 0 40px;
    margin-bottom: 0;
}
.learning-center .footer-container-wrapper li {
    font-size: 20px;
  margin-bottom:0;
}
.learning-center .footer-container-wrapper p {
    font-size: 20px;
}
.learning-center .footer-container-wrapper li:before {
    content: "";
    background: none;
    width: 0;
}
.acc-title {
    cursor: pointer;
}
.acc-content {
    padding-top: 40px;
}
.marketplace div#heading {
    padding-top: 0;
    padding-bottom: 30px;
}
.marketplace h1.borderBottom {
    margin-bottom: 20px !important;
    padding-bottom: 10px;
}

.marketplace .footer-container-wrapper {
    margin-top: 100px;
}
/* Highlighted Text */
/* ::-moz-selection {
color: #fff;
background: #333;
text-shadow: none;
}
::selection {
color: #fff;
background: #333;
text-shadow: none;
} */

/* Scrollbar */
::-webkit-scrollbar-track
{
	-webkit-box-shadow: none;
	background-color: #ECE9DE;
	border: 0;
}
::-webkit-scrollbar
{
	width: 8px;
	height: 5px;
	background-color: #ECE9DE;
}
::-webkit-scrollbar-thumb
{
	background-color: #00ACAA;
	border: 0;
	border-radius: 5px;
}


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

/* Basic text */
p {
	margin: 0 0 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: 'Source Sans Pro', Helvetica, Arial, sans-serif;
	margin: 0 0 15px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
	font-size: 45px;
	line-height: 46px;
}
h2 {
	font-size: 40px;
	line-height: 1;
}
h3 {
	font-size: 1.17em;
	line-height: 1;
}
h4 {
	font-size: 1em;
}
h5 {
	font-size: 0.83em;
}
h6 {
	font-size: 0.67em;
}

/* Anchor Links */
a {
	color: #008080;
	font-weight: 600;
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: underline;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

/* Block Quotes */
blockquote {
	margin: 0 1.5em;
}
blockquote p {}
blockquote small {}

/* Horizontal Rules */
hr {
	box-sizing: content-box;
	border: 0;
	background: #e5a925;
	height: 2px;
	margin: 0 0 20px;
}

/* Figure Quotes */
figure {
	margin: 1em 0;
}


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

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

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

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


/* ==========================================================================
3. COS STRUCTURE                                            
========================================================================== */


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

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

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

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

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

.header-container-wrapper {}
.header-container {
	min-height: 84px;
}
.widget-span.header-area {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	left: 0;
	padding: 10px 20px;
	max-width: 100vw;
	transition: all .3s ease-in;
}
.market-privacy p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 18px;
}
.thankyou .pageSection {
    padding: 20px 0 40px;
}
.hs-content-path-7dea362b-3fac-3e00-956a-4952a3d4f474 div#npLogos {
    padding-bottom: 50px;
}
.hs-content-id-40674577108 div#npLogos {
    margin-bottom: 40px;
}
.thankyou div#whoIsAB {
    padding-bottom: 0;
    padding-top: 20px;
}
.widget-span.header-area .widget-span.page-center {
	padding: 0;
}
.widget-span.logo-area,
.widget-span.main-menu {
	margin: 0;
}
.span2.logo-area,
.span10.main-menu {
	width: auto;
}
.widget-span.logo-area,
.widget-span.logo-area:first-child {
	margin-left: -160px;
}
.logo-area a {
	display: inline-block;
}
.logo-area img {
	vertical-align: baseline;
}
.widget-span.main-menu {
	padding: 17px 5px 10px;
}

div#mon-main {
    margin-bottom: 60px;
}
#mod-mod .speakersBox img {
    width: 250px !important;
}
#mod-speakers .speakersBox tr:not(:last-child) {
    border-bottom: none !important;
}
.mod-about {
    margin-top: 0 !important;
    padding-top: 40px !important;
}
div#mod-mod {
    padding-top: 30px;
}
div#mod-speakers {
    padding-top: 30px;
}
#mod-speakers .span12.widget-span.widget-type-cell.speakersBox {
    display: block !important;
}
#mod-speakers .speakersBox table span {
    font-size: 20px !important;
}
#mod-speakers .row-fluid-wrapper.row-depth-2.row-number-1 {
    margin-bottom: 30px;
}
#mod-speakers .speakersBox table p {
    font-size: 16px !important;
}
/* ========================================================================== Header End ========================================================================== */

.banner-area {
	margin: -1px 0 0 0;
	background: #ECE9DE;
	border-bottom: 5px solid #00ACAA;
	padding-bottom: 50px;
	overflow: hidden;
}
.banner-area-wreapper {
	width: 100vw;
}
.banner-area .page-center {
	padding: 0 !important;
}
.banner-content {
	padding: 150px 15px 0;
	position: relative;
}
.banner-content::before,
.banner-content::after {
	content: "";
	display: block;
	clear: both;
}
.banner-area h1 {
	border-bottom: 2px solid #e5a925;
	padding-bottom: 10px;
	font-size: 45px;
	line-height: 46px;
	margin: .67em 0 20px;
	position: relative;
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/header-icon.svg') right calc(100% - 12px) no-repeat;
	background-size: 42px;
}
.banner-area h1::before {
	content: "";
	left: -33px;
	top: 9px;
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/heading-anchor.svg');
	width: 16px;
	height: 26px;
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.banner-text p {
	font-size: 1.2rem;
	line-height: 1.1;
	margin: 0 0 15px;
}
.banner-text p:last-child {
	margin: 0 0 20px;
}

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

.body-container-wrapper {}
.body-container {
	padding-bottom: 280px;
}
body:not(.blog) .body-container.container-fluid .row-fluid .page-center {
	padding-top: 30px;
}

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

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


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

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

.footer-group {
	background: #008080;
	color: #ECE9DE;
	font-size: 1rem;
	padding: 60px 0 40px;
}
.widget-span.footer-group .widget-span.page-center {
	padding:0;
}
.widget-span.footer-social-form-area,
.widget-span.copyright-footer-links-area {
	margin:0;
	padding: 0 15px;
	width: 100%;
}
.widget-span.footer-social-form-area {
	padding-top: 50px;
}
.footer-social-form {
	margin-top: -270px;
}
.copyright-footer-links-area {
	text-align: right;
}
.copyright-footer-links-area p {
	margin:0;
}
.f-links .hs-menu-wrapper > ul {
	vertical-align: middle;
	max-width: 400px;
	text-align: right;
}
.widget-span.f-links .hs-menu-wrapper > ul > li {
	display: inline-block;
	float: none;
	width: auto;
}
.f-links .hs-menu-wrapper > ul > li > a {
	color: #ECE9DE;
	text-decoration: none;
	display: inline;
	width: auto;
}
.f-links .hs-menu-wrapper > ul > li::after {
	display: inline;
	width: auto;
	content: '\00B7';
	padding-left: 2px;
	font-weight: 700;
}
.masonry-grid {
  column-count: 3;
  column-gap: 1em;
}
.masonry-item {
    display: grid !important;
    grid-template-rows: 1fr auto;
    margin-bottom: 10px;
    break-inside: avoid;
    width: 100% !important;
    padding: 15px;
    background: #fff;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 60px rgba(0,0,0,.1);
}
.f-links .hs-menu-wrapper > ul > li:last-child:after {
	content: "";
}
.f-follow-area,
.f-form {
	position: relative;
	margin: 0 0 1.5em;
}
.f-follow-area p {
	margin: 0 0 1.5em;
}
.f-follow-area p strong {
	display: inline-block;
	vertical-align: middle;
	margin-right: 11px;
	font-weight: bolder;
	position: relative;
	top: -3px;
}
.f-follow-area p a {
	display: inline-block;
	vertical-align: middle;
	margin-right: 11px;
}
.f-follow-area p a:last-child {
	margin: 0;
}
.f-follow-area p img {
	vertical-align: baseline;
}
.f-form {
	margin: 0 0 2.45em;
	left: -15px;
}
.f-form .hs_email.hs-email > label {
	display: none;
}
.f-form form {
	position: relative;
}
.f-form form input[type="email"] {
	padding-left: 34px;
	margin:0;
}
.f-form form .hs_submit.hs-submit {
	position: absolute;
	top: 5px;
	right: 5px;
}
.f-form form input[type="submit"] {
	margin: 0;
}
.f-form .form-title {
	display: none;
}
.f-form-heading-area {
	color: #351617;
	font-size: 1.2rem;
	margin: 0 -15px 0 0;
}
.f-form-heading-area p {
	margin: 0 0 1.55em;
}
.f-form-heading-area h2 {
	position: relative;
	font-size: 40px;
	line-height: 1;
	margin: 0 0 10px;
}
.f-form-heading-area h2::after {
	content: "";
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/subheading-anchor.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	left: -30px;
	top: 11px;
	width: 16px;
	height: 26px;
}

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


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


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

/* Parent List */
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul {
	display: block;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li {
	float: none;
	display: inline-block;
	padding: 0 0 0 14px;
	margin: 0 30px 4px 0;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li:last-child {
	margin-right: 0px;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li > a {
	text-decoration: none;
	display: block;
	color: #351617;
	font-weight: bold;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li.active > a {
	padding-bottom: 8px;
	color: #008080;
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/menu-underline.svg') no-repeat center bottom;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li.active > a {
	line-height: 1;
	font-size: 20px;
	padding-bottom: 10px;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li:hover > a {
	color: #008080;
}

/* Child List */
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul {}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul li {}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul li a {
	text-decoration: none;
	display: block;
	color: #351617;
	font-weight: bold;
}
.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul li a:hover {
	color: #008080;
}

/* Override max width on menu links */
.custom-menu-primary2 .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:768px) {
	.custom-menu-primary2 .hs-menu-wrapper,
	.custom-menu-primary2 .hs-menu-wrapper > ul ul { 
		display:block !important;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li:hover > a {
		padding-bottom: 8px;
		background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/menu-underline.svg') no-repeat center bottom;
	}
}


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

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

@media (max-width: 767px){
    .filterbox {
    width: 100%;
    float: none;
}
  .case-studies p {
    width: 100%;
  }
  .filter-right.filterbox {
    padding-left: 0;
    margin-top: 30px;
}
.masonry-grid {
  column-count: 2;
  column-gap: 1em;
}
	/* Menu Reset */
	.widget-span.custom-menu-primary2,
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul,
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul li,
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul li a{
		display: block;
		float: none;
		position: static;
		top: auto;
		right: auto;
		left: auto;
		bottom: auto;
		padding: 0px;
		margin: 0px;
		background-image: none;
		background-color: transparent;
		border: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none; 
		max-width: none;
		width: 100%;
		height: auto;
		text-decoration: none;
		text-indent: 0px;
		text-align: left;
	}

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

	.mobile-trigger2{
		display: block;
		cursor: pointer;
		position: absolute;
		z-index: 50;
		top: 0px;
		right: 0;
		padding: 22px 20px 0;
	}
	.mobile-trigger2 i {
		background: #00ACAA;
		height: 3px;
		width: 30px;
		margin-bottom: 5px;
		display: block;
		float: right;
		clear: both;
		position: relative;
		z-index: 99999;
		transition: all .3s ease-out;
	}
	.mobile-trigger2 i:nth-child(2) {
		width: 20px;
	}
	.mobile-open .mobile-trigger2 i:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}
	.mobile-open .mobile-trigger2 i:nth-child(2) {
		width: 0;
	}
	.mobile-open .mobile-trigger2 i:nth-child(3) {
		transform: rotate(-45deg);
		top: -6px;
	}

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

	.child-trigger2{
		display: block;
		cursor: pointer;
		position: absolute;
		top: 0px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
	.child-trigger2:hover{
		text-decoration: none;
	}
	.child-trigger2 i{
		position: relative;
		top: 50%; /* Centers icon inside button */
		margin: 0 auto !important;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.child-trigger2 i:after{
		position: absolute;
		content: '';
	}
	.child-trigger2 i, .child-trigger2 i:after{
		width: 10px; /* Icon line width */
		height: 1px; /* Icon line height */
		background-color: #351617; /* Icon color */
		display: block;
	}
	.child-trigger2 i:after{
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}  
	.child-trigger2.child-open i{}
	.child-trigger2.child-open i:after{
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}


	/* Hide menu on mobile */
	.widget-span.custom-menu-primary2.js-enabled .hs-menu-children-wrapper{
		display: none;
	}  

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

	/* Mobile Menu Styles */ 
	.widget-span.custom-menu-primary2.js-enabled .hs-menu-wrapper{
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper{
		width: 100%; /* Full screen width */
	}

	/* Level 1 Menu List Styles */
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li{
		padding-left: 35px;
		font-size: 25px;
		margin-bottom: 10px;
		position: relative;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li a{
		overflow: visible;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li.active {
		background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/subheading-anchor.svg') 20px center no-repeat;
		background-size: 7px;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li.active > a {
		font-size: 25px;
		padding: 0;
		background: transparent;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li > a:hover {
		padding: 0;
		background: no-repeat;
	}

	/* Level 1 and Higher Menu List Styles */
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul li{
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper >  ul li a{
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul li a:hover{
	}

	/* Level 2 and Higher Menu List Styles */
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul {
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul li{
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul li a{
		font-size: 20px;
	}

	/* Level 3 and Higher Menu List Styles */
	.custom-menu-primary2 .hs-menu-wrapper > ul ul ul li a{
	}

	/* Level 4 and Higher Menu List Styles */
	.custom-menu-primary2 .hs-menu-wrapper > ul ul ul ul li a{
	}
}


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

/* Blog Author and Avatar */
#hubspot-author_data {}
#hubspot-author_data:after {
	content: '';
	display: block;
	clear: both;
}
#hubspot-author_data a.author-link {}
#hubspot-author_data .hs-author-avatar {}
#hubspot-author_data .hs-author-avatar img {
	width: 50px;
	float: left;
	margin-right: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {}
.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;
	max-height: 170px;
	max-width: 210px;
	height: auto;
	width: auto;
	display: inline-block !important;
	float: right;
	margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {}

/* 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;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	height: auto;
}

/* Blog Commments */
#comments-listing:not([data-has-comments="true"]) {
	display: none;
}
#comments-listing {
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
	margin-top: 30px;
}
.comment {
	margin: 10px 0;
	border-top: 1px solid #ccc;
	padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

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

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


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

.listing-banner-area .banner-sub-heading {
	float: left;
	width: 100%;
}
.listing-banner-area h1 {
	background: transparent;
}
.listing-banner-area .banner-sub-heading p {
	font-size: 1.2rem;
	line-height: 1.1;
	margin: 0 0 20px;
}
.listing-banner-categorie {
	display: block;
	width: 180px;
	list-style: none;
	margin: 0;
	padding: 45px 0 10px 0;
	position: absolute;
	z-index: 10;
	top: 189px;
	right: 25px;
	font-size: 16px;
	transition: all .2s ease-in;
}
.listing-banner-categorie li {
	display: none;
	margin: 0 0 5px;
	padding: 0 0 0 14px
}
.listing-banner-categorie::before {
	content: "Filter by Category";
	display: block;
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/anchor-down.svg') 92% center no-repeat #008080;
	background-size: 10px;
	padding: 7px 30px 10px 20px;
	color: #fff;
	border-radius: 25px;
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	font-weight: 600;
	transition: all .2s ease-in;
}
.active.listing-banner-categorie li {
	display: block;
}
.active.listing-banner-categorie {
	transition: all .5s ease-out;
	background: #F9F8F5;
	border-radius: 10px;
	box-shadow: 0 10px 60px rgba(0,0,0,.2);
}
.active.listing-banner-categorie::before {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/anchor-up.svg') 92% center no-repeat #008080;
	background-size: 10px;
	border-radius: 10px 10px 0 0;
	transition: all .2s ease-out;
}
.widget-span.listing-content-wrapper.widget-span.page-center {
	padding: 101px 0 0 10px;
}
.post-item {
	width: 33.33%;
	padding: 0 30px 30px 0;
	float: left;
}
.post-listing {
	margin: 0 -30px 0 0;
}
.post-listing::before, .post-listing::after {
	content: "";
	display: block;
	clear: both;
}
.post-entry {
	background: #fff;
	box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.16);
	border-radius: 10px;
	overflow: hidden;
}
.post-entry .post-image {
	max-height: 240px;
	overflow: hidden;
}
.post-entry .post-image a {
	display: block;
}
.post-entry .post-image img {
	vertical-align: top;
	width: 100%;
}
.post-entry .post-content {
	padding: 20px 30px 10px 40px;
}
.post-title {
	position: relative;
	line-height: 1;
	margin: 0 0 5px;
	font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #351617;
}
.post-title::before {
	content: "";
	display: block;
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/heading-anchor.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -20px;
	top: 6px;
	width: 9px;
	height: 15px;
}
.post-title a {
	color: inherit;
	text-decoration: none;
	font: inherit;
}
.post-title:hover {
	opacity: .85;
}
.post-entry .post-date-category-area {
	font-size: 16px;
}
.post-entry .post-category::before {
	content: " in ";
	display: inline-block;
	margin: 0 4px;
}
.post-entry .post-category .post-category-item:not(:last-child)::after {
	content: ", ";
	margin-right: 4px;
}
.post-entry .post-content p {
	border-top: 2px solid #00ACAA;
	padding: 10px 10px 0 0;
	font-size: 1rem;
	margin: 10px 0 1.5em;
}
.post-entry .read-more {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 21.73913043px;
	font-size: 16px;
	padding: 10px 21px 12px;
	background: #008080;
	color: #FFFFFF;
	border-radius: 20px;
	line-height: 1;
}
.post-entry .read-more::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 10px;
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-left: 5px;
	position: relative;
	right: 0;
	transition: all .3s ease-out;
}
.post-entry .read-more:hover::after {
	right: -10px;
}
.post-banner-area.banner-area {
	min-width: 100vw;
	padding: 0;
}
.post-banner-area .page-center {
	max-width: 768px !important;
}
.post-banner-area .banner-content {
	padding-right: 0;
	padding-left: 0;
}
.post-banner-area h1 {
	background: none;
	margin-bottom: 0;
}
.post-banner-area .post-banner-date-author-area {
	font-size: 17px;
	margin: 10px 0 30px;
}
.widget-span.post-content-wrapper.widget-span.page-center {
	padding: 45px 0 160px 0;
}
.widget-span.post-content-wrapper .widget-span.blog-content {
	float: none;
	max-width: 768px;
	margin: 0 auto;
}
.post-topic-area {
	font-weight: 700;
}
.post-topic-area a {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 6px 0;
	background: #008080;
	color: #FFFFFF;
	padding: 2px 16px;
	font-size: 16px;
	border-radius: 16px;
	text-decoration: none;
}
.post-topic-area a:first-child {
	margin-left: 20px;
}
.post-content-area {
	background: #fff;
}
.hs-blog-post .body-container {
	background: #ECE9DE;
}
.blog .footer-container-wrapper {
	position: relative;
	z-index: 5;
}
.related-posts-area {
	padding: 100px 0 0 0;
	position: relative;
	z-index: 5;
	background: #ECE9DE;
}
.related-posts-area .related-heading {
	line-height: 1;
	margin: 0 0 10px;
	position: relative;
}
.related-posts-area .related-heading::after {
	content: "";
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/subheading-anchor.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	left: -30px;
	top: 6px;
	width: 16px;
	height: 26px;
}
.post-share-area {
	width: 120px;
	position: fixed;
	left: calc( (100vw - 1050px)/2);
	z-index: 1;
}
.post-share-area strong {
	font-weight: bolder;
}
.post-share-area a {
	color: #fff;
	width: 115px;
	display: block;
	border-radius: 25px;
	padding: 7px 10px 7px 37px;
	font-size: 14px;
	margin: 6px 0 8px;
}
.post-share-area a.facebook {
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/fb-share.svg') 3px center no-repeat #008080;
}
.post-share-area a.twitter {
	background: url(//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/twitter-share.svg) 3px center no-repeat #008080;
}
.author-banner-area.banner-area {
	padding: 0;
}
.author-banner-area.banner-area .banner-area-wreapper {
	width: 100%;
}
.author-banner-area.banner-area .author-info,
.see-all-post-area {
	width: 100%;
}
.author-info .hs-author-bio {
	margin: 0 0 10px;
}
.listing-banner-area .see-all-post-area {
	align-items: flex-start;
	padding-top: 37px;
}
.author-banner-area.banner-area h1 {
	margin-bottom: 0;
	border: none;
}
.author-banner-area.banner-area .banner-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 150px 15px 0;
}
.see-all-post-area {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.see-all-post-area .see-all-post-link {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	font-weight: 600;
	width: 160px;
	font-size: 16px;
	margin: 0 10px 12px 0;
	padding: 9px 23px 12px;
	border-radius: 20px;
	line-height: 1;
	background: #e5a925;
	color: #351617;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.see-all-post-area .see-all-post-link::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-left: 5px;
	position: relative;
	right: 0;
	transition: all .3s ease-out;
	background-image: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-orange.svg');
}
.see-all-post-area .see-all-post-link:hover::after {
	right: -10px;
}
.topic-banner-area .listing-banner-categorie {
	top: 187px;
	right: 200px;
}
.topic-banner-area.banner-area {
	overflow: visible;
}
.topic-banner-area.banner-area h1 {
	text-transform: capitalize;
}
.mobile-categorie,
.mobile.listing-banner-categorie {
	display:none;
}




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


/* =============== Global Form Styles =============== */
.form-title {
	font-size: 40px;
	margin: 0 0 30px;
	line-height: 1;
}

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

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

/* Labels and Legends */
label {
	display: block;
	margin: 0 0 10px;
	color: #666;
	font-size: 18px;
	font-weight: 100;
}
.hs-form-field > label {}

/* 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 {
	display: block;
	width: 100%;
	margin: 0 0 25px;
	background-color: #FFFFFF;
	border: none;
	height: 65px;
	color: #351617;
	font-family: sans-serif;
	font-weight:400;
	font-size: 14px;
	line-height: 55px;
	width: 100%;
	border-radius: 52px;
	padding: 5px 65px 5px 30px;
	box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.3);
}
#hs-pwd-widget-password {
	height: 65px !important;
}

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:focus {
	outline:none;
}

input[type="search"] {
	-webkit-appearance: none;
	-moz-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/* Separate Styles for Multiple Line Inputs */
textarea {
	height: auto;
	min-height: 150px;
}
textarea:focus {}

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

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list {
	list-style: none;
	padding: 0;
}
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}

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

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

/* Error */
.hs-error-msgs label {
	color: #f00;
}
.hs-form-required {
	color: #e5a925;
}
ul.no-list.hs-error-msgs.inputs-list {
	list-style: none;
	padding: 0;
}

.marketplace .hs_what_are_you_interested_in_discussing_.hs-what_are_you_interested_in_discussing_.hs-fieldtype-select.field.hs-form-field {
    margin-left: 15px;
}
.hs_your_organization_name.hs-your_organization_name.hs-fieldtype-text.field.hs-form-field {
    padding-left: 15px;
}
.marketplace #sidebar .hs-form .field.hs_email {
    padding-left: 15px;
}
/* Placeholder Text */
::-webkit-input-placeholder {
	font-family: 'Source Sans Pro',Helvetica,Arial,sans-serif;
	color: #666;
	font-size: 18px;
	font-weight: 100;
} /* Webkit Browsers */
:-moz-placeholder {
	font-family: 'Source Sans Pro',Helvetica,Arial,sans-serif;
	opacity: 1;
	color: #666;
	font-size: 18px;
	font-weight: 100;
} /* Firefox 18- */
::-moz-placeholder {
	font-family: 'Source Sans Pro',Helvetica,Arial,sans-serif;
	opacity: 1;
	color: #666;
	font-size: 18px;
	font-weight: 100;
} /* Firefox 19+ */
:-ms-input-placeholder {
	font-family: 'Source Sans Pro',Helvetica,Arial,sans-serif;
	color: #666;
	font-size: 18px;
	font-weight: 100;
} /* IE10 */


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

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

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

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


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

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

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

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

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


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

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

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

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

/* Label */
.widget-type-google_search label {}

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


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


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

.hs-button.primary,
input[type="submit"],
input[type="button"] {
	cursor: pointer;
	-webkit-appearance: none;
	text-decoration: none !important;
	white-space: normal !important;
	display: inline-block;
	vertical-align: middle;
	width: 55px;
	height: 55px;
	border-radius: 100%;
	border: none;
	color: transparent;
	background: url('//455700.fs1.hubspotusercontent-na1.net/hubfs/455700/AuntBertha_January2020/Images/btn-arrow-green.svg') 23px center no-repeat #e5a925;
	background-size: 14px;
	margin: 20px 0 30px;
	padding: 10px 30px 10px 25px;
	transition: all .2s ease-in;
}

.hs-button.primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #008080;
}

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


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

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


/* =============== Blog Comment Button =============== */

#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}


/* =============== Blog Subscription Button =============== */

#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* =============== Google Search Button =============== */

.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}


/* ==========================================================================
8. MISCELLANEOUS                                      
========================================================================== */


/* Styles that do not fit into any of the available sections above can go here. */
.no-nav .body-container {
	padding-bottom: 50px;
}

/* ==========================================================================
9. MEDIA QUERIES                              
========================================================================== */
/* =================================== Only Form =================================== */
@media (max-width:767px){
	.custom-form{
		width:100%!important;
	}
  .hs-content-name-customer-training-series-splash-page-sept-2023 .imgContainer {
    margin-top: 20px;
}
  .hs-content-name-customer-training-series-splash-page-sept-2023 .ce-advanced p {
    margin-bottom: 25px;
}
    .hs-content-name-customer-training-series-splash-page-sept-2023 .ce-basic p {
    margin-bottom: 25px;
}
    .hs-content-name-customer-training-series-splash-page-sept-2023 .ce-intermediate p {
    margin-bottom: 25px;
}
}
@media (min-width:768px){
	.custom-form{
		width:50%!important;
	}	
}
@media screen and (max-width: 768px)  {

	/* Force table to not be like tables anymore */
	table.ofcourse-table, table.ofcourse-table thead, table.ofcourse-table tbody, table.ofcourse-table th, table.ofcourse-table td, table.ofcourse-table tr { 
		display: block; 
	}
  table.ofcourse-table td:nth-child(3) {
    padding-left: 16%;
    padding-top: 40px;
}
	
	/* Hide table headers (but not display: none;, for accessibility) */

	
	table.ofcourse-table tr { border: 1px solid #ccc; }
	
	table.ofcourse-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
  table.ofcourse-table tr:nth-child(4) td:nth-child(1) {
    border-bottom-left-radius: 0;
}
  table.ofcourse-table td:nth-child(2) h5 {
    padding-left: 50%;
}
  table.ofcourse-table tr:nth-child(4) td:nth-child(3) {
    border-bottom-right-radius: 0;
}
	
	table.ofcourse-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	table.ofcourse-table td:nth-of-type(1):before { 
    content: "Course";
    position: absolute;
    top: 40px;
    left: 20px;
    font-size: 22px;
  }
table.ofcourse-table td:nth-of-type(2):before {
    content: "Credits";
    position: absolute;
    top: 27px;
    left: 20px;
    font-size: 22px;
}
  .ofcourse-started {
    margin-top: 40px;
}
  .ofcourse-started h2 {
    font-size: 32px;
}
  .ofcourse-started p {
    font-size: 22px;
    margin-top: 30px;
}
  table.ofcourse-table tr:nth-child(2) td:nth-child(1) {
    width: auto;
}
  .ofcourse-head-right-col {
    position: relative;
    right: auto;
}
  table.ofcourse-table tr:nth-child(1) {
    display: none;
}
  img.ofcourse-right-img {
    width: 96%;
    margin-top: 25px;
    margin-left: auto !important;
    margin-right: auto !important;
}
  .span12.widget-span.widget-type-cell.beigeBg.page-center.header-ce.of-head {
    padding-bottom: 50px !important;
}
  table.ofcourse-table {
    background: #ECE9DE;
    box-shadow: none;
    border-radius: 0;
    margin-top: 50px;
}
}
/* ================================================================================ */
/* ============================== Page Center Only ============================== */
@media (max-width: 980px) {
	.container-fluid .row-fluid .page-center {
		width: 635px;
	}
  .hs-content-name-plinko-lead-capture-page-2023 div#sidebar {
    margin-top: 30px;
    margin-bottom: 80px;
}
  .span4.widget-span.widget-type-cell.ce-intermediate {
    margin: 40px 0;
}
  div#lead-courses {
    padding: 0;
}
  .span12.widget-span.widget-type-cell.mental-brown-sec.page-center.content-wrapper {
    border-radius: 40px;
}
  .hs-content-name-mental-health-landing-page-2023 div#heading {
    padding-bottom: 60px;
}
  .hs-content-name-mental-health-landing-page-2023 #heading a {
    margin-bottom: 30px;
}
  div#brown-bar {
    margin-top: 100px;
}
  .logo-bar-ar {
    width: 100% !important;
    margin-top: 60px;
}
  .speakers-50-inner {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}
  ul.ce-menu.learn-menu {
    float: none;
}
  .marketplace div#heading {
    padding-top: 0;
    padding-bottom: 40px;
}
  .marketplace .main-content {
    padding-top: 40px;
    padding-bottom: 40px;
}
 .learning-center .span6.widget-span.widget-type-custom_widget.abLogo.singleLogo {
    text-align: center;
    float: none;
    margin: auto auto 30px;
}
  .custom-101 .custom-one, .custom-101 .custom-two {
    width: 48%;
    margin: 0 2% 60px 0;
  }
}
@media (max-width: 767px) {
	.container-fluid .row-fluid .page-center {
		width: 80vw;
		padding-right: 0;
		padding-left: 0;
		max-width: 100%;
	}
}
/* ============================== Page Center End ============================== */


/* =============== min 768px =============== */
@media (min-width:768px){
	@keyframes fadeInDown {
		from {
			opacity: 0;
			transform: translate3d(0, -100px, 0);
			-webkit-transform: translate3d(0, -100px, 0);
		}
		to {
			opacity: 1;
			transform: translate3d(0, 0, 0);
			-webkit-transform: translate3d(0, 0, 0);
			-webkit-font-smoothing: antialiased;
		}
	}
	.scroll-header .widget-span.header-area {
		position: fixed;
		background: rgba(236, 233, 222, 0.95);
		border-bottom: solid 2px #00ACAA;
		min-height: 66px;
		padding: 0 20px;
		animation: fadeInDown 0.3s ease-out forwards;
	}
	.scroll-header .logo-area a {
		margin-top: 7px;
		width: 52px;
		overflow: hidden;
	}
	.scroll-header .logo-area img {
		height: 50px;
		width: auto !important;
		max-width: none;
		vertical-align: middle;
	}
	.scroll-header .widget-span.custom-menu-primary2 .hs-menu-wrapper > ul ul {
		background: rgba(236,233,222,0.95);
		padding: 10px;
	}
	.span5.footer-social-form-area {
		width: 41.66666667%;
	}
	.span7.copyright-footer-links-area {
		width: 58.33333333%;
	}
	.listing-banner-area .banner-sub-heading {
		width: 50%;
	}
	.author-banner-area.banner-area .author-info,
	.see-all-post-area{
		width: 50%;
	}
}


/* =============== 1500px =============== */
@media (max-width: 1500px) {
	.widget-span.logo-area,
	.widget-span.logo-area:first-child {
		margin-left: 10px;
	}
	.widget-span.main-menu {
		margin-left: 20px;
	}
	.widget-span.custom-menu-primary2 .hs-menu-wrapper > ul > li:not(:last-child) {
		margin-right: 10px;
	}
}


/* =============== 1100px =============== */
@media (max-width: 1100px) {
	.post-share-area {
		width: 75px;
		left: calc( (100vw - 956px)/2);
	}
  .sub-un-body .custom-form {
    width: 80% !important;
}
  .sub-un-body form#email-prefs-form #content {
    position: relative;
    width: 100% !important;
}
	.post-share-area a {
		color: transparent;
		width: 31px;
		padding: 7px 0px 7px 29px;
		margin: 6px 0px 8px 8px;
	}
}


/* =============== 1024px =============== */
@media (max-width: 1024px) {}


/* =============== 980px =============== */
@media (max-width: 980px) {
	.banner-area {
		padding-bottom: 100px;
	}
  .support-col.support-1 h4 {
    text-align: right;
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 18px;
}
	.banner-area h1 {
		background: none;
	}
	.span5.footer-social-form-area,
	.span7.copyright-footer-links-area {
		width: 100%;
	}
	.widget-span.footer-social-form-area {
		margin-bottom: 20px;
	}
	.f-form {
		max-width: 447px;
	}
	.f-form-heading-area p {
		margin: 0 0 1.3em;
	}
	.f-form-heading-area h2 {
		font-size: 30px;
	}
	.f-form-heading-area h2::after {
		left: -20px;
		top: 2px;
		width: 12px;
	}
	.widget-span.footer-social-form-area {
		padding-top: 65px;
	}
	.listing-banner-categorie {
		display: none;
	}
	.banner-sub-heading {
		width: 100%;
	}
	.listing-banner-area h1 {
		margin-bottom: 24px;
	}
	.listing-banner-area .banner-content {
		padding-top: 155px;
	}
	.listing-banner-area .banner-sub-heading p {
		margin-bottom: 21px;
	}
	.post-item {
		width: 50%;
	}
	.post-entry .post-date-category-area {
		font-size: 14px;
	}
	.related-posts-area .post-item:nth-child(3) {
		display: none;
	}
	.widget-span.post-content-wrapper.widget-span.page-center {
		max-width: 85%;
		width: 635px;
	}
	.post-share-area {
		left: calc( (100vw - 760px)/2);
	}
	.related-posts-area .page-center {
		max-width: 85vw !important;
		width: 635px !important;
	}
	.author-banner-area.banner-area .author-info,
	.see-all-post-area {
		width: 100%;
	}
	.author-banner-area.banner-area .banner-area-wreapper {
		width: 100vw;
		padding: 0 15px;
	}
	.see-all-post-area {
		justify-content: center;
		align-items: center;
		padding: 9px 0 1px 0;
	}
	.see-all-post-area .see-all-post-link {
		position: relative;
		left: -18px;
	}
	.topic-banner-area .listing-banner-categorie {
		display: block;
		position: relative;
		top: 0;
		left: 0;
	}
	.topic-banner-area.banner-area .see-all-post-area {
		justify-content: end;
		align-items: end;
	}
	.topic-banner-area.banner-area .see-all-post-area .see-all-post-link {
		position: static;
		margin: 0 10px 0 19px;
	}
	.topic-banner-area .listing-banner-categorie {
		padding: 45px 0 4px 0;
	}
	.author-info .hs-author-bio {
		margin-top: 30px;
	}
	.listing-banner-area .see-all-post-area {
		padding-top:9px;
	}
	.related-posts-area .related-heading {
		font-size: 30px;
	}
	.related-posts-area .related-heading::after {
		left: -20px;
		top: 2px;
		width: 12px;
	}
}


/* =============== 781px =============== */
@media (max-width: 781px) {
	.banner-area .page-center {
		max-width: 71vw !important;
		padding: 0 0 0 8px !important;
	}
	.widget-span.post-content-wrapper .widget-span.blog-content {
		max-width: 80%;
	}
	.post-share-area {
		left: calc( (100vw - 640px)/2);
	}
}


/* =============== 767px =============== */
@media (max-width: 767px) {
	h1 {
		font-size: 35px;
	}
  .span12.widget-span.widget-type-cell.mental-brown-sec.page-center.content-wrapper {
    padding: 40px 20px !important;
}
	h2 {
		font-size: 30px;
	}
	.header-container {
		min-height: 65px;
	}
  .what-free.fact-sheets {
    padding-left: 40px;
}
  .case-acc .col-md-6 {
    width: 100%;
    float: left;
}
  .support-col.support-2 p {
    margin-bottom: 20px;
    width: 95%;
}
  .support-col.support-1 h4 {
    text-align: center;
    margin-bottom: 20px;
}
  .support-col {
    width: 100%;
    text-align: center;
}
  .acc-box.bor-bot {
    border-bottom: none;
}
	.widget-span.header-area {
		position: fixed;
		z-index: 1000;
		background: #ECE9DE;
		padding: 0;
		min-height: 65px;
	}
	.logo-area img {
		height: 45px;
	}
	.widget-span.logo-area,
	.widget-span.logo-area:first-child {
		width: auto;
		margin: 9px 0 0 0;
		float: left;
	}
	.widget-span.main-menu {
		overflow-x: hidden;
		overflow-y: auto;
		position: fixed;
		z-index: 40;
		top: 0;
		left: 100vw;
		width: 70vw;
		height: 100vh;
		margin: 0;
		padding: 70px 0 0 0;
		background: rgba(236, 233, 222, .95);
		border-left: 1px solid #008080;
		transition: left .3s ease-in;
	}
	.mobile-open .widget-span.main-menu {
		left: 30vw;
		transition: left .3s ease-out;
	}
	.widget-span.header-area .widget-span.page-center {
		width: 100%;
	}
	.banner-area .page-center {
		width: 80vw !important;
		max-width: 100% !important;
		padding: 0 !important;
	}
	.banner-text p { 
		font-size: 20px;
	}
	.banner-area {
		padding-bottom: 90px;
	}
	.banner-area h1 {
		font-size: 30px;
		line-height: 1;
	}
	.banner-content {
		padding-right: 0;
		padding-left: 0;
	}
	.banner-area h1::before {
		top: 7px;
		left: -20px;
		width: 12px;
		height: 19px;
	}
	.copyright-footer-links-area,
	.f-links .hs-menu-wrapper > ul {
		text-align: left;
	}
	.widget-span.footer-group .widget-span.page-center {
		width: 635px;
		max-width: 90vw;
	}
	.widget-span.f-links {
		margin-top: 20px;
	}
	.f-follow-area p,
	.f-follow-area,
	.widget-span.footer-social-form-area {
		margin: 0;
	}
	.widget-span.footer-social-form-area {
		padding-top: 70px;
	}
	.footer-social-form {
		margin-bottom: 4px;
	}
	.f-form {
		left: 0;
	}
	.f-form form input[type="email"]::placeholder {
		font-size: 16px;
	}
	.f-form-heading-area p {
		font-size: 16px;
	}
	.f-form-heading-area {
		position: relative;
		left: 3vw;
		margin: 0 0 48px;
	}
	.f-form-heading-area h2::after {
		height: 15px;
		left: -17px;
		top: 8px;
	}
	.f-follow-area {
		padding-top: 5px;
	}
	.listing-banner-area h1 {
		margin-bottom: 15px;
	}
	.listing-banner-area .banner-sub-heading p {
		font-size: 20px;
	}
	.widget-span.listing-content-wrapper.widget-span.page-center {
		padding: 70px 0 0;
	}
	.mobile.listing-banner-categorie {
		display: block;
		top: 0;
		clear: both;
		left: 0;
		margin: 0;
		float: left;
		padding-bottom: 0;
	}
	.listing-banner-area.banner-area {
		padding-bottom: 55px;
		overflow: visible;
	}
	.mobile-categorie {
		display: block;
		width: 100%;
		float: left;
		height: 45px;
		position: relative;
		margin: 19px 0 0 0;
	}
	.post-listing {
		margin: 0;
	}
	.post-item {
		width: 100%;
		padding: 0 0 30px 0;
	}
	.related-posts-area .related-heading {
		font-size: 30px;
	}
	.related-posts-area .related-heading::after {
		height: 15px;
		width: 12px;
		left: -17px;
		top: 8px;
	}
	.post-share-area,
	.post-body {
		font-size: 17px
	}
	.author-banner-area.banner-area .page-center {
		max-width: 100% !important;
		padding: 0 !important;
	}
	.author-banner-area.banner-area .banner-content {
		padding-right: 0;
		padding-left: 0;
	}
	.author-banner-area.banner-area h1 {
		padding: 0 0 50px 0;
	}
	.see-all-post-area {
		justify-content: end;
	}
	.see-all-post-area .see-all-post-link {
		position: static;
		width: 180px;
	}
	.post-entry .post-image {
		max-height: unset;
	}
	.author-banner-area.banner-area h1 {
		padding: 0 0 10px 0;
	}
	.author-info .hs-author-bio {
		margin-top: 29px;
	}
	.topic-banner-area.banner-area h1 {
		padding: 0 0 7px 0;
	}
	.topic-banner-area.banner-area .see-all-post-area {
		display: block;
		padding: 52px 0 1px 0;
		position: relative;
	}
	.topic-banner-area .listing-banner-categorie {
		padding: 43px 0 0px 0;
		position: absolute;
		top: 9px;
	}
	.topic-banner-area.banner-area .see-all-post-area .see-all-post-link {
		margin: 0 0 12px 0;
	}

}


/* =============== 660px =============== */
@media (max-width: 660px) {
	.f-form-heading-area {
		margin-bottom: 28px;
		left: 2.1vw;
	}
  div#brown-bar {
    margin-top: 60px;
}
	.post-share-area {
		left: calc( (100vw - 580px)/2);
	}
  .register-sessions a.btn.btn-101.btn-expert.btn-custom-box.custom-cta.cta_button {
    color: var(--brown);
    background: url(https://organizations.findhelp.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) 85% center no-repeat var(--yellow);
    display: block;
    margin-top: 6px;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    float: none;
    width: 100px;
}
  .register-sessions h3 {
    display: block;
    padding-left: 0;
    padding-top: 10px;
}
  .register-sessions {
    text-align: center;
}
}


/* =============== 600px =============== */
@media (max-width: 600px) {
  .sub-em-header .logo-area:after {
    content: "Communication Preferences";
    font-weight: bold;
    font-size: 22px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    top: 90px;
    position: absolute;
    padding-left: 25px;
    background-position: left;
    background-size: 12px;
    left: 20px;
}
  .ce-basic h3 {
    font-size: 30px;
    margin-bottom: 10px;
}
  .ce-basic h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
  .ce-basic p {
    font-size: 18px !important;
    margin-bottom: 10px;
}
  .ce-basic .cta_button {
    font-size: 13px !important;
}
    .ce-intermediate h3 {
    font-size: 30px;
    margin-bottom: 10px;
}
  .ce-intermediate h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
  .ce-intermediate p {
    font-size: 18px !important;
    margin-bottom: 10px;
}
  .ce-intermediate .cta_button {
    font-size: 13px !important;
}
      .ce-advanced h3 {
    font-size: 30px;
    margin-bottom: 10px;
}
  .ce-advanced h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
  .ce-advanced p {
    font-size: 18px !important;
    margin-bottom: 10px;
}
  .ce-advanced .cta_button {
    font-size: 13px !important;
}
  .sp-right.klikman {
    padding-top: 20px;
}
  .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 .speakersBox .fqhc-table td:first-child {
    width: 100% !important;
    display: inline-block !important;
}
  .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 .speakersBox .fqhc-table td:last-child {
    width: 100% !important;
    display: inline-block !important;
}
    .sub-up-header .logo-area:after {
    content: "Communication Preferences";
    font-weight: bold;
    font-size: 22px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    top: 90px;
    position: absolute;
    padding-left: 25px;
    background-position: left;
    background-size: 12px;
    left: 20px;
}
      .sub-un-header .logo-area:after {
    content: "Communication Preferences";
    font-weight: bold;
    font-size: 22px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    top: 90px;
    position: absolute;
    padding-left: 25px;
    background-position: left;
    background-size: 12px;
    left: 20px;
}
  .span12.widget-span.widget-type-global_group.sub-em-header {
    padding-bottom: 145px;
    border-bottom: 3px solid #00aba9;
}
  .span12.widget-span.widget-type-global_group.sub-up-header {
    padding-bottom: 145px;
    border-bottom: 3px solid #00aba9;
}
  .span12.widget-span.widget-type-global_group.sub-un-header {
    padding-bottom: 145px;
    border-bottom: 3px solid #00aba9;
}
  .sub-em-header .logo-area img {
    height: auto;
}
    .sub-up-header .logo-area img {
    height: auto;
}
      .sub-un-header .logo-area img {
    height: auto;
}
  .sub-em-footer .span7.widget-span.widget-type-cell.copyright-footer-links-area {
    padding-left: 0;
    padding-top: 20px;
}
  .sub-up-footer .span7.widget-span.widget-type-cell.copyright-footer-links-area {
    padding-left: 0;
    padding-top: 20px;
}
  .sub-un-footer .span7.widget-span.widget-type-cell.copyright-footer-links-area {
    padding-left: 0;
    padding-top: 20px;
}
  .gt-findhelp a.resolve-btn {
    text-align: center;
}
  .marketplace .span7.widget-span.widget-type-custom_widget.abLogo.logo-area {
    width: 100% !important;
}
  .marketplace .logo-area img {
    height: 60px !important;
    width: 200px !important;
}
	.post-share-area {
		left: calc( (100vw - 520px)/2);
	}
  .sp-left {
    width: 100%;
    float: none;
    text-align: center;
}
  .sp-right {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 30px;
}
  a.resolve-btn {
    margin-top: 20px;
    display: block;
    float: none;
  }
  .register-sessions a.btn.btn-101.btn-expert.btn-custom-box.custom-cta.cta_button {
    color: var(--brown);
    background: url(https://organizations.findhelp.com/wp-content/themes/aunt-bertha/img/btn-arrow-orange.svg) 85% center no-repeat var(--yellow);
    display: block;
    margin-top: 6px;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    float: none;
    width: 100px;
}
  .register-sessions h3 {
    display: block;
    padding-left: 0;
    padding-top: 10px;
}
  .register-sessions {
    text-align: center;
}
  .hs_state.hs-state.hs-fieldtype-select.field.hs-form-field {
    padding-left: 0 !important;
}
  .learning-center p {
    font-size: 16px;
}
  .browse-sec h2 {
    font-size: 30px;
    margin-top: -104px;
}
  .span12.widget-span.widget-type-cell.beigeBg.page-center.header-lc h2 {
    margin-top: 40px;
  }
  .learning-center li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
}
  .acc-title p {
    font-size: 16px;
}
  .acc-box .acc-title h3 {
    position: relative;
    font-size: 18px;
}
  .learning-center .footer-container-wrapper li {
    font-size: 16px;
    margin-bottom: 0;
}
  .learning-center .footer-container-wrapper p {
    font-size: 16px;
}
  .custom-101 .custom-one, .custom-101 .custom-two {
    width: 100%;
    float: left;
    margin: 0 auto 40px !important;
    min-height: 0;
}

  h4.ready-claim:before {
    content: "" !important;
  }
  img.exp-img {
    margin: auto;
    float: none;
    display: block;
    margin-top: 40px;
}
}


/* =============== 530px =============== */
@media (max-width: 530px) {
	.post-share-area {
		left: calc( (100vw - 480px)/2);
	}
}


/* =============== 490px =============== */
@media (max-width: 490px) {
	.post-share-area {
		left: calc( (100vw - 450px)/2);
	}
  .masonry-grid {
  column-count: 1;
  column-gap: 1em;
}
}


/* =============== 479px =============== */
@media (max-width: 479px) {
	.hs_recaptcha.hs-recaptcha.field.hs-form-field {
		overflow-x: auto;
	}
	.subscribe-options label span {
		font-size: 12px;
	}
}

/* =============== 460px =============== */
@media (max-width: 460px) {
	.post-share-area {
		left: calc( (100vw - 420px)/2);
	}
}


/* =============== 430px =============== */
@media (max-width: 430px) {
	.post-share-area {
		left: calc( (100vw - 400px)/2);
	}
  .browse-sec h2 {
    font-size: 24px;
    margin-top: -104px;
}
  .browse-sec h2:before {
    top: 5px;
}
  .span12.widget-span.widget-type-cell.app-sec2 {
    border-left: none;
    border-right: none;
}
}


/* =============== 410px =============== */
@media (max-width: 410px) {
	.post-share-area {
		left: calc( (100vw - 390px)/2);
	}
  ul.ce-menu li {
    list-style: none;
    display: inline-block;
    margin-left: 0;
}
  ul.ce-menu.learn-menu li a {
    font-size: 18px;
}
}


/* =============== 398px =============== */
@media (max-width: 398px) {
	.post-share-area {
		left: calc( (100vw - 380px)/2);
	}
}


/* =============== 388px =============== */
@media (max-width: 388px) {
	.post-share-area {
		left: calc( (100vw - 370px)/2);
	}
}


/* =============== 360px =============== */
@media (max-width: 360px) {
	.post-share-area {
		left: calc( (100vw - 314px)/2);
	}
}


/* =============== 365px =============== */
@media (max-width: 365px) {}


/* =============== 320px =============== */
@media (max-width: 320px) {
	.f-follow-area {
		padding-bottom: 20px;
	}
	.f-form-heading-area {
		margin: 0 -20px 8px 1px;
		left: 0;
	}
	.f-form-heading-area p {
		margin: 0;
	}
	.listing-banner-area .banner-content {
		padding-top: 154px;
	}
}





/*! CSS Used from: https://company.auntbertha.com/wp-content/themes/aunt-bertha/css/base.min.css?ver=5.3.2 ; media=all */
@media all{
input{margin:0;}
input{overflow:visible;}
legend{box-sizing:border-box;padding:0;}
legend{max-width:100%;}
fieldset{padding:.35em .75em .625em;}
legend{color:inherit;display:table;white-space:normal;}
input{color:#404040;font-family:sans-serif;font-size:16px;font-size:1rem;line-height:1.5;}
*,:after,:before{box-sizing:inherit;}
input[type=text]{color:#666;border:1px solid #ccc;border-radius:3px;padding:3px;}
input[type=text]:focus{color:#111;}
}
/*! CSS Used from: https://company.auntbertha.com/wp-content/themes/aunt-bertha/style.css?ver=5.3.2 ; media=all */
@media all{
::-webkit-scrollbar-track{-webkit-box-shadow:none;background-color:var(--beige);border:0;}
::-webkit-scrollbar{width:8px;height:5px;background-color:var(--beige);}
::-webkit-scrollbar-thumb{background-color:var(--teal);border:0;border-radius:5px;}
.hs-form .field{display:block;}
.hs-form label{padding-left:14px;position:absolute;font-size:14px;font-weight:bold;top: 100%;padding-top:2px;}
.hs-form label:before{position:absolute;content:"";left:0px;top:7px;background:url('https://company.findhelp.com/wp-content/themes/aunt-bertha/img/menu-underline.svg') no-repeat center center;width:11px;height:7px;transform:rotate(-270deg);}
.hs-form .field .hs-input{border:none;border-bottom: 1px solid #e5a925;width:100%;border-radius:0px;padding-left:14px;color:var(--brown);font-size:14px;}
.hs-input:focus,.hs-form .field .hs-input{box-shadow:none;outline:none;}
.hs-form .form-columns-2{position:relative;padding-bottom:20px;margin-bottom:10px;}
.hs-form .form-columns-2 > div{width:49%;display:inline-block;position:relative;z-index:2;}
.hs-form .form-columns-2 > div:first-child{padding-right:15px;}
.hs-form .form-columns-2 > div:last-child{padding-left:15px;}
.hs-form .form-columns-2 > div:nth-of-type(1){left:15px;}
@media (max-width:767px){
fieldset.form-columns-2 .hs-form-field{width:100%!important;}
.hs-form .form-columns-2 > div:first-child{padding-right:0px!important;}
.hs-form .form-columns-2 > div:last-child{padding-left:0px!important;}
}
::-webkit-scrollbar-track{background-color:var(--cream);}
fieldset{border:0;}
input{border:0;border-radius:0;background:transparent;border-bottom:1px solid var(--yellow);}
@media screen and (max-width: 980px){
@media screen and (max-width: 767px){
.hs-form .form-columns-2 > div:nth-of-type(1){width:100%;}
.hs-form .form-columns-2 > div{width:100%;}
.hs-form .form-columns-2 > div:nth-of-type(1){left:auto;}
.hs-form .field .hs-input{position:relative;top:-50px;background:transparent;}
.hs-form .form-columns-2{padding-bottom:0;}
}
}
}
/*! CSS Used from: https://company.auntbertha.com/wp-content/themes/aunt-bertha/tmp.css?ver=5.3.2 ; media=all */
@media all{
.hs-form fieldset{max-width:98%!important;}
.hs-form input:checked:before{display:block;content:" ";position:absolute;top:-2px;left:1px;width:11px;height:7px;border:3px solid var(--teal);border-top:0;border-right:0;transform:rotate(-45deg);border-radius:3px;z-index:10;}
.hs-form .field{display:inline-block;width:100%;margin-bottom:25px;}
span.hs-form-required{color:var(--yellow);}
@media screen and (max-width: 767px){
.hs-form .form-columns-2{max-width:none;}
.hs-form .field .hs-input{position:initial;}
.hs-form .field{margin-bottom:40px;}
}
}
/*! CSS Used from: Embedded */
.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b fieldset{border:0;padding:0;margin:0;max-width:500px;}
.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b fieldset.form-columns-2 .hs-form-field{width:50%;float:left;}
.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b fieldset.form-columns-2 .input{margin-right:8px;}
.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b .hs-field-desc{width:100%;}
@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px){
form.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b:not(.hs-video-form) .form-columns-2 .hs-form-field{float:none;width:100%;}
form.hs-form-baeb1196-3d8b-44b3-811d-6c14657aa37e_27709ac6-509e-4b17-bd5c-b099de44943b:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input{width:95%;}
}
.hs-form .hs-input {
    border-bottom: 1px solid #000;
  
}

label.hs-error-msg:before {
    content: '';
    background: none;
}
label.hs-error-msg{font-size:12px!important;top: 6px;}


li.hs-form-booleancheckbox label:before {
    background:  none;
}

li.hs-form-booleancheckbox label {
    position:  relative;
}

li.hs-form-booleancheckbox label input {
    margin-right: 10px;
}
.hs_choose_a_session.hs-choose_a_session.hs-fieldtype-select.field.hs-form-field {
    position: relative;
}
li.hs-form-booleancheckbox {}
.span12.widget-span.widget-type-cell.imgContainer.housing-right {
    float: none !important;
    margin: 20px auto 40px !important;
}
.housing-caption {
    text-align: center;
}
.masonry-grid .row-fluid-wrapper.row-depth-1.row-number-7 + .row-number-1 + .row-number-1 {
    display: none;
}
.row-fluid-wrapper.row-depth-1.row-number-7 + .row-number-1 .masonry-item {
    margin-bottom: 50px;
}
.row-number-4 .masonry-item {
    margin-bottom: 15px !important;
}
.cp2021 .rightimg {
    float: none !important;
    margin: auto !important;
    width: 100% !important;
}
.cp2021 div#npLogos {
    margin-top: 40px;
}
.enterprise-soft li {
    list-style: none;
}
.enterprise-soft li:before {
    content: ">";
    color: var(--yellow);
    font-size: 25px;
    position: absolute;
    font-weight: bold;
    top: -3px;
    left: -8px;
}
.enterprise-soft li {
    list-style: none;
    position: relative;
    padding-left: 15px;
}
.enterprise-soft ul {
    padding-left: 8px;
    margin-bottom: 40px;
}
.select1 {
    position: relative;
    height: auto;
    table-layout: fixed;
  box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.2);
    border-radius: 10px 10px 10px 10px;
    margin: 30px 0 40px;
}
.select1 tr:first-child {
    border-bottom: 2px solid var(--yellow);
}
.select1 td, .select1 tr:first-child td {
    border: 1px solid var(--beige);
}
.select1 tr:first-child td:first-child img {
    transform: none;
}
.select1 tr:first-child td:first-child img {
    display: block;
    position: absolute;
    right: -15px;
    width: 30px;
    top: 27px;
    z-index: 1;
    transform: rotate(180deg);
}
.select1 tr:first-child td:not(:first-child) img {
    display: none;
}
.select1 tr:nth-child(odd) td {
    background-color: var(--cream);
    width: 15% !important;
}
.select1 tr:first-child td {
    border-top: none;
    padding: 29px 33px;
    text-align: center;
    background-color: var(--cream);
}
.select1 tr:not(:first-child) {
    display: table-row;
}
.select1 tr:first-child ~ tr td:first-child {
    padding: 31px 15px;
    font-size: 20px;
    word-wrap: break-word;
    /* white-space: nowrap; */
    text-align: center;
    /* overflow: hidden; */
}
.select1 tr:nth-child(odd) td {
    background-color: var(--cream);
    width: 15% !important;
}
table.select1 td {
    text-align: center !important;
}
table.select1 h3 {
    margin-bottom: 0 !important;
}
table.select1 p {
    margin-bottom: 0;
}
p.italics-text {
    font-style: italic;
}
.reason-sec {
    margin: 80px 0 0;
}
.reason-sec h2 {
    padding-bottom: 15px;
}
.govt-pricing #sidebar {
    box-shadow: none !important;
    border-radius: 0;
    margin-top: 0;
    background: #fff;
    overflow: visible;
}
.govt-pricing .learn-more {
    margin-top: 80px;
}
.custom-service h2 {
    padding-bottom: 15px;
}
.learn-more h2 {
    padding-bottom: 0;
}
.govt-pricing #sidebar .signup-form {
    box-shadow: 0 10px 60px rgba(0,0,0,.1);
    border-radius: 10px !important;
    margin-top: -125px;
}
.govt-pricing #sidebar {
    padding-top: 0;
    position: relative;
    z-index: 9999;
}
.custom-service {
    padding-bottom: 130px !important;
    position:relative;
}
.govt-pricing #sidebar h3.form-title {
    border-radius: 10px 10px 0 0;
}
.govt-pricing .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    padding-left: 0 !important;
}
.govt-pricing .hs_state.hs-state.hs-fieldtype-select.field.hs-form-field {
    padding-left: 0 !important;
}
.custom-service:after {
    content: "";
    width: 80px;
    height: 80px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 68px;
    background-position: center center;
    background-image: url(https://company.auntbertha.com/wp-content/themes/aunt-bertha/img/home/who_use.svg);
    left: 51%;
    z-index: 999999;
    bottom: 15px !important;
}
@media screen and (min-width:2000px){
  .thankyou .footer-container-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
}
}
@media screen and (max-width:1200px){
  .speakersBox .fqhc-table td:last-child {
    width: 50% !important;
}
  body .speakersBox .fqhc-table td {
    width: 50% !important;
    display: block !important;
    float: none !important;
    height: auto !important;
}
  body .speakersBox .fqhc-table td:first-child {
    width: 50% !important;
}
  #mod-mod .speakersBox .fqhc-table img {
    width: 80% !important;
}
  .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 #mod-mod .speakersBox .fqhc-table img {
    width: 100% !important;
}

  .hs-content-name-quintuple-aim-webinar-jan--2023 #mod-mod .speakersBox .fqhc-table img {
    width: 100% !important;
}
}
@media screen and (max-width:1024px){
.speakersBox .fqhc-table-2 td:first-child {
    width: 40% !important;
}
}
@media screen and (max-width:800px){
.cw-national .custom-cta {
    margin-bottom: 40px;
}
.sec-get-started h2::before {
    height: 20px;
    width: 20px;
    top: 2px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNC42MDYiIGhlaWdodD0iMjUuOTA0IiB2aWV3Qm94PSIwIDAgMTQuNjA2IDI1LjkwNCI+PHBhdGggZD0iTTI1LjAzNyw5LjgzMywxNS4xMzMuNzkyYTMuMTY2LDMuMTY2LDAsMCwwLTQuMTg5LDBMLjg2Nyw5Ljk5YTIuNTQxLDIuNTQxLDAsMCwwLDAsMy44MjQsMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMGw3Ljk4Mi03LjI4Nyw3LjgxLDcuMTNhMy4xNjYsMy4xNjYsMCwwLDAsNC4xODksMEEyLjU0MSwyLjU0MSwwLDAsMCwyNS4wMzcsOS44MzNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNC42MDYgMCkgcm90YXRlKDkwKSIgZmlsbD0iIzE1OWY5YyIvPjwvc3ZnPg==) 0% 0% / 60% no-repeat;
    background-repeat: no-repeat;
}
  .ce-events-2021 li.hs-menu-item.hs-menu-depth-1 {
    list-style: none !important;
    margin-right: 20px;
}
  #mod-mod .speakersBox .fqhc-table img {
    width: 250px !important;
}
  body .speakersBox .fqhc-table td:first-child {
    width: 100% !important;
}
  .speakersBox .fqhc-table td:last-child {
    width: 100% !important;
}
  body .speakersBox table.fqhc-table-2 td:first-child {
    width: 100% !important;
    text-align: center;
    display: block !important;
}
  body .speakersBox table.fqhc-table-2 td:last-child {
    width: 100% !important;
    text-align: center;
    display: block !important;
}
  table.fqhc-table-2 tr {
    display: block !important;
}
  body .speakersBox .fqhc-table td {
    width: 100% !important;
    display: inline-block !important;
    float: none !important;
    height: auto !important;
    text-align: center;
}
  #mod-speakers .speakersBox .fqhc-table-2 p {
    font-size: 22px !important;
    text-align: center !important;
}
}
@media screen and (max-width:980px){
    .empct .custom-cta {
    margin-bottom: 40px;
}
  table.fqhc-table tr {
    display: block !important;
}
  img.ce-right-dots {
    display: none;
}
  .header-ce .singleLogo {
    text-align: center;
    margin-bottom: 20px;
}
  ul.ce-menu {
    text-align: center;
}
  a.btn.btn-101.btn-expert.custom-cta.cta_button {
    margin-bottom: 40px;
}

  .custom-101 .span4 {
    width: 48%;
}
  .span12.widget-span.widget-type-cell.pageSection.beigeBg.custom-101 {
    padding-bottom: 30px;
}
  a.resolve-btn {
    float: none;
  }
}

@media screen and (max-width:640px){
.govt-pricing #sidebar .signup-form {
    margin-top: -100px;
}
  .school-care .partnerLogo {
    width: 100% !important;
    float: left !important;
}
  .school-care .partnerLogo img.hs-image-widget {
    width: auto !important;
    height: auto !important;
    margin-top: 6px;
    float: left !important;
}
  .custom-service:after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 68px;
    background-position: center center;
    background-image: url(https://company.auntbertha.com/wp-content/themes/aunt-bertha/img/home/who_use.svg);
    left: 87%;
    z-index: 999999;
    bottom: 0px !important;
}
  .custom-service {
    padding-bottom: 150px !important;
  }
  .custom-filter-form p {
    margin-bottom: 20px !important;
}
  .ce-events-2021 div#whoIsAB {
    padding-bottom: 0;
}
  .custom-101 .span4 {
    width: 75%;
    margin-left: auto !important;
    margin-right: auto;
}
  .filter-training-box {
    text-align: center;
}
  .header-ce .singleLogo {
    text-align: center;
    margin-bottom: 20px;
    margin-left: auto !important;
    margin-right: auto !important;
}
}
@media screen and (max-width:480px){
  table.select1 h3 {
    font-size: 14px;
    margin-top: 0 !important;
}
  table.fqhc-table span {
    font-size: 16px !important;
}
  #mod-speakers .speakersBox .fqhc-table-2 p {
    font-size: 16px !important;
  }
  .select1 tr:first-child td {
    border-top: 0;
    padding: 20px 10px;
  }
  .span6.widget-span.widget-type-custom_widget.our-approach {
    padding-left: 0 !important;
}
  .our-approach {
    padding-left: 0 !important;
}
  .what-free.fact-sheets {
    padding-left: 0;
}
  .search-support {
    border-radius: 6px;
    padding: 20px;
}ce events
  .select1 tr:first-child ~ tr td:first-child {
    padding: 20px 10px;
    font-size: 14px;
  }
  table.select1 td {
    font-size: 14px;
}
  .one-one-box {
    width: 80% !important;
    margin: auto auto 40px auto !important;
    float: none !important;
}
  h4.ready-claim:before{
  content:"" !important;
  }
 h4.ready-claim {
    padding-left: 0;
    position: relative;
    text-align: center;
} 
 .claim-sec p {
    text-align: center;
} 
  .ce-events-2021 #whoIsAB h3 {
    margin-top: 0;
}
  .speakers-50-inner p {
    text-align: center !important;
}
}
@media screen and (min-width:767px){
  .acc-box.grey-acc.podc {
    min-height: 221px;
}
}
@media screen and (max-width:600px){
    .hs-content-name-beacon-large-employers-webinar-feb--2023-2-15-23 #mod-mod .speakersBox .fqhc-table img {
    width: 235px !important;
}
  #mod-mod .speakersBox tr:not(:last-child) {
    border-bottom: none !important;
}
}
@media screen and (max-width:375px){
  table.ofcourse-table td:nth-child(3) {
    padding-left: 5%;
  }
}