/* 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: var(--body-line-height); /* 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: var(--h1-font-size);
  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: var(--body-line-height);
  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: var(--body-line-height); /* 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%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: var(--body-line-height);
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: var(--body-font-size);
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
a.cta_button {
	font-weight: 800;
	border: 2px solid;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	margin-top: 0;
	transition: color 0.3s ease,background 0.3s ease;
	border-radius: 3px;
	border: solid 2px;
	font-size: 14px;
	padding: 15px 25px;
	background-color: #154174;
	border-color: #ffffff;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 900;
	line-height: var(--body-line-height);

	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* 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;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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: var(--body-font-size);
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* 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
*/

.header-top {
  /* 	position: absolute; */
  top: 0;
  display: flex;
  align-items: center;
  width: 100% !important;
  justify-content: center;
  background-color: #e8eef5;
  padding: 5px 15px;
}

.header-top a {
  color: #154174;
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
  font-family: var(--body-font-family);
}

.phone {
  width: 10%;
  text-align: left;
  position: absolute;
  right: 70px;
}

.header-main {
  padding: 25px 3%;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  width: 100%;
}


.header-container .logo img {
  max-width: 100%;
}

/* .header-main {
    margin-top: 30px;
} */
.header-container .full-width {
  padding-left: 10px;
  padding-right: 10px;
}

.header-container .header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*   height: 112px; */
  /*   box-shadow: 0 2px 13px 0 rgba(0,0,0,.05); */
  width: 100%;
  z-index: 100;
  align-items: center;

  /*   position: fixed; */
  left: 0;
  top: 0;
  background: #ffffff;
  -webkit-transition: height .3s ease, opacity .3s ease;
  transition: height .3s ease, opacity .3s ease;
}

.transparent-header .header-container .header {
  background: #154174;
  box-shadow: none;
}

.skew .header-container .header {
  height: 80px;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, .05);
  background: #ffffff;
}

.header-container-wrapper .row-fluid [class*="span"] {
  min-height: 0;
}

.header-container .header .page-center {
  max-width: 100%;
  position: relative;
}

.header-container .logo {
  width: 225px;
  /* 	position: absolute; */
  left: 65px;
  top: 40%;
  -webkit-transition: top .3s ease;
  transition: top .3s ease;
  text-align: left;
}


.skew .header-container .logo {
  top: 12px;
}

.transparent-header:not(.skew) .colored-logo {
  display: none;
}

body:not(.transparent-header) .white-logo {
  display: none;
}

body.transparent-header:not(.skew) .colored-logo {
  display: none;
}

.skew .white-logo {
  display: none;
}

.header-container .call-to-action {
  width: auto;
  /*   position: absolute; */
  right: 65px;
  top: 30px;
  -webkit-transition: top .3s ease, color 0.3s ease-out, border 0.3s ease-out, background-color 0.3s ease-out;
  transition: top .3s ease, color 0.3s ease-out, border 0.3s ease-out, background-color 0.3s ease-out;
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
}

/* .header-container .call-to-action:hover{
color: #f15924;
border-color: #f15924;
} */
.skew .header-container .call-to-action {
  top: 14px;
}

.transparent-header:not(.skew) .header-container .call-to-action {
  border-color: #ffffff;
  background-color: #4D555A;
  color: #fff;
}

.transparent-header:not(.skew) .header-container .call-to-action:hover {
  border-color: #ffffff;
  background-color: #4D555A;
  color: #fff;
}

.transparent-header:not(.skew) .header-container .call-to-action:focus {
  border-color: #ffffff;
  background-color: #26B6C9;
  color: #ffffff;
}

body:not(.main-blog-post) .header-container .call-to-action.subscribe {
  display: none;
}

.main-blog-post .header-container .call-to-action.talk {
  display: none;
}

.header-container .call-to-action a {
  text-decoration: none;
  color: #39464e;
}

.header-container .header>.row-fluid-wrapper>.row-fluid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navigation {
  line-height: var(--body-line-height);
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
}

.header-container .main-navigation .hs-menu-wrapper li {
  list-style: none;
  position: relative;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
  text-align: left !important;
  padding: 20px 0px !important;
  border-top: 2px solid #e68906;
}

.header-container .main-navigation .hs-menu-wrapper>ul ul li {
  margin-bottom: 0px !important;
  padding: 10px 20px !important;
}

.header-container .main-navigation .hs-menu-wrapper>ul ul li>a {
  color: #39474f;
  white-space: normal !important;
  text-decoration: none;
  font-weight: 700;
}

.header-container .main-navigation .hs-menu-wrapper>ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  padding: 0;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li:first-child {
  margin-left: 0;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li {
  margin-left: 24px;
  margin-right: 24px;
}

.header-container a.cta_button.call-to-action.talk img {
  max-width: 12px;
  margin-left: 10px;
}

.header-container .main-navigation .hs-menu-wrapper .hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:after {
  margin-top: -1px;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li>a {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.desktop-nav {
  width: 100%;
}

.header-container .call-to-action {
  border: 0;
  font-weight: 600;
  display: flex;
  min-width: 140px;
  align-items: center;
  justify-content: center;
  color: #154174;
  background: transparent;
  box-shadow: none;
  border: 1px solid #154172;
  border-radius: 0px !important;
  font-size: 14px !important;
  padding: 15px 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li>a {
  font-size: 12px !important;
  line-height: var(--body-line-height) !important;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(2):before {
  /* 
    content: "NEW!";
    position: absolute;
    padding: 0px 8px;
    background: #F15A24;
    color: #fff;
    border-radius: 8px;
    top: -10px;
    left: 50%;
    transform: translate(-50%,-100%);
    font-family: var(--body-font-family);
    font-weight: bold;
    font-size: 9px;
  */

}

@media screen and (max-width:1024px) {
  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(2):before {
    top: 0px;
    transform: translate(-50%, 5%);
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li {
    padding-bottom: 30px !important;

  }

  .header-main {
    padding: 20px 2%;
  }

  .main-navigation .cta_button.call-to-action {
    display: none;
  }

  .header-top {
    justify-content: space-between;
    /*! display: block; */
  }

  .phone {
    width: auto;
    text-align: right;
  }

}


.header-container .main-navigation .hs-menu-wrapper>ul>li>a:hover {
  color: #f15924;
}

.transparent-header:not(.skew) .header-container .main-navigation .hs-menu-wrapper>ul>li>a {
  color: #ffffff;
}

.header-container .main-navigation .hs-menu-wrapper .hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:after {
  content: "\f107";
  display: inline-block;
  vertical-align: middle;
  padding-left: 4px;
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  color: inherit;
  font-weight: bold;
  line-height: inherit;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li ul {
  background-color: #fff;
  padding: 24px;
  width: max-content;
  list-style: none;
  transition: all 0.3s ease-out;
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  text-align: center;
  left: 50% !important;
  font-size: 14px;
  font-weight: bold;
  line-height: var(--body-line-height);
  min-width: 200px;
  opacity: 0;
  margin-top: 28px;
  visibility: hidden;
  pointer-events: none;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li>ul:before {
  position: absolute;
  content: "";
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  display: block;
}

.header-container .main-navigation .hs-menu-wrapper>ul ul li {
  margin-bottom: 16px;
}

.header-container .main-navigation .hs-menu-wrapper>ul ul li:last-child {
  margin-bottom: 0;
}

.header-container .main-navigation .hs-menu-wrapper>ul ul li>a {
  color: #39474f;
  white-space: normal !important;
}

.header-container .main-navigation .hs-menu-wrapper>ul>li>ul li>a:hover {
  color: #F15A24;
}



@media(min-width:1025px) {
  .header-container .main-navigation .hs-menu-wrapper>ul>li ul {
    transition: all 0.2s ease-out !important;
    transform: translate(-50%, 30px);
  }

  .header-container .main-navigation .hs-menu-wrapper .hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:after {
    display: none !important;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:hover>ul {
    display: inherit;
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
    pointer-events: auto;
  }


  .mobile-nav {
    display: none;
  }
}

@media(max-width:1349px) and (min-width:1025px) {

  .header {
    padding: 0 20px;
  }

  .header-container .logo {
    left: 15px;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width:1240px) {
  .header-container .main-navigation .hs-menu-wrapper>ul>li>a {
    font-size: 12px;
  }

  .header-container .call-to-action {
    right: 35px;
  }




}

@media screen and (max-width:1024px) {
  .header-container .call-to-action {
    right: 70px;
    z-index: 11;
    padding: 10px;
    font-size: 14px;
    margin-top: 5px;
  }

  .mobile-open .header-container .call-to-action {
    z-index: 0;
  }

  .popup-form .exit {
    top: 20px;
  }
}

@media screen and (max-width:767px) {
  .header-container .call-to-action {
    font-size: 12px;
    margin-top: 10px;
    padding: 5px;
  }

  table {
    max-width: 100%;
    overflow: scroll;
    width: 100% !important;
    word-wrap: revert-layer;
    table-layout: unset !important;
  }
}

/* ==========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
========================================================================== */


/* Set Link Color */
/* Set Link Hover Color */


/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger,
.child-trigger,
.close-trigger {
  display: none;
  /* Hide button on Desktop */
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  /* Variables
  ========================================================================== */
  .mobile-open {
    overflow: hidden;
  }

  .header-container .header {
    display: block;
  }

  .header-container .logo {
    width: 100% !important;
    padding-left: 15px;
    left: 0;
    z-index: 11;
  }

  .mobile-open .colored-logo {
    display: inherit !important;
  }

  .mobile-open img.white-logo {
    display: none;
  }

  .skew .header-container .logo {
    top: 16px;
  }

  /* 
  * Menu Reset
  *
  * Remove styling from desktop version of custom-menu-primary. Place any 
  * additional CSS you want removed from the mobile menu in this reset 
  */

  .header-container .main-navigation li.hs-item-has-children>a:after {
    display: none;
  }

  .header-container .main-navigation,
  .header-container .main-navigation .hs-menu-wrapper>ul,
  .header-container .main-navigation .hs-menu-wrapper>ul li,
  .header-container .main-navigation .hs-menu-wrapper>ul li a {
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    max-width: none;
    width: 100%;
    height: auto;
    line-height: var(--body-line-height);
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: right;
    color: #ffffff;
  }


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger {
    display: inline-block !important;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 44px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    opacity: 1;
    transform: translateY(-50%);
  }

  .transparent-header:not(.skew) .mobile-trigger {
    color: #ffffff;
  }

  .mobile-open .mobile-trigger {
    opacity: 0;
  }

  .close-trigger {
    display: inline-block !important;
    cursor: pointer;
    position: relative;
    top: 0;
    right: 0;
    width: 44px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    color: #39464e !important;
    z-index: 1111111;
    pointer-events: none;
    opacity: 0;
  }

  .transparent-header:not(.skew) .close-trigger {
    color: #ffffff;
  }

  .skew .close-trigger {
    top: 50px;
    transform: translateY(-10px);
  }

  .mobile-open .close-trigger {
    opacity: 1;
    transition: all 0.3s ease 1s;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {

    border-top: none;
  }

  /* Child Toggle Button
  ========================================================================== */
  .child-trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important;
    min-width: 55px !important;
    height: auto;
    padding: 0 !important;
    color: #154174;
    z-index: 10;
  }

  .transparent-header:not(.skew) .child-trigger {
    color: #39464e;
  }

  .child-trigger:hover {
    text-decoration: none;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-open .mobile-nav,
  .menu-to-hide .mobile-nav {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav .hs_cos_wrapper_type_menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    will-change: opaciy, transform;
    height: 100%;
    overflow: auto;
    margin: auto;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    background-color: #fff;
  }

  .mobile-nav .hs_cos_wrapper_type_menu {
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-timing-function: cubic-bezier(.645, .045, .355, 1);
  }

  .menu-to-hide .mobile-nav .hs_cos_wrapper_type_menu,
  .mobile-open .mobile-nav .hs_cos_wrapper_type_menu {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Menu Styles on Mobile Devices
  ========================================================================== */
  .hs-header-bottom .page-center,
  .hs-header-top .page-center {
    padding: 0 !important;
  }

  .header-container .main-navigation.js-enabled {
    position: relative;
  }



  /* Make child lists appear below parent items */
  .header-container .main-navigation ul.hs-menu-children-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Hide menu on mobile */
  .header-container .main-navigation.js-enabled .hs-menu-wrapper,
  .header-container .main-navigation.js-enabled .hs-menu-children-wrapper {
    display: none;
  }

  /* Mobile Menu Styles */
  .header-container .main-navigation.js-enabled .hs-menu-wrapper {
    width: 100%;
    position: relative;
    /**************************************************************/
    top: 0;
    /* Positions the menu to drop from the very top of the screen */
    left: 0;
    /**************************************************************/
    padding: 0;
    display: flex;
  }

  .header-container .main-navigation .hs-menu-wrapper {
    /* background-color: red; */
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    text-align: center;
    background: #ffffff;
    margin-top: 80px;
    margin-bottom: 5vh;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul {
    width: auto !important;
  }

  /* Level 1 Menu List Styles */
  .header-container .main-navigation .hs-menu-wrapper>ul>li {
    position: relative;
    text-align: center;
    display: none;
  }

  .mobile-open .header-container .main-navigation .hs-menu-wrapper>ul>li {
    display: block;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:first-child,
  .header-container .main-navigation .hs-menu-wrapper>ul>li {
    padding: 0;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li a {
    font-size: 14px;
    line-height: var(--body-line-height);
    overflow: visible;
    padding: 0 15px;
    font-weight: 600;
    color: #000;
    text-align: center;
  }

  .transparent-header:not(.skew) .header-container .main-navigation .hs-menu-wrapper>ul>li>a {
    color: #39464E;
  }

  .header-container .main-navigation .hs-menu-wrapper .hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:after {
    position: relative;
    top: -2px;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul li:hover>a {
    color: #f15924;
    /* link hover color set by global mobile-aColorHover variable */
    opacity: 1;
  }

  /* Level 2 and Higher Menu List Styles */
  .header-container .main-navigation .hs-menu-wrapper>ul>li ul {
    background: transparent;
    width: 100%;
    border-left: none;
    border-bottom: none;
    border-right: none;
    min-width: 0;
    margin: 0;
    text-align: center;
    box-shadow: none;
    transform: none;
    left: 0 !important;
    padding: 8px 0;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul li ul li a {
    text-indent: 0;
    font-size: 14px;
    line-height: var(--body-line-height);
    text-transform: none;
    border: none;
  }

  /* Level 3 and Higher Menu List Styles */
  .header-container .main-navigation .hs-menu-wrapper>ul ul ul li a {
    text-indent: 0;
    /* Indent Child lists */
    padding-left: 35px !important;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul ul ul li:hover>a {
    padding-left: 37px;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul ul ul ul li a {
    text-indent: 50px;
    /* Indent Child lists */
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li {
    will-change: opacity, transform;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    display: block;
    opacity: 0;
    text-align: center;
    -webkit-animation: menu-appear .3s ease-out both;
    animation: menu-appear .3s ease-out both;
    display: none;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:first-child {
    -webkit-animation-delay: .42s;
    animation-delay: .42s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(2) {
    -webkit-animation-delay: .49s;
    animation-delay: .49s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(3) {
    -webkit-animation-delay: .56s;
    animation-delay: .56s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(4) {
    -webkit-animation-delay: .63s;
    animation-delay: .63s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(5) {
    -webkit-animation-delay: .77s;
    animation-delay: .77s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(6) {
    -webkit-animation-delay: .84s;
    animation-delay: .84s;
  }

  .header-container .main-navigation .hs-menu-wrapper>ul>li:nth-child(7) {
    -webkit-animation-delay: .91s;
    animation-delay: .91s;
  }

  @-webkit-keyframes menu-appear {
    to {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      opacity: 1
    }
  }

  @keyframes menu-appear {
    to {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      opacity: 1
    }
  }
}

/* ------ */

body.signup_modal-active {
  overflow: hidden;
}

.popup-form {
  background-color: #f4f9fd;
  color: #434e5a;
  height: 100%;
  left: 0;
  overflow: scroll;
  padding-top: 120px;
  position: fixed;
  text-align: center;
  top: 0;
  transition: top .5s ease 0s;
  width: 100%;
  z-index: 10;
  display: block !important;
  z-index: -1;
  pointer-events: none;
}

.popup-form.animated {
  opacity: 0;
  overflow: auto;
  -webkit-transition: top .5s, opacity .3s;
  transition: top .5s, opacity .3s;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.popup-form.animated.visible {
  opacity: 1;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  z-index: 101;
  pointer-events: initial;
}

.popup-form.animated .contact-form-content {
  opacity: 0;
  -webkit-transform: scale(.9);
  transform: scale(.9);
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
}

.popup-form.animated.visible .contact-form-content {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.popup-form .mp-logo {
  left: 65px;
  position: absolute;
  top: 17px;
  width: 160px;
}

.popup-form h2 {
  text-transform: none;
}

.popup-form h2:after {
  margin: 0 auto;
  right: 0;
}

.popup-form input[type="text"],
.popup-form input[type="password"],
.popup-form input[type="datetime"],
.popup-form input[type="datetime-local"],
.popup-form input[type="date"],
.popup-form input[type="month"],
.popup-form input[type="time"],
.popup-form input[type="week"],
.popup-form input[type="number"],
.popup-form input[type="email"],
.popup-form input[type="url"],
.popup-form input[type="search"],
.popup-form input[type="tel"],
.popup-form input[type="color"],
.popup-form input[type="file"],
.popup-form textarea,
.popup-form select {
  /*   border-radius: 3px;
  box-shadow: inset 0 -2px 0 0 #d6e0e7;
  background-color: #ffffff;
  border: solid 1px #d6e0e7; */
  font-size: 16px;
  color: #39464e;
}

.popup-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background-image: url(//www.campaigncreators.com/hubfs/Campaign_Creators/Images/caret-down.png);
  background-repeat: no-repeat;
  background-position: 97% center;
}

.popup-form .contact-form-content {
  padding-bottom: 70px;
}

.popup-form form {
  margin: auto;
  max-width: 744px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 70px;
}

.popup-form .hs-form-field {
  margin-bottom: 16px;
}

.popup-form .hs-form-field>label {
  display: none;
}

.popup-form textarea {
  padding: 13px 10px;
  height: 170px;
}

.popup-form .hs-button.primary {
  width: auto;
  margin-top: 0;
}

.popup-form .exit {
  cursor: pointer;
  height: 40px;
  position: absolute;
  right: 40px;
  top: 15px;
  width: 40px;
  font-size: 40px;
  color: #c3c3c3;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 12;
}

.popup-form .exit:hover {
  color: #39464e;
}


/* Placeholder Text */
.popup-form ::-webkit-input-placeholder {
  /* Webkit Browsers */
  color: #39464e;
  opacity: 1;
}

.popup-form :-moz-placeholder {
  /* Firefox 18- */
  color: #39464e;
  opacity: 1;
}

.popup-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #39464e;
  opacity: 1;
}

.popup-form :-ms-input-placeholder {
  /* IE10 */
  color: #39464e;
  opacity: 1;
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.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%;
  visibility: visible;
  pointer-events: auto;
}

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

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

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

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

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

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

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

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



:root {
  --primary-color: #043669;
  --secondary-color: #303030;
  --tertiary-color: #58595;
  --accent-color: #d1d3d4;
  --vertical-spacing: 80px;
  --mobile-vertical-spacing: 40px;
  --body-font-size: 18px;
  --h1-font-size: 49px;
  --h2-font-size: 38px;
  --h3-font-size: 32px;
  --h4-font-size: 25px;
  --h5-font-size: 20px;
  --h6-font-size: 14px;
  --body-font-family: Libre Franklin;
  --h1-font-family: DM Serif Display;
  --h2-font-family: DM Serif Display;
  --h3-font-family: DM Serif Display;
  --h4-font-family: DM Serif Display;
  --h5-font-family: DM Serif Display;
  --h6-font-family: DM Serif Display;
  --body-line-height: 1.6;
  --h1-line-height: 1.2;
  --h2-line-height: 1.2;
  --h3-line-height: 1.3;
  --h4-line-height: 1.4;
  --h5-line-height: 1.5;
  --h6-line-height: 1.5;
}

/* Primary Button Styling */
.cta_button {
  border: 1px solid #043669;

  padding-top: 15px;
padding-right: 53px;
padding-bottom: 15px;
padding-left: 53px;

  font-family: 'Libre Franklin', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  background-color: 

  
  
    
  


  rgba(4, 54, 105, 1.0)

;
  border-radius: 0px;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}
.popup-form.popup .logo {
	margin: auto auto 30px;
}
.cta_button:hover,
.cta_button:focus {
  border: 1px solid #1a334e;
;
  color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  


  rgba(26, 51, 78, 1.0)

;
  border-radius: 0px;
  font-weight: 700;
}

.cta_button:active {
  font-family: 'Libre Franklin', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  background-color: rgba(44, 94, 145, 1.0);
  border-color: #2c5e91;
}

/* Secondary Button Styling */
.cta_button_sec {
  border: 1px solid #303030;

  padding-top: 15px;
padding-right: 53px;
padding-bottom: 15px;
padding-left: 53px;

  font-family: 'Libre Franklin', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  background-color: 

  
  
    
  


  rgba(48, 48, 48, 1.0)

;
  border-radius: 6px;
  color: #494A52;
  font-size: 16px;
  text-transform: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

.cta_button_sec:hover,
.cta_button_sec:focus {
  border: 1px solid #494A52;
;
  color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  


  rgba(73, 74, 82, 1.0)

;
  border-radius: 6px;
}

.cta_button_sec:active {
  font-family: 'Libre Franklin', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  background-color: rgba(88, 88, 88, 1.0);
  border-color: #585858;
}

.footer-top {
  padding: 60px 0;
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #fff;
}
.footer-heading * {
  color:  #F6F6EF !important;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: x;
}
.footer-menu.first {
  width: 20%;
}
.fooer-menu a {
  color: #fff !important;
  text-decoration: none;
  margin-bottom: 20px !important;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s ease all;
  font-weight: 100;
}
.fooer-menu {
  margin: 25px 0 0;
}
.footer-menu.second {
  width: 15%;
}
.footer-menu.three {
  width: 25%;
}
.footer-menu.last {
  width: 40%;
}
.footer-heading {
  border-bottom: 1px solid #fff;
}
.footer-bottom {
  padding: 40px 0 20px;
  display: flex;
  justify-content: space-between;
}
.foot-copyright p {
  color: #fff !important;
  font-size: 12px;
  margin: 0;
}
.extra-links a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
.footer-social .hs-social-follow {
  margin: 20px 0 0;
  justify-content: start;
}

.footer-social .hs-social-follow svg {
  fill: #fff !important;
}

#hs_cos_wrapper_module_178325201278053 {
  background: transparent !important;
}
.footer-subscribe .form-title,.footer-subscribe form {
  background: transparent !important;
}

.footer-subscribe .form-title {
  color: #fff;
  font-size: 21px;
  padding: 5px;
}
.footer-subscribe form {
  display: flex;
}

.footer-subscribe form .actions .hs-button {
  background-color: #e88a05;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  letter-spacing: 1px;
}
.footer-subscribe form .hs-form-field {
  margin: 0;
}
.footer-subscribe form .hs-form-field > label {
  display: none;
}
/* Responsive Footer */
@media (max-width: 991px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-menu.first,
  .footer-menu.second,
  .footer-menu.three {
    width: calc((100% - 60px) / 3);
  }
  .footer-menu.last {
    width: 100%;
  }
}

/* Mobile Vertical Spacing Overrides */
@media (max-width: 767px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 40px 1rem;
  }
  .blog-post,
  .blog-header__inner,
  .blog-related-posts {
    padding: 40px 0;
  }
  .blog-comments {
    margin-bottom: 40px;
  }
  .popup-form.popup .logo {
	margin: 0 0 30px;
	padding: 0;
	text-align: center;
}
  /* Footer Mobile */
  .footer-top {
    flex-direction: column;
    padding: 40px 0;
    gap: 30px;
  }
  .footer-menu.first,
  .footer-menu.second,
  .footer-menu.three,
  .footer-menu.last {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 0 20px;
  }
  .footer-subscribe form {
    flex-direction: column;
    gap: 10px;
  }
  .footer-subscribe form .hs-form-field,
  .footer-subscribe form .actions {
    width: 100%;
  }
  .footer-subscribe form input,
  .footer-subscribe form .actions .hs-button {
    width: 100%;
  }

  :root {
    --body-font-size: 16px;
    --h1-font-size: 36px;
    --h2-font-size: 30px;
    --h3-font-size: 26px;
    --h4-font-size: 22px;
    --h5-font-size: 18px;
    --h6-font-size: 14px;
  }
}