/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control the layout of elements
and how they stack. This is based off of the bootstrap system.
*********************************************************************************
****************************************************************************** */

/* 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: 1px;
  *margin-left: 0;
  -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%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

/*  */

.flex_row .col12 {
  width: 100%;
}
.flex_row .col11 {
  width: 91.66%;
}
.flex_row .col10 {
  width: 83.33%;
}
.flex_row .col9 {
  width: 75%;
}
.flex_row .col8 {
  width: 66.66%;
}
.flex_row .col7 {
  width: 58.33%;
}
.flex_row .col6 {
  width: 50%;
}
.flex_row .col5 {
  width: 41.66%;
}
.flex_row .col4 {
  width: 33.33%;
}
.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}
.flex_row .col1 {
  width: 8.33%;
}

.container-fluid {
  *zoom: 1;
}

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

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

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

  .flex_row .col20,
  .flex_row .col12,
  .flex_row .col11,
  .flex_row .col10,
  .flex_row .col9 ,
  .flex_row .col8 ,
  .flex_row .col7 ,
  .flex_row .col6 ,
  .flex_row .col5 ,
  .flex_row .col4 ,
  .flex_row .col3 ,
  .flex_row .col2 ,
  .flex_row .col1 {
    width: 100%;  
  }

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

  .dnd-section > .row-fluid .dnd-column,
  .dnd-section > .row-fluid > [class*="span"].dnd-module {
    padding: 0;
  }
}

.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding:0;
}


@media (min-width: 1024px) {
  .dnd-section > .row-fluid .dnd-column,
  .dnd-section > .row-fluid > [class*="span"].dnd-module {
    padding: 0;
  }

  .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: 1px;
    margin-left: 0;
    -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%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

@media (max-width: 1023px) {
  .row-fluid [class*=span] {
    min-height: 0;
  }
}

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

@media (max-width: 1023px) {
  .remove-on-mobile {
    display: none;
  }
}

/* Custom */

.col8 {
  width: 66.66%;
}
.col6 {
  width: 50%;
}
.col4 {
  width: 33.33%;
}

@media (max-width: 1023px) {
  .col8,
  .col6,
  .col4 {
    width: 100%;
    max-width: 768px;
  }
}


@media (max-width: 1023px) {
  .centered-mobile {
    text-align: center;
  }
  
  .centered-mobile p {
    max-width: none;
  }
}
.page-center,
.content-wrapper,
.dnd-section > .row-fluid {
  max-width: 100%;
}

.content-wrapper,
.page-center {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 767px) {
  .content-wrapper,
  .page-center {
    padding: 0 2rem;
  }
}

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

.dnd-section .dnd-column {
  padding: 0 16px;
}

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

@font-face {
  font-family: 'proxima-nova';
  font-display: swap;
}

@font-face {
  font-family: 'filson-pro';
  font-display: swap;
}

:root{
  --primary-custom-font: 'proxima-nova', sans-serif;
  --secondary-custom-font: 'filson-pro', sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--primary-custom-font), sans-serif;
  font-weight: 400;
  color: #384451;
  overflow-wrap: break-word;
}

/* Paragraphs */

p {
  max-width: 768px;
  margin: 0 auto 1rem 0;
  font-size: 1.25rem;
  text-wrap: pretty;
}

@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-custom-font), sans-serif;
  font-weight: 700;
  line-height: 1.4;
  max-width: 1280px;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
}

@media (max-width: 1919px) {
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.5rem;
}

@media (max-width: 1279px) {
  h2 {
    font-size: 2rem;
  }
}

.xl-heading {
  font-size: 4rem;
}

.xl-heading img {
  height: 6rem !important;
}

@media (max-width: 767px) {
  .xl-heading {
    font-size: 3rem;
  }

  .xl-heading img {
    height: 80px !important;
  }
}

@media (max-width: 412px) {
  .xl-heading {
    font-size: 2rem;
  }

  .xl-heading img {
    height: 64px;
  }
}

.pre-heading {
  color: #03C6F4;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Lists */

ul,
ol {
  list-style: none;
  margin: 0 0 1rem;
  padding-left: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1rem;
  padding-left: 0.5rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

.light {
  color: #ffffff !important;
}

.dark {
  color: #384451 !important;
}

span.quote-mark {
  position: absolute;
  top: 12px;
  left: -24px;
  color: #03c6f4;
  font-family: filson-pro, serif;
  font-size: 48px;
  line-height: 18px;
}

span.small-text {
  font-size: 0.75rem;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  background-color: #F77747;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button:hover,
.button:hover,
.hs-button:hover {
  background: #FF4D24 !important;
}

.button.secondary {
  background-color: transparent;
  border: solid 1px #ffffff;
  box-shadow: none;
}

.button.secondary:hover {
  background-color: #03C6F4 !important;
  border: solid 1px #ffffff;
}

.button.secondary.dark {
  color: #384451;
  background-color: transparent;
  border: solid 1px #384451;
  box-shadow: none;
}

.button.secondary.dark:hover {
  color: #ffffff !important;
  background-color: #03C6F4 !important;
  border: solid 1px #ffffff;
}

a.in-content {
  color: #037FD0;  
  font-weight: 600;
  text-decoration: none;
  text-wrap: balance;
}

a.arrow-right {
  display: block;
  color: #384451;  
  font-weight: 600;
  text-decoration: none;
  text-wrap: balance;
  transition: color 0.4s ease;
}

a.arrow-right:after {
  content: '\f061';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 600;
  margin-left: 5px;
  text-decoration: none;
  display: inline-block;
}

a.arrow-right:hover {
  color: #03c6f4 !important;
}

a.arrow-right.no-hover:hover {
  color: #ffffff !important;
}
/* Fields */

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

/* Labels */

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

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  color: #384451;
  font-family: var(--primary-custom-font), sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  padding: 8px 12px;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  border: solid 1px #cbd6e2;
  border-radius: 3px;
  background-color: #f5f8fa;
}

footer form input[type=email] {
  border: solid 1px #ffffff;
  background-color: #ffffff;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto 0 0;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

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

/*** TEMP HIDE "Solution by Use Case" Nav section under "Platforms" ***/

.platforms .hs-menu-children-wrapper .link-wrapper li.hs-menu-item.hs-menu-depth-2:nth-of-type(2) {
  display: none !important;
}

/*** TEMP HIDE "Solution by Use Case" Nav section under "Solutions" ***/

header.shq-site-header {
  width: 100%;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
}

header.shq-site-header .shq-site-header__container {
  padding: 12px 2rem;
  display: flex;
  width: auto;
  justify-content: space-between;
  align-items: center;
}

@media (min-width:1386px) {
  header.shq-site-header .shq-site-header__container {
    padding: 12px 4rem;
  }
}

header.shq-site-header .shq-top-nav .header_logo img {
  min-width: 160px;
}

header.shq-site-header .mobile_logo {
  display: inline-block;
  height: 40px;
  width: 180px;
  padding: 0;
  z-index: 1029;
  background-color: #fff;
  display: flex;
  align-items: center;
}

header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #596675;
  position: relative;
  white-space: nowrap;
}

header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>a:hover {
  text-decoration: none;
}

header.shq-site-header .account-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background: #fff;
}

header.shq-site-header .account-nav-wrapper .account-nav__signup {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
}

header.shq-site-header .header_login a {
  order: 2;
  width: calc(100% - 40px);
  margin: 0 24px 0 0;
  text-align: center;
  color: #384451;
}

#hs-button_sign_up {
  width: 100%;
}

/* Removed Nav Arrows */
@media (max-width:1279px) { 
  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children>a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: calc(50% + 1px);
    right: 0;
    transform: translate(-100%, -50%) rotate(270deg);
  }
}

.header_wrapper {
  min-height: 87px;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.shq-developer-platform>a:after,
header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.help-docs>a:after,
header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>ul>li.partner-referrals>a:after{
  font-family: "Font Awesome 6 Pro";
  content: '\f08e';
  opacity: .8;
  font-size: 80%;
  margin-left: 8px;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li>a:hover {
  text-decoration: none;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.checkout-our-latest-product-enhancements {
  background-color: #f2f9fc;
  padding: 4px 16px;
  border-radius: 69px;
  max-width: 382px;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.checkout-our-latest-product-enhancements > a:after {
  content: '\f061';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  margin-left: 8px;
  text-decoration: none;
  display: inline-block;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.checkout-our-latest-product-enhancements > a {
  display: inline;
  width: auto;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-wrap: wrap;
}

header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.checkout-our-latest-product-enhancements > a:hover {
  color: #03c6f4;
}

header.shq-site-header .primary_menu span.notif-text {
  min-width: 42.67px;
  margin: 0 8px 0 0;
  color: #f77746;
  font-size: 11px;
  font-weight: 700;
  font-family: "Lato", Helvetica Neue, Helvetica, Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-family: Helvetica, Arial, sans-serif;
}

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

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

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-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;
}

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

@media (min-width:1280px) and (max-width:1321px) {
  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>a {
    font-size: 14px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children>a:after {
    top: calc(50% - 1px);
  }
}

@media (min-width:1280px) {
  header.shq-site-header {
    padding: 0;
  }

  header.shq-site-header .mobile_logo {
    display: none;
  }

  header.shq-site-header nav.shq-top-nav {
    position: relative;
    z-index: 1029;
    width: 100%;
    top: auto;
    left: auto;
    padding-top: 0;
    transform: translateX(0);
    transition: none;
    visibility: visible;
  }

  header.shq-site-header nav.shq-top-nav .shq-top-nav_inner {
    width: 100%;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul {
    flex-wrap: nowrap !important;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul {
    width: auto;
    min-width: 233px;
    position: absolute;
    left: 0;
    top: 64px;
    transform: translateX(0);
    height: auto;
    overflow: visible;
    z-index: 4;
    opacity: 0;
    transition: opacity 300ms 100ms, transform 300ms, visibility 300ms 0ms;
    min-height: 100px;
    border-top: 1px solid #eee;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 6px 6px;
    background:#fff;
    display: none;
  }

  header.shq-site-header nav.shq-top-nav .header_logo a {
    width: auto;
    margin-right: 12px;
    position: relative;
    top: -7px;
    display: inline-block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li {
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom:0;
    position:relative;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li:nth-child(2) .hs-menu-children-wrapper {
    padding-bottom: 32.5px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>a {
    display: block;
    align-items: center;
    position: relative;
    padding: 16px 0 16px;
    border: none;
  }

  header.shq-site-header .account-nav-wrapper {
    flex-wrap: nowrap;
    margin-bottom: 0;
    align-items: center;
  }

  header.shq-site-header .header_login a {
    margin: 0 24px 0 0;
    white-space: nowrap;
  }

  header.shq-site-header .header_login a:hover {
    color: #007fd0;
    text-decoration: none;
  }

  /*header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children>a:after {
    content: "\f078";
    font-size: .675em;
    line-height: .5;
    transform: translate(0, -50%) rotate(0deg);
    position: absolute;
    transition: color 100ms, transform 200ms;
  } Removed Nav Arrows */

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children>a {
    /*padding-right: 16px; Removed Nav Arrows*/
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li:hover ul {
    opacity: 1;
    visibility: visible;
    display:block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper {
    display: flex;
    padding: 32px;
    border-radius: 0px 0px 6px 6px; 
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li {
    margin: 0;
    margin-right: 65px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li:last-child {
    margin-right: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li>a {
    border-bottom: 1px solid #eee;
    font-family: proxima-nova, sans-serif;
    height: 44px;
    padding-bottom: 16px;
    margin-bottom: 12px;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #384451;
    display: block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul {
    display: block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li {
    margin: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li>a {
    display: block;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #596675;
    white-space: nowrap;
    position: relative;
    font-size: 85%;
    line-height: 28px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.what-we-do ul .link-wrapper>li {
    margin: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.what-we-do ul .link-wrapper>li ul {
    margin-right: 72px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.what-we-do ul .link-wrapper>li:last-child ul {
    margin-right: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.what-we-do ul .link-wrapper>li>a:empty {
    padding-top: 24px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>a:hover {
    color: #00aae5;
  }

  .site-header-underlay {
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 300ms, visibility 300ms;
    z-index: 1028;
  }

  .site-header-underlay.active_bg  {
    opacity:1;
    visibility:visible;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children:hover>a{
    color: #00aae5;
    transition: all 100ms;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li>a:hover {
    text-decoration: underline;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children>ul:before {
    background-color: #00aae5;
    width: 6rem;
    height: 8px;
    position: absolute;
    top: -8px;
    left: 0;
    content: "";
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-item-has-children:hover>a:after {
    transform: translate(0, -50%) rotate(-180deg);
    color: #00aae5;
  }

  header.shq-site-header nav.shq-top-nav.mb {
    display: none;
  }

  header.shq-site-header button.mobile-menu-button {
    display: none;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul .what-we-do .link-wrapper {
    padding-bottom: 95px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul .link-wrapper>li ul>li.checkout-our-latest-product-enhancements {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
  }

  .ups_two_cols.two-col-content .flex_row.flex_center {
    margin: 7rem 0;
  }
}

@media (max-width:1279px) {
  header.shq-site-header nav.shq-top-nav.dsk {
    display: none;
  }

  header.shq-site-header nav.shq-top-nav.mb {
    display: block;
  }

  .header_wrapper {
    min-height: 65px;
  }

  header.shq-site-header .shq-top-nav_inner {
    overflow-y: auto;
    max-height: calc(100vh - 61px);
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul {
    overflow-y: auto;
    height: calc(100vh - 61px);
  }

  header.shq-site-header nav.shq-top-nav .header_logo,
  header.shq-site-header .account-nav-wrapper {
    display: none;
  }

  header.shq-site-header .shq-site-header__container {
    max-width: 100%;
  }

  header.shq-site-header button.mobile-menu-button {
    margin-left: auto;
    display: block;
    position: relative;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1030;
    background-color: transparent !important;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line:first-of-type {
    top: 3px;
    transform-origin: top left;
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    width: 100%;
    transform: rotate(0deg) translate3d(0, 0, 0);
    transform-origin: left center;
    height: 3px;
    transition: all 300ms;
  }

  header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line:last-of-type {
    top: auto;
    bottom: 3px;
    transform-origin: bottom left;
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 50%;
    height: 100%;
    background-color: #3B4456;
    border-radius: 100px;
  }

  header.shq-site-header nav.shq-top-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: 64px;
    transform: translateX(100%);
    transition: transform 300ms, visibility 300ms 0ms;
    visibility: hidden;
    z-index: 1;
  }

  .menu_open header.shq-site-header nav.shq-top-nav {
    visibility: visible;
    transform: translateX(0);
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul {
    list-style-type: none;
    margin-bottom: 0;
    display: block;
  } 

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li>a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #596675;
    position: relative;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul ul {display: none;}

  header.shq-site-header .account-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    background: white;
    flex-direction: column;
  }

  header.shq-site-header .account-nav-wrapper .header_login {
    order: 2;
  }

  header.shq-site-header .account-nav-wrapper .account-nav__signup {
    order: 1;
  }

  header.shq-site-header .language_wrap {
    order: 3;
  }

  header.shq-site-header nav.shq-top-nav .shq-top-nav_inner {
    background: #fff;
    display: block;
    list-style-type: none;
    margin-bottom: 0;
    padding: 4px 24px 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li:last-child {
    border: none;
  }

  header.shq-site-header .account-nav-wrapper .account-nav__signup {
    flex-flow: row wrap;
    justify-content: center;
    margin: 24px auto;
  }

  header.shq-site-header .account-nav-wrapper .header_login a {
    width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
    color: #384451;
    white-space: nowrap;
  }

  header.shq-site-header .language_wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  header.shq-site-header .account-nav-wrapper .header_login{
    text-align:center;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li>a:hover {
    text-decoration: underline;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li>a:focus {
    outline: none;
  }

  .menu_open header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line:first-of-type {
    top: 50%;
    left: 50%;
    transform: rotate(45deg) translate3d(-50%, -50%, 0) scaleX(1);
    opacity: 1;
  }

  .menu_open header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line {
    transform: rotate(0deg) translate3d(0, 0, 0) scaleX(0);
    opacity: 0;
  }

  .menu_open header.shq-site-header button.mobile-menu-button span.mobile-menu-button__lines span.mobile-menu-button__line:last-of-type {
    top: auto;
    bottom: 50%;
    left: 50%;
    transform: rotate(-45deg) translate3d(-50%, 50%, 0) scaleX(1);
    opacity: 1;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul  {
    background: #fff;
    box-shadow: none;
    display: block !important;
    height: 100%;
    padding: 0;
    position: absolute !important;
    top: 0;
    right:-100%;
    -webkit-transition: all s !important;
    -moz-transition: all .4s !important;
    -o-transition: all .4s !important;
    transition: all .4s !important;
    width: 100%;
    padding: 64px 24px 24px;
    border-top: none;
    margin-top: 0;
    z-index: 99;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.hs-menu-item.hs-item-has-children > ul {
    height: 100vh;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.child-open.hs-menu-item.hs-item-has-children > ul {
    right:0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li {
    display: block;
    margin: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li.child-open.hs-menu-item.hs-item-has-children>ul li.custom-parent-link {
    display: none;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li ul {
    display: block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>a {
    padding: 24px 0 12px 0;
    border-bottom: 1px solid #eee;
    font-family: proxima-nova, sans-serif;
    margin-bottom: 12px;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #384451;
    display: block;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul>li.dl-back {
    margin: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul>li.dl-back>button {
    display: block;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #596675;
    white-space: nowrap;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    line-height: 28px;
    background-color: unset;
    border: none;
    padding: 8px 0;
    width: auto;
    box-shadow: none;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul>li.dl-back>button:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f053";
    margin-right: 24px;
    font-size: 14px;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>ul>li {
    margin: 0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>ul>li>a {
    display: block;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #596675;
    white-space: nowrap;
    position: relative;
    line-height: 28px;
    font-size: 85%;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>ul>li>a:hover {
    text-decoration: underline;
  }

  header.shq-site-header .account-nav-wrapper .header_login a:hover {
    text-decoration: underline;
    color: #027FD0;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper ul>li>ul>li.dl-back>button:hover {
    text-decoration: underline;
  }

  header.shq-site-header .primary_menu .hs-menu-wrapper>ul>li .link-wrapper>li>a:empty {
    display: none;
  }

  .active_bg_mobile .site-header-underlay {
    opacity: 1;
    visibility: visible;
  }

  .site-header-underlay {
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 300ms, visibility 300ms;
    z-index: 1028;
  }
}

@media (max-width: 767px) {
  header.shq-site-header .shq-site-header__container {
    padding: 12px 2rem;
  }

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

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

  .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;
  }
}
footer {
  position: relative;
  z-index: 99;
}

.shq-site-footer {
  background-color: #04395C;
  color: #ffffff;
}

.shq-site-footer__navigation {
  padding-top: 64px;
  position: relative;
}

.shq-site-footer_main-nav {
  display: flex;
}

.shq-site-footer__link-lists {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 1;
  position: relative;
  text-align: left;
  width: 100%;
}

.shq-site-footer__link-list {
  flex: 1;
  list-style-type: none;
  padding: 0 32px 0 0;
  margin: 0 0 12px 0;
  break-inside: avoid;
}

.shq-site-footer__link-title {
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 28px;
}

.shq-site-footer .hs-menu-wrapper > ul > li {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}

.shq-site-footer .hs-menu-wrapper > ul > li > a {
  display: block;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

.shq-site-footer .hs-menu-wrapper ul ul li {
  margin: 0 0 12px 0;
  font-size: .875rem;
  line-height: 1.5rem;
}

.shq-site-footer .hs-menu-wrapper ul ul li a {
  margin: 0;
  font-size: .875rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: normal;
}

.shq-site-footer .hs-menu-wrapper ul ul li a:hover {
  text-decoration: underline;
}

.shq-site-footer .newsletter-social {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 241.47px;
  margin: 0 0 24px 0;
  padding-right: 0 !important;
}

.shq-site-footer .shq-site-footer__newsletter-box {
  width: 100%;
}

.shq-site-footer .footer_form {
  height: 134.47px;
}

.shq-site-footer .footer_form .form-title {
  color: #384451;
  background-color: #ffffff;
}

.shq-site-footer .footer_form form {
  margin-top: 0;
}

.shq-site-footer .footer_form form input::placeholder {
  color: #bfbfbf;
}

.shq-site-footer .footer_form form .hs-form-field {
  margin-bottom: 0;
}

.shq-site-footer .footer_form form .hs_submit.hs-submit {
  margin: 18px 0;
  padding: 16px 0;
}

.shq-site-footer .footer_form form .inputs-list > li {
  margin: 0 0 8px;
  width: 100%;
  padding-left: 8px;
}

.shq-site-footer .footer_form form .inputs-list > li label {
  margin: 0;
  font-family: arial, helvetica, sans-serif;
  width: auto;
  padding: 0;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
  font-size: 14px;
}

.shq-site-footer .partners-legal-wrapper {
  font-size: 16px;
  line-height: 28px;
  border-top: 1px solid #ffffff80;
  padding-top: 32px;
  margin-top: 32px;
}

.shq-site-footer .partners-legal .shq-site-footer__legal {
  flex: 1;
  margin-bottom: 24px;
  font-size: 85%;
}

.shq-site-footer .partners-legal .shq-site-footer__legal a {
  margin-right: 8px;
  color: #fff;
}

.shq-site-footer .partners-legal .shq-site-footer__legal a:last-of-type {
  margin-right: 0;
}

.shq-site-footer .partners-legal .shq-site-footer__legal small {
  font-size: .6rem;
  display: block;
  line-height: 1.375rem;
}

/* External Link Indicators */
.shq-site-footer .hs-menu-wrapper ul ul li.help-docs:after,
.shq-site-footer .hs-menu-wrapper ul ul li.shipperhq-blog:after,
.shq-site-footer .hs-menu-wrapper ul ul li.shq-developer-platform:after,
.shq-site-footer .hs-menu-wrapper ul ul li.partner-referrals:after {
  font-family: "Font Awesome 6 Pro";
  content: '\f35d';
  opacity: .3;
  margin-left: 8px;
  font-size: .75em;
}

.shq-site-footer .footer-no-navigation .partners-legal-wrapper {
  padding-top: 0;
  border: 0;
  margin: 0;
}

@media (min-width: 1200px) {
  .shq-site-footer .shq-site-footer__link-list:first-of-type {
    width: 15%;
  }

  .shq-site-footer .shq-site-footer__link-list {
    width: 20%;
  }
}

@media (min-width: 1200px) {
  .shq-site-footer .shq-site-footer__link-list {
    width: 33%;
  }

  .shq-site-footer .partners-legal .shq-site-footer__legal {
    text-align: right;
    float: right;
  }
}

@media (max-width: 1024px) {
  .shq-site-footer .partners-legal-wrapper {
    padding-top: 32px;
    margin-top: 12px;
    flex-direction: column;
  }

  .shq-site-footer .partners-legal {
    display: flex;
    flex-direction: column;
  }

  .shq-site-footer .newsletter-social {
    flex: 1 1 100%;
  }

  .shq-site-footer .shq-site-footer__newsletter-box {
    width: 50%;
  }

  .shq-site-footer .shq-site-footer__link-lists {
    flex-wrap: wrap;
  }

  .shq-site-footer .footer_form form .hs_submit.hs-submit {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  .shq-site-footer .social_icons.shq-site-footer__social-platforms {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .shq-site-footer {
    padding: 0;
  }

  .shq-site-footer .shq-site-footer__link-list {
    flex: 1 1 50%;
    padding-right: 24px;
    margin-bottom: 32px;
  }

  .shq-site-footer .shq-site-footer__newsletter-box {
    width: 75%;
  }

  .shq-site-footer .hs-menu-wrapper ul ul li {
    width: auto;
    margin: 0 0 12px 0;
    display: inline-block;
    font-size: .875rem;
    line-height: 1.5rem;
    background-color: unset;
  }

  .shq-site-footer .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: auto;
  }
}

@media (max-width: 375px) {
  .shq-site-footer .shq-site-footer__newsletter-box {
    width: 100%;
  }
}

/*** Landing Page Footer ***/

.shq-site-footer.footer-lp .social_icons.shq-site-footer__social-platforms {
  margin: 0;
}

.shq-site-footer.footer-lp .social_icons.shq-site-footer__social-platforms a.ftr_icon {
  width: 27px;
  display: inline-block;
}

.shq-site-footer.footer-lp .social_icons.shq-site-footer__social-platforms a i {
  transform: scale(0.75);
}

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

/* HubSpot Tools Menu Override */
div.hs-tools-menu {
  top: 172px !important;
}

html{
  scroll-behavior: smooth;
}

.module {
  padding: 64px 0;
}

img {
  vertical-align: middle;
}

img.checkmark {
  margin-right: .5rem;
}

.card-benefit {
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  text-align: center;
}

@media (max-width: 1023px) {
  .card-benefit {
    max-width: 50%;
  }
}

.card-benefit h3 {
  margin: 16px 0 8px;
  font-family: 'proxima-nova';
  font-size: 20px; 
}

.card-benefit p {
  margin: 0 auto 64px;
}

/* Modal styles */
.modal-container {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(56, 68, 81, 0.5);
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  margin: 10vh auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 768px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 7px;
  right: 22px;
  color: #384451;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  text-decoration: none;
}

.modal-form-container {
  margin-top: 1rem;
}

body.modal-open {
  overflow: hidden;
}