/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}


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

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

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

/**
* Add the correct box sizing in Firefox.
*/

hr {
  box-sizing: content-box;
  height: 0;
}

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
* Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
*/

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

/*
* Add the correct display in Edge and Firefox.
*/

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

strong {
  font-weight: bold;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

[class*="cta-border"] {
  border: solid 2.5px #000;
  color: #fff;
  display: block;
  font-size: clamp(0.75rem, 0.6719rem + 0.25vw, 0.8125rem);
  max-width: fit-content;
  line-height: 1.4;
  padding: 15px;
  text-transform: uppercase;
  transition: 0.35s ease-out;
  text-align: center;
}

[class*="cta-border"]:hover {
  color: #fff;
}

[class*="cta-border"]:after {
  content:'\f054';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  margin-left: 10px;
}


[class*="cta-border"].red {
  border-color: #AF2735;
}
[class*="cta-border"].red:hover {
  background-color: #AF2735;
  border-color: #fff;
}

[class*="cta-border"].yellow {
  border-color: #F7BF0A;

}
[class*="cta-border"].yellow:hover {
  background-color: #F7BF0A;
  border-color: #fff;
}

[class*="cta-border"].blue{
  border-color: #24629B;
}
[class*="cta-border"].blue:hover{
  background-color: #24629B;
  border-color: #fff;
}

[class*="cta-border"].teal {
  border-color: #58A8B5;
}
[class*="cta-border"].teal:hover {
  background-color: #58A8B5;
  border-color: #fff;
}

[class*="cta-border"].black-text {
  color: #000 !important;
}

[class*="cta-border"].black-text:hover {
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  [class*="cta-border"] {
    margin: 0 auto;
  }
}
/* Fields */

form{
  width: min(900px, 100%);
  margin: auto;
}

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 10px 20px;
  width: 100%;
  min-height: 49px;
}

form .hs-fieldtype-select{
  position: relative; 
}

form .hs-fieldtype-select select{
  -webkit-appearance: none;
  position: relative;
}


form .hs-fieldtype-checkbox > label,
form .hs-fieldtype-select .input{
  position: relative; 
}

form .hs-fieldtype-checkbox > label:after,
form .hs-fieldtype-select > .input:after{
  content: "\f054";
  font-family: Font Awesome\ 6 Pro;
  font-weight: 400;
  right: 25px;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
}

form input::placeholder{
  font-size: 14px !important;
}

form .hs-fieldtype-checkbox{
  position: relative; 
  cursor: pointer;
}

form .hs-fieldtype-checkbox > label{
  display: inline-block;
  font-size: 0.875rem;
  padding: 10px 20px;
  width: 100%;
  border-radius: 34px;
  color: #3c3c3c;
  background-color: #fff;
  border: 2px solid #d1d6dc;
}

form .hs-fieldtype-checkbox > label > span:first-child{
  font-weight: 900;
  margin-right: 10px;
}

form .hs-fieldtype-checkbox > label > span:nth-child(2){
}

form .hs-fieldtype-checkbox ul{
  position: absolute;
  top: 42px;
  left: 50%;
  background: #fff;
  padding: 20px;
  height: 300px;
  width: calc(100% - 20px);
  transform: translateX(-50%);
  overflow: auto;
  z-index: 9;
}

form .hs-fieldtype-checkbox .input{
  display: none;
}

form .hs-fieldtype-checkbox.active .input {
  display: block;
}

form .hs-fieldtype-checkbox ul li input{
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

form .hs-fieldtype-checkbox .inputs-list > li:first-child{
  margin-top: 0px;
}

form .hs-fieldtype-checkbox .inputs-list > li:last-child{
  margin-bottom: 0px;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

form .form-columns-1 input[type=text],
form .form-columns-1 select{
  width: 100% !important; 
}


/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header Main Styles
==================== */

header.header .content-wrapper {
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  position: fixed;
  height: 71px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  overflow: hidden;
  min-width: 350px;
  max-width: unset;
  padding: 0;
}

header.header h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: .8em;
  margin-bottom: 5px;
}

header.header .content-wrapper .header__logo {
  width: 100%;
  max-width: 380px;
}
header.header .content-wrapper .header__logo img {
  width: 100%;
  max-width: 279px !important;
}

header.header .menu-show {
  position: absolute;
  right: 17px;
  bottom: 50%;
  width: 36px;
  height: 36px;
  margin-bottom: -18px;
  border: 0;
  padding: 0;
  background: #fff;
  color: rgba(0,0,0,0);
  background: url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/icons/icon-menu.png) center center no-repeat;
  background-size: contain;
  overflow: hidden;
  cursor: pointer;
}

header.header .header-buttons {
  display: none;
  position: absolute;
  left: 37%;
  right: 80px;
  top: 50%;
  margin-top: -25px;
  text-align: center;
}
header.header .header-buttons ul {
  list-style-type: none;
  display: flex;
  margin: 0;
}
header.header .header-buttons ul li {
  flex: auto;
}
header.header .header-buttons ul li a {
  display: block;
  padding: 15px 5px;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  line-height: 20px;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  transition: 400ms color ease-in-out;
  background-color: rgba(0,0,0,0);
  text-align: center;
  cursor: pointer;
}
header.header .header-buttons ul li a:hover {
  color: #000;
}

@media screen and (min-width: 1024px) {
  header.header .header-buttons {
    display: block;
    left: 420px;
    right: 120px;
  }
  header.header .header-buttons ul li a {
    font-size: 17px;
  }
}

@media screen and (min-width: 768px) {
  header.header .content-wrapper {
    height: 100px;
  }
  header.header .menu-show {
    right: 30px;
  }
  header.header .content-wrapper .header__logo img {
    max-width: 380px !important;
  }
}

/* Menu-Overlay Styles 
* ======================= */


.menu-overlay {
  background: #f7f2e6;
  position: fixed;
  top: 71px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1001;
  min-width: 350px;
  opacity: 100%;
  transition: 400ms ease-in-out;
}

.menu-overlay:before {
  position: absolute;
  content: "";
  background: url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/header%20decor/accent-tartan-vert-tan-dark.png) center center no-repeat;
  background-size: contain;
  width: 25px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.menu-overlay:after {
  position: absolute;
  content: "";
  background: url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/header%20decor/accent-tartan-hor-black.png) right center no-repeat;
  background-size: cover;
  width: 75%;
  height: 25px;
  left: 0;
  top: 0;
  z-index: 100;
}

.menu-overlay.hidden {
  opacity: 0%;
  z-index: -1;
}

.menu-overlay .close {
  position: absolute;
  right: 0;
  top: -71px;
  height: 71px;
  width: 71px;
  text-align: center;
  color: rgba(0,0,0,0);
  background: #f7f2e6 url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/icons/icon-menu-close.png) center center no-repeat;
  cursor: pointer;
  opacity: 100%;
  transition: 400ms opacity ease-in-out;
}

.menu-overlay.hidden .close {
  opacity: 0%;
}

.menu-overlay .overlay-inner {
  padding: 40px 20px 20px 40px;
  max-height: 100%;
  overflow: auto;
  display: flex;
}

.menu-overlay .overlay-inner::-webkit-scrollbar{
 display: none; 
}

.menu-overlay .overlay-inner .col1{
  font-family: "Zilla Slab",sans-serif;
  font-weight: 600;
  font-kerning: none;
  margin-bottom: 20px;
  width: 40%;
}
.menu-overlay .overlay-inner .col2 {
  width: 60%;
}
.menu-overlay .overlay-inner .col1 ul {
  list-style-type: none;
  padding: 0;
  display: initial;
}

.menu-overlay .overlay-inner .col1 ul{
  font-size: 16px; 
}

.menu-overlay .overlay-inner .col1 ul li a {
  font-size: 1.8em;
  line-height: 1.4em;
  color: #000;
  text-decoration: none;
  font-family: "Zilla Slab", sans-serif;
  font-weight: 600;

}

.menu-overlay .inside_button a.button:hover {
  background-color: #24629b !important;
  color: #fff;
  text-decoration: none;
  opacity: .8;
}

@media screen and (min-width: 768px) {
  .menu-overlay {
    top: 100px;
  }
  .menu-overlay:before {
    left: 30px;
    width: 35px;
    background-size: cover;
  }
  .menu-overlay:after {
    height: 35px;
  }
  .menu-overlay .close {
    height: 100px;
    width: 100px;
    top: -100px;
  }
  .menu-overlay .overlay-inner {
    position: absolute;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 30px 30px 100px;
  }
}

@media screen and (min-width: 1024px) {
  .menu-overlay:before {
    left: 40px;
    width: 45px;
  }
  .menu-overlay .overlay-inner {
    padding: 0 50px 50px 140px;
  }
  .menu-overlay .overlay-inner .col1 ul li a {
    font-size: 2em;
    line-height: 1.5em;
  }
}

@media screen and (min-width: 1220px) {
  .menu-overlay:before {
    left: 54px;
  }
  .menu-overlay:after {
    height: 45px;
  }
  .menu-overlay .overlay-inner .col1 ul li a {
    font-size: 2.2em;
    line-height: 1.6em;
  }
}

@media screen and (min-width: 1440px) {
  .menu-overlay .overlay-inner .col1 ul li{
    font-size: 19px;
    line-height: 110%;
  }
}



@media screen and (max-width: 767px) {
  .menu-overlay .overlay-inner {
    flex-wrap: wrap;
  }
  .menu-overlay .overlay-inner .col1,
  .menu-overlay .overlay-inner .col2 {
    width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

footer.footer {
  background-color: #000;
  padding: 30px;
}

footer.footer * {
  color: #fff;
}

footer.footer .footer-inner .wrap {
  min-width: 320px;
  max-width: 1440px;
  margin: 0 auto;
}

footer.footer h4 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.2em;
}

footer.footer .main img{
  margin-bottom: 20px;
  max-width: 100%;
}

footer.footer .main a {
  color: #999;
}

footer.footer .quick_links li {
  margin-bottom: 10px;
}
footer.footer .quick_links li a {
  font-family: "Roboto", sans-serif;
  padding: 6px;
  font-size: 16px;
}
footer.footer .quick_links li a:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  footer.footer .footer-inner .wrap {
    display: flex;
  }
  footer.footer .footer-inner .wrap .column {
    flex-basis: 30%;
    margin-left: 5%;
  }
  footer.footer .footer-inner .wrap .column:first-child {
    margin-left: 0;
  }
  
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@media screen and (min-width: 768px) {
  .section-stripLeftWhite:before {
    content:'';
    background-image: url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/Landing%20Pages/Community%20LP/Group%20711.svg);
    background-size: cover;
    height: 100%;
    width: 52px;
    position: absolute;
    left: 52px;
    top: 0;
    z-index: 1;
  }
  .section-stripLeftWhite > .row-fluid {
    position: relative;
    z-index: 2;
  }
  .section-stripTopBlack:after {
    content: '';
    background-image: url(https://23526806.fs1.hubspotusercontent-na1.net/hubfs/23526806/Landing%20Pages/Community%20LP/Group%20766.svg);
    background-size: cover;
    height: 55px;
    width: 39.5%;
    position: absolute;
    left: 0;
    top: 40px;
  }
}