/* Theme base styles */
html {
  scroll-behavior: smooth;
}
/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* CSS variables */

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

/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

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

.stickScroll {
 scroll-margin-top: 80px; 
}

/* Resource conversion modals */
.primaryResourceModal {
  position: fixed;
  background-color: black;
  top: 0;
  left: 0;
  display: block; 
  width: 50%;
  z-index: 999; 
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 30, 65, 0.9);
}

.innerResourceModal {
  width: 800px;
  max-width: 95%;
  margin: 25vh auto;
  top: 25%;
  padding: 25px; 
  border-radius: 3px;
}

.primaryFormModal {
  overflow: scroll; 
  width: 80%;
  top: 0;
  position: relative;
  display: none;
  background-color: #fff;
  width: 800px;
  max-width: 80%;
  margin: 25vh auto;
  padding: 10px;
  border-radius: 3px;
}

.innerFormModal {
  
}

.resource-close-button {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  width: 14px;
  display: block;
  margin-bottom: 25px;
  cursor: pointer; 
}

/* End of resource conversion modals */

.footer .footer-lower p,
.footer .footer-lower a {
  font-weight: 300 !important;
    font-size: 16px  !important;
    line-height: 25px  !important;
    text-align: center;
    color: #ffffff;
}

.appear {
  transition: all 0.8s;
  opacity: 0;
  transform: translateY(40px);
}

.inview {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

/* 
.hs-menu-children-wrapper {
  background-color: #0E002D;
  position: fixed !important;
  top: 70px !important;
  left: 0 !important;
  text-align: left !important;
  height: 50vh;
  width: 100vw;
  justify-content: flex-start !important;
  display: block !important;
}
*/

.footer {
}

.footer a, 
.footer p{
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
}
.footer a {
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.footer a:hover {
    text-decoration: underline !important;
    transition: all .4s ease-in-out;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a:hover {
    text-decoration: underline !important;
    transition: all .4s ease-in-out;
}
.footer-upper {
  background-color: #0E002D;
  padding: 30px 0; 
}

.footer-menus ul {
  display: flex; 
  justify-content: space-between;
  column-gap: 0px;
  max-width: 100%;
}
.footer-menus .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
    font-size: 16px;
}
.footer-menus .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  position: static;
  opacity: 1;
}

.footer-menus .hs-menu-depth-1 {
  font-weight: bold;
  margin-right:29px 
}

.footer-menus li.hs-menu-depth-2 {
  margin-bottom: 15px;  
}

.footer-menus ul.hs-menu-children-wrapper {
  margin-top: 15px; 
}

.footer-lower {
  text-align: center;
  background-color: #1E1E41;
  color: #fff;
  align-items: center;
  padding: 15px;
}

.footer-logo {
position: absolute;
  width: 100px;
  right: 55px;
  margin-top: -70px;
}
.footer-lower p {
  margin-top: 10px; 
}

.footer-upper .subscribe {
  margin-top: 35px;
}
.footer-upper .subscribe p.sub{
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: -10px;
}
/* Footer Social icons */
.footer li.hs-menu-item.hs-menu-depth-1:last-of-type ul {
    flex-direction: row !important;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    min-width: 150px;
}
.footer li.hs-menu-item.hs-menu-depth-1:last-of-type ul li:first-child {
  width:100%;
}

@media screen and (max-width: 981px) {
  .hs-menu-wrapper ul {
    justify-content: flex-start;
  }
  .footer-menus .hs-menu-depth-1 {
    width:29%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 884px) {
  .hs-menu-wrapper ul {
    flex-direction: column !important;
  }
  .footer li.hs-menu-item.hs-menu-depth-1:last-of-type ul {
    min-width:100%;
    max-width:100%;
  }
  .footer-menus .hs-menu-depth-1 {
    width:75%;
  }
}

/* Blog listing */
.half-image-container {
    border-radius: 3px;
    height: 235px;
    max-width: 100%;
    min-height: 235px;
    min-width: 100%;
    width: 100%;
    background-size:cover;
}
section.lists {
  padding: 40px 0;
}
section.lists .content-wrapper .flex {
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width:100%;
    margin-top:30px;
}
section.lists .content-wrapper .flex .item-wrapper {
    margin: 10px;
    transition: all .4s ease-in-out;
    width: 31%;
}
section.lists .content-wrapper .flex .half {
    display: inline-flex;
    height: 100%;
    justify-content: flex-start;
    transition: all .4s ease-in-out;
    width: 100%;
    flex-direction: column;
}
section.lists .content-wrapper .flex .half img {
  border-radius:3px;
}

section.lists .content-wrapper .flex .half p.read-time {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 5px 0;
}
section.lists .content-wrapper .flex .half h3.title {
  margin: 10px 0 15px;
}
section.lists .content-wrapper .flex .half p.summary {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
}
section.lists .content-wrapper .flex .half p.cta a {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #E61E46;
  text-decoration:none;
}

section.lists .half-image-container {
  border-radius: 3px; 
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 235px;
  min-height: 235px;
  background-size:cover;
}
  
section.lists .item-wrapper {
  position: relative;   
}

section.lists .item-wrapper:hover .cta a {
 transition: all .4s ease-in-out; 
}

.item-wrapper:hover .cta a {
  color: #fff !important;
}


section.lists .half-image-wrapper {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
} 

section.lists .item-wrapper:hover .half-image-container {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  overflow: hidden !important;
  transition: all .4s ease-in-out;
}

section.lists .item-wrapper a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px; 
} 

div.hs-blog-listing section.lists .content-wrapper .flex .item-1 {
    display: none;
}
div.hs-blog-listing .text-container-featured_banner-module-2, div.hs-blog-post .text-container-module_16715480287233 {
  float:right;
}

div.hs-blog-listing .large-card-featured_banner-module-2 {
  max-height:400px;
  margin-top:69px;
}
div.hs-blog-post .large-card-module_16715480287233 {
/*   max-height: 400px; */
  margin-top: 0 !important;
}
div.hs-blog-listing .text-side-featured_banner-module-2, div.hs-blog-post .text-side-module_16715480287233  {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding:10px 20px 10px 0px;
}

div.hs-blog-listing .text-side-featured_banner-module-2 p, div.hs-blog-post .text-side-module_16715480287233 p {
  margin-bottom: 10px;
}
div.hs-blog-listing .text-side-featured_banner-module-2 h3, div.hs-blog-post .text-side-module_16715480287233 h3 {
  margin:5px 0;
}
div.hs-blog-listing .text-side-featured_banner-module-2 a {
    text-decoration: none;
    margin: 5px auto;
    margin-left: 0;
}
div.hs-blog-post .text-side-module_16715480287233 a {
    display: none !important;
}
/* end of blog listing */


.logo-bar {
  border-bottom: 4px solid #EDA95C; 
  height: 65px;
}

@media screen and (max-width: 884px) {
  div.hs-blog-listing .text-container-featured_banner-module-2 {
    float:none;
  }
  div.hs-blog-listing .text-side-featured_banner-module-2 {
    width:100% !important;
    padding: 30px;

  }
  div.hs-blog-listing .large-card-featured_banner-module-2 {
    max-height: fit-content;
    margin-top:0px;
  }
  div.hs-blog-listing .large-card-featured_banner-module-2, div.hs-blog-post .large-card-module_16715480287233 {
  max-height: fit-content;
  margin-top:0px;
}
  section.lists {
    padding: 0px 0;
  }
  section.lists .content-wrapper .flex .item-wrapper {
    width: 100% !important;
  }
}

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

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

@media (max-width: 884px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .footer-menus .hs-menu-depth-1 {
  font-weight: bold;
  margin-right:0; 
}
}
/* Return Section */
.return-section {
   width: 100%;
   text-align: right;
   padding: 20px 0px 5px 0px;
}
.bottom-return-section {
  margin:50px 0;
}
.bottom-return-section a, .return-section a {
    color: #154292;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    text-decoration: none;
}

/* Case Study Internal */
.case-study-wrapper .flex {
  display:inline-flex;
  width: 100%;
  margin: auto;
}

.case-study-wrapper .flex .sidebar {
  padding:25px;
  min-width:271px;
  position:sticky;
  top:85px;
  height: 100%;
}
.case-study-wrapper .flex .sidebar img {
  max-width:125px;
  margin-bottom:30px;
}
.case-study-wrapper .flex .content {
  padding:25px;
}
.case-study-wrapper .sidebar-content p {
  margin-bottom:10px;
}
@media (max-width: 884px) {
  .case-study-wrapper .flex {
   flex-wrap: wrap;
 }
  .case-study-wrapper .flex .sidebar {
    width:100%;
    position:inherit;
  }
  div.hs-blog-listing .text-side-featured_banner-module-2, div.hs-blog-post .text-side-module_16715480287233  {
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;

}
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'proxima-nova', sans-serif;
  color: #0E002D;
}

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

/* Paragraphs */

p {
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0E002D;
  margin: 0 0 1.4rem;
}

small {
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #0E002D;

}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  color: #0E002D;
}

h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 34px;
}

h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  column-gap: 74px;
  max-width: 1044px;
  margin: auto;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0E002D;
  column-gap: 76px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0E002D;
  column-gap: 76px;

}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 20px 20px;
  background: rgba(237, 169, 92, 0.5);
  border-radius: 3px;
  max-width:550px;
  margin:auto;
}

blockquote p:first-child {
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  color: #0E002D;
  margin-bottom: 5px;

}

blockquote p {
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0E002D;
  margin-bottom: 5px;
}

/* Horizontal rules */

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

/* Image alt text */

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

/* Brand colours*/
/* primary palette */
.dark {
  background: #0E002D;
}

.dark-blue {
  background: #1E1E41;
}

.light-mustard {
  background: #EDA95C;
}

.sunset-orange {
  background: #FA5352;
}

/* secondary accent palette */
.light-blue {
  background: #154292;
}

.orange {
  background: #E61E46;
}

/* tertiary light palette */
.light-grey {
  background: #F0F0F0;
}

.light-warm {
  background: #F6F1EB;
}

.dark-warm {
  background: #F1E1CE;
}

.dark-grey {
  background: #E3E8F0;
}
/* No button */

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

/* SpotDev Buttons */

.hs-button {
  cursor: pointer;
  display: block;
  transition: all 0.15s linear;
  white-space: normal;
  padding: 10px 20px;
  gap: 10px;
  border: none;
  border-radius: 3px;
  font-family: 'proxima-nova', sans-serif;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;  
  text-align: center;
  background: #EDA95C;
  color: #0E002D;
  min-width: 158px;
  margin: 20px auto;
}

button:disabled,
.button:disabled
.hs-button:disabled {
  opacity: 0.6;
}

button.yellow,
.button-yellow {
  background: #EDA95C;
  color: #0E002D;
}

button.blue,
.button-blue {
  background: #154292;
  color: #FFFFFF;
}

button.dark-blue,
.button-dark-blue {
  background: #0E002D;
  color: #FFFFFF;
}

button.orange,
.button-orange {
  background: #FA5352;
  color: #0E002D;
}

button.light,
.button-light {
  background: #FFFFFF;
  color: #0E002D;
}

/* button hovers */
button.yellow:hover,
.button-yellow:hover,
.hs-button:hover{
  background: #CD914D;;
}

button.blue:hover,
.button-blue:hover {
  background: #0E2E66;
}

button.dark-blue:hover,
.button-dark-blue:hover {
  background: #03000A;
}

button.orange:hover,
.button-orange:hover {
  background: #CC403F;
}

button.light:hover,
.button-light:hover {
  background: #EAE7E3;
}

/* small buttons */
.button-small-blue, button.small-blue {
    background: #154292;
    padding: 4px 20px;
    color: #fff;
    border-radius: 3px;
}
.button-small-yellow, button.small-yellow {
    background: #EDA95C;
    padding: 4px 20px;
    color: #fff;
    border-radius: 3px;
}

/* small buttons hover */
button.small-yellow:hover,
.button-small-yellow:hover,
button.small-yellow:focus,
.button-small-yellow:focus,
button.small-yellow:visited,
.button-small-yellow:visited{
  background: #CD914D;
}

button.small-blue:hover,
.button-small-blue:hover,
button.small-blue:focus,
.button-small-blue:focus,
button.small-blue:visited,
.button-small-blue:visited{
  background: #0E2E66;
}
/* load more button -- Dynamic pages */
a#load-more {
  max-width:125px;
}
/* filter links */
#filter-links {
    display: inline-flex;
    margin: auto;
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}
#filter-links a {
    margin-bottom: 15px !important;
}
#filter-links a.button-small-yellow {
    background: #eda95c;
    border-radius: 3px;
    color: #0e002d;
    padding: 4px 20px;
    font-weight: 600;
    margin: auto 8px;
  line-height: 25px; 
  text-decoration:none;
}
#filter-links a.button-small-yellow:hover {
  background: #CD914D;
  text-decoration:none;
}
#filter-links a.button-small-blue {
    background: #154292;
    border-radius: 3px;
    color: #fff;
    padding: 4px 20px;
    font-weight: 600;
    margin: auto 8px;
    line-height: 25px;
  text-decoration:none;
}
#filter-links a.button-small-blue:hover {
  background: #0E2E66;
  text-decoration:none;
}
/* Fields */

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

/* General form */
.hs-form {
  max-width: 848px; 
  margin: 0 auto;
  display: block;
  padding: 36px 63px;
  background-color: #fff;
  color: #0E002D;
}

@media screen and (max-width: 884px) {
  .hs-form{
   padding: 15px 25px !important; 
  }
}

/* Footer form */
footer form {
  max-width: 600px;
  padding: inherit;
  text-align: left;
  margin: inherit;
  background-color: transparent !important;
}
footer .subscribe form {
  max-width: 600px;
  padding: inherit;
  text-align: left;
  margin: inherit;
  display: inline-flex;
  align-items: center;
}
footer form div.hs_email {
  width: 400px;
}
footer form div.hs_submit {
 margin-top: 4px;
 margin-left: 10px;
}
footer form div.hs_submit input[type="submit"] {
  background: #154292;
  color: white;
}

footer form label span{
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

footer form div.submitted-message {
  color: #fff !important; 
}

#hs_form_target_footer_subscription {
  color: #fff !important; 
}

@media only screen and (max-width: 900px) {
  footer .subscribe form {
    display: inherit;
  }
  footer form div.hs_email {
    width:inherit;
  }
  footer form div.hs_submit {
    margin-left: inherit;
    margin-top: inherit;
  }
  footer form div.actions {
    display:inline-flex;
  }
  .footer-logo {
    display:none;
  }
}

/* Labels */

.hs-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

/* Help text */

.hs-form legend {
  font-size: 0.875rem;
  background: #0E002D;
  box-shadow: 0px 2px 4px rgba(33, 36, 41, 0.05);
  border-radius: 10px;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #DDE2E5;
}

/* Inputs */

.hs-form input[type=text],
.hs-form input[type=email],
.hs-form input[type=password],
.hs-form input[type=tel],
.hs-form input[type=number],
.hs-form input[type=file],
.hs-form select,
.hs-form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100% !important;
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  border-style: solid;
  height: 49px;
}

::placeholder {
  font-family: 'proxima-nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;  
  color: #D3D3D3;
}

/* Invaid Error */
.hs-form input {
  border-width:1px;
}
input:focus-visible {
  outline:none;
  border-style: solid;
}

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

.hs-form .hs-input.invalid.error {
  border-color: #e61e46 !important;
}

.hs-form .hs-input:focus,
.hs-form .hs-input:active,
.hs-form .hs-input:focus-within,
.hs-form .hs-input:focus-visible,
.hs-form .hs-input:visited
{
  border-color: #8aa0c8  !important;
  outline:none
}

.hs-form textarea:focus,
.hs-form textarea:active
.hs-form textarea:focus-within,
.hs-form textarea:focus-visible,
.hs-form textarea:visited {
    border-color: #8aa0c8  !important;
  outline:none
}

.hs-form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Custom checked SVG */
.hs-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
  display: inline-block;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
  outline: none;
  padding: 0;
  vertical-align: top;
  width: 30px;
  border: #dde2e5 solid 1px;
}

.hs-form input[type=checkbox]:checked {
  background-color: transparent;
  background-image: url(https://6603436.fs1.hubspotusercontent-na1.net/hubfs/6603436/raw_assets/public/VantagePoint-Theme-By-SpotDev/images/SVG%20files/vp-checked-checkbox.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  border: none;
}

.hs-form input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #DDE2E5;
    border-radius: 100px;
    color: #000;
    font: inherit;
    height: 24px;
    margin: 0;
    place-content: center;
    width: 24px!important;
    margin-right: 10px;
}

.hs-form input[type=radio]:checked {
    background-color: #154292;
    border: 3px solid #fff;
    outline: 4px solid #154292;
    margin-right: 10px;
}

.hs-form input[type=radio]:focus-within {
  border-color: #ffffff !important;
}

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

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

/* Headings and text */

.hs-form .hs-richtext,
.hs-form .hs-richtext p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 1.4rem;
}

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

/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display > span {
    display: -webkit-inline-box !important;
    margin-left: 0px !important;
    margin-bottom: 13px;
    margin-top: 5px;
}

.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.legal-consent-container .hs-richtext 
/* Validation */

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

/* Submit button */

.hs-form input[type=submit],
.hs-form .hs-button {
  cursor: pointer;
  display: block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  margin: 0 auto;
  min-width: 148px;
}

/* Captcha */

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

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

@media screen and (min-width: 885px) {
  .mobile-navigation {
    display: none !important; 
  }
  .desktop-navigation {
    display: block; 
  }
}


@media screen and (max-width: 884px) {
  .mobile-navigation {
    display: block; 
    background-color: #1e1e41;
  }
  .desktop-navigation {
    display: none ; 
  }
  
  .mobile-navigation,
  .mobile-navigation > * {
    animation: all 4s ease-in-out;
  }
  
 /* .hs-menu-children-wrapper.open-menu-list li {
    pointer-events: auto !important; 
  }
  

  .hs-menu-children-wrapper li {
    pointer-events: none; 
  }
  */
  

  
}


/* Desktop header */
#header {
  background-color: #1e1e41;
  padding: 10px 13px;
}
.header .content-wrapper {
  max-width:1444px;
}
@media screen and (min-width: 884px) {
  .header {
    width: 100%;
    z-index: 999; 
  }
}
.inner-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
}

.inner-nav .hs-menu-wrapper ul {
  display: flex;
  margin: 0;
}

.inner-nav .hs-menu-wrapper ul li.hs-menu-item {
  font-family: 'proxima-nova',sans-serif;
  font-style: normal;
}

.inner-nav .hs-menu-wrapper ul li.hs-menu-item .hs-menu-depth-1 a {
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-transform: inherit;
  color: #ffffff;
}

/* Mega Menu */
.inner-nav .hs-menu-wrapper ul li.hs-menu-item .hs-menu-depth-2 a {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
  text-align: left;
}

.inner-nav .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
  display: initial;
  height: auto;
  opacity: 1;
  transition: height 1s ease-out, opacity 0.5s ease;
  visibility: visible !important;
  -webkit-transition: height 1s ease-out, opacity 0.5s ease;
  -moz-transition: height 1s ease-out, opacity 0.5s ease;
  -ms-transition: height 1s ease-out, opacity 0.5s ease;
  -o-transition: height 1s ease-out, opacity 0.5s ease;
  background-color:#0e002d;
}

.inner-nav .hs-menu-wrapper ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
  background: transparent;
  display: initial;
  height: 0;
  left: 50%;
  opacity: 0;
  padding: 15px 15px 0px;
  position: absolute;
  top: 51px;
  transition: height 1s ease-out, opacity 0.5s ease;
  visibility: hidden;
  width: max-content;
  max-width: 375px;
  -webkit-transition: height 1s ease-out, opacity 0.5s ease;
  -moz-transition: height 1s ease-out, opacity 0.5s ease;
  -ms-transition: height 1s ease-out, opacity 0.5s ease;
  -o-transition: height 1s ease-out, opacity 0.5s ease;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;

    background: red;
    height: 0;
    left: 0;
    max-width: 100%;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 51px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    -o-transform: translateX(-25%);
    visibility: hidden;
    width: 100%;
}

.inner-nav .hs-menu-wrapper ul li.hs-menu-item .hs-menu-depth-2:first-child>a {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom:;
}

/* Mobile Menu */
@media only screen and (min-width: 901px) {
  #mobile-menu {
    display: none;
  }
   .mobile-container {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  #mobile-menu {
    display: block;
  }
  .mobile-container {
    display:block;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }
  div#mobile-menu {
    margin: 20px;
    position: sticky;
    top: 85px;
  }
  .header .content-wrapper {
    width:90%;
  }
  .header-nav {
    display: none;
  }
  .header-logo {
    display:none;
  }
  .popup {
    display:none;
    position: absolute;
    margin: auto;
    background: #0E002D;
    width: 100%;
    left: 0;
    top: 85px;
    height: 1000vh;
  }
  .popup ul li.hs-menu-item a {
    display: block;
    margin-bottom: 6px;
    padding: 10px;
    background: #150043;
    color: #fff; 
    text-decoration: none;
  }
  
  #popup ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    position: inherit;
    display: contents;
    position: initial;
    width: inherit;
    transform: inherit;
    padding: inherit;
    max-width: inherit;
  }
  #popup li.hs-menu-item.hs-menu-depth-3 {
    display:none;
  }
  
  .open-menu-list > li.hs-menu-item.hs-menu-depth-3 {
    display:block !important;
  }
  
  

  
  #popup ul.active-branch > li.hs-menu-item.hs-menu-depth-3 {
    display: block !important;
  }
  
  .hs-menu-children-wrapper:active > .hs-menu-item.hs-menu-depth-3 {
    display: block !important;
  }
  .hs-menu-children-wrapper:hover > .hs-menu-item.hs-menu-depth-3 {
    display: block !important;
  }
  ul.hs-menu-children-wrapper.active-branch.open-menu-list li.hs-item-has-children:focus>li.hs-menu-item.hs-menu-depth-3 {
    display:block !important;
  }
  .hs-menu-wrapper.flyouts .hs-item-has-children.active-branch li.hs-menu-item.hs-menu-depth-2.hs-item-has-children.active-branch:hover li.hs-menu-item.hs-menu-depth-3 {
    display: block ;
  }
  
  #popup li.hs-menu-item.hs-menu-depth-1 a{
  font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    text-transform: inherit;
  }

  #popup ul li.hs-menu-item.hs-menu-depth-2 {
    background: #1e1e41;
    margin-bottom: 6px;
  }

  #popup ul li.hs-menu-item.hs-menu-depth-2 a {
    background: #1e1e41;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    text-transform: inherit;
    margin-bottom:0;
  }

  #popup ul li.hs-menu-item.hs-menu-depth-3 {
    background: transparent;
  }

  #popup ul li.hs-menu-item.hs-menu-depth-3 a {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
    white-space: break-spaces;
  }


  /* IOS 3d Touch Updates */
  
  #popup ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:active>ul.hs-menu-children-wrapper {
    position: inherit;
    display: contents;
    position: initial;
    width: inherit;
    transform: inherit;
    padding: inherit;
    max-width: inherit;
  }
  ul.hs-menu-children-wrapper.active-branch.open-menu-list li.hs-item-has-children:active>li.hs-menu-item.hs-menu-depth-3 {
    display:block ;
  }
  .hs-menu-wrapper.flyouts .hs-item-has-children.active-branch li.hs-menu-item.hs-menu-depth-2.hs-item-has-children.active-branch:active li.hs-menu-item.hs-menu-depth-3 {
    display: block ;
  }
}

  
/* Header Container */

.header .dnd-section {
  padding: 0;
}

.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px 20px;
  position: relative;
}

.header--landing-page .header__container {
  justify-content: center;
}

@media screen and (max-width: 868px) {
  .header__container {
    padding: 20px;
  }
}

/* Logo */

.header__logo {
  margin-right: 20px;
  width: 114px;
  height: 36px;
  display: flex;
}

.header__logo img {
  width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-bottom: 0;
}

/* Navigation Menu */

.header__menu {
  margin-left: auto;
}

@media screen and (max-width: 868px) {
  .header__navigation {
    box-shadow: 0 23px 50px -14px rgba(0, 0, 0, 0.21);
    display: none;
    margin: 10px 10px 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 99;
  }

  .header__menu {
    margin-left: 0;
    min-height: 0;
    order: 3;
  }
}

/* Language Switcher */

.header__language-switcher {
  cursor: pointer;
  display:inline-block;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_switcher_class .globe_class {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-top: 5px;
}

.header__language-switcher .lang_list_class {
  border-radius: 0 0 18px 18px;
  box-shadow: 0 23px 50px -14px rgba(0, 0, 0, 0.21);
  display: block;
  left: auto;
  min-width: 100%;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  right: 0;
  text-align: left;
  top: 100%;
  transform: none;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class,
.header__language-switcher:active .lang_list_class {
  opacity: 1;
  visibility: visible;
}

.header__language-switcher .lang_list_class:after,
.header__language-switcher .lang_list_class:before {
  content: none;
}

.header__language-switcher .lang_list_class li {
  background-color: transparent;
  border: none;
  line-height: 2;
  margin: 0;
  padding: 10px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-top: none;
  padding-top: 10px;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher-label {
  align-items: center;
  display: flex;
  position: relative;
}

.header__language-switcher-label-current {
  align-items: center;
  display: flex;
  line-height: 2;
  margin-left: 10px;
}

.header__language-switcher-label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid;
  content: '';
  display: block;
  height: 0;
  margin: 0 0 0 10px;
  width: 0;
}

@media (max-width: 868px) {
  .header__language-switcher {
    margin-left: auto;
    margin-right: 20px;
    order: 2;
  }

  .header__language-switcher .lang_switcher_class .globe_class {
    height: 24px;
    margin-top: 0;
    width: 24px;
  }

  .header__language-switcher .lang_list_class {
    border-radius: 0 0 18px 18px;
  }

  .header__language-switcher:hover .lang_list_class {
    opacity: 0;
    visibility: hidden;
  }

  .header__language-switcher .lang_list_class li {
    padding: 10px 30px;
  }

  .header__language-switcher-label {
    position: static;
  }


  .header__language-switcher.open .lang_list_class {
    opacity: 1;
    visibility: visible;
  }
}
/* 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: 884px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

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

/* Flyouts */

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

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

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
  transition: height 1s ease-out, opacity 0.5s ease;
}

.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%;
  transition: height 1s ease-out, opacity 0.5s ease;
      -webkit-transition: height 1s ease-out, opacity 0.5s ease;
    -moz-transition: height 1s ease-out, opacity 0.5s ease;
    -ms-transition: height 1s ease-out, opacity 0.5s ease;
    -o-transition: height 1s ease-out, opacity 0.5s ease;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
  transition: height 1s ease-out, opacity 0.5s ease;
      -webkit-transition: height 1s ease-out, opacity 0.5s ease;
    -moz-transition: height 1s ease-out, opacity 0.5s ease;
    -ms-transition: height 1s ease-out, opacity 0.5s ease;
    -o-transition: height 1s ease-out, opacity 0.5s ease;
}

@media (max-width: 884px) {
  .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;
    transition: height 1s ease-out, opacity 0.5s ease;
    -webkit-transition: height 1s ease-out, opacity 0.5s ease;
    -moz-transition: height 1s ease-out, opacity 0.5s ease;
    -ms-transition: height 1s ease-out, opacity 0.5s ease;
    -o-transition: height 1s ease-out, opacity 0.5s ease;
  }
}

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

/* Dynamic listing pages layouts */
.content-wrapper.customer-stories {
  
}

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