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

/* Header Css */

.fadIn .header-button .hs-button {
    background: #fff;
    color: #000;
}

@media(max-width:767px){
    .header-button .hs-button {
        min-width: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Header Css */


/* Footer Css */

.footer.custom-footer-v2 {
    padding: 40px 0;
}

.custom-row{
    display:flex;
    flex-wrap:wrap;
    margin:0 -15px;
}

.custom-col-8,
.custom-col-4 {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.custom-col-4 {
    width: 33.3333%;
}

.custom-col-8 {
    width:66.6667%;
}

.custom-col-3 {
    width: 25%;
}

.custom-col-9 {
    width: 75%;
}

.footer.custom-footer-v2 .custom-row {
    align-items: center;
}

.custom-footer-logo .default {
    transition: all .5s ease-in-out;
}

.custom-footer-logo .hover {
    transition: all .5s ease-in-out;
    display: none;
}

.custom-footer-logo:hover .hover {
    display: block;
}

.custom-footer-logo:hover .default {
    display: none;
}

.custom-footer-logo {
    display: inline-block;
}

@media(max-width:767px){
    .custom-col-4,
    .custom-col-8,
    .custom-col-3,
    .custom-col-9{
        width:100%;
    }

    .custom-footer-logo {
        margin-bottom: 60px;
    }

}
/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/* Responsive grid */

.row-fluid {
    width: 100%;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*='span'],
.row-fluid [class*='col-'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*='span']:first-child,
.row-fluid [class*='col-']:first-child{
    margin-left: 0;
}

.row-fluid .span12 ,
.row-fluid .col-12{
    width: 99.99999998999999%;
}

.row-fluid .span11,
.row-fluid .col-11{
    width: 91.489361693%;
}

.row-fluid .span10,
.row-fluid .col-10{
    width: 82.97872339599999%;
}

.row-fluid .span9,
.row-fluid .col-9{
    width: 74.468085099%;
}

.row-fluid .span8,
.row-fluid .col-8{
    width: 65.95744680199999%;
}

.row-fluid .span7,
.row-fluid .col-7{
    width: 57.446808505%;
}

.row-fluid .span6,
.row-fluid .col-6{
    width: 48.93617020799999%;
}

.row-fluid .span5,
.row-fluid .col-5{
    width: 40.425531911%;
}

.row-fluid .span4,
.row-fluid .col-4{
    width: 31.914893614%;
}
.row-fluid .col-6:nth-child(2n+1),
.row-fluid .col-4:nth-child(3n+1),
.row-fluid .col-3:nth-child(4n+1){
    margin-left: 0;
}
.row-fluid .span3,
.row-fluid .col-3{
    width: 23.404255317%;
}

.row-fluid .span2,
.row-fluid .col-2{
    width: 14.89361702%;
}

.row-fluid .span1,
.row-fluid .col-1{
    width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: '';
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 720px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*='span'],
    .row-fluid [class*='col-'] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 721px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: '';
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*='span'],
    .row-fluid [class*='col-'] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*='span']:first-child,
    .row-fluid [class*='col-']:first-child {
        margin-left: 0;
    }

    .row-fluid .span12,
    .row-fluid .col-12 {
        width: 99.999999993%;
    }

    .row-fluid .span11,
    .row-fluid .col-11{
        width: 91.436464082%;
    }

    .row-fluid .span10,
    .row-fluid .col-10{
        width: 82.87292817100001%;
    }

    .row-fluid .span9,
    .row-fluid .col-9{
        width: 74.30939226%;
    }

    .row-fluid .span8,
    .row-fluid .col-8{
        width: 65.74585634900001%;
    }

    .row-fluid .span7,
    .row-fluid .col-7{
        width: 57.182320438000005%;
    }

    .row-fluid .span6,
    .row-fluid .col-6{
        width: 48.618784527%;
    }

    .row-fluid .span5,
    .row-fluid .col-5{
        width: 40.055248616%;
    }

    .row-fluid .span4,
    .row-fluid .col-4{
        width: 31.491712705%;
    }

    .row-fluid .span3,
    .row-fluid .col-3{
        width: 22.928176794%;
    }

    .row-fluid .span2,
    .row-fluid .col-2{
        width: 14.364640883%;
    }

    .row-fluid .span1,
    .row-fluid .col-1{
        width: 5.801104972%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: '';
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*='span'],
    .row-fluid [class*='col-']{
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*='span']:first-child,
    .row-fluid [class*='col-']:first-child{
        margin-left: 0;
    }

    .row-fluid .span12,
    .row-fluid .col-12{
        width: 100%;
    }

    .row-fluid .span11,
    .row-fluid .col-11{
        width: 91.45299145300001%;
    }

    .row-fluid .span10,
    .row-fluid .col-10{
        width: 82.905982906%;
    }

    .row-fluid .span9,
    .row-fluid .col-9{
        width: 74.358974359%;
    }

    .row-fluid .span8,
    .row-fluid .col-8{
        width: 65.81196581200001%;
    }

    .row-fluid .span7,
    .row-fluid .col-7{
        width: 57.264957265%;
    }

    .row-fluid .span6,
    .row-fluid .col-6{
        width: 48.717948718%;
    }

    .row-fluid .span5,
    .row-fluid .col-5{
        width: 40.170940171000005%;
    }

    .row-fluid .span4,
    .row-fluid .col-4{
        width: 31.623931624%;
    }

    .row-fluid .span3,
    .row-fluid .col-3{
        width: 23.076923077%;
    }

    .row-fluid .span2,
    .row-fluid .col-2{
        width: 14.529914530000001%;
    }

    .row-fluid .span1,
    .row-fluid .col-1{
        width: 5.982905983%;
    }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}

/* Visibilty classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 720px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 721px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}
.content-wrapper,
.dnd-section > .row-fluid,
.footer__container{
    margin: 0 auto;
}

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

@font-face {
  font-family: 'SharpGroteskBook19';
  src: url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.eot');
  src: url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.eot#iefix') format('embedded-opentype'),
       url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.woff2') format('woff2'), 
       url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.woff') format('woff'), 
       url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.ttf')  format('truetype'),
       url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBook19.otf')  format('opentype');
    font-display: swap;
}
@font-face {
      font-family: 'SharpGroteskBold20';
      src: url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.eot');
      src: url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.eot#iefix') format('embedded-opentype'),
           url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.woff2') format('woff2'), 
           url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.woff') format('woff'), 
           url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.ttf')  format('truetype'),
           url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SharpGroteskBold20.otf')  format('opentype');
    font-display: swap;}
@font-face {
      font-family: 'SharpGroteskSmBold20';
      src: url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.eot');
      src: url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.eot?#iefix') format('embedded-opentype'),
           url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.woff2') format('woff2'), 
           url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.woff') format('woff'), 
           url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.ttf')  format('truetype'),
           url('https://goodshape.com//hubfs/GoodShape_2021/fonts/SharpGroteskSmBold20.otf')  format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Text';
    src:url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SFProTextRegular.ttf')  format('truetype');
    font-weight:400;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Text';
    src:url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/fonts/SFProTextSemibold.ttf')  format('truetype');
    font-weight:600;
    font-display: swap;
}
body {
    word-break: break-word;
    line-height: 1.33;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
    line-break: strict;
    word-break: break-all;
}
/* Paragraphs */
p {
    margin: 0 0 32px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child{
    margin:0
}
/* Anchors */
a {
    cursor: pointer;
    text-decoration: none;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 32px;
}
.BambooHR-ATS-board h2 {
  margin: 0 0 32px !important;
}
h1,
.display-1{
    line-height:1.068;
}
h2,
.display-2{
    line-height:1.142;
}
.BambooHR-ATS-board h2 {
  line-height:1.142 !important;
}
h3,
.display-3{
    line-height:1.2;
}
h4,
.display-4{
    line-height:1.33;
}
h5,
.display-5{
    line-height:1.333;
}
/* 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;
}

ol {
    padding-left: 20px;
}
/* Code blocks */

pre {
    overflow: auto;
}

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 {
    max-width:100%;
    height:auto;
    word-break: normal;
}
h3.form-title{
    line-height:64px; 
}
strong{
 font-family:SharpGroteskBold20
}
button,
.button,
.hs-button, 
.button--primary{
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
    font-family: "SharpGroteskBook19";
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 1.875;
    color: #FFFFFF;
    border:1px solid;
    text-decoration:none;
    min-width: 230px;
    max-width: 300px;
}
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;
}
.button.btn-white {
    background: transparent;
    border-color: #000;
    color:#000;
}
.button.btn-black{
    background: #000;
    border-color: #000;
    color:#fff;
}
.button.btn-black[data-color="#B2F7CA"] {
    color: #B2F7CA;
}
.button.btn-black[data-color="#F0CEFF"] {
    color: #F0CEFF;
}
.button.btn-black[data-color="#C9E8FF"] {
    color: #C9E8FF;
}
.button.btn-black[data-color="#FFDDB4"] {
    color: #FFDDB4;
}
.button.btn-transparent[data-color="#B2F7CA"]:hover{
    color: #B2F7CA;
}
.button.btn-transparent[data-color="#F0CEFF"]:hover{
    color: #F0CEFF;
}
.button.btn-transparent[data-color="#C9E8FF"]:hover{
    color: #C9E8FF;
}
.button.btn-transparent[data-color="#FFDDB4"]:hover{
    color: #FFDDB4;
}
.button.btn-black:hover{
    background-color: transparent;
    border-color: #000;
    color: #000;
}
.button.btn-transparent {
    background: transparent;
    border-color: #000;
    color: #000;
}
.button.btn-transparent:hover{
    background: #000;
    color:#fff;
}
.button.btn-berry.fill {
    background: #F0CEFF;
    color: #000;
}
.button.btn-berry.fill:hover {
    background: transparent;
    border-color: #f0ceff;
    color: #f0ceff;
}
@media(max-width:720px){
    button,.button,.hs-button,.button--primary,form input[type=submit], form .hs-button {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
        max-width:100%;
    }
}
/* Fields */
.no-label .hs-form-field > label {
    display: none;
}
.hs-form-field {
    margin-bottom: 32px;
}
/* Labels */
form label {
    display: block;
    font-size: 0.875rem;
    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: block;
    text-decoration: none;
    border: 1px solid;
    background-color: transparent;
    padding: 5px 20px;
    outline: none;
    font-size: 24px;
    line-height: 32px;
    min-height: 72px;
    width: 100% !important;
}
textarea.hs-input {
    min-height: 128px;
    padding-top: 15px;
}
form fieldset {
    max-width: 100% !important;
}
::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color:inherit;
}
::-moz-placeholder{
    color:inherit;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #000;
}
:-moz-placeholder { /* Firefox 18- */
    color: #000;
}
/* 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;
    width:auto;
}
/* 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 {
  /*padding-left: 32px;*/
}
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
    margin-left: 1rem !important;
}
.legal-consent-container .hs-form-booleancheckbox-display input[type="checkbox"] {
  min-height: 20px;
}
/* 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;
    margin-top: 32px;
}
/* Captcha */
.grecaptcha-badge {
    margin: 0 auto;
}
form select {
    appearance: none;
    background-image: url('https://519891.fs1.hubspotusercontent-na1.net/hubfs/519891/GoodShape_2021/images/angle-down-solid.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 95% center;
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-appearance:    none;
}
@media(max-width:767px){
    .hs-form-field {
        margin-bottom: 24px;
    }
    form input[type=submit],
    form .hs-button{
        margin-top: 24px;
    }
}
/* 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
*/

/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.resources.menu__item.menu__item--depth-1 {
  /*   position: relative; */
}
li.resources {
  position: relative;
}
li.resources:after {
  position: absolute;
  content: "";
  top: 12px;
  right: -20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;

  background: transparent !important;
  transition: none !important;
}

.Coffee li.resources:after {
  border-color: #FDDDB2 transparent transparent transparent;
}
.Mint li.resources:after {
  border-color: #b2f7ca transparent transparent transparent;
}
.Berry li.resources:after {
  border-color: #f0ceff transparent transparent transparent;
}
.Sky li.resources:after {
  border-color: #c9e8ff transparent transparent transparent;
}

li.resources:hover:after {
  width: 0 !important;
}
li.resources:before {
  position: absolute;
  content: "";
  top: 15px;
  right: -20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* li.resources:hover:after {
top: 7px;
transform: rotate(180deg)
}

li.resources:hover:before{
top: 4px;
transform: rotate(180deg)
} */

body.fadIn li.resources:after {
  border-color: #000 transparent transparent transparent;
}
body.fadIn li.resources:before {
  border: 8px solid transparent;
  border-color: #FFF transparent transparent transparent;
}

/*============================ Header =====================================*/
header.header {
  padding: 40px 0;
}
.header .dnd-section {
  padding: 0;
}
.header__logo {
  position: relative;
}
.header__logo img {
  max-width: 90px !important;
}
.header__logo .white {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .5s linear;
}
.header__logo .black {
  transition: opacity .5s linear;
}
.nav-burger {
  display: none;
}
.burger button {
  background: transparent;
  border: 0;
  padding: 0;
  min-width: 0;
  border-radius:0;
}
.burger button:hover {
  background: transparent;
}
.mobile-menu_section {
  display: none;
}
.header__logo img {
  display: block;
}
.header-container-wrapper {
  min-height: 161px;
}
header.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  background: rgba(255,221,180,1.0);
  transition: all .3s ease;
}
body.fadIn header.header {
  padding: 10px 0;
  box-shadow: 0px -10px 30px rgb(0 0 0 / 50%);
}
body.Coffee header.header,
body.Coffee .header-container-wrapper{
  background: rgba(255,221,180,1.0);
}
body.Mint header.header,
body.Mint .header-container-wrapper,
body .insight-blog .header-container-wrapper,
body .insight-blog header.header{
  background: #B2F7CA;
}
body.Berry header.header,
body.Berry .header-container-wrapper{
  background: #F0CEFF;
}
body.Sky header.header,
body.Sky .header-container-wrapper,
body .news-blog .header-container-wrapper,
body .news-blog header.header{
  background: #C9E8FF;
}
.Coffee .custom-menu-primary >nav > ul >li[class^="book-a-"] > a,
.Coffee .header-button .hs-button {
  color: rgba(255,221,180,1.0);
}
.Mint .custom-menu-primary >nav > ul >li[class^="book-a-"] > a,
body .insight-blog .custom-menu-primary>nav>ul>li.book-a-demo > a,
.Mint .header-button .hs-button{
  color: #B2F7CA;
}
.Berry .custom-menu-primary >nav > ul >li[class^="book-a-"] > a,
.Berry .header-button .hs-button{
  color: #F0CEFF;
}
.Sky .custom-menu-primary >nav > ul >li[class^="book-a-"] > a,
.Sky .header-button .hs-button{
  color: #C9E8FF;
}
.custom-menu-primary >nav > ul >li[class^="support"] > a:after {
  display: none;
}
.Coffee .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
  color: rgba(255,221,180,1.0);

  background: #000;

}
.Mint .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
  color: #B2F7CA;

  background: #000;

}
.Berry .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
  color: #F0CEFF;

  background: #000;

}
.Sky .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
  color: #C9E8FF;

  background: #000;

}
.custom-menu-primary >nav > ul >li[class^="support"] > a {
  border: 1px solid #000;
  border-radius: 30px;
  padding: 0 24px;
  min-height: 54px;
  line-height: 54px;
}
/* start */

/* .Mint .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
color: rgb(0,0,0);
border-color: rgb(0,0,0);
background: #B2F7CA;
text-decoration: none;
}
.Berry .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
color: rgb(0,0,0);
border-color: rgb(0,0,0);
background: #F0CEFF;
text-decoration: none;
}
.Sky .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
color: rgb(0,0,0);
border-color: rgb(0,0,0);
background: #C9E8FF;
text-decoration: none;

} */
/* end */



.Coffee .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Mint .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Berry .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Sky .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Coffee .header-button .hs-button:hover,
.Mint .header-button .hs-button:hover,
.Berry .header-button .hs-button:hover,
.Sky .header-button .hs-button:hover{
  color: #000;
  background:transparent;
}
.header-button .hs-button{
  padding: 0 24px;
  border-radius: 30px;
  background: #000;
  border: 0;
  border: 1px solid #000;
  min-height: 54px;
  line-height: 54px;
}
/*============================ Fixed Mobile ==============================*/
body.fadIn header.header {
  padding: 10px 0;
  box-shadow: 0px -10px 30px rgb(0 0 0 / 50%);
  background: rgba(0, 0, 0, .85);
}
body.fadIn .custom-menu-primary>nav>ul>li[class^="book-a-"]>a, 
body.fadIn .custom-menu-primary>nav>ul>li[class^="book-a-"]>span{
  background: #fff;
  color: #000;
}
body.fadIn .custom-menu-primary >nav > ul >li[class^="support"] > a {
  background: transparent;
  border-color: transparent;
  color: #FFF;
}
body.fadIn .custom-menu-primary >nav > ul >li[class^="support"] > a:hover {
  background: #FFF;
  color: #000;
}
body.fadIn .header__logo .white {
  opacity: 1;
}
body.fadIn .custom-menu-primary a,
body.fadIn .custom-menu-primary span,
body.fadIn .menu__submenu.menu__submenu--level-2 a,
body.fadIn .menu__submenu.menu__submenu--level-2 span {
  color:#fff;
}
body.fadIn .menu__submenu.menu__submenu--level-2 {
  background: rgba(0,0,0,.85);
  box-shadow: 0 -10px 30px rgba(0,0,0,.5);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;

}
body.fadIn .custom-menu-primary>nav>ul>li>a:after,
body.fadIn .custom-menu-primary>nav>ul>li>span:after,
body.fadIn .menu__submenu.menu__submenu--level-2 li a:after,
body.fadIn .menu__submenu.menu__submenu--level-2 li span:after {
  background:#fff;
}
.Coffee.fadIn  .header-button .hs-button,
.Mint.fadIn  .header-button .hs-button,
.Berry.fadIn  .header-button .hs-button,
.Sky.fadIn  .header-button .hs-button,
.Coffee.fadIn  .header-button .hs-button:hover,
.Mint.fadIn  .header-button .hs-button:hover,
.Berry.fadIn  .header-button .hs-button:hover,
.Sky.fadIn  .header-button .hs-button:hover,
.Coffee.fadIn .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Mint.fadIn .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Berry.fadIn .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover,
.Sky.fadIn .custom-menu-primary >nav > ul >li[class^="book-a-"] > a:hover{
  color:#000;
  background:#fff;
}
/*============================ Header Mobile ==============================*/
div#viewPortSize + iframe {
  display: none;
}
header.header.nav-up{
  top:-110px
}



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

.micro-page .header-container-wrapper .header.nav-up,
.micro-page .header-container-wrapper .header.nav-down {
  top: 0;
  background: rgba(255,221,180,1.0);
  padding: 40px 0;
}
body.fadIn .micro-page .header-container-wrapper .white {
  opacity: 0;
}
.micro-page .header-container-wrapper .custom-menu-primary a{
  color:#000;
}
.micro-page .header-container-wrapper .header-button .hs-button{
  background:#000;
  color: rgba(255,221,180,1.0);
}
.micro-page .header-container-wrapper .header-button .hs-button:hover {
  background: transparent;
  color: #000;
}

/* ============ M Contact ==================== */
.m-contact .book-a-demo .title.col-4 {
  width: 48%;
}
.m-contact .book-a-demo .title.col-4 + div {
  display: none;
}
.m-contact .book-a-demo .flex-row {
  justify-content: space-between;
}
.m-contact .book-a-demo .title.col-4 h2 {
  font-size: 40px;
}

/* ================================ */
.custom-menu-primary > nav > ul {
  display: flex;
  align-items: center;
}
.custom-menu-primary > nav > ul li:not(:first-child){
  margin-left:45px;
}
.custom-menu-primary > nav > ul > li > a, 
.custom-menu-primary > nav > ul > li > span {
  padding: 10px 0;
  display:block;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  position:relative;
  cursor:pointer;
}
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > a,
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > span{
  color: #fff;
  padding: 0 24px;
  border-radius: 30px;
  background: #000;
  border: 0;
  border: 1px solid #000;
  min-height: 54px;
  line-height: 54px;
}
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > a:hover,
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > span:hover{
  border-color: #000;
  color: #000;
  background: transparent;
}
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > a:after,
.custom-menu-primary > nav > ul > li[class^="book-a-"]  > span:after{
  content: none;
}
.custom-menu-primary > nav > ul > li > a:after, 
.custom-menu-primary > nav > ul > li > span:after,
.menu__submenu.menu__submenu--level-2 li a:after,
.menu__submenu.menu__submenu--level-2 li span:after {
  content: "";
  height: 2px;
  width: 0;
  transition: all .15s linear;
  display: block;
  bottom: 0;
  position: absolute;
  background: #000;
}

.custom-menu-primary > nav > ul > li > a:hover:after, 
.custom-menu-primary > nav > ul > li > span:hover:after,
.menu__submenu.menu__submenu--level-2 li a:hover:after,
.menu__submenu.menu__submenu--level-2 li span:hover:after{
  width:100%;
}
.custom-menu-primary > nav > ul li:last-child {
  margin-left: 20px;
}
.custom-menu-primary > nav > ul li.book-a-demo {
  margin-left: 20px;
}
.custom-menu-primary .menu__link--active-link:after,
.custom-menu-primary .is-active:after{
  width: 100%;
}

@media(max-width:991px){
  .custom-menu-primary > nav > ul li:not(:first-child) {
    margin-left: 20px;
  }
}


@media(max-width:1024px){
  .mobile .menu > .menu__wrapper > li > a,
  .mobile .menu > .menu__wrapper > li > span{
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    position:relative;
  }
  .mobile .menu > .menu__wrapper > li {
    margin-bottom: 25px;
  }

  .mobile .menu > .menu__wrapper > li >a:after, 
  .mobile .menu > .menu__wrapper > li >span:after {
    content: "";
    height: 2px;
    width: 0;
    transition: all .15s linear;
    display: block;
    bottom: 0;
    position: absolute;
    background: #fff;
  }
  .mobile .menu > .menu__wrapper > li >a:hover:after,
  .mobile .menu > .menu__wrapper > li >span:hover:after {
    width: 100%;
  }

}
/*============================ Footer =====================================*/
.footer_logo {
  position: relative;
}
.footer_logo .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s linear;
}
.footer_logo:hover .hover {
  opacity: 1;
}
footer.footer {
  padding: 128px 0;
}
.footer-col-right{
  width: 80%;
}
footer.footer a{
  text-decoration: none;
}
.footer-col-right .hs-menu-wrapper > ul > li{
  width: calc(100% / 5);
}
.footer-col-right .hs-menu-wrapper>ul ul{
  margin-bottom: 64px;
}
.footer-col-right .hs-menu-wrapper > ul > li > a {
  margin-bottom: 32px;
  display: inline-block;
  font-size: 16px;
  line-height:24px;
  font-family: 'SharpGroteskSmBold20';
  position: relative;
}
.footer-col-right .hs-menu-wrapper > ul > li > a:after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #fff;
  position: absolute;
  bottom: -10px;
  transition: all .15s linear;
}
.footer-col-right .hs-menu-wrapper>ul>li>a:hover:after{
  width: 100%;
}
.footer-col-right .hs-menu-wrapper>ul ul a {
  font-size: 14px;
}
.custom-footer-v2 .custom-row {
  margin: 0;
}

.wire-frame .footer a {
  padding-bottom: 15px;
}

.wire-frame .copyright-section {
  margin-left: 4px;
}
.menu__submenu.menu__submenu--level-2 {
  display: none;
}
.menu__item.menu__item--depth-1:hover .menu__submenu.menu__submenu--level-2  {
  display: block;
  position: absolute;
  min-width: 250px;
}
.menu__submenu.menu__submenu--level-2 {
  padding: 12px 0;
  border-radius: 10px;
  background: inherit;
  z-index: 10;
}
.menu__submenu.menu__submenu--level-2 li {
  font-size: 16px;
  margin-left: 0 !important;
}
.menu__submenu.menu__submenu--level-2 li a {
  padding: 3px 0;
  display: block;
  position: relative;
}
.menu__submenu.menu__submenu--level-2 li a:hover {

}
/*============================ Media =================================*/
@media(max-width:1024px){
  .Coffee li.resources:after,
  .Mint li.resources:after,
  .Berry li.resources:after,
  .Sky li.resources:after {
    border-color: #000 transparent transparent transparent;
    left: 190px;

  }
  .Coffee li.resources:before,
  .Mint li.resources:before,
  .Berry li.resources:before,
  .Sky li.resources:before {
    border: 8px solid transparent;
    border-color: #FFF transparent transparent transparent;
    left: 190px;

  }
  .mobile-menu_section {
    position: fixed;
    top: -110%;
    width: 100%;
    left: 0;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,.9);
    padding: 40px 15px;
    display: block;
    transition: top 0.3s linear, opacity 0.2s linear;
    opacity: 0;
    z-index: 9999;
  }
  .custom-menu-primary {
    display: none;
  }
  .nav-burger {
    display: block;
    margin-right: 10px;
  }
  .close-nav.burger {
    margin-right: 10px;
  }
  .mobile-menu_section .m-row.one {
    margin-bottom: 23px;
  }
  body.open-nav .mobile-menu_section {
    top: 0;
    opacity: 1;
  }

  .header__logo img {
    max-width: 72px !important;
  }
  .header-container-wrapper {
    min-height: 145px;
  }
  .mobile-menu_section .logo img.hs-image-widget {
    max-width: 72px;
  }

  body.fadIn header.header {
    background: #000;
  }
  body.fadIn header.header .white {
    opacity: 1;
  }
  body.fadIn header.header .nav-burger svg rect {
    fill: #fff;
  }
  .footer-col-right {
    width: 100%;
  }
  .footer_logo {
    margin-bottom: 32px;
  }
  header.header.nav-up {
    top: -85px;
  }
  .nav-burger.burger button svg {
    fill: currentColor;
  }
  body.fadIn .nav-burger.burger button {
    color: #fff;
  }
  body .nav-burger.burger button {
    color: #000;
  }
  header.header {
    padding-top: 20px;
  }
}
@media(max-width:767px){
  /*======================== Footer =====================================*/
  footer.footer {
    padding: 64px 0 94px;
  }
  .footer_logo {
    width: 100%;
    margin-bottom: 64px;
  }
  .footer-col-right {
    width: 100%;
  }
  .footer-menu .hs-menu-wrapper > ul {
    flex-direction: row !important;
  }
  .footer-col-right .hs-menu-wrapper>ul>li {
    width: 50%;
  }
  .m-contact .book-a-demo .title.col-4 {
    width: 100%;
  }
  .micro-page .header-container-wrapper .header.nav-up, 
  .micro-page .header-container-wrapper .header.nav-down{
    padding-top:20px;
  }

}
@media only screen  and (min-device-width: 320px)   and (max-device-width: 767px)   and (-webkit-min-device-pixel-ratio: 3) { 
  header.header {
    top: -2px;
  }
}




@media(max-width:1024px){
  .micro-page .header-container-wrapper {
    min-height: 133px;
  }

  .menu__item.menu__item--depth-1:hover .menu__submenu.menu__submenu--level-2 {
    display: block;
    position: relative;
  }

  .menu__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 12px 0;
    border-radius: 10px;
    background: inherit;
    z-index: 10;
  }

  .menu__submenu li {
    font-size: 18px;
    margin-left: 0 !important;
    padding: 8px 0;
  }

  .menu__submenu li a {
    padding: 3px 0;
    display: block;
    position: relative;
    color: #fff;
  }

  .menu__item--has-submenu {
    position: relative;
  }





}

@media(max-width:1024px) and (min-width:768px){
  .micro-page .content {
    font-size: 18px;
  }
  .micro-page h2, 
  .micro-page .display-2 {
    font-size: 30px;
    line-height: 1.2;
  }

}



/* new styling */
.footer-col-right {
  width: 80% !important;
}
.app-str {
  width: 100%;
  margin-top: 40px;
}
.footer-menu2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer.cst-ftr {
  padding-bottom: 50px;
}
.cst-ftr .social-links-group {
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 50px;
  margin-top: 60px;
}
.cst-ftr .copyright-section {
  margin-left: 0;
  width: 70%;
}
.cst-ftr .ft-btn-wrap {
  display: flex;
  align-items: center;
}
.cst-ftr .social-lnks {
  width: 30%;
  text-align: right;
}
.footer__container.top-ft {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .footer.cst-ftr {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .cst-ftr .social-links-group {
    margin-top: 20px;
    padding-top: 0;
  }
  .footer__container.top-ft {
    flex-wrap: wrap;
  }
  .footer-col-right {
    width: 100%!important;
  }
  .cst-ftr .ft-btn-wrap {
    display: block;
    text-align: center;
  }
  .cst-ftr .copyright-section {
    margin-left: 0;
    width: 100%;
  }
  .cst-ftr .social-lnks {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .cst-ftr .ft-btn-wrap {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
  }
  .cst-ftr .copyright-section {
    order: 2;
  }
}
/* Menu and simple menu */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.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;
  }
}


@media (min-width: 1400px) {
    .wire-frame .full-image.nrml-pages > div {
        min-height: 550px;
        background-position: center 20%;
    }
}