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

img {
  max-width: 100%;
  vertical-align: bottom; /* Suppress the space beneath the baseline */
}
/*! 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: 55%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -1em;
}

sup {
  top: -1em;
}

/* 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%;
    *zoom: 1;
}

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

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

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 0px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -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 {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

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

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

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

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

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

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

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

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 0px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -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 {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

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

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

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

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 0px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -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 {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.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: 767px) {
    .visible-phone {
        display: inherit !important;
    }

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

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

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

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

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

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

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

/* Remove Vertical Padding */
.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

/* Vertically Center Content */
@media (min-width: 768px) {
  .flex:not(.flex-top) .row-fluid {
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flex.flex-top .row-fluid {
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex;
    display: flex;
  }
  .flex.flex-end .row-fluid {
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
  }
  .flex.flex-end .row-fluid:after {
    display: none !important;
  }
  .flex .row-fluid:before,
  .flex .row-fluid:after {
    display: none !important;
  }
}

/* Flexbox */
.flex,
.flex-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0
}

.flexInline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex-bottom {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.flex-end {
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end
}

.flex-self {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center
}

.flex-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.flex-space {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.flex-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width:767px) {
    .flex:not(.flex-row) {
        flex-direction: column;
    }
}
.page-center,
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1280px) {
  .page-center,
  .content-wrapper {
    padding: 0;
  }
}

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

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

button,
.button {
  background: #5FDDBC;
  border: 2px solid #5FDDBC;
  border-radius: 100vw;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  padding: 11px 35px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.15s linear;
  white-space: normal;
}
button:active, button:hover, button:focus,
.button:active, .button:hover, .button:focus {
  background: transparent;
  border: 2px solid #5FDDBC;
  color: #000000;
  text-decoration: none;
}

.button-transparent {
  background: transparent;
}
.button-transparent:active, 
.button-transparent:hover, 
.button-transparent:focus {
  background: #5FDDBC;;
}

.white-text .button:active, 
.white-text .button:hover,
.white-text .button:focus {
  background: transparent;
  color: #fff;
}


.button--arrow {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 0 40px 0 0;
  position: relative;
  text-transform: uppercase;
}
.button--arrow,
.button--arrow:focus,
.button--arrow:hover {
  color: #145A78;
}
.button--arrow:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 10px;
  background-image: url('https://4977753.fs1.hubspotusercontent-na1.net/hubfs/4977753/Intentsify%20Theme%202022/icons/arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 48%;
  right: 0;
  z-index: 3;
  transform: translateY(-50%);
  transition: ease-in-out all .3s;
}
.button--arrow:hover:before {
  right: -10px;
}

a.cta_button {
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/* Form title */
.form-title {
  margin-bottom: 30px;
}

.form-title > span {
  color: #031326;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 15px;
}

/* Form fields */
.hs-form-field,
.hs-form-field:last-child {
  margin-bottom: 20px !important;
}

/* Labels */
form label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.hs-fieldtype-checkbox,
.hs-fieldtype-radio,
.hs-fieldtype-booleancheckbox {
  margin-top: 0.5rem;
}

.hs-fieldtype-checkbox li > label,
.hs-fieldtype-radio li > label,
.hs-fieldtype-booleancheckbox li > label {
  font-size: 1rem;
}

@media (max-width: 399px) {
  .hs-fieldtype-checkbox,
  .hs-fieldtype-radio,
  .hs-fieldtype-booleancheckbox {
    margin-bottom: 1.5rem;
  }
}

/* Help text - legends */
form legend {
  font-size: 13px;
  margin-bottom: 15px;
}

/* 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 input[type=date],
form select,
form textarea {
  background-color: #FFFFFF;
  border: 1px solid #B3B9BE;
  border-radius: 10px;
  display: inline-block;
  font-size: 16px;
  height: 42px;
  line-height: 1;
  padding: 11px 20px;
  width: 100%;
}

form select,
form input[type=date] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 42px;
  width: 100% !important;
}

form select {
  background-image: url('https://4977753.fs1.hubspotusercontent-na1.net/hubfs/4977753/Intentsify%20Theme%202022/icons/chevron-down.svg');
  background-position: 97% 52%;
  background-repeat: no-repeat;
  background-size: 14px;
}

form input[type=date],
form input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  color: #444444;
}

form textarea {
  min-height: 110px;
}

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

/* Inputs - placeholder text */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #031326;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #031326;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #031326;
}
:-moz-placeholder { /* Firefox 18- */
  color: #031326;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin:  10px 0 0;
  padding: 0;
  list-style: none;
}

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

form .hs-fieldtype-booleancheckbox ul.inputs-list,
form .hs-fieldtype-booleancheckbox ul.inputs-list li.hs-form-booleancheckbox {
  width: 100% !important;
}

form .inputs-list > li label {
  font-size: 0.8182rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

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

form .inputs-list label > span:not(.hs-form-required) {
  display: inline-block;
  width: calc(100% - 24px);
}

form .inputs-list .hs-form-radio label > span:not(.hs-form-required) {
  margin-top: -2px;
}

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

/* Inputs - datepicker */
.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;
  border-radius: 0;
  padding: initial;
}

/* GDPR */
.legal-consent-container,
.legal-consent-container:last-child {
  margin-bottom: 25px !important;
}

.legal-consent-container .hs-richtext,
.legal-consent-container .hs-richtext p {
  font-size: 13px !important;
}

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

.legal-consent-container .inputs-list label>span:not(.hs-form-required) {
  width: calc(100% - 40px);
}

.hs_gdpr_consent ul.inputs-list {
  display: block;
}
.hs_gdpr_consent ul.inputs-list > li {
  width: 100%;
}
.hs_gdpr_consent .hs-form-booleancheckbox label {
  font-size: 12px;
}

/* Validation */
.hs-form-required {
  color: #5FDDBC;
}
form .hs_error_rollup {
  display: none !important;
}
form ul.hs-error-msgs,
form ul.hs-error-msgs li,
form ul.hs-error-msgs li label {
  font-size: 14px;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
}
form .hs-error-msg {
  color: #F00;
}

/* Submit button */
form .actions {
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  form .actions {
    text-align: center;
    width: 100%;
  }
}

form input[type=submit],
form input[type=submit]:focus,
form .hs-button,
form .hs-button:focus {
  background: #5FDDBC;
  border: 2px solid #5FDDBC;
  border-radius: 100vw;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  padding: 11px 35px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.15s linear;
  white-space: normal;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background: transparent;
  border: 2px solid #5FDDBC;
  color: #000000;
  text-decoration: none;
}

.white-text form input[type=submit],
.white-text form input[type=submit]:focus,
.white-text form .hs-button,
.white-text form .hs-button:focus {
  color: #000000;
}

.white-text form input[type=submit]:hover,
.white-text form .hs-button:hover {
  background: transparent;
  color: #fff;
}

/* Captcha */
.hs-recaptcha,
.grecaptcha-badge {
  margin: 5px auto 25px;
}

/* Form columns */
form fieldset.form-columns-1 .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox),
form fieldset .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox) .hs-input {
  width: 100% !important;
}

@media (min-width: 500px) {
  form fieldset.form-columns-2 .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox) {
    width: 50%;
  }
  form fieldset.form-columns-3 .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox) {
    width: 33.33%;
  }
  form fieldset.form-columns-2 .input,
  form fieldset.form-columns-3 .input {
    margin-right: 18px !important;
  }
}

form fieldset.form-columns-1 > div:last-of-type .input,
form fieldset.form-columns-2 > div:last-of-type .input,
form fieldset.form-columns-3 > div:last-of-type .input {
  margin-right: 0 !important;
}

@media (max-width: 499px) {
  form fieldset.form-columns-2 .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox),
  form fieldset.form-columns-3 .hs-form-field:not(.hs-fieldtype-checkbox):not(.hs-fieldtype-radio):not(.hs-fieldtype-booleancheckbox) {
    width: 100% !important;
  }
  form fieldset.form-columns-2 .input,
  form fieldset.form-columns-3 .input,
  form fieldset .hs-form-field .input {
    margin-right: 0 !important;
  }
}

/* form-section content */
.widget-type-form .hs-richtext {
  margin-bottom: 25px !important;
}

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 0.7273rem;
}

.widget-type-form .hs-richtext:not(:first-child) {
  margin-top: 20px;
}

.widget-type-form .hs-richtext hr {
  margin: 25px auto 30px;
}

.widget-type-form fieldset:first-child .hs-richtext:first-child {
  margin-top: 0;
}


/* Checkbox / Radio Styles */
.control,
.control__indicator,
form input[type="checkbox"] {
  background: #fff;
  width: 18px;
  height: 19px;
}
.control {
  display:inline-block;
  font-size: 0.8182rem;
  line-height: 1.2;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  margin: 0 5px 0 0;
  width: 18px;
  height: 19px;
  top: 1px;
}
.inputs-list label:hover .control,
.control:hover,
.control.active-check {}
.control--checkbox input[type="checkbox"] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.control__indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  border: 1px solid #B3B9BE;
}

/* Hover and focus states */
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: none;
}

/* Checked state */
.control input:checked ~ .control__indicator {
  background: #B3B9BE;
}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #B3B9BE;
}

/* Disabled state */
.control input:disabled ~ .control__indicator {
  pointer-events: none;
  opacity: .6;
  background: #e6e6e6;
}

/* Check mark */
.control__indicator:after {
  position: absolute;
  display: none;
  content: '';
}

/* Show check mark */
.control input:checked ~ .control__indicator:after {
  display: block;
}

/* Checkbox tick */
.control--checkbox .control__indicator:after {
  top: 2px;
  left: 50%;
  margin-left: -4px;
  width: 7px;
  height: 11px;
  transform: rotate(38deg);
  border: solid #fff;
  border-width: 0 3px 3px 0;
  border-radius: 2px;
}

/* Disabled tick colour */
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.checkbox-row {
  overflow: visible;
  margin-bottom: 5px;
  float: left;
  width: 100%;
  clear: both;
}
.checkbox-row span.fakelabel .control {
  float: left;
}
.checkbox-row span.fakelabel span {
  margin-top: 2px;
  margin-left: 0 !important;
  width: calc(100% - 28px);
  line-height: 1.75;
}

@media (max-width: 599px) {
  .checkbox-row span.fakelabel span {
    font-size: 90%;
  }
}

.hs_subscribe_to_blog_updates ul.inputs-list {
  display: block;
}

/*======================================
Selectric v1.11.0
======================================*/
.hidden-option {
  display: none !important;
}

.hidden-option + li {
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
  /*text-transform: capitalize;*/
  width: 100%;
  text-align: left;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  background-color: #FFFFFF;
  border: 1px solid #B3B9BE;
  border-radius: 10px;
  display: inline-block;
  font-size: 0.8182rem;
  line-height: 1;
  height: 42px;
  position: relative;
  width: 100%;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0px 35px 0px 15px;
  font-size: 0.8182rem;
  line-height: 42px;
  color: #031326;
  height: 42px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric .selectArrow {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: transparent;
  text-align: center;
}
.selectric .selectArrow:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 8px;
  background-image: url('https://4977753.fs1.hubspotusercontent-na1.net/hubfs/4977753/Intentsify%20Theme%202022/icons/chevron-down.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.selectric-focus .selectric,
.selectric-hover .selectric,
.selectric-open .selectric {
  border: 1px solid #B3B9BE;
}

.selectric-open {
  z-index: 99;
}

.selectric-open .selectric-items {
  display: block;
  width: 100% !important;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  background: #fff;
  border: 1px solid #B3B9BE;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: -1;
}

.selectric-items .selectric-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8182rem;
  line-height: 1;
  min-height: 20px;
  text-align: left;
  width: 100%;
}

.selectric-items li {
  color: #031326;
  cursor: pointer;
  display: block;
  font-weight: 400;
  padding: 10px 15px;
}

.selectric-items li:first-child {
  border-radius: 8px 8px 0 0;
}

.selectric-items li:last-child {
  border-radius: 0 0 8px 8px;
}

.selectric-items li.selected,
.selectric-items li.highlighted,
.selectric-items li:hover {
  background: #B3B9BE;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

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

@media (max-width: 1024px) {
  .header__skip:hover,
  .header__skip:focus,
  .header__skip:active {
    left: 10px;
    top: 40px;
  }
}


/* Header container */
.body-wrapper:not(.no-sticky) header.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
}

header.header,
header.header .header__row.header__main-nav {
  transition: ease all .3s;
}

header.header {
  background: #F7F9FA;
  padding: 0;
  position: relative;
  z-index: 99999;
}

header.header.nav-up,
header.header.nav-down {
  background: rgba(247, 249, 250, 0.9);
}

.header .header__row.header__main-nav {
  padding: 18px 0;
  transition: linear all .2s;
}

@media (min-width: 1025px) {
  .header .header__row.header__main-nav {
    padding-top: 38px;
  }

  .header.nav-up .header__row.header__main-nav,
  .header.nav-down .header__row.header__main-nav {
    padding-top: 18px;
  }
}


/* Logo */
@media (max-width: 1024px) {
  .header .header__logo > .widget-type-logo:last-child  {
    display: none !important;
  }

  .header .header__logo img {
    width: 193px !important;
  }
}

@media (max-width: 399px) {
  .header .header__logo {
    padding-right: 50px;
  }
}


/* Header buttons */
.header__cta .button {
  font-size: 14px;
  padding: 10px 30px 11px;
}

@media (min-width: 1025px) {
  .header__cta {
    margin-right: 8px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .header__cta .button {
    letter-spacing: 1px;
    padding: 10px 18px 11px;
  }
}

@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}


/* Menu */
.nolink .child-trigger {
  width: 100% !important;
  text-align: right;
  right: 0;
  left: 0;
}
.nolink .child-trigger i {
  margin-left: -32px;
  margin-right: 32px;
}

.header__menu .hs-menu-wrapper ul {
  list-style: none;
}

.header__menu .hs-menu-wrapper ul,
.header__menu .hs-menu-wrapper ul > li {
  margin: 0;
  padding: 0;
}

.header__menu .hs-menu-wrapper ul > li,
.header__menu .hs-menu-wrapper ul > li > a {
  font-size: 15px;
  line-height: 1.3;
}

.header__menu .hs-menu-wrapper ul > li {
  padding: 10px 24px;
}

.header__menu .hs-menu-wrapper ul > li > a {
  color: #031326;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 0;
  position: relative;
}

.header__menu .hs-menu-wrapper ul > li > a:hover,
.header__menu .hs-menu-wrapper ul > li.active-branch > a,
.header__menu .hs-menu-wrapper a.current {
  color: #2CA787;
}

@media (min-width: 1025px) {
  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-2.hs-item-has-children.nolink {
    position: relative;
  }
  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-2.hs-item-has-children.nolink:before,
  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-2.hs-item-has-children.nolink:after {
    content: "";
    position: absolute;
    background: #5FDDBC;
    border-radius: 10px;
    display: block;
    right: 5px;
    top: 50%;
    height: 2px;
    width: 8px;
  }

  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-2.hs-item-has-children.nolink:before {
    margin-top: -4px;
    transform: rotate(45deg);
  }
  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-2.hs-item-has-children.nolink:after {
    transform: rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .header__menu .hs-menu-wrapper ul > li.hs-menu-depth-3 > a {
    font-size: 15px;
  }
}

@media (min-width: 1025px) and (max-width: 1099px) {
  .header__menu .hs-menu-wrapper ul > li {
    padding: 10px 12px;
  }
}

@media screen and (min-width: 1025px) {
  .header__hamburger,
  .header__mobile-menu {
    display: none !important;
  }

  .main-menu {
    flex-grow: 1;
    margin: 0 auto;
  }

  .header__menu .hs-menu-wrapper > ul {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header__menu .hs-menu-wrapper ul > li ul.hs-menu-children-wrapper {
    background: #F7F9FA;
    border-radius: 5px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
    min-width: 215px;
    padding: 15px 5px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .header__menu .hs-menu-wrapper ul>li {
    position: relative;
  }

  .header__menu .hs-menu-wrapper ul>li.hs-menu-depth-2 ul.hs-menu-children-wrapper {
    position: absolute;
    top: -15px;
    left: 100%;
    transform: translateX(10px);
  }

  .header__menu .hs-menu-wrapper li.last-menu-item {
    display: none;
  }
}

@media (max-width: 1024px) {
  body.mobile-open {
    overflow-Y: hidden;
  }

  .header__main-nav > .page-center > .flex-space-between {
    justify-content: flex-start;
  }

  .header__menu,
  .header__main-nav .row-fluid > .header__search {
    display: none
  }

  /*!
  * Hamburgers
  * @description Tasty CSS-animated hamburgers
  * @author Jonathan Suh @jonsuh
  * @site https://jonsuh.com/hamburgers
  * @link https://github.com/jonsuh/hamburgers
  */
  .hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent !important;
    outline: none;
    border: 0 !important;
    margin: 0;
    overflow: visible; 
    position:absolute;
    top: 23px;
    right: 20px;
  }  
  .hamburger-box {
    width: 32px;
    height: 25px;
    display: inline-block;
    position: relative; 
  }
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
  }  
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    height: 3px;
    background-color: #5FDDBC;
    border-radius: 5px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
  }  
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
  }  
  .hamburger-inner::before {
    top: -10px; 
  }  
  .hamburger-inner::after {
    bottom: -10px; 
  } 
  /* Squeeze */
  .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
  }  
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; 
  }  
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
  }  
  .mobile-open .hamburger--squeeze .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
  }  
  .mobile-open .hamburger--squeeze .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; 
  }  
  .mobile-open .hamburger--squeeze .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); 
  }


  .header__menu {
    height: calc(100vh - 50px);
    overflow: auto !important;
    position: absolute;
    width: 100%;
    background: #F7F9FA;
    left: 0;
    right: 0;
    top: 60px;
    padding: 0px 20px;
  }

  .header__menu .hs-menu-wrapper {
    text-align: center;
  }

  .header__menu .hs-menu-wrapper > ul {
    display: block;
  }

  .header__menu .hs-menu-wrapper ul li {
    padding: 0;
  }

  .header__menu .hs-menu-wrapper ul li a {
    display: block;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.88;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 20px;
  }

  .header__menu .hs-menu-wrapper > ul > li:not(:first-child) > a,
  .header__mobile-menu > ul > li:first-child > a {
    border-top: 1px solid #E3E5E6;
  }

  .header__menu .hs-menu-wrapper li.active > a {
    color: #2CA787;
  }

  .header__menu .hs-menu-wrapper .expand-icon {
    display: inline-block;
    height: 10px;
    margin-left: 15px;
    position: relative;
    transition: ease all .2s;
    width: 12px;
  }

  .header__menu .hs-menu-wrapper li.active > a > .expand-icon,
  .header__menu .hs-menu-wrapper li.flyout > a > .expand-icon {
    transform: rotate(-180deg) translateY(2px);
  }

  .header__menu .hs-menu-wrapper .expand-icon:before,
  .header__menu .hs-menu-wrapper .expand-icon:after {
    content: "";
    position: absolute;
    background: #5FDDBC;
    border-radius: 10px;
    display: block;
    left: 0;
    bottom: 5px;
    height: 2px;
    width: 8px;
    transform: rotate(45deg);
  }

  .header__menu .hs-menu-wrapper .expand-icon:after {
    transform: rotate(-45deg);
    left: initial;
    right: -1px;
  }

  .header__menu .hs-menu-wrapper ul ul {
    padding-bottom: 10px;
  }

  .header__menu .hs-menu-wrapper ul ul li a {
    padding: 5px 10px;
  }

  .header__menu .hs-menu-wrapper li.last-menu-item {
    border: 0 !important;
    padding-bottom: 0;
    padding-top: 20px;
  }

  .header__menu .hs-menu-wrapper li.last-menu-item a.button {
    font-size: 15px;
    line-height: 1;
    margin: 0 auto;
    max-width: 180px;
    padding: 11px 10px 10px;  
    width: 100%;
  }

  .header__mobile-menu ul li.hs-item-has-children > ul.hs-menu-children-wrapper {
    display: none;
  }

  .header__mobile-menu ul.active {
    display: block !important;
  }

  .header__mobile-menu .mm-social p {
    margin-bottom: 20px;
  }

  .header__mobile-menu .mm-social a {
    display: inline-block !important;
    margin: 5px 10px !important;
    padding: 0 !important;
  }

  .header__mobile-menu .footer-subscribe__bot > div > span {
    flex-direction: column;
  }

  .header__mobile-menu .footer-subscribe__bot h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .header__mobile-menu .footer-subscribe__bot h3,
  .header__mobile-menu .footer-subscribe__bot h3 + div,
  .header__mobile-menu .footer-subscribe__bot form .hs-email, 
  .header__mobile-menu .footer-subscribe__bot form .hs-submit {
    padding: 0;
    width: 100%;
  }

  .header__mobile-menu .footer-subscribe__bot form .hs-email input {
    border-radius: 10px;
  }

  .header__mobile-menu .footer-subscribe__bot form input[type=submit], 
  .header__mobile-menu .footer-subscribe__bot form .hs-button {
    border-radius: 100vw;
  }

  .header__mobile-menu .footer-subscribe__bot form .hs-error-msgs {
    padding: 0;
    position: relative;
  }

  .header__mobile-menu .mm-search form input,
  .header__mobile-menu .footer-subscribe__bot form .hs-email input,
  .header__mobile-menu .footer-subscribe__bot form .hs-error-msgs li label {
    font-size: 14px;
    text-align: center !important;
  }
}

@media (max-width: 399px) {
  .header__main-nav > .page-center > .flex-space-between {
    justify-content: center;
  }
}

/* Search Input */
.header__search .search-ico {
  background-color: transparent;
  background-image: url('https://f.hubspotusercontent10.net/hubfs/7917815/Intentsify/icons/search-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  border-radius: 0;
  font-size: 0;
  height: 18px;
  max-width: 40px;
  position: relative;
  top: 1px;
  padding: 0;
  width: 18px;
}

@-moz-document url-prefix() {
  .header__search .search-ico {
    top: -7px;
  }
}

.header__search .search-ico:hover {
  -webkit-filter: invert(49%) sepia(99%) saturate(279%) hue-rotate(114deg) brightness(91%) contrast(96%);
  filter: invert(49%) sepia(99%) saturate(279%) hue-rotate(114deg) brightness(91%) contrast(96%);
}

.search-container .hs-search-field {
  position: absolute;
  left: 0;
  right: 0;
  top: -200px;
  transition: linear all .3s;
  opacity: 0;
  visibility: hidden;
}

.search-container.search-open .hs-search-field {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
  top: 75px;
  opacity: 1;
  visibility: visible;
}

.search-container .hs-search-field__bar {
  background: #F7F9FA;
  width: 100%;
  padding: 20px;
}

.search-container form {
  display: flex;
  margin-left: auto;
  max-width: 500px;
  position: relative;
}

.search-container input[type="text"] {
  border: 0px;
  border-radius: 10px;
  height: 40px;
  margin-right: 15px;
  padding: 10px 30px;
}

.search-container form button {
  padding: 8px 25px;
  width: 40%;
}

.search-container .hs-search-field > ul {
  position: absolute;
  width: 100%;
  top: 123px;
  background: #fff;
}

.search-container .hs-search-field > ul li a {
  font-size: 26px;
  text-decoration: none;
  color: #474C54;
  margin: 19px 35px;
}

.search-container .hs-search-field .hs-search-highlight {
  color: #ED8032;
}

.search-container form button svg,
.search-container .hs-search-field #results-for,
.search-container .hs-search-field--open .hs-search-field__suggestions {
  display: none;
}

@media (min-width: 1025px) {
  .header .search-container.search-open .hs-search-field {
    top: 95px;
    transition: linear all .2s;
  }
  .header.nav-up .search-container.search-open .hs-search-field,
  .header.nav-down .search-container.search-open .hs-search-field {
    top: 75px;
  }
}

@media(max-width:1024px) {
  .header__menu .mm-search {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header__menu .mm-search .search-ico {
    margin: 10px auto 30px;
  }

  .header__menu .mm-search .search-container .hs-search-field {
    box-shadow: none !important;
    display: none;
    position: relative;
    top: 0;
  }

  .header__menu .mm-search .search-container.search-open .hs-search-field {
    display: block;
    margin-bottom: 35px;
  }

  .header__menu .mm-search .hs-search-field__bar,
  .header__mobile-menu .footer-subscribe__bot {
    background: #EDEFF0;
    border-radius: 10px;
    padding: 20px 25px;
  }

  .header__menu .mm-search .search-container form {
    display: block;
  }

  .header__menu .mm-search .search-container form button,
  .header__mobile-menu .footer-subscribe__bot form .hs-submit .hs-button {
    margin-top: 10px;
    padding: 10px 10px 9px;
    width: 80%;
  }

  .header__menu .mm-search .hs-search-field__suggestions {
    display: none !important;
  }

}



/* Landing Page Header */
.lp-header.header-container-wrapper {
  padding: 18px 20px;
}
/* Footer CTA Banner */
.footer-cta-banner {
  padding: 50px 0 180px;
}

.homepage .footer-cta-banner {
  padding: 65px 0 200px;
}

.software-overview .footer-cta-banner {
  padding: 30px 0 150px;
}

.footer-cta-banner__inner {
  margin: 0 auto;
  max-width: 560px;
}

.footer-cta-banner h2 {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .footer-cta-banner {
    padding: 30px 0 60px;
  }
}


/* Footer Subscribe */
.footer-subscribe__bot {
  max-width: 500px;
  margin-left: auto;
  margin-right: 0;
}

.footer-subscribe__bot > div > span {
  display: flex;
  align-items: center;
}

.footer-subscribe__bot,
.footer-subscribe__bot form {
  width: 100%;
}

.footer-subscribe__bot h3 {
  font-size: 0.8889rem;
  font-weight: 400;
  margin-bottom: 0;
  width: 36%;
}

.footer-subscribe__bot h3 + div {
  width: 64%;
  padding-left: 15px;
}

.footer-subscribe__bot form .hs-email,
.footer-subscribe__bot form .hs-submit {
  display: inline-block;
  vertical-align: top;
  margin: 0 !important;
}

.footer-subscribe__bot form .hs-email .hs-input,
.footer-subscribe__bot form .hs-submit .hs-button {
  min-height: 40px;
}

.footer-subscribe__bot form .hs-email > label {
  display: none;
}

.footer-subscribe__bot form .hs-email input {
  border: 0;
  border-radius: 100vw 0 0 100vw;
  color: #031326;
  font-size: 13px;
  padding: 11px 15px 11px 20px;
}

.footer-subscribe__bot form .actions,
.footer-subscribe__bot form input[type=submit],
.footer-subscribe__bot form .hs-button {
  width: 100%;
}

.footer .footer-subscribe__bot form input[type=submit],
.footer .footer-subscribe__bot form .hs-button {
  border-left: 0;
  border-radius: 0 100vw 100vw 0;
  letter-spacing: 1px;
  padding: 10px;
}

.footer-subscribe__bot form .hs-error-msgs {
  position: absolute;
  width: initial !important;
}

.footer-subscribe__bot .submitted-message {
  text-align: center;
}

.footer-subscribe__bot .submitted-message *:last-child {
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .footer-subscribe__bot form .hs-email {
    width: 62%;
  }

  .footer-subscribe__bot form .hs-submit {
    width: 38%;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-subscribe__bot form .hs-email {
    width: calc(65% - 20px);
  }
  .footer-subscribe__bot form .hs-submit {
    width: 35%;
  }
}


/* Main Footer */
.footer,
.footer p {
  font-size: 16px;
}

.footer .white-text a:hover {
  color: #2CA787;
}

.footer .hs_cos_wrapper_type_rich_text p:last-child {
  margin-bottom: 0 !important;
}

.footer {
  background-color: #031326;   
  -webkit-clip-path: polygon(0px 75px,100% 0px,100% 100%,0% 100%);  
  clip-path: polygon(0px 75px,100% 0px,100% 100%,0% 100%);
}

.footer .footer__row {
  padding-top: 70px;
}

.footer .footer__row:first-child {
  padding-top: 0;
}

.footer .footer__row:last-child {
  padding-top: 100px;
}

.footer .links .hs-menu-wrapper > ul > li {
  cursor: text;
  margin-bottom: 20px;
}

.footer .links .hs-menu-wrapper > ul > li:first-child > a,
.footer .links-col .social p:first-child {
  border-bottom: 1px solid #5FDDBC;
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  pointer-events: none;
}

.footer .links .hs-menu-wrapper > ul .hs-menu-children-wrapper {
  display: block;
  opacity: 1;
  position: relative;
}

.footer .links .hs-menu-wrapper > ul .hs-menu-children-wrapper li {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer .links .hs-menu-wrapper > ul .hs-menu-children-wrapper li a {
  white-space: initial;
}

.footer .links-col .social p:first-child {
  line-height: 1.35;
}

.footer .social a {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin: 0 20px 20px 0;
}

.footer .social a img {
  -webkit-filter: brightness(100%) saturate(100%);
  filter: brightness(100%) saturate(100%);
  height:39px;
}

.footer .social a:hover img {
  -webkit-filter: invert(49%) sepia(99%) saturate(279%) hue-rotate(114deg) brightness(91%) contrast(96%);
  filter: invert(49%) sepia(99%) saturate(279%) hue-rotate(114deg) brightness(91%) contrast(96%);
}

.footer .copyright {
  width: 100%;
}

.footer .copyright p,
.footer .copyright p a {
  color: #FAFAFA;
  font-weight: 400;
  line-height: 1.2;
}

.footer .copyright p a {
  text-decoration: underline;
}

@media (min-width: 601px) {
  .footer {
    -webkit-clip-path: polygon(0px 115px,100% 0px,100% 100%,0% 100%);
    clip-path: polygon(0px 115px,100% 0px,100% 100%,0% 100%);
    margin-top: -120px;
    padding: 180px 0 30px;
  }

  .footer .footer__row .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .footer .footer__row:first-child .row-fluid {
    justify-content: space-between;
    align-items: center;
  }

  .footer .logo--color {
    display: none;
  }

  .footer .links-col {
    padding-right: 15px;
    /*width: 16.8%;*/
    width: 21%;
  }

  .footer .links-col:last-child {
    padding-right: 0;
    width: 16%;
  }

  .footer .links-col .hs-menu-wrapper ul {
    width: 100%;
  }

  .footer .copyright p a {
    margin-right: 30px;
  }

  .footer .copyright p a:first-child {
    margin-left: 70px;
  }
}

@media (min-width: 601px) and (max-width: 899px) {
  .footer {
    -webkit-clip-path: polygon(0px 25px,100% 0px,100% 100%,0% 100%);
    clip-path: polygon(0px 25px,100% 0px,100% 100%,0% 100%);
    margin-top: -25px;
    padding-top: 100px;
  }
  
  .footer .footer__row:last-child {
    padding-top: 50px;
  }

  .footer .logo {
    margin: 0 auto 50px;
  }
  
  .footer-subscribe__bot {
    width: 100%;
    margin: 0 auto;
  }

  .footer .links-col,
  .footer .links-col:last-child {
    padding-left: 8%;
    padding-right: 0;
    width: 33%;
  }

  .footer .links-col:nth-child(3n+1) {
    padding-left: 0;
  }

  .footer .copyright p {
    font-size: 0.6364rem;
  }

  .footer .copyright p a:first-child {
    margin-left: 40px;
  }
  
  .footer .copyright p a {
    margin-right: 20px;
  }
}

/* mobile footer */
@media (max-width: 600px) {
  .footer {
    background-color: transparent;
    -webkit-clip-path: none;
    clip-path: none;
    margin-top: 0;
    padding: 30px 0;
    text-align: center;
  }

  .footer .footer__row {
    padding-top: 0!important;
  }

  .footer .footer-subscribe__bot,
  .footer .links-col {
    display: none;
  }

  .footer .logo--white {
    display: none;
  }

  .footer .logo {
    padding-bottom: 35px;
  }

  .footer .copyright p,
  .footer .copyright p a {
    color: #B1B1B1;
    font-size: 14px;
    font-weight: 400;
  }

  .footer .copyright p a {
    display: block;
    line-height: 1.4;
    margin: 15px auto 0;
  }

  .footer .copyright p a:first-child {
    margin-top: 20px;
  }
}


/* Landing Page Footer */
@media (min-width: 600px) {
  .lp-footer.footer {
    padding-top: 100px;
  }

  .lp-footer.footer .footer__row:last-child {
    padding-top: 30px;
  }
}

@media (min-width: 899px) {
  .lp-footer.footer {
    padding-top: 140px;
  }

  .lp-footer.footer .footer__row:last-child {
    padding-top: 60px;
  }
}
/* 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-menu-children-wrapper {
  /*left: -9999px;*/
  position: absolute;
  opacity: 0;
}

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

.hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.hs-menu-item.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.hs-menu-item.hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.header__menu .hs-menu-wrapper ul>li.hs-menu-depth-2 ul.hs-menu-children-wrapper {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.header__menu .hs-menu-wrapper ul>li.hs-menu-depth-2.flyout ul.hs-menu-children-wrapper {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/*.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 (min-width: 1024px) {
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
pointer-events: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children > ul.hs-menu-children-wrapper.active {
pointer-events: initial;
}
}*/

@media (max-width: 1024px) {
  .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%;
}

.widget-type-linked_image img {
  border-radius: 10px;
}