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

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


.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

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

@media (max-width: 1749px) and (min-width: 1440px){
  .dnd-section > .row-fluid, .header__container , .page-center, .content-wrapper {
    max-width:1300px;
  }
}

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

html {
  font-size: 10px;
}

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

img {

  max-width:100%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
  outline: 0;
}

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

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

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

.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
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: 500px;
  padding: 20px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  border-style: solid;
  text-decoration: none;
  font-size: 12px;
  line-height: 12px;
  font-family: arial, helvetica, sans-serif;
  font-weight: 700;
}

.hs-button:hover,
.hs-button:focus {
  text-decoration: none;
}

.hs-form label {
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: arial, helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.hs-form .hs-error-msgs label {
  padding-left: 5px;
  color: #f2545b;
  margin-top:0 !important;
}

h3.form-title {
  padding: 0 20px;
}

input.hs-input,
textarea.hs-input,
input[type="password"] {
  display: inline-block;
  width: 100% !important;
  height: auto !important;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  outline: 0;
  padding: 8px 15px;
  background-color: #f5f8fa;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
}

input[type="password"] {
  margin-bottom: 18px;
}

#hs-search-module input {
  margin-bottom: 18px;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto !important;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}

.hs-input:focus {
  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 {
  border-color: #c87872;
}
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 {
  border-color: #b9554d;
}

.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: 20px 0;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}

form#email-prefs-form {
  padding: 20px 0px;
}

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

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}

@media (max-width: 767px) {
  form {
    max-width: 100%;
    padding: 20px 0px;
  }

  h3.form-title {
    padding: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

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

.hs-menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}
/* ******************************************************************************
*********************************************************************************
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__container {
  margin: 0 auto;
}
header.header {
  position: fixed;
  width: 100%;
  z-index: 9;
}

.header-top-section {
  padding: 0px 2rem;
  line-height: 1.5;
  font-size: 1rem;
}

.header-top-section p {
  text-align: center;
  font-size: 1.6rem;
  padding: 0.5rem 0px;
  font-weight: 400;
  margin-bottom: 0;
}

.header-top-section a {
  color: '#147efb';
}

.header__container {
  padding: 0px 20px;
}

.hs-menu-item {
  position: relative;
}

.new-feature {
  position: absolute;
  right: -20%;
  bottom: 75%;
  background: #147efb;
  color: #ffffff;
  font-size: 0.6em;
  border-radius: 2rem;
  text-align: center;
  padding: 2px 10px;
  line-height: 1em;
}

.header-inner {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0px auto;
}

.header-bottom-section {
  background: linear-gradient(hsla(0,0%,100%,.17),rgba(185,193,204,.17)) 0 0 no-repeat padding-box padding-box #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.header-logo {
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
}

.header-logo img {
  max-width: 149.7px;
  height: 7.5rem;
}

.new-feature-tag {
  width: 70px;
  border-radius: 6px;
  font-size: 8px;
  background-color: '#147efb';
  height: 12px;
  position: 'absolute';
  top: 60px;
  left: 540px
}
.custom-menu-primary {
  margin-right: 1.6rem;
  flex: 1 1 0%;
}

.custom-menu-primary .hs-menu-wrapper > ul {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}

.custom-menu-primary .hs-menu-wrapper > ul > li {
  margin: 0px;
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:first-child {
  margin-left: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  font-weight: 400;
  text-decoration: none;
  font-size: 1.6rem;
  display: inline-block;
  text-align: center;
  padding: 14px 16px;
  line-height: 24px;
  font-family: Poppins;
}

.button-section button:first-child {
  border-width: 4px;
  border-style: solid;
  letter-spacing: 0px;
  font-weight: 400;
  line-height: 1.8rem;
  font-size: 1.6rem;
  margin-left: 2rem;
  min-width: 140px;
  height: 35px;
  border-radius: 50px;
  font-family: Poppins,sans-serif;
  cursor: pointer;
  text-align: center;
  padding-top: 0;
}

.button-section button:last-child {
  border-width: 4px;
  border-style: solid;
  letter-spacing: 0px;
  font-weight: 700;
  line-height: 1.8rem;
  font-size: 1.6rem;
  margin-left: 18px;
  margin-top: 11px;
  margin-bottom: 11px;
  min-width: 140px;
  height: 35px;
  border-radius: 50px;
  cursor: pointer;
  padding-top: 0;
}


.custom-menu-primary .hs-menu-wrapper > ul > li:last-child {
  margin-right: 0;
}

.button-section {
  display: flex;
  align-items: center;
  line-height: 1.5;
  text-align: left;
}

.dropdown-section: {
  position: relative;
  display: inline-block;
} 
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  margin-top: 8px;
  width: 150px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border: 1px solid #ddd;
}

.dropdown-content a {
  color: black;
  font-weight: 400;
  padding: 12px 16px;
  font-size: 16px;
  font-family: Poppins;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: black;
}
.login-button {
  border: 4px solid #147EFB;
  background: #fff !important;
  font-weight: 400;
  line-height: 1.8rem;
  color: #147EFB !important;
  font-size: 1.6rem;
  height: 40px !important;
  border-radius: 50px;
  font-family: Poppins,sans-serif;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 145px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 20px;
}  
.login-button:hover {
  text-decoration: none;  
}
.navbar-button {
  border: 4px solid #147EFB;
  background: #147EFB;
  font-weight: 400;
  line-height: 1.8rem;
  color: #ffffff;
  font-size: 1.6rem;
  height: 40px;
  border-radius: 50px;
  font-family: Poppins,sans-serif;
  padding-top: 5px;
  min-width: 140px;
  padding-left: 10px;
  padding-right: 10px;
}  
.navbar-button:hover {
  border: 4px solid #0f57ff;
  background: #0f57ff;
  color: #fff;
  text-decoration: none;  
}
.show-dropdown {
  display: block;
}  

body .custom-menu-primary .hs-menu-wrapper>ul>li.active-branch>a {
  border-bottom: 2px solid #147efb;
}

.mobile-trigger {
  display:none;
}
.mobile-menu-section{
  visibility:hidden;
  opacity:0;
  display: none;
}
.custom-menu-primary .hs-menu-wrapper>ul li.hs-item-has-children ul.hs-menu-children-wrapper > li > a {
  font-weight: 400;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  text-align: left;
  padding: 12px 16px;
  line-height: 24px;
  font-family: Poppins;
}

@media (min-width:1101px){

  .custom-menu-primary .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 52px;
    min-width: 175px;
  }

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


}

@media (max-width:1679px){
  .button-section button:last-child {
    margin-left: 2rem;
    padding-top: 1px;
  }

  .button-section button:first-child {
    padding-top: 1px;
  }

}

@media (max-width:1440px){
  .header-logo img {
    height: 5.5rem;
    max-width: 109.78px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin: 0;
  }

  .button-section button:last-child {
    margin-left: 17px;
  }

}

@media (max-width:1366px){
  .custom-menu-primary {
    margin-right: 1.3rem;
  }
}
@media (max-width:1254px){
  .button-section button:last-child {
    margin-left: 2rem;
  }

}
@media (max-width:1239px) and (min-width:769px){
  .social-icons a:last-child {
    position: relative;
    top: 9px;
  }

}
@media (max-width:1200px){
  .header-logo {
    margin-right: 2%;
  }
  .button-section {
    display: flex;
    align-items: center;
    line-height: 1.5;
    flex-direction: column;
    text-align: left;
  }
  .navbar-button {
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
  .login-button {
    margin-top: 5px;
    padding-left: 35px;
    padding-right: 35px;
  } 
}

@media (max-width:1100px){
  body.mobile-open .trigger-inner {
    opacity: 1;
  }
  .custom-menu-primary {
    display: none;
  }

  .button-section {
    display: none;
  }
  .mobile-trigger {
    display:block;
  }
  button.mobile-trigger {
    min-width: 35px;
    display: inline-flex;
    padding: 0px;
    cursor: pointer;
    height: auto;
    background-color: transparent;
    font-size: 20px;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: 48px;
    font-weight: 700;
    border: none;
    outline:none;
  }

  .trigger-inner {
    display: flex;
    opacity: .5;
    line-height: 1;
  }

  button.mobile-trigger svg {
    width: 27px;
    height: auto;
  }

  .trigger-inner:hover {
    color: #000;
    opacity: 0.75;
  }

  .mobile-open .mobile-menu-section{
    visibility:visible;
    opacity:1;
  }
  .mobile-menu-section {
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease 0s;
    position: absolute;
    top: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    left: 0;
    padding: 27px 30px 40px;
    box-shadow: 0px 3px 12px;
    z-index: 99;
  }

  .mobile-menu-section .hs-menu-wrapper > ul {
    flex-direction: column;
    padding-bottom: 2rem;
    display: flex;
    text-align: center;
  }

  .mobile-menu-section .hs-menu-wrapper > ul > li {
    font-family: Poppins;
    font-weight: 800;
    position: relative;
  }

  .mobile-menu-section .hs-menu-wrapper > ul > li > a {
    display: block;
    padding: 1.3rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    font-weight: 600;
    font-size: 20px;
    color: white;
  }

  button.mobile-login-button {
    border: 4px solid rgb(0, 0, 0);
    background: transparent;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    margin: 0px;
    color: rgb(255, 255, 255);
    letter-spacing: 0px;
    font-weight: 700;
    line-height: 1.8rem;
    height: 45px;
    border-radius: 50px;
  }
  button.mobile-trigger svg:last-child {
    visibility: hidden;
    opacity: 0;
    display: none !important;
    color: #000;
  }

  body.mobile-open button.mobile-trigger svg:last-child {
    visibility: visible;
    opacity: 1;
    display: block !important;
  }

  body.mobile-open button.mobile-trigger svg:first-child {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
  }
  .child-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 56px;
    cursor: pointer;
    text-align: center;
  }

  .child-trigger:after,.child-trigger:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 18px;
    height: 2px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .child-trigger:after {
    width: 2px;
    height: 18px;
  }

  .child-trigger.child-open:after {
    visibility: hidden;
  }
  .mobile-menu-section .hs-menu-wrapper>ul ul li a {
    display: block;
    padding: 1.3rem .5rem;
    border-radius: 5px;
    transition: all .3s ease 0s;
    font-weight: 600;
    font-size: 20px;
    color: white;
  }
  .mobile-menu-section .hs-menu-wrapper>ul ul {
    display: none;
  }
  .mobile-menu-section .hs-menu-wrapper>ul>li:hover > a {
    padding: 1.3rem 1.5rem;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
  }

  button.mobile-login-button:hover {
    background: #147efb;
    color: white;
  }
  .mobile-menu-section .hs-menu-wrapper>ul>li:hover .child-trigger:before {
    background-color: #000;
  }

  .mobile-menu-section .hs-menu-wrapper>ul>li:hover .child-trigger:after {
    background-color: #000;
  }
  .mobile-menu-section .hs-menu-wrapper>ul>li.child-open .child-trigger:after {
    visibility: hidden;
  }

  .mobile-open button.mobile-trigger {
    margin-top: 2px;
  }
  .request-mobile-button {
    border: 4px solid #2982b6;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #2982B6;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1.8rem;
    color: #fff;
    font-size: 14px;
    height: 35px;
    width: 300px;
    border-radius: 50px;
    padding-top: 3px;
    text-decoration: none;
  }
  .request-mobile-button:hover {
    border: 4px solid #147EFB;
    background: #147EFB;
    color: white; 
    text-decoration: none;
  }  
  .login-mobile-button {
    margin-bottom: 20px;
    border: 4px solid #2982b6;
    background: #fff;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1.8rem;
    color: #000;
    font-size: 14px;
    height: 35px;
    width: 300px;
    border-radius: 50px;
    padding-top: 3px;
    text-decoration: none;
  }
  .login-mobile-button:hover {
    border: 4px solid #2982b6;
    background: #2982b6;
    color: white;  
    text-decoration: none;
  } 
  .carrier-mobile-button {
    margin-bottom: 20px;
    border: 4px solid #2982b6;
    background: #fff;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1.8rem;
    color: #000;
    font-size: 14px;
    height: 35px;
    width: 300px;
    border-radius: 50px;
    padding-top: 3px;
    text-decoration: none;
  }
  .carrier-mobile-button:hover {
    border: 4px solid #2982b6;
    background: #2982b6;
    color: white;  
    text-decoration: none;
  }
  
}

@media (max-width:872px) and (min-width:769px){
  .social-icons a:nth-child(3) {
    position: relative;
    top: 10px;
  }
}
@media (max-width:411px){
  .mobile-menu-section {
    top: 16rem;
  }
}
  
@media (max-width: 1100px) and (max-height: 790px) {
  .mobile-menu-section {
    height: calc(100vh - 14rem);
    overflow-y: auto;
  } 
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer__container {
  margin: 0 auto;
}
.footer__container {
  padding-top: 30px;
  padding-bottom: 30px;
}

footer.footer {
  padding: 4rem 0px;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  line-height: 1.5;
  font-size: 10px;
}

.follow-us {
  margin: 2rem 1rem 2rem 5%;
  border-right: 1px solid rgb(255, 255, 255);
}

.follow-us h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: inherit;
  font-family: Poppins;
  font-weight: 800;
}

.social-icons {
  display:flex;
  margin-right:25px;
  justify-content:space-between;
}

.social-icons a {
/*   margin-right: 14.4%; */
  text-decoration: none;
}

.social-icons a img {
  height: 3.5rem;
  vertical-align: middle;
}

.address-section {
  width: 100%;
  height: 90px;
  display: grid;
  align-self: center;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-left: 20px;
  padding-right: 2rem;
  border-right: 1px solid rgb(255, 255, 255);
  font-family: Poppins;
  font-size: 1.6rem;
}

.address-section p:first-child,.address-section p:last-child {
  font-weight: 800;
}

.address-section p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.address-section p:nth-child(2) {
  font-weight: 400;
}

.address-section p img {
  width: 1.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.footer-logo {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0px 25%;
}

.footer-logo img {
  height: 10rem;
  max-width: 199.63px;
  vertical-align: middle;
}
.address-section p img:last-child {
  margin-right: 13px;
}

.social-icons a:nth-child(3) {
/*   margin-right: 14.5% ; */
}

.address-section.lp {
  border-right: none;
}

.social-contact {
 display:flex;
 flex-direction:column;
}

.social-contact-item {
 display:flex;
 align-items:center;
 justify-content:center;
}

.social-contact-item img {
  margin-right:10px;
  width:20px;
  height:20px;
}

@media (min-width:1440px){
  .footer__container {
    max-width:1200px;
  }
}

@media (max-width:1679px){
  .social-icons a:first-child {
/*     margin-right: 14.3%; */
  }

  .social-icons a:nth-child(3) {
/*     margin-right: 14.3% ; */
  }

  .address-section {
    margin-top: 1px;
  }

  .footer-logo {
    margin-top: 1px;
  }

}

@media (max-width:1577px){
  .address-section {
    margin-top: 0;
  }

  .footer-logo {
    margin-top: 0;
  }

}

@media (max-width:1468px){
  .address-section {
    margin-top: 1px;
  }

  .footer-logo {
    margin-top: 1px;
  }

}

@media (max-width:1439px){
  .footer__container {
    max-width:1350px;
  }
}

@media (max-width:1397px){
  .address-section {
    margin-top: 0;
  }

  .footer-logo {
    margin-top: 0;
  }
  .social-icons a {
/*     margin-right: 15% !important; */
  }


}

@media (max-width:978px){
  .social-icons a {
    margin: 2rem 2% !important;
  }

  .footer-logo {
    margin: 0px 8%;
  }
}

@media (max-width:768px){
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .social-icons a {
    margin: 2rem 0 !important;
  }

  .follow-us {
    border-right: none;
    margin: 0px;
    display: flex;
    flex-direction: column;
  }

  .follow-us h1 {
    text-align: center;
  }

  .social-icons {
    align-self: center;
    border-bottom: 1px solid rgb(255, 255, 255);
    max-width: 600px;
    margin-right:0;
    width:90%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: space-evenly;
    margin: 0 auto;
  }

  .address-section {
    text-align: center;
    margin: 30px auto;
    border-right: none;
  }

  .footer-logo {
    margin: 4rem auto 0px;
  }

}

@media (max-width:630px) and (min-width:501px){
  .social-icons {    
    max-width: 600px;
    justify-content:space-evenly;

  }
}

@media (max-width:500px){
  .social-icons {
/*     width: unset; */
    justify-content:space-evenly;
  }
}

@media (max-width:420px){
  .social-icons a {
    margin: 2rem 10% !important;
    min-width: 35px;
  }
}
@media (max-width:350px){
  .footer__container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* ******************************************************************************
*********************************************************************************
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 {
  margin: 0 auto;
}
.listing-blog-header {
  background-color: rgb(255, 255, 255);
  display: flex;
  margin: 0px auto;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  height: 7rem;
  margin-top: 35px;
  max-width: 1550px;
}

.listing-blog-header h1 {
  color: rgb(55, 63, 73);
  font-size: 4.5rem;
  font-weight: 800;
  font-family: Poppins;
  margin: 0;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  margin-top: 0;
  line-height: 1.5;
  font-size: 1rem;
}

ul.breadcrumb li {
  display: inline;
  padding: 8px;
  font-size: 16px;
  color: #147efb;
  font-family: Poppins;
  font-weight: 800;
}

ul.breadcrumb li a {
  color: #147efb;
  text-decoration: none;
  margin-right: 1rem;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 800;
}

.blog-listing {
  background-color: rgb(248, 252, 253);
}

.blog-listing .content-wrapper, .blog-post .content-wrapper {
  display: grid;
  grid-template-columns: [x0] 65% [x1] 35%;
  grid-template-rows: [y0] 1fr;
  padding: 10rem 0rem;
  padding-top: 40px;
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem 0rem;
  justify-items: center;
  gap: 2rem;
}

.post-item {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  width: 90%;
}

.blog-pagination {
  grid-column: x0 / x0;
}

.blog-sidebar {
  padding: 0px 3rem;
  grid-area: y0 / x1 / y0 / x1;
}
.post-featured-image {
  max-width: 100%;
  width: 100%;
  height: 20rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
}

.post-featured-image img {
  vertical-align: middle;
}

.post-content {
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
}

.post-meta h2 {
  font-size: 2.2rem;
  margin: 2rem 0px;
  font-family: Poppins;
  line-height: 1.2;
  font-weight: 800;
}

h2.post-title a {
  color: #147efb;
}

.post-descriptions {
  color: rgb(120, 130, 147);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

a.read-more {
  color: #147efb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
  font-family: Poppins;
}

.blog-pagination {
  width: 25%;
  margin: 0px auto;
  border-radius: 0.25rem;
  font-size: 0;
}

.blog-pagination a {
  margin: 1rem;
  font-weight: 500;
  display: inline-block;
  font-family: Poppins;
  font-size: 1.6rem;
  color: #6c757d;
  text-decoration: none;
  line-height: 1.25;
  position: relative;
}

.blog-pagination a:hover {
  color: #6c757d;
}

a.blog-pagination-number {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: #fff;
  padding: 0.3rem 1rem;
  color: #147efb;
}
a.blog-pagination-number.active {
  pointer-events: none;
  color: inherit;
}

a.blog-pagination-prev.disabled, a.blog-pagination-next.disabled {
  display: none;
}
a.blog-pagination-number:not(.active):hover {
  background-color: #e9ecef;
  color: #147efb;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  background: #147efb;
  border-radius: 20px;
  margin: 2rem 3rem;
}

.sidebar-inner img {
  width: 55px;
  margin-top: 2rem;
  vertical-align: middle;
}

.sidebar-inner h4 {
  font-size: 2.7rem;
  color: rgb(255, 255, 255);
  margin: 1rem auto;
  width: 70%;
  text-align: center;
  font-family: Poppins;
  font-weight: 800;
  line-height: 1.2;
}

.blog-sidebar form .hs-input {
  border-radius: 15px;
  width: 250px !important;
}

.blog-sidebar form {
  padding: 0;
  width: 100%;
  max-width: 100% !important;
}

.blog-sidebar form .hs-button {
  background: #147efb;
  border-color: #ffffff;
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  font-family: Poppins;
  font-weight: 400;
  border-radius: 15px;
}

.blog-sidebar form .actions {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 0px;
}

.sidebar-inner h3.form-title {
  display: none;
}
.listing-blog-header.post {
  background-color: rgb(248, 252, 253);
}

.blog-post .content-wrapper {
  display: grid;
  grid-template-columns: 70% 30%;
  font-family: Poppins;
  max-width: 100%;
}

.blog-post-content {
  padding: 0px 8rem 0px 4rem;
}
.blog-sidebar.post {
  padding: 0;
  grid-area: auto;
}

.blog-post-content h1 {
  font-size: 3.7rem;
  color: #147efb;
  line-height: 56px;
  font-family: Poppins;
  margin: 0;
  font-weight: 800;
}

.autorInfo {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 2rem 0px;
}

.autorInfo img {
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
}

.autorInfo span {
  color: rgb(120, 130, 147);
  font-size: 16px;
  margin: 0px 0.8rem;
  font-weight: 800;
}

.autorInfo span:last-child {
  font-weight: 400;
}

.blog-post__body {
  margin-top: 5rem;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.5;
}

.author-section {
  margin: 2rem 0px;
}

.titleBio {
  border-top: 1px solid rgb(169, 211, 235);
  position: relative;
  margin: 4rem 0px;
}

.titleBio h4 {
  position: absolute;
  color: #147efb;
  font-size: 2.2rem;
  font-weight: 400;
  background: white;
  top: -14px;
  padding-right: 3rem;
  line-height: 1.2;
  font-family: Poppins;
}

.bioDiv {
  display: flex;
}

.bioDiv img {
  border-radius: 50%;
  width: 16.8rem;
  height: 16.8rem;
  margin-right: 5rem;
}

.bioDiv h1 {
  font-size: 3.7rem;
  color: #147efb;
  line-height: 56px;
  margin: 0px;
}

.bioDiv p {
  color: rgb(120, 130, 147);
  font-size: 1.8rem;
  line-height: 30px;
  font-weight: 400;
  margin:0;
}

.blog-sidebar.post .sidebar-inner {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  background: #147efb;
  border-radius: 20px;
  margin-top: 2rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.blog-sidebar.post .sidebar-inner img {
  width: 55px;
  margin-top: 4rem;
}

.blog-sidebar.post .sidebar-inner h4 {
  font-size: 2.7rem;
  color: rgb(255, 255, 255);
  margin: 2rem auto;
  width: 70%;
  text-align: center;
}
.blog-sidebar form label {
  font-family: Poppins;
}
a.blog-pagination-next,a.blog-pagination-prev {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  color: rgb(255, 255, 255);
  background-color: #147efb;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  line-height: 1.25;
  padding: 0.3rem 1rem;
  border: none;
}

a.blog-pagination-next:hover, a.blog-pagination-prev:hover {
  color: #fff;
}
a.read-more:hover {
  color: #147efb;
}

.post-inner a {
  text-decoration: none;
}













@media (min-width:1245px){
  .blog-sidebar.post form .hs-input {
    max-width: 300px;
    width: 300px !important;
  }
}


@media (min-width:1500px){
  .blog-post .content-wrapper {
    padding: 10rem 16rem;
  }
}




@media (min-width:1750px){
  .listing-blog-header {
    padding: 0px 3rem;
    max-width:1550px;
  }
  .blog-index {
    gap: 5rem;
  }
  .post-item {
    width: 90%;
  }
}

@media (max-width:1749px){
  .blog-listing .content-wrapper {
    max-width: 130rem;
  }
  .listing-blog-header.post {
    padding: 0px 10rem;
  }
  .listing-blog-header {
    padding: 0px 2rem;
    max-width: 130rem;
  }
}
@media (max-width:1499px){
  .blog-post .content-wrapper {
    padding: 10rem 8rem;
  }
}

@media only screen and (max-width: 1100px) and (min-width: 767px){
  .listing-blog-header h1 {
    font-size: 3.7rem;
  }

  .blog-listing .content-wrapper, .blog-post .content-wrapper {
    grid-template-columns: [x0] 100%;
    grid-template-rows: [y0] 1fr;
    padding: 4rem 0rem;
  }

  .blog-index {
    grid-column: x0 / x0;
    gap: 5rem;
  }

  .blog-pagination {
    grid-column: x0 / x0;
  }

}

@media (max-width:1100px){
  .blog-sidebar {
    grid-area: y1 / x0 / y1 / x0;
    max-width: 430px;
    margin: auto;
  }
  .blog-post .content-wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 4rem 5rem!important;
  }

  .blog-post-content {
    padding: 0px 2rem;
  }

  .blog-sidebar.post form .hs-input {
    max-width: 300px;
    width: 300px !important;
  }

  .blog-sidebar.post form .actions {
    margin-bottom: 0;
  }

  .blog-sidebar.post form label {
    font-family: Poppins;
    color: #33475b;
  }
}

@media (max-width:800px){
  .bioDiv {
    display: block;
  }
}


@media (max-width: 766px) {
  .blog-listing .content-wrapper, .blog-post .content-wrapper {
    grid-template-columns: [x0] 100%;
    grid-template-rows: [y0] 1fr;
    padding: 4rem 0rem;
  }

  .blog-index {
    grid-column: x0 / x0;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
    justify-items: center;
  }

  .blog-sidebar {
    grid-area: y1 / x0 / y1 / x0;
  }
  .listing-blog-header{
    padding: 0px 3rem;
  }

  .listing-blog-header h1 {
    font-size: 3.2rem !important;
  }

  .listing-blog-header ul.breadcrumb {
    margin-top: 2rem;
  }
  .post-meta h2 {
    font-size: 2rem;
  }

  .post-descriptions {
    font-size: 1.4rem;
  }


}
@media (max-width:450px){
  .blog-post .content-wrapper {
    padding: 2rem 1.5rem !important;
  }
}
/* ******************************************************************************
*********************************************************************************
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;
}

.systems-page form {
  padding: 20px 0;
}

ul.no-list.hs-error-msgs {
  padding-left: 0;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  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;
}
.systems-page.full-width form#email-prefs-form {
    max-width: 100%;
}