/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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


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

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

.dnd-section[class*="full-width-section"]>.row-fluid{
    max-width: 100%;
    padding: 0;
}

.dnd-section.full-width-forcedd>.row-fluid{
    max-width: none;
    padding: 0;
}

.flex_row {
    display: flex;
    flex-wrap: wrap;
}
.text-center{
    text-align: center;
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
    line-height: 1.4;
    overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
    margin: 0 0 1.4rem;
}

:focus{
    outline: none;
}

img{
    max-width: 100%;
    height: auto;
}

/* Anchors */

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

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.4rem;
}

h1{
    line-height: 1.20833333333;
}

h2{
    line-height: 1.29411764706;
}
h3{
    line-height: 1.35714285714;
}

h5{
     line-height:1.55555555556;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
    overflow: auto;
}

code {
    vertical-align: bottom;
}

/* Blockquotes */

blockquote {
    border-left: 2px solid;
    margin: 0 0 1.4rem;
    padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
    font-size: 0.583rem;
    word-break: normal;
}
button,
.button,
.hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
    text-decoration: none;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
    background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6;
}

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
    font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
    border: 0;
    display: inline-block;
    padding: 12px 20px;
    width: 100%;
    height: 50px;
}

form textarea {
    resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
    position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

.hs-error-msgs label{
    color: #EF6B51;
}

/* Submit button */

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

form .inputs-list>li {
    margin-top: 0;
}

/* Captcha */

.grecaptcha-badge {
    margin: 0 auto;
}

@media (max-width: 767px){
    form input[type=email],
    form input[type=file],
    form input[type=number],
    form input[type=password],
    form input[type=search],
    form input[type=tel], 
    form input[type=text],
    form select,
    form textarea{
        height: 45px;
        padding: 12px 15px;
        border-radius: 2.869px;
    }
}



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

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

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

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

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

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header--no-navigation .flex_row {
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    vertical-align: middle;
}

header.header.header--no-navigation {
    padding: 20px 0;
}


.body-wrapper {
    overflow-x: hidden;
}



@media (min-width: 768px){
    .btn-wrap a.hs-button {
        font-weight: 500;
        font-size: 18px;
    }
    .header--no-navigation .btn-wrap a.hs-button{
        letter-spacing: -0.035em;
    }
}

@media (max-width: 767px){
    .header--no-navigation .btn-wrap a.hs-button {
        letter-spacing: -0.02em;
    }
}

@media (max-width: 480px){
    .header-logo {
        max-width: 100px;
    }
    .btn-wrap .hs-button {
        font-size: 11px;
    }
}
/* ===== footer ===== */
footer.footer {
    padding: 60px 0;
}

footer.footer .flex_row {
    row-gap: 30px;
}


.footer--no-navigation .flex_row {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

.social-item {
    font-size: 0;
}

.social-item .icon {
    display: inline-block;
    padding: 10px;
}

.social-icon {
    text-align: center;
}

.hs_error_rollup {
    display: none;
}
.social-item .icon {
    width: 40px;
    height: 40px;
    background: rgb(52, 152, 219);
    border-radius: 10px;
    border: 1px solid #3498db;
    margin: 0 10px;
}

.social-item .icon a svg {
    width: 1em;
    height: 1em;
}

.social-item .icon svg {
    width: 100%;
    fill: #fff;
    height: 100%;
    overflow: hidden;
    display: block;
    vertical-align: middle;
}

.social-item {
    display: inline-block;
}

.footer.main_foot .social-icon {
    text-align: left;
    line-height: 0;
    margin-bottom: 25px;
}

.footer.main_foot .social-item .icon:first-child {
    margin-left: 0;
}

.footer.main_foot .addressSec{
    display: flex;
    align-items: center;
}

.footer.main_foot .addressSec svg {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

footer.footer .leftcol {
    width: 50%;
}

footer.footer .rightcol {
    width: 50%;
    text-align: right;
}


footer.footer .footer_menu .hs-menu-wrapper>ul {
    justify-content: flex-end;
    margin-bottom: 28px;
    flex-direction: unset;
    margin-top: 13px;
}

footer.footer .footer_menu .hs-menu-wrapper>ul>li::after {
    content: '';
    position: relative;
    border-right: 1px solid;
    padding-left: 20px;
    display: inline;
}

footer.footer .footer_menu .hs-menu-wrapper>ul>li {
    position: relative;
    padding-right: 20px;
}

footer.footer .footer_menu .hs-menu-wrapper>ul>li:last-child {
    padding-right: 0;
}

footer.footer .footer_menu .hs-menu-wrapper>ul>li:last-child::after {
    display: none;
}

footer.main_foot {
    padding-top: 46px;
}

.footer.main_foot .addressSec .hs_cos_wrapper_type_text {
    line-height: 1.63;
}
.social-item .icon:hover {
    background-color: #fff;
}

.social-item .icon:hover svg,.social-item .icon:hover svg path {
    fill: rgb(52, 152, 219);
}


@media (max-width: 767px){
    footer.footer .rightcol {
        width: 100%;
    }
    footer.footer .leftcol {
        width: 100%;
    }
    .footer.main_foot .addressSec svg {
        margin-right: 10px;
    }
    footer.main_foot {
        padding-top: 55px;
        padding-bottom: 35px;
    }
    footer.footer .footer_menu .hs-menu-wrapper>ul {
        margin-top: 0;
        margin-bottom: 30px;
    }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}













/* 1a. Containers */




/* 1b. Colors */



/* 1c. Typography */

/* global_fonts */














/* typo fonts */























































/* 1f. Tables */




















.content-wrapper {
    max-width: 1250px;
    margin: 0 auto;
}

.dnd-section,
.content-wrapper--vertical-spacing {
    padding: 80px 0px;
}

.dnd-section > .row-fluid {
    max-width: 1250px;
    margin: 0 auto;
}





html {
    font-size: 16px;
}

body {
    font-size: 16px;
    color: #576A80;
    font-weight: 400;
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
}

/* Paragraphs */


/* Anchors */

a {
    color: #FF8B42;
}

a:hover,
a:focus,
a:active {
    color: #FF8B42;
}

/* Headings */

h1 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 48px;
    color: #272727;
    font-weight: 700;
}

h2 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 34px;
    color: #272727;
    font-weight: 700;
}



h3 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 28px;
    color: #272727;
    font-weight: 700;
}

h4 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 26px;
    color: #272727;
    font-weight: 700;
}

h5 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 18px;
    color: #272727;
    font-weight: 400;
}

h6 {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 16px;
    color: #272727;
    font-weight: 400;
}


@media (min-width: 768px) and (max-width: 991px){
    h1 {
        font-size: 30.0px;
    }
    h2 {
        font-size: 21.99999999968px;
    }
    h3 {
        font-size: 21.99999999988px;
    }
}

@media (max-width: 767px){
    h1 {
        font-size: 30.0px;
    }
    h2 {
        font-size: 21.99999999968px;
    }
    h3 {
        font-size: 21.99999999988px;
    }
    h5 {
        font-size: 13.99999999986px;
    }
    body{
        font-size: 14.0px;
    }
}
/* Blockquote */

blockquote {
    border-left-color: 

  
  
    
  


  rgba(39, 39, 39, 1)

;
}












/* 1e. Forms */














/* Form title */

.form-title,
h3.form-title {
    color: #272727;
    
    background-color: 

  
  
    
  


  rgba(0, 0, 0, 0.0)

;

}

/* Form label */

form label {
    color: #272727;
}

/* Form help text */

form legend {
    color: #272727;
}

/* Form inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
    background-color: 

  
  
    
  


  rgba(5, 5, 51, 0.1)

;
    border-radius : 5px;
}


/* Form placeholder text */

::-webkit-input-placeholder {
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
}

/* Date picker */

.fn-date-picker td.is-selected .pika-button {
    background: 

  
  
    
  


  rgba(87, 106, 128, 1)

;
}

.fn-date-picker td .pika-button:hover {
    background-color: 

  
  
    
  


  rgba(87, 106, 128, 1)

 !important;
}

.fn-date-picker td.is-today .pika-button {
    color: 

  
  
    
  


  rgba(87, 106, 128, 1)

;
}

/* Submit button */



/* 1d. Buttons */











form input[type=submit],
form .hs-button,
.hs-cst-btn,
.hs-button{
    background-color: 

  
  
    
  


  rgba(50, 61, 104, 1.0)

;
    border: 1px solid #323D68;
    border-radius: 42px;
    color: #FFF;
    padding: 10px 30px;
}

form input[type=submit]:hover,
form .hs-button:hover,
.hs-cst-btn:hover,
.hs-button:hover{
    background-color: 

  
  
    
  


  rgba(70, 101, 229, 1.0)

;;
    border-color: #4665E5;
    color: #FFF;
}


button,
.button {
    background-color: 

  
  
    
  


  rgba(50, 61, 104, 1.0)

;
    border: 1px solid #323D68;
    border-radius: 42px;
    color: #FFF;
    padding: 10px 30px;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    background-color: 

  
  
    
  


  rgba(70, 101, 229, 1.0)

;
    border-color: #4665E5;
    color: #FFF;
}






table {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
    border-color: #576A80;
}

th,
td {
    border-color: #576A80;
    color: #576A80;
}

thead th,
thead td {
    background-color: 

  
  
    
  


  rgba(10, 51, 128, 1.0)

;
    border-bottom-color: #576A80;
    color: #FFFFFF;
}

tfoot td {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
    color: #576A80;
}






/* 1g. Site header */






















.header .content-wrapper{
    max-width: %
}

.header-inner {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

.header .hs-menu-wrapper>ul>li > a{
    color: 

  
  
    
  


  rgba(8, 41, 102, 1)

;
    
}

.header .hs-menu-wrapper>ul>li > a{
    color: 

  
  
    
  


  rgba(8, 41, 102, 1)

;
    
}



.header .hs-menu-wrapper>ul> li > a:hover{
    color: 

  
  
    
  


  rgba(255, 139, 66, 1)

;
    background-color: 

  
  
    
  


  rgba(0, 0, 0, 0.0)

;
}

.header .hs-menu-wrapper>ul ul {
    background-color: 

  
  
    
  


  rgba(245, 245, 247, 1)

;
}

.header .hs-menu-wrapper>ul ul > li > a:hover{
    color: 

  
  
    
  


  rgba(255, 139, 66, 1)

;
    background-color: 

  
  
    
  


  rgba(0, 0, 0, 0.0)

;
}

.header .hs-menu-wrapper>ul ul > li > a{
    color: 

  
  
    
  


  rgba(8, 41, 102, 1)

;
}

.header .hs-menu-wrapper >ul > li > a.active,
.header .hs-menu-wrapper >ul > li > a.active-branch {
    color: 

  
  
    
  


  rgba(8, 41, 102, 1)

;
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.0)

;
}

.header .hs-menu-wrapper >ul ul > li > a.active,
.header .hs-menu-wrapper >ul ul > li > a.active-branch {
    color: 

  
  
    
  


  rgba(8, 41, 102, 1)

;
    background-color: 

  
  
    
  


  rgba(0, 0, 0, 0.0)

;
}

.header .hs-menu-wrapper>ul>li ul >li.has-submenu>a {
    border-bottom: 1px solid ;
}

.header-cta .cta_button{
    color: #1e2b2f;
    background-color: #68ddd5;
    border-color: #68ddd5;
}

.header-cta .cta_button:hover {
    color: #1e2b2f;
    background-color: #68ddd5;
    border-color: #68ddd5;
}
.header-cta .cta_button:hover::after {
    color: #1e2b2f;
}

.header-search .promagnifier .innericon svg {
    fill: ;
}







/* 1h. Site footer */












.footer {
    background-color: 

  
  
    
  


  rgba(50, 61, 104, 1.0)

;
    color: #FFF;
}

.bottom-footer .content-wrapper{
    max-width: %
}

/* Footer Content */

.footer,
.footer .top-footer .hs-menu-wrapper>ul>li>ul>li>a{
    color: #FFF;
}

.top-footer .hs-menu-wrapper>ul>li>ul>li ul li a{
    color: #FFF;
}

.top-footer .hs-menu-wrapper>ul>li>ul>li ul li a:hover{
    color: #FFF;
    border-bottom-color: ;
}

.footer_menu a{
    color: #FFF;
}
.footer_menu a:hover{
    color: #FFF;
}

.bottom-footer .hs-menu-wrapper a,
.mobile-bottom-menu .hs-menu-wrapper>ul>li>a{
    color: ;
}

.bottom-footer .hs-menu-wrapper a:hover,
.mobile-bottom-menu .hs-menu-wrapper>ul>li:last-child:hover a{
    color: ;
}

.footer-social>ul>li>a::before{
    color: ;
}

.footer-social>ul>li>a:hover::before{
    color: ;
}


.cta_button a, .templatebutton a{background-color: rgb(255, 255, 255);color:#000!important;border-radius: 42px;padding: 12px 30px;font-weight: 500;display:inline-block;transition: all 0.15s linear;}
.cta_button a:hover{background: rgb(52, 152, 219);color:#fff!important;}
.templatebutton a:hover{background-color: rgba(70, 101, 229, 1.0);border-color: #4665E5;}
.templatebutton a{background-color: rgba(50, 61, 104, 1.0);border: 1px solid #323D68;color:#fff!important;}

.headernonav_wrap.flex_row {justify-content: space-between;align-items: center;}
.templatebutton + .templatebutton{margin-left:30px;}
.landingpagev1 .footer.footer--no-navigation {padding-top: 290px;}
.landingpagev1 .advd_cont {padding-top: 100px;}







/* Blog Header */

.blog-header {
    background-color: rgb(#null);
}

/* Blog Listing */

.blog-index__post-inner-card {
    box-shadow: -5px 0px 20px 0px rgba(#null, 0.10);
}

.blog-tag-filter__menu-link,
.blog-post__tag-link,
.blog-card__tag-link,
.blog-post__author-name,
.blog-card__title a {
    color: #576A80;
}

.blog-card__tag-link:hover,
.blog-card__title a:hover,
.blog-tag-filter__menu-link:hover,
.blog-post__tag-link:hover,
.blog-post__author-name:hover,
.blog-card__tag-link:focus,
.blog-card__title a:focus,
.blog-tag-filter__menu-link:focus,
.blog-post__tag-link:focus,
.blog-post__author-name:focus {
    color: #FF8B42;
}

.blog-card__tag-link:active,
.blog-card__title a:active,
.blog-tag-filter__menu-link:active,
.blog-post__tag-link:active,
.blog-post__author-name:active {
    color: #FF8B42;
}

.blog-tag-filter__menu-link--active-item:after {
    background-color: #576A80;
}

.blog-pagination__link {
    color: #576A80;
}

.blog-pagination__link--active:after,
.blog-pagination__prev-link:after,
.blog-pagination__next-link:after {
    background-color: #576A80;
}

.blog-post__title {
    color: #272727;
    font-family:Poppins,Helvetica,Arial,Lucida,sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.blog-post__author {
    background-color: #272727;
}

#comments-listing .comment-reply-to {
    color: rgba(#null, 0.0);
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
    color: rgba(#null, 0.0);
}

#comments-listing .comment-reply-to:active {
    color: rgba(#null, 0.0);
}

/*             Blog Grid Listing and Post styles            */

.hs-blog-listing,
.hs-blog-post {
    background-color: ;
}

.blog-index__post-content a:hover,
.blog-sidebar a:hover,
.blog-post__meta a:hover,
.blog-post__back-to-blog:hover {
    color: #FF8B42;
}

.blog-post__read-more a:hover svg,
a.blog-post__back-to-blog:hover svg {
    fill: #FF8B42;
}

.blog-index__post-content--small h2 {
    font-size: 28px;
}

.blog-index__post-content a {
    color: #576A80;
}

.blog-post__read-more svg {
    fill: #576A80;
}

.blog-sidebar ul {
    box-shadow: -5px 0px 20px 0px rgba(#null, 0.10);
}

.blog-sidebar a {
    color: #576A80;
}

.blog__subscription-block, .blog-related-posts {
    background-color: rgb(#null);
}

.post-featured-image {
    max-height: px;
}

.blog-post {
    box-shadow: -5px 0px 20px 0px rgba(#null, 0.10);
}

.blog-post__meta a {
    color: #576A80;
}

.blog-post__meta a:hover {
    color: #FF8B42;
}

.blog-post__links-container {
    border-top:  2px solid rgb(#null);
}

.blog-post__back-to-blog {
    color: #576A80;
}

.blog-post__back-to-blog svg {
    fill: #576A80;
}

.comment.depth-0,
.blog-comments form {
    border-top: 2px solid rgb(#null) !important;
}

.comment.depth-1 {
    border-left: 2px solid rgb(#null);
}

.section.post-footer .hs-input {
    border-color: rgb(#null);
}

.blog-recent-posts {
    background-color: rgb(#null);
}











.d-flex{display:flex;flex-wrap:wrap}
.justifyBetween {justify-content: space-between;}
.alignCenter{align-items: center;}
.text-center{text-align:center;}

.twoColumnMd .content ul{padding: 0 0 0 23px;display: inline-block;}
.twoColumnMd .contentBox .title >*{margin-bottom:15px;}
.twoColumnMd .content ul li+li {margin-top: 7px;}
.landingpagev1 .advd_cont.twoColumnMd {padding-top: 0;}
.twoColumnMd .baseModuleStyle{background-position: 50% 60%!important;}




.card__price {
    font-family: Poppins,Helvetica,Arial,Lucida,sans-serif
        font-size: 28px;
    color: #272727;
    font-weight: 700
}

@media (min-width: 768px){
    .twoColumnMd .twoColOutter.rowReverse .contentBox{padding-left:55px;} 
    .twoColumnMd .twoColOutter .imgBox{text-align:center;}
    .twoColumnMd .twoColOutter.rowReverse .imgBox{text-align:left;}
    .twoColumnMd .imgBox {width: 35%;}
    .twoColumnMd .contentBox {width: calc(65% - 20px);}
    .twoColumnMd .twoColOutter + .twoColOutter{padding-top:80px;}   
    .rowReverse{flex-direction: row-reverse;}
}
@media (min-width: 992px){
    .cta_button a,.templatebutton a{font-size: 18px;}
    
}

@media (max-width: 991px){
    .cta_button a, .templatebutton a{padding: 10px 30px;font-weight:500;}
    .templatebutton+.templatebutton {margin-left: 10px;}
    .landingpagev1 .footer.footer--no-navigation {padding-top: 230px;}
    .templatebutton a{font-size:13px;}
    .cta_button a{font-size:16px;}
}
@media (max-width: 767px){
    .headerWithoutnavigation .templatebutton:nth-of-type(2) a{
        font-size:0;height: 40px;padding: 10px 20px;background-image: url(https://143523086.fs1.hubspotusercontent-eu1.net/hubfs/143523086/call_icon.svg);
        background-repeat: no-repeat; display: flex;align-items: center;background-position: center;width: 60px;
    }
    .logoContainer img {max-width: 114px;}
    
    .twoColumnMd .twoColOutter{justify-content: center;}
    .twoColumnMd .twoColOutter + .twoColOutter{padding-top:30px;}
    .twoColumnMd .contentBox {width: 100%;text-align: center;margin-top: 30px;}
    .twoColumnMd .imgBox img {max-width: 130px;}
    
    

    

}
@media (max-width: 374px){
    .headernonav_wrap.flex_row{justify-content: center;}
    .headerWithoutnavigation .templatebutton a{padding: 10px 15px;}
    .logoContainer{width:100%;text-align: center;margin-bottom: 10px;}
}