/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

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

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

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

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

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

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

img {
  border-style: none;
  max-width: 100%;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}

.banner-area .dnd-section,
.banner-area .dnd-section > .row-fluid {
  padding: 0;
  width: 100%;

}

.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;

}

.dnd-section .widget-type-cell {

}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}


@media  (max-width: 399px) {
  .dnd-section > .row-fluid,
  .page-center,
  .content-wrapper {
    width: 85%;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: "Proxima Nova"; 
  src: url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Light.eot") format("embedded-opentype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Light.woff2") format("woff2"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Light.woff") format("woff"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Light.ttf") format("truetype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Light.svg") format("svg"); 
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Regular.eot") format("embedded-opentype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Regular.woff2") format("woff2"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Regular.woff") format("woff"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Regular.ttf") format("truetype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Regular.svg") format("svg"); 
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face { 
  font-family: "Proxima Nova";
  src: url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Semibold.eot") format("embedded-opentype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Semibold.woff2") format("woff2"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Semibold.woff") format("woff"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Semibold.ttf") format("truetype"), 
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Semibold.svg") format("svg");
  font-style: normal; 
  font-weight: 600;
  font-display: swap;
}

@font-face { 
  font-family: "Proxima Nova"; 
  src: url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Bold.eot") format("embedded-opentype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Bold.woff2") format("woff2"), 
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Bold.woff") format("woff"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Bold.ttf") format("truetype"),
    url("https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/Modo_Labs_December2020/fonts/ProximaNova-Bold.svg") format("svg"); 
  font-style: normal; 
  font-weight: 700;
  font-display: swap;
}


html {
/*   font-size: 24px; */
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: normal;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
  /*   font-family: Lato, serif; */
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
/*   word-break: break-word; */
}

h1 {
  font-size: 2.1rem;
  line-height: 1.469  ;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.285;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.206;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.16;
}
 
h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {
 
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
/*   outline: auto;
  outline-color: green; */
}

.disable-focus-styles :focus {
  outline: none;
}

@media (max-width: 767px) {

}

@media (max-width: 480px) {

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 767px;
  font-family: Lato, sans-serif;
}

.hs-button {
  margin: 15px 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: 0.6s ease-in;
  background-color: ;
  border-color: ;
  color: ;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
  /* box-shadow: 0px 13px 24px rgba(45, 45, 45, 0.22); */
  padding: 15px 53px;
  
  text-decoration: none;
  white-space: normal;
  outline: none;
}

.hs-button:hover, .hs-button:focus {
  /*   background-color: #21222a; */
  border-color: ;
  background-color: ;
  
  color: ;
  text-decoration: none;
  outline: none;

}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}

a.cta_button {
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}


.hs-form label,
.hs-form-field > label {
  color: #33475b;
  display: inline-block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: normal !important;
}


ul.hs-error-msgs{
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-error-msgs label {
  color: #8C0005 ;
  font-size: 14px !important;
  margin-top: 7px;
  text-shadow: #901100 0 -1px 0;
  line-height: 1.2em !important;
  font-weight: 600 !important;
  border: none;
  background-color: #D32131 !important;
  border-radius: 5px;
  box-shadow: 0px 13px 24px rgba(189, 28, 42, 0.22);
  color: #fff !important;
  background-image: none;
  padding: 15px 25px !important;
  display: inline-block !important;
}

.hs-input,
input#hs-pwd-widget-password {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 55px;
  padding: 0.2em 30px;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Proxima Nova", sans-serif;
  color: #33475b;
  background-color: #ffffff;
  border: 1px solid #D1D6DC;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin: 0 !important;
  box-shadow: inset 1px 1px 4px 1px #ddd;
  transition: 500ms ease-in-out;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 3px 5px 3px 0px !important;
  line-height: normal;
  border: none;
  min-height: auto !important;
  display: inline-block !important;
  box-shadow: none;

}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
  opacity: 1 !important;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
  opacity: 1 !important;
}

.hs-input input,
.hs-input textarea {

}

.hs-input:focus,
input#hs-pwd-widget-password:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
  outline: none;
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field,
.hs-form-field  {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
(min-device-width: 320px) and (max-device-width: 480px) {
  .email-correction form .form-columns-2 .hs-form-field,
  .email-correction form .form-columns-3 .hs-form-field,
  .email-validation form .form-columns-2 .hs-form-field,
  .email-validation form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .email-correction form .form-columns-2 .hs-form-field .hs-input,
  .email-correction form .form-columns-3 .hs-form-field .hs-input,
  .email-validation form .form-columns-2 .hs-form-field .hs-input,
  .email-validation form .form-columns-3 .hs-form-field .hs-input {
    width: 90%;
  }
  .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-2 .hs-form-field input[type=radio],
  .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-3 .hs-form-field input[type=radio],
  .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-2 .hs-form-field input[type=radio],
  .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #F1F1F7;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}

/* input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
} */


.hs-error-msgs label:empty {
  display: none !important;
}




/* Full width fieldsets  */
.hs-form > fieldset[class^="form-columns"] {
  max-width: initial;
}

/* Centered Submit button */
.hs-form > .hs_submit {
  display:flex;
  justify-content:center;
}

/* Hides error state boxshadow */
.hs-input, input#hs-pwd-widget-password {
  box-shadow: none;
}

/* Increases textarea height */
.hs-form textarea {
  padding-top: 15px;
  min-height: 175px;
}

/* Error message chevron arrow */
.hs-error-msg {
  position:relative;
}
.hs-error-msg::before {
  content:'';
  position:absolute;
  width:0;
  height:0;
  left:12px;
  top:-18px;
  border: 10px solid transparent;
  border-bottom-color: #D32131;
}

/* On input change input animation */
div.hs-fieldtype-text.field.hs-form-field input{
  padding-top: 0.2em;
  transition: all 0.3s ease-in-out 0.005s;
}
div.hs-fieldtype-text.field.hs-form-field input:not(:placeholder-shown) {
  padding-top:15px;
}

/* On input change label animation */
div.hs-fieldtype-text.field.hs-form-field {
  position: relative;
}
div.hs-fieldtype-text.field.hs-form-field > label {
  position: absolute;
  font-weight: 500;
  font-size:10px;
  text-transform:uppercase;
  color:#898aa0;
  top:10px;
  left:30px;
  visibility:hidden;
  opacity:0;
  transition: all 0.4s ease-in-out;
}
div.hs-fieldtype-text.field.hs-form-field > label.label-show {
  visibility:visible;
  opacity:1;
}
div.hs-fieldtype-text.field.hs-form-field > label > .hs-form-required {
  color:#898aa0;
}

/* Hides textarea label*/
div.hs-fieldtype-textarea.field.hs-form-field > label {
  display:none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  /*   display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; */
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 1000px) {



  .custom-menu-primary .hs-menu-wrapper > ul {
    display: inline-flex;
    justify-content: flex-end;
    flex-flow: row nowrap;
    align-items: flex-end;
    margin-right: -4px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li {
    position: relative;
    display: block;
    margin-left: 61px;
    border-top: 2px solid transparent;
    padding: 43px 0 49px;
  } 

  .custom-menu-primary .hs-menu-wrapper > ul > li:hover {
    border-top: 2px solid #d32131;
  }

  .scroll .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding: 29px 0 38px;
  }


  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-weight: 600;
    font-size: 15px;
    padding: 5px;
    line-height: normal;
    text-decoration: none;
    color: #17183f;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul {
    position: absolute;
    top: calc(100% - 1px);
    left: -6px;
    opacity: 0;
    visibility: hidden;
    display: block;
    text-align: left;
    transition: 500ms ease;
    background-color: #f9f9f9;
    padding: 30px 0px 0px;
    min-width: 250px;
    z-index: 99;


  }


  .custom-menu-primary .hs-menu-wrapper > ul li:hover > ul {
    visibility: visible;
    opacity: 1;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul > li {
    position: relative;
    display: block;
    padding: 0 40px 15px;
  } 

  .custom-menu-primary .hs-menu-wrapper > ul ul > li:last-child {
    box-shadow: 0px 20px 20px rgba(137,138,160,0.2);
    padding: 0 40px 35px;
    border-radius: 0 0 10px 10px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul > li > a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #17183F;
    font-size: 15px;
    font-weight: 400;
  } 

  /* Solutions Child Menu  */

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions {
    position: static;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul {
    width: 940px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 34px 44px rgba(0,0,0,0.1);
    background: #fff;
    padding: 0;
    left: -9px;
    top: calc(100% - 0px);
    left: auto;
    right: -50px;
    right: calc((100% - 1600px) / 2);
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul {
    position: static;
    opacity: 1;
    display: block;
    background-color: transparent;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions:hover > ul ul {
    visibility: visible;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li {
    padding: 0;
    border-radius: unset;
    box-shadow: none;
  }


  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 35px 0 0;
    padding-left: calc((100% - 1500px) / 2);
    padding-right: calc((100% - 1500px) / 2);
    background: #f1f1f7;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > a {
    font-size: 20px;
    line-height: 29px;
    font-weight: 700;
    padding-bottom: 30px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 50px;
    width: 100%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > ul > li {
    width: 30%;
    background: transparent;
    box-sizing: border-box;
    text-align: left;
    position: relative;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > ul.li-count-4 > li {
    width: 21%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > ul.li-count-2 > li {
    width: 40%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:first-child > ul > li > a {
    padding-bottom: 35px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li > a {
    color: #17183F;
    font-weight: 600;
    font-size: 11.5px;
    line-height: 14px;
    opacity: .9;
    text-transform: uppercase;
    position: static;


  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li > a b {
    font-size: 10px;
    line-height: 13px;
    font-weight: 400;
    padding-top: 5px;
    width: 80%;
    display: block;
    text-transform: none;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li .arrow {
    opacity: .2;
    font-size: 25px;
    line-height: 25px;
    position: absolute;
    top: 55px;
    right: 0;
    transition: 500ms ease-in-out;
  }


  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions .menu-image {
    display: block;
    margin-bottom: 15px;
    height: 30px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions .menu-image  img {
    width: auto;
    max-height: 30px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }





  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li .arrow svg {
    vertical-align: -.125em;
    display: inline-block;
    font-size: inherit;
    height: 1em;
    width: .375em;
    overflow: visible;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul ul li:hover > a .arrow {
    color: #D32131;
    opacity: 1;
    right: -10px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul > li {
    width: 33%;
    box-sizing: border-box;
    padding: 23px 50px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul.li-count-4 > li {
    width: 25%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul.li-count-2 > li {
    width: 50%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul > li:not(:last-child) {
    border-right: 1px solid rgba(23,24,63,0.2);
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul li:last-child > ul > li > a {
    width: 96%;
    color: #D32131;

  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul li:last-child > ul > li > a b {
    width: 100%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul > li .arrow {
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    color: #898AA0;
    opacity: .9;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul > li:last-child > ul > li:hover > a .arrow {
    right: 46px;
    color: #D32131;
  }


}
 

@media (max-width: 1625px) and (min-width: 1000px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul {
    right: 5%;
  }
}

@media (max-width: 1199px) and (min-width: 1000px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    margin-left: 50px;
  }
}


@media (max-width: 1099px) and (min-width: 1000px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    margin-left: 30px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.solutions > ul {
    right: 3%;
  }
}


@media (max-width: 999px) {

  /* ===== Mobile Child Toggle Buttons ===== */

  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 10px;
    width: 45px !important; /* Button width */
    min-width: 45px !important;
    height: 36px !important; /* Button height */  
    padding: 0 !important;
  }
  .child-trigger:hover{
    text-decoration: none;
  }

  .child-trigger:after {
    content: "";
    position: absolute;
    background: url(https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/raw_assets/public/Modo_Labs_December2020/images/after-arrow.png) no-repeat;
    background-size: 10.5px;
    background-position: center;
    margin-left: 16px;
    cursor: pointer;
    top: 14px;
    width: 10.5px;
    height: 6px;
    transition: 500ms ease-in-out;
  }


  .child-trigger.child-open:after {
    transform: scale(-1, -1);
  }



  /* ===== Mobile Menu Styles ===== */  

  .custom-menu-primary {
    padding: 62px 10px 40px 25px;
    width: 100%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li  {
    display: block;
    position: relative;
    margin-bottom: 30px;

  }

  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-weight: 400;
    text-decoration: none;
    position: relative;
    padding-right: 15px;
    font-family: "Proxima Nova",sans-serif;
    font-weight: 400;
    font-size: 29px;
  }


  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul li {
    padding: 10px 10px 5px 5px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul li > a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
    text-decoration: none;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li.hs-item-has-children > a {
    max-width: calc(100% - 45px);
  }


}

@media (max-width: 999px) {
  .child-trigger {
    right: 0;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

header.header {
  min-height: 165px;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  position: relative;
}

.header_top {
  min-height: 51px;
  border-bottom: 1px solid rgba(37,38,75,0.15);
}

.header_top_content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  transition: 800ms ease-in-out;
}

.header_covid_link {
  font-size: 13px;
  font-weight: 600;
  padding: 15px 0;
}

.header_covid_link a {
  color: #D32131;
  text-decoration: none;
}

.header_top_links_sec {
  position: relative;
}
.header_top_links {
  width: auto;
  text-align: right;
  display: inline-block;
  vertical-align: top;
  padding: 15px 0;
}

.header_top_links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header_top_links ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  margin-bottom: 0;
}

.header_top_links ul li a {
  display: block;
  color: #17183f;
  text-decoration: none;
  transition: 500ms ease-in-out;
  font-size: 13px;
  font-weight: 600;
}

.header_top_links ul li a:hover {
  color: #D32131;
}

.header_top_links ul li a svg {
  vertical-align: -.125em;
  height: 1em;
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  position: relative;
  margin-right: 3px;
  width: .875em;
  overflow: visible;
  color: #17183f;

}

/* Styles for the Search Bar */

.header_searchbox {
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #DEDEE4;
  border-right: 1px solid #DEDEE4;
  background: #F3F3F8;
  width: 120px;
  box-sizing: border-box;
  transition: 300ms ease-in-out;
  position: relative;
  padding: 0;
  height: 50px;
  margin-left: 30px;
  max-width: 100%;

}
.header_searchbox .search-field {
  font: 400 13.3333px Arial;

  outline: none;
  background: transparent;
  width: 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  border: none;
  height: 100%;
  transition: width 300ms ease-in-out, opacity 800ms ease;
}

.header_searchbox .search-toggler {
  outline: none;
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  z-index: 3;
  position: absolute;
  width: 90px;
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: none;
  height: 100%;
  right: 15px;
  top: 0;
  transition: 500ms ease-in-out;
  cursor: pointer;
}

.header_searchbox .search-toggler svg{
  vertical-align: -.125em;
  display: inline-block;
  font-size: inherit;
  height: 1em;
  width: 1em;
  overflow: visible;
  position: relative;
  margin-right: 5px;
}

.header_searchbox .search-submit {
  display: none;
  outline: none;
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  z-index: 3;
  position: absolute;
  width: 90px;
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: none;
  height: 100%;
  right: 15px;
  top: 0;
  transition: 500ms ease-in-out;
  cursor: pointer;
}

.header_searchbox .search-submit svg {
  vertical-align: -.125em;
  display: inline-block;
  font-size: inherit;
  height: 1em;
  width: 1em;
  overflow: visible;
  position: relative;
  margin-right: 5px;
}

.header_searchbox.open {
  width: 420px;
}

.header_searchbox.open .search-toggler {
  border-radius: 50px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 4px 10px rgba(45,45,45,0.2);
  height: 27px;
  top: 10px;
  right: 25px;
  width: 78px;
  font-size: 11px;
  line-height: 13px;
  left: auto;
  transform: none;
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  /*   display: none; */
}

.header_searchbox.typed .search-toggler {
  display: none;
}

.header_searchbox.open .search-submit {
  border-radius: 50px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 4px 10px rgba(45,45,45,0.2);
  height: 27px;
  top: 10px;
  right: 25px;
  width: 78px;
  font-size: 11px;
  line-height: 13px;
  left: auto;
  transform: none;
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  /*   display: block; */
}

.header_searchbox.typed .search-submit {
  display: block;
}

.header_searchbox.open .search-field {
  opacity: 1;
  width: 300px;
  padding-left: 25px;
}

.header_searchbox.open input::-webkit-input-placeholder,
.header_searchbox.open input::-webkit-input-placeholder {
  font-family: "Proxima Nova",sans-serif;
  font-weight: 400;
  color: #898AA0;
  font-size: 13px;
  line-height: 13px;
}




/* Styles for Header Main */

.header_main {
  position: relative;
}

.scroll .header_main {
  position: fixed;
  top: -120px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 9 !important;
  visibility: hidden;
  box-shadow: 0 3px 10px -5px rgba(0,0,0,0.5);
  transition: top 500ms ease-out, opacity 500ms ease, visibility 500ms ease;
  width: 100%;
  min-height: 89px;

}

.sticky .header_main {
  opacity: 1;
  top: 0;
  visibility: visible;

}


/* Styles for the Logo */

.header__logo {
  transition: 500ms ease-in-out;
  width: 100%;
  max-width: 86px;
  float: left;
  padding-top: 20px;
  padding-bottom: 30px;
}

.header__logo img {
  max-width: 100%;
}



.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header_navigation {
  /*   position: relative; */
  vertical-align: top;
  text-align: right;
  width: calc(100% - 295px);
  float: left;
}



.header_demo-btn a {
  text-align: center;
  font-weight: 600;
  font-family: "Proxima Nova",sans-serif;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 50px;
/*   height: 50px; */
  position: relative;
  padding: 0 40px;
  width: auto;
  border-radius: 100px;
  z-index: 3;
  transition: 0.6s ease-in;
  border: none;
  padding: 0;
  min-width: 165px;
  color: #fff;
  text-transform: capitalize;
  background: linear-gradient(180deg, #E82537 0%, #B71A28 100%);
  box-shadow: 0px 13px 24px rgba(189,28,42,0.22);
}

.header_demo-btn a:hover {
  box-shadow: 0px 16px 24px rgba(189,28,42,0.36);
  color: #fff;
}



.mobile-trigger {
  display: none;
}


.mobile_menu_section {
  display: none;
}


/* media query */


@media  (min-width: 1000px) {
  .header_main .header__container {
    position: static;
  }
  .scroll .header__logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .custom-menu-primary {
    vertical-align: top;
    width: 100%;
/*     position: relative; */
  }
  .header_demo-btn {
    width: 165px;
    float: right;
    padding-top: 30px;
    width: auto;
  }
  .scroll .header_demo-btn {
    padding-top: 15px;
  }
  .scroll .header_demo-btn a {
    text-transform: none;
  }
}


@media  (max-width: 1599px) {
  .header_top .header__container {
    max-width: 100% !important;
    width: 100%;
  }
}

@media  (max-width: 1249px) {
  .header_demo-btn {
    width: auto;
  }
  .header_demo-btn a {
    min-width: 135px;
    font-size: 11px;
/*     height: 43px; */
    line-height: 43px;
  }
}



/* Tablet Styles */

@media (max-width: 1150px) and (min-width: 767px) {

}

@media (max-width: 999px) {
  header.header {
    min-height: 173px;
  }
  .header_top_content {
    flex-flow: column nowrap;
    justify-content: center;
  }
  .header_covid_link {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #DEDEE4;
  }
  .header_top_links_sec {
    margin: 0 auto;
  }
  .header_main {
    min-height: 75px;
  }
  .scroll .header_main {
    min-height: 80px;
  }

  .header__logo {
    max-width: 70px;
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
    margin-top: 10px;
  }

  .header_navigation {
    display: none;
  }
  .header_demo-btn {
    display: none;
  }

  .mobile-trigger-wrap {
    display: inline-block;
    vertical-align: top;
    width: auto;
    float: right;
    text-align: right;
    position: relative;
    z-index: 10;
  }
  .mobile-trigger {
    cursor: pointer;
    width: 25px;
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    padding-top: 22px;
  }

  .mobile-trigger svg {
    height: 1em;
    vertical-align: -.125em;
    display: inline-block;
    width: .875em;
    overflow: visible;
    color: #898AA0;
    font-size: 25px;
  }

  /* Mobile menu Styles */

  body.mobile-open {
    overflow: hidden;
  }

  .mobile_menu_section {
    position: fixed;
    display: block;
    width: 100%;
    box-sizing: border-box;
    right: -102%;
    background: #fff;
    transition: right 800ms ease;
    height: 100vh;
    z-index: 10;
    top: 0;
    padding-bottom: 30px;
    overflow-y: scroll;
    text-align: left;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  .mobile-open .mobile_menu_section {
    right: 0;
  }

  .mobile_menu_section .header_top_links ul li {
    padding-top: 3px;
  }
  .mobile_menu_section .header_top_links ul li + li {
    margin-left: 26px;
  }

  .mobile-menu-header {
    padding-left: 30px;
    box-shadow: 0px 24px 34px rgba(0,0,0,0.04);
    width: 100%;
    height: 75px;
    position: relative;
  }
  .close-trigger {
    position: absolute;
    right: 20px;
    top: 26px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .custom-menu-primary {
    padding: 62px 0 25px 40px;
    width: 100%;
  }

  .header_demo-btn-mobile {
    display: block;
    padding-left: 40px;
  }
  .header_demo-btn-mobile a {
    font-size: 14px;
    line-height: 50px;
    min-width: 165px;
    height: auto;
    padding: 0 40px;

  }
}

/* Mobile Styles */

@media (max-width: 799px) {
  .header_top_links_sec {
    margin: 0 auto;
    width: 100%;
    text-align: left;
  }
  .header_top_links {
    text-align: center;
    z-index: 2;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .header_searchbox {
    position: absolute;
    right: 0;
    z-index: 3;
    border-right: none;
  }
  .header_searchbox.open {
    width: 100%;
    border-left: none;
  }

}

@media (max-width: 767px) {

}


@media (max-width: 599px) {
  .header_top_links {
    left: auto;
    transform: none;
  }
  .header_top_links ul li a span {
    display: none;
  }
  .close-trigger {
    width: 18px;
    height: 18px;
    top: 25px;
  }
}

@media  (max-width: 399px) {
  .header__container {
    width: 85%;
  }
}


@media  (max-width: 340px) {
  .header_top_links ul li + li,
  .mobile_menu_section .header_top_links ul li + li {
    margin-left: 20px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

footer.footer {
  padding: 80px 0;
  position: relative;
}

.footer__container {
  margin: 0 auto;
  width: 90%;
}

.footer-about {
  float: left;
  vertical-align: top;
  width: 450px;
}

.footer-copyright {
  font-size: 13px;
  line-height: 23px;
  font-weight: 600;
}

.footer-copyright.mobile {
  display: none;
}


.footer-copyright p {
  margin: 0;
}

.footer-copyright ul {
  margin: 0;
  list-style: none;
  padding: 10px 0 44px;
  width: 100%;
  display: block;
  text-align: left;
  line-height: normal;
}

.footer-copyright ul li {
  padding-right: 10px;
  border-right: 1px solid #1C1838;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-right: 11px;
  line-height: normal;

}
.footer-copyright ul li:last-child {
  border-right: none;
}
.footer-copyright ul li a {
  text-decoration: none;
  transition: 500ms ease-in-out;
}


.footer-social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 30px;
}

.footer-social-icons ul li {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-right: 10px;
}
.footer-social-icons ul li a {
  color: #1C1838;
  transition: 500ms ease-in-out;
}

.footer-social-icons ul li a:hover {
  color: #D32131;
}


.footer-social-icons ul li a .fa-stack {
  font-size: 2em;
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: baseline;
}

.footer-social-icons ul li a svg {
  font-size: 15px;
}


.footer-social-icons ul li a .fa-stack-1x,
.footer-social-icons ul li a .fa-stack-2x {
  vertical-align: -.125em;
  display: inline-block;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.footer-social-icons ul li a .svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}


.footer-social-icons ul li a .svg-inline--fa.fa-stack-1x {
  color: #fff;
  height: 1em;
  width: 1.25em;
  margin: 0;
  top: 50%;
  left: 59%;
  transform: translate(-50%, -50%);
}


.footer-about-text {
  width: 300px;
  font-size: 13px;
  line-height: 23px;
  padding-bottom: 30px;
}

.footer-about-text p {
  margin: 0;
}

.footer-logo img {
  margin-bottom: 15px;
  vertical-align: top;
  width: 110px !important;
  height: 76px;
}


.footer-menu {
  float: left;
  vertical-align: top;
  width: calc(100% - 455px);
  margin-left: 4px;
}

.footer-menu .hs-menu-wrapper > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 15px;
  width: 100%;
}

.footer-menu .hs-menu-wrapper > ul > li {
  position: relative;
  display: block;
  line-height: 15px;
  width: 30%;

}

.footer-menu .hs-menu-wrapper > ul > li:first-child,
.footer-menu .hs-menu-wrapper > ul > li:nth-child(2) {
  width: 20%;
}


.footer-menu .hs-menu-wrapper > ul > li > a {
  text-decoration: none;
  position: relative;
  font-size: 15px;
  line-height: 15px;
  text-transform: none;
  font-weight: 600;
}

.footer-menu .hs-menu-wrapper > ul ul {
  display: block;
  width: 100%;
  margin-top: 30px;
}


.footer-menu .hs-menu-wrapper > ul ul > li {
  position: relative;
  display: block;
  display: block;
  margin-bottom: 12px;
  padding-bottom: 10px;

}

.footer-menu .hs-menu-wrapper > ul ul > li:first-child {
  padding-top: 20px;
  border: none;
}

.footer-menu .hs-menu-wrapper > ul ul > li > a {
  text-decoration: none;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  text-transform: none;
  font-weight: 400;
}




@media only screen and (max-width: 1399px) {
  .footer__container {
    width: 96%;
  }
}

@media only screen and (max-width: 1249px) {
  .footer-about {
    width: 380px;
  }
  .footer-menu {
    width: calc(100% - 385px);
  }
}

@media only screen and (max-width: 1199px) {
  .footer-menu .hs-menu-wrapper > ul > li{
    width: 49% !important;
  }
}


@media only screen and (max-width: 999px) {
  .footer-menu .hs-menu-wrapper>ul ul {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 899px) {
  .footer-about {
    width: 90%;
    display: block;
    margin: 0 auto;
    float: none;
  }
  
  .footer-about-text {
    width: 100%;
  }
  
  .footer-menu {
    float: none;
    width: 90%;
    display: block;
    margin: 30px auto 0;
  }
  
}

@media only screen and (max-width: 699px) {
  footer.footer {
    padding: 50px 0 15px;
  }
  .footer-copyright.desktop {
    display: none;
  }
  .footer-copyright.mobile {
    width: 90%;
    margin: 30px auto 0;
    display: block;
  }
  .footer-copyright ul {
    padding: 10px 0 14px;
  }
}

@media only screen and (max-width: 599px) {
  .footer-menu .hs-menu-wrapper > ul > li {
    width: 100% !important;
    padding-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(37,38,75,0.15);
  }

  .footer-menu .hs-menu-wrapper > ul > li:first-child {
    border-top: 1px solid rgba(37,38,75,0.15);
  }
  
  .footer-menu .hs-menu-wrapper > ul ul {
    margin-bottom: 0;
  }
  
  .footer-menu .hs-menu-wrapper > ul ul > li:first-child {
    padding-top: 0;
  }
}

@media only screen and (max-width: 449px) {
  .footer-logo img {
    margin-bottom: 20px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-header {

  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}
a.hs-button.next-posts-link.load-more {
  margin: 0;
}


@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.custom-blog-header {
  padding: 50px 0 0;
  text-align: center;
  position: relative;
}
.custom-blog-header h1 {
  margin: 0;
}

.custom-blog-header-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
  font-size: 18px;
  line-height: 32px;
}

.blog-header-topics ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0px 10px 20px rgba(178,184,211,0.3);
  border-radius: 10px;
}

.blog-header-topics ul li {
  border-right: 1px solid rgba(137,138,160,0.2);
  width: 21%;
  height: 80px;
  text-align: left;
  box-sizing: border-box;
  padding: 25px 50px;
  background: #fff;
  position: relative;
  transition: padding 500ms ease-in-out;
}

.blog-header-topics ul li:first-child {
  border-radius: 10px 0 0 10px;
}

.blog-header-topics ul li:last-child {
  border-right: none;
  border-radius: 0 10px 10px 0;
  width: 18%;
}

.blog-header-topics ul li a {
  font-size: 18px;
  line-height: 32px;
  color: rgba(23,24,63,0.9);
  font-weight: 600;
  position: relative;
  text-decoration: none;
  display: block;
}




.blog-index {
  /*   display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0; */
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 50px;
}
/* .blog-index:after {
content: "";
flex: auto;
} */
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}


.blog-index__post {
  /*   flex:  0 0 100%;
  padding: 1rem; */
}
@media screen and (min-width: 768px) {
  /*   .blog-index__post {
  flex:  0 0 calc(100%/2);
} */
}
@media screen and (min-width: 1000px) {
  /*   .blog-index__post {
  flex:  0 0 calc(100%/3);
} */
}
@media screen and (min-width: 768px) {
  /*   .blog-index__post--large {
  flex: 1 0 100%;
  display: flex;
  justify-items: space-between;
} */
}

.blog-index__post {
  /*   flex:  0 0 100%;
  padding: 1rem; */
}


.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  padding-bottom: 49%;

  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  /*   .blog-index__post-image--large {
  flex: 1 1 100%;
  padding-bottom: 0;
}
  .blog-index__post-content--large {
  flex: 1 1 100%;
  padding-left: 2rem;
}
  .blog-index__post-image--large {
  flex: 1 1 48%;
}
  .blog-index__post-content--large {
  flex: 1 1 48%;
  padding-left: 2rem;
} */
}

.blog-index__post {
  width: 30%;
  max-width: 410px;
  margin: 0 1.5% 60px;
  background: #fff;
  box-shadow: 0px 34px 34px rgba(173,179,203,0.27);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 500ms ease-in-out;
}

.blog-index__post:hover {
  box-shadow: 0px 30px 34px rgba(173,179,203,0.67);
}


.blog-index .blog-index__post:first-child {
  width: 60%;
  max-width: 880px;
}



.blog-index__post-content p {

}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {

  margin: 0 auto;
}

.blog-post h1 {
  font-size: 1.6rem;
}

.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {

  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
}
.blog-recent-bg {
  background: linear-gradient(-180.09deg, #E6E8F2 .07%, rgba(230,232,242,0) 66.61%);
  transform: rotate(-180deg);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200%;
  z-index: 1;
}
.blog-recent-posts .page-center {
  position: relative;
  z-index: 4;
}

.blog-recent-posts h2 {
  margin: 0;
  padding-bottom: 15px;
  z-index: 2;
  position: relative;
}

.blog-recent-posts .head p {
  z-index: 2;
  position: relative;
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 646px;
  font-size: 18px;
  line-height: 32px;
}

.blog-recent-posts__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row nowrap;
  z-index: 2;
  position: relative;
  margin-top: 70px;
}



@media screen and (min-width: 768px) {

}
@media screen and (min-width: 1000px) {

}

.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
/* .blog-comments .hs-button {
background-color: transparent;
border: 2px solid #494A52;
color: #494A52;
}
.blog-comments .hs-button:hover {
background-color: #494A52;
color: #fff;
} */
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  /*   display: flex; */
}

.blog-index__post-inner-card {
  /*   display: flex;
  flex-flow: column nowrap;
  border-radius: 5px;
  background: #fff; */
  width: 100%;
  text-decoration: none !important;

}

.blog-index__post-image {
  border-radius: 10px 10px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  /*   display: flex;
  flex-direction: column; */
  padding: 24px 30px 30px 30px;
  height: 100%;
  background: #fff;
  width: 100%;
  padding: 55px;
  text-align: left;
  box-sizing: border-box;
  transition: 500ms ease-in-out;
}

.blog-post__tag-link,
.blog-post__tags {
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #898AA0;
  padding-bottom: 10px;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}



.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}






.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {

}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */



.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}


/* Blog Custom Style */

.comment-date {
  display: block !important;
  text-align: left;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow-x: auto;
  overflow-y: hidden;
}


.blog-listing-container-wrapper {
  padding: 100px 0 150px;
}

.blog-index__post-content h2 {
  font-size: 25px;
  line-height: 29px;
  width: 100%;
  padding-bottom: 13px;
  font-weight: 600;
  margin: 0;
}


.blog-index_post-content-text {
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 30px;
  width: 100%;
  margin: 0;
  opacity: .9;

}

.blog-index_post-content-text p:last-child {
  margin: 0;
}

.blog-index_post-read-more {
  font-family: "Proxima Nova",sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #D32131;
  text-decoration: none;
}

.blog-index .blog-index__post:first-child .blog-index_post-read-more {
  text-align: center;
  font-weight: 600;
  font-family: "Proxima Nova",sans-serif;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  position: relative;
  padding: 0 40px;
  width: auto;
  border-radius: 100px;
  z-index: 3;
  transition: 0.6s ease-in;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, #E82537 0%, #B71A28 100%);
  box-shadow: 0px 13px 24px rgba(189,28,42,0.22);
  margin-bottom: 20px;
}

.blog-index .blog-index__post:first-child .blog-post__tags {
  display: none;
}




.blog-mobile-topics-filter {
  display: none;
  position: relative;
}
 
.blog-mobile-topics-filter .filter-heading {
  box-shadow: 0px 10px 20px rgba(178,184,211,0.3);
  border-radius: 10px;
  background: #fff;
  font-size: 18px;
  line-height: 32px;
  color: rgba(23,24,63,0.9);
  font-weight: 600;
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: block;
  height: 80px;
  text-align: left;
  box-sizing: border-box;
  padding: 25px 50px;
  z-index: 2;
  cursor: pointer;
}
.blog-mobile-topics-filter .filter-heading svg {
  vertical-align: -.125em;
  height: 1em;
  display: inline-block;
  width: 1em;
  overflow: visible;

  position: relative;
  float: right;
  font-size: 15px;
  color: #898AA0;
  line-height: 32px;
  top: 10px;
}

.blog-mobile-topics-filter.open .filter-heading {
  border-radius: 10px 10px 0 0;
}

.blog-mobile-topics-filter ul {
  padding: 0;
  margin: 0;
  list-style: none;

  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(178,184,211,0);
  border-radius: 0 0 10px 10px;
  transition: 500ms ease-in-out;
  margin-top: -5px;
}

.blog-mobile-topics-filter.open ul {
  box-shadow: 0px 10px 20px rgba(178,184,211,0.3);
  max-height: 5000px;
  opacity: 1;
  visibility: visible;
}

.blog-mobile-topics-filter ul li {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  padding: 25px 50px;
  background: #fff;
  position: relative;
  transition: padding 500ms ease-in-out;
  border-bottom: 1px solid rgba(137,138,160,0.2);
  font-size: 18px;
  line-height: 32px;
  color: rgba(23,24,63,0.9);
  font-weight: 600;
}

.blog-mobile-topics-filter ul li a {
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 32px;
  color: rgba(23,24,63,0.9);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.blog_request-demo {
  display: block;
  position: relative;
  background: #132153;
  padding: 130px 0;
  text-align: center;
}
.blog_request-demo h2 {
  margin: 0;
  color: #fff;
  padding-bottom: 67px;
  text-align: center;
}

.blog_request-demo form {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
}

.blog_request-demo form fieldset {
  max-width: 100%;
}


.blog_request-demo .hs-form-field {
  margin-bottom: 25px;
}

.blog_request-demo .hs-form-field > label {
  display: none;
}

.blog_request-demo form textarea {
  min-height: 175px !important;
  padding-top: 14px !important;
}

.blog_request-demo form .hs-button {
  margin: 0;
  /*   background-image: linear-gradient(180deg, #E82537 0%, #B71A28 100%); */
  margin-top: 13px;
}


/* Blog Post Page */

.blog-post-container-wrapper {
  padding: 100px 0 0;
  text-align: left;
  z-index: 2;
  transition: 500ms ease-in-out;
  position: relative;

}

.blog-post-left-sec {
  max-width: 765px;
  text-align: left;
  transition: 500ms ease-in-out;
  width: 40%;
  float: left;
}

.blog-post-right-sec {
  position: relative;
  transition: 500ms ease-in-out;
  width: 50%;
  float: right;
}

.blog-post-form {
  width: 100%;
  max-width: 525px;
  display: block;
  margin: 0 auto;
}

.blog-post-form .hs-input {
  background: #f1f1f7;
  outline: none;
  box-shadow: none;
}

.blog-post-form .hs-button {
  width: 100%;
  margin-top: 0;
}

.blog-post-form  .hs-form-field {
  margin-bottom: 25px;
}

.blog-post-form .hs-form-field > label {
  display: none;
}


.blog-post__body {
  font-size: 18px;
  line-height: 32px;
  opacity: .9;
}

/* Blog recent post */

.blog-recent-posts__list .blog-index__post {
  margin: 0 30px;
  margin-bottom: 50px;
  width: 30%;

}


.blog-pagination{
  display: block ;
}

.blog-pagination.hide{
  display: none !important;
}

.blog-pagination .no-post{
  display: none;
}


/* Media query */

@media  (max-width: 1399px) {
  .blog-index__post-inner-card .blog-index__post-content {
    padding: 30px;
  }
}


@media  (max-width: 1349px) {
  .blog-index__post {
    margin: 0 15px 50px;
  }
  .blog-index .blog-index__post:first-child {
    margin: 0 50px 50px 0;
  }
  .blog-index__post-content h2 {
    font-size: 21px;
  }
}


@media  (max-width: 1299px) {

  .blog-recent-posts__list .blog-index__post {
    margin: 0 15px;
    margin-bottom: 50px;
  }
}


@media  (max-width: 1149px) {
  .blog-post-left-sec {
    margin-right: 30px;
  }
}






@media  (max-width: 1149px) {
  .blog-index__post {
    width: 45%;
    margin: 0 30px 50px;
  }
  .blog-index .blog-index__post:first-child {
    width: 90%;
    margin: 0 auto 50px;
  }
}

@media  (max-width: 1099px) {
  .blog-index__post {
    margin: 0 15px 30px;
  }
  .blog-index .blog-index__post:first-child {
    width: 93%;
  }
}


@media  (max-width: 999px) {
  .custom-blog-header {
    padding: 79px 0 0;
  }
  .custom-blog-header-description {
    padding-top: 30px;
  }
  .blog-listing-container-wrapper {
    padding-top: 0;
  }
  .blog-header-topics {
    display: none;
  }
  .blog-mobile-topics-filter {
    display: block;
    margin-bottom: 50px;
  }
  .blog_request-demo {
    padding: 80px 0;
  }

  .blog-post-left-sec {
    margin: 0 auto 50px;
    width: 100%;
  }

  .blog-post-right-sec {
    width: 100%;
    margin: 0 auto;
  }
  .blog-recent-posts {
    padding: 150px 0;
  }
  .blog-recent-posts__list {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
  }

  .blog-recent-posts__list .blog-index__post {
    width: 100%;
    margin: 0 auto 50px;
    max-width: 410px;

  }

}


@media  (max-width: 799px) {
  .custom-blog-header {
    padding: 49px 0 0;
  }

  .custom-blog-header-description {
    padding-top: 0px;
  }
} 


@media  (max-width: 699px) {
  .blog-listing-container-wrapper {
    padding-bottom: 50px;
  }
  .blog-index__post {
    width: 96%;
    margin: 0 auto 30px;
    max-width: 100%;
  }
  .blog-index .blog-index__post:first-child {
    width: 96%;
    margin: 0 auto 30px;
  }
}

@media  (max-width: 599px) {
  .blog_request-demo {
    padding: 50px 0;
  }

  .blog_request-demo fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none !important;
  }

  .blog_request-demo fieldset .input {
    margin-right: 0 !important;
  }
}


@media  (max-width: 449px) {
  .blog-mobile-topics-filter .filter-heading {
    padding: 20px 30px;
  }
}

@media  (max-width: 399px) {
  .blog_request-demo h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 0px;
}

.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  max-width: 650px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

@media (max-width: 499px) {

  .systems-page h1  {
    font-size: 35px;
  }

  .systems-page h2  {
    font-size: 27px;
  }
}


/* CONTAINER */
.content-wrapper:has(.systems-page) {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}
.content-wrapper:has(.systems-page) form {
  max-width: 100%;
}
/* HEADER */
.content-wrapper:has(.systems-page) form .page-header,
.content-wrapper:has(.systems-page) .page-header,
.content-wrapper:has(.systems-page) #hs_cos_wrapper_subscriptions_confirmation {
  background-image: url('https://7497962.fs1.hubspotusercontent-na1.net/hubfs/7497962/theme-2023/modo_bg_gradient.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px calc(50% - 750px);
}
.content-wrapper:has(.systems-page) .page-header h1,
.content-wrapper:has(.systems-page) .page-header h2,
.content-wrapper:has(.systems-page) #hs_cos_wrapper_subscriptions_confirmation h2 {
  color: #ffffff;
}
.content-wrapper:has(.systems-page) form .email-prefs,
.content-wrapper:has(.systems-page) form #content {
  padding: 80px calc(50% - 750px);
}
@media screen and (max-width: 1500px) {
  .content-wrapper:has(.systems-page) form .page-header,
  .content-wrapper:has(.systems-page) form .email-prefs {
    padding: 80px 5%;
  }
}
@media screen and (max-width: 767px) {
  .content-wrapper:has(.systems-page) form .page-header,
  .content-wrapper:has(.systems-page) form .page-header h1,
  .content-wrapper:has(.systems-page) form .page-header h2 {
    text-align: center;
  }
}
/* FORM */
.content-wrapper:has(.systems-page) form .email-prefs input:not(.hs-button) {
  background: #f1f1f7;
  border-color: #f1f1f7;
  height:15px;
  width: 15px;
}
.content-wrapper:has(.systems-page) .item .item-inner span.fakelabel {
  display: flex;
}
.content-wrapper:has(.systems-page) .item .item-inner span span {
  display: none;
}
.content-wrapper:has(.systems-page) .item .item-inner span span:last-of-type {
  display: block;
}
.content-wrapper:has(.systems-page) .item .item-inner span.fakelabel:has(#id_94040360) span,
.content-wrapper:has(.systems-page) .item .item-inner span.fakelabel:has(#id_94040148) span {
  font-weight: 700;
}
.content-wrapper:has(.systems-page) form .email-prefs input[type="checkbox"] {
  /* appearance: none; */
  background: #f1f1f7;
  border-color: #f1f1f7;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  /* border: 0.15em solid currentColor; */
  border-radius: 0.15em;
  transform: translateY(3px);
  margin-right: 10px;
}
.content-wrapper:has(.systems-page) form .email-prefs input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}
.content-wrapper:has(.systems-page) form .email-prefs input[type="checkbox"]:checked::before {
  transform: scale(1);
}


.content-wrapper:has(.systems-page) form .email-prefs .item-inner p {
  font-size: .875rem;
  font-style: italic;
  margin-left: 30px;
  margin-top: 5px;
  max-width: 900px;
}
.content-wrapper:has(.systems-page) form .email-prefs .item {
  margin-bottom: 20px;
}
.content-wrapper:has(.systems-page) form .email-prefs .subscribe-toptions {
  margin-top: 50px;
}
.content-wrapper:has(.systems-page) form .email-prefs p.header {
  font-weight: 700;
}