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

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

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

.banner-section .row-fluid [class*="span"] {
  min-height: 0;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}

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

.page-center {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.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;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: "Poppins";
  src: url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Poppins";
  src: url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: BootstrapPackageIcon;
  src: url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/bootstrappackageicon.eot") format("embedded-opentype"), 
    url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/bootstrappackageicon.woff") format("woff"),
    url("https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/bootstrappackageicon.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}


/* lato-regular - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src:
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
}

/* lato-700 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.eot'); /* IE9 Compat Modes */
  src: 
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.woff') format('woff'), /* Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/lato-v23-latin-700.svg#Lato') format('svg'); /* Legacy iOS */
}

/* merriweather-regular - latin */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: 
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-regular.svg#Merriweather') format('svg'); /* Legacy iOS */
}

/* merriweather-700 - latin */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  src: url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: 
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://8988291.fs1.hubspotusercontent-na1.net/hubfs/8988291/LEWA_Attendorn_June2021/fonts/merriweather-v30-latin-700.svg#Merriweather') format('svg'); /* Legacy iOS */
}


html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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;
  padding-left: 2rem;
}

ul li,
ol li {}

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

blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
}

/* 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: none;
  outline-color: none;
}

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

@media (max-width: 767px) {
  html { }
}

@media (max-width: 480px) {
  html { }
}
/* ******************************************************************************
*********************************************************************************
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;
  margin-bottom: 20px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-align: center;
  transition: background 0.3s ease-in-out;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-family: "Poppins",sans-serif;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 53px;
  
  white-space: normal;
  text-decoration: none;
}

.hs-button:hover {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
  white-space: normal;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  font-family: "Poppins",sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
}

.inputs-list.hs-error-msgs label {
  font-family: "Poppins",sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
  margin-top: .5rem;
  color: #f2545b !important;
}

.hs-error-msgs label {
  color: #f2545b !important;
}

.hs_error_rollup .inputs-list.hs-error-msgs label {

}

.hs-input, input#hs-pwd-widget-password {
  display: inline-block;
  width: 100% !important;
  height: 48px;
  padding: 1px 10px !important;
  font-family: "Poppins",sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #fff;
  border: 1px solid #9DBFC6;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.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;
  border-color: rgba(82, 168, 236, 0.8);
}

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

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



input#hs-pwd-widget-password {
  height: 48px !important;
  margin-top: 0 !important;
  width: 100% !important;
  margin-bottom: 18px;
}

#hs-search-module .hs-input {
  margin-bottom: 18px;
}
/* ******************************************************************************
*********************************************************************************
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 {
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 4px 24px #cedfe399;
  transform: translate3d(0,0,0) translateZ(1000px);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bg-header {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 40px;
  background-color: #F0F0F0;
}

.top-menu {
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  flex-grow: 1;
  align-items: center;
  display: flex;
  flex-basis: auto;
  padding: 0 12px;
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.top-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  flex-direction: row;
}

.top-menu .hs-menu-wrapper > ul > li:nth-child(1) {
  position: relative;
}

.top-menu .hs-menu-wrapper > ul > li:nth-child(1):before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  content: '';
  transform: skew( 
    -20deg
  );
}

.top-menu .hs-menu-wrapper > ul > li > a {
  padding: 11px 24px 9px 24px;
  position: relative;
  color: #3B3B3A;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.top-menu .hs-menu-wrapper > ul > li:nth-child(1) > a {
  color: #0A5E71;
  display: block;
}

.top-menu .hs-menu-wrapper > ul > li > a span {
  display: inline-block;
  vertical-align: middle;
}

.languages {
  margin-left: 48px;
  cursor: pointer;
  position: relative;
  display: flex;
}

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

.languages .hs-menu-wrapper > ul > li {
  align-self: center;
}

.languages .hs-menu-wrapper > ul > li > a {
  display: inline-block;
  color: #0a5e71;
  visibility: visible;
  height: auto;
  text-decoration: none;
}

.languages .hs-menu-wrapper > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  z-index: 999;
  transform: translateY(-200%);
}

.lang-active .languages .hs-menu-wrapper > ul > li > ul {
  transform: translateY(0);
}

.languages .hs-menu-wrapper > ul > li > ul > li > a {
  visibility: hidden;
  height: 0;
  color: #0a5e71;
  text-decoration: none;
}

.lang-active .languages .hs-menu-wrapper > ul > li > ul > li > a {
  visibility: visible;
  height: auto;
}

.active-language {
  align-self: center;
}

.languages .active-language .a {
  visibility: visible;
  display: inline-block;
  height: 0;
}

.languages a, 
.languages .a {
  visibility: hidden;
  height: 0;
  color: #0A5E71;
  text-decoration: none;
}

.lang-active .languages a, 
.lang-active .languages .a { 
  visibility: visible;
  height: auto;
}

.languages a img, 
.languages .a img {
  width: 26px;
  height: 17px;
  vertical-align: middle;
}

.languages .active-language svg.chevron {
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}

.lang-active .languages .active-language svg.chevron {
  transform: rotate(
    180deg
  );
}

.languages ul[role="menu"] li a {
  background-color: #fff;
  padding-right: .5rem;
  padding-left: .5rem;
  line-height: 1.75;
}

.languages .hs-menu-wrapper ul > li a:last-child {
  padding-bottom: .5rem;
}




.languages .hs-menu-wrapper > ul > li > svg.chevron {
  /* margin-left: 8px; */
  transition: transform 0.3s ease-in-out;
}

.lang-active .languages .hs-menu-wrapper > ul > li > svg.chevron {
  transform: rotate(
    180deg
  );
}



svg {
  overflow: hidden;
  vertical-align: middle;
}

.languages svg path {
  fill: #0A5E71;
}

.languages .langs {
  position: absolute;
  top: 100%;
  z-index: 999;
  transform: translateY(-200%);
}

.lang-active .languages .langs {
  transform: translateY(0);
}

.custom-logo {
  max-width: 60%;
  margin-right: 24px;

  max-width: 54%;
}

.custom-logo a {
  display: flex;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  height: 70px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  /*   margin-right: 24px; */
}

.custom-logo svg.navbar-brand-logo-normal {
  display: block;
  align-self: center;
}

.custom-logo svg.navbar-brand-logo-inverted {
  display: none;
}

.custom-menu-primary.desktop {
  height:40px;
  font-weight: 500;
  flex-grow: 1;
  align-items: center;
}

.custom-menu-primary.desktop .hs_cos_wrapper {
  width: 100%;
}

.custom-menu-primary.desktop .hs-menu-wrapper {
  display: flex;
  flex-basis: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 40px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

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

/* .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
  margin-left: auto;
} */

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff!important;
  padding: 1rem 0;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a span {
  display: inline-block;
  vertical-align: middle;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: underline;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a svg.chevron {
  margin-left: 8px;
  width: 11px;
  overflow: hidden;
  vertical-align: middle;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a svg.chevron path {
  fill: #0A5E71;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:last-child > a {
  /* padding: 1.7rem 0.3rem 1.7rem 1.5rem; */
  padding: 0.5rem 0.3rem 0.5rem 0.5rem;
  cursor: pointer;
  /* position: relative; */
  border: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > a:hover {
  /* padding: 1.7rem 0.3rem 1.7rem 1.5rem; */
  color: #fff !important;
}

.search-active .custom-menu-primary .hs-menu-wrapper > ul > li:last-child > a {
  border-bottom: 4px solid #0A5E71;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > a svg {
  display: block;
  overflow: hidden;
  vertical-align: middle;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > a svg path {
  fill: #fff;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a svg.fasearch {
  margin-left:0.5rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 25px 24px;
  width: 640px;
  border: none;
  box-shadow: 0 4px 24px #cedfe399;
  font-size: 1rem;
  color: #2b2b2b;
  text-align: left;
  background-clip: padding-box;
  display: none;
  min-width: 10rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > ul {
  display: block;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}
.header-search .dnd-section{
  padding:unset;
}

form.header-search {
  max-width: 100%;
  margin: 0;
}
.insearch_searchbox {
  margin: 0;
  border: 0;
  /* margin-top: 4px; */
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 24px #cedfe399;
  background: #fff;
  padding: 24px;
  min-width: 0;
  border: 0;
  visibility: hidden;
}
.custom-menu-primary.mobile .insearch_searchbox {
  margin-top: 5px;
}

.search-active .insearch_searchbox {
  visibility: visible;
}

.insearch_searchbox .insearchbox {
  position: relative;
  display: flex;
}

.insearch_searchbox input {
  height: 48px;
  border: 1px solid #9DBFC6;
  border-radius: 0;
  margin: 0;
  margin-right: 24px;
  display: inline-flex;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.insearch_searchbox input:focus {
  border: 1px solid #9DBFC6;
}

.insearch_searchbox button {
  position: relative;
  z-index: 0;
  padding: 15px 0;
  margin-left: 45px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: background 0.3s ease-in-out;
  border: none;
  color: #fff;
  background: #575756;
  text-align: center;
  vertical-align: middle;
  border-radius: 0;
  text-transform: none;
  overflow: visible;
  display: inline-flex;
  margin-right: 40px;
  cursor: pointer;
}

.insearch_searchbox button:before, 
.insearch_searchbox button:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  transform: skew(
    -20deg
  );
  z-index: -1;
  transition: background 0.3s ease-in-out;
  background: #575756;
}

.insearch_searchbox button:before {
  right: -35px;
}

.insearch_searchbox button:after {
  left: -35px;
}

.insearch_searchbox button:hover {
  background: #AB1C37;
  color: #fff;
}

.insearch_searchbox button:hover:before, 
.insearch_searchbox button:hover:after {
  background: #AB1C37;
}

.body-wrapper {
  padding-top: 70px;
}
.body-wrapper.hs-landing-page {
  padding-top: 150px;
}

.search-mobile {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  height: 40px;
  width: 55px;
  text-align: center;
  display: none;
}

.search-mobile svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  vertical-align: middle;
}

.search-mobile svg path {
  fill: #6C9EAA;
}

.mobile-trigger {
  height: 70px;
  width: 55px;
  position: relative;
  text-align: right;
}

.mobile-trigger button {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  width: 22px;
  padding: 0;
  height: 34px;
  border: 0;
  margin: 0;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  overflow: visible;
  border-radius: 0;
  cursor: pointer;
}

.mobile-open .mobile-trigger button:after {
  position: absolute;
  content: '';
  top: 45px;
  left: -15px;
  right: -15px;
  height: 4px;
  background: #0A5E71;
}

.mobile-trigger button .toggler-icon {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition-delay: 0.2s;
  height: 2px;
  display: inline-block;
  width: 22px;
  background-color: currentColor;
  transition: all 0.3s ease-in;
}

.mobile-open .mobile-trigger button .toggler-icon {
  background-color: transparent;
  height: 0;
}

.mobile-trigger button .toggler-icon:before,
.mobile-trigger button .toggler-icon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: none;
  display: inline-block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease-in;
}

.mobile-trigger button .toggler-icon:before {
  transition-delay: 0.1s;
  transform: rotate(0);
  top: -6px;
}

.mobile-open .mobile-trigger button .toggler-icon:before {
  transition-delay: 0.1s;
  transform: rotate(
    -45deg
  );
  top: 0;
}

.mobile-trigger button .toggler-icon:after {
  transition-delay: 0.1s;
  transform: rotate(0);
  top: 6px;
}

.mobile-open .mobile-trigger button .toggler-icon:after {
  transition-delay: 0.1s;
  transform: rotate(
    45deg
  );
  top: 0;
}

.mobile-dropdown-button {
  transform: translateX(-30px);
  position: absolute;
  top: 0;
  left: 245px;
  width: 40px;
  height: 40px;
  padding: 0 12px;
  cursor: pointer;
  align-items: center;
  display: flex;
}

.mobile-dropdown-button svg {
  overflow: hidden;
  vertical-align: middle;
  transition: transform 0.3s ease-in-out;
}

.mobile-dropdown-button svg path {
  fill: #0A5E71;
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a svg.chevron-left,
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a svg.chevron-left {
    margin-right:0.5rem;
  }


@media (min-width: 576px) {

  .body-wrapper {
    padding-top: 70px;
  }

  .custom-menu-primary.desktop,
  .custom-menu-primary.mobile {
    max-height: calc(100vh - 70px);
  }
}

@media (min-width: 768px) {

  .body-wrapper {
    padding-top: 100px;
  }

  .custom-logo a {
    height: 100px;
  }

  .custom-menu-primary.desktop,
  .custom-menu-primary.mobile {
    max-height: calc(100vh - 100px);
  }
}

@media (min-width: 992px) {

  .custom-menu-primary.mobile {
    display: none !important;
  } 

  .mobile-dropdown-button {
    display: none;
  }

  .body-wrapper {
    padding-top: 80px;
  }

  .custom-logo a {
    height: 80px;
  }

  .header__container {
    flex-wrap: nowrap;
  }

  .top-menu .hs-menu-wrapper > ul {
    display: flex;
  }

  .custom-menu-primary.desktop {
    display: flex;
    flex-basis: auto;
    max-height: calc(100vh - 80px);
    margin-left: auto;
    margin-right: auto;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    /* margin-left: auto;
    margin-right: -1rem; 
    padding: 0 0 0 3.5vw;*/
    flex-direction: row;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    /* padding: 1.7rem 1.5rem; */
    padding: 0.5rem 1.5rem;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child > a {
    padding-left: 0rem;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:first-child {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:nth-child(2) {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:nth-child(2) .custom-row > ul > li {
    cursor: pointer;
    float: left;
    padding: 0 6px;
    width: 50%;
    display: inline-block;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:nth-child(2) .custom-row > ul > li a {
    padding: 0;
    width: 100%;
    font-weight: 500;
    white-space: normal;
    color: #0A5E71;
    position: relative;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.6s ease-in-out;
    text-decoration: none;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:nth-child(2) .custom-row > ul > li .anchor-wrap:hover a {
    color: #fff;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child .row > li:nth-child(2) .custom-row > ul > li:nth-child(2) a {
    margin-bottom: 0.25rem;
    margin-bottom: 0;
  }

  .custom-menu-primary.desktop .custom-row {
    width: 100%;
    margin-left: -12px;
    margin-right: -12px;
  }

  .custom-menu-primary.desktop .anchor-wrap {
    margin-bottom: 12px;
    min-height: 100px;
    padding: 4px 8px;
    background: #F3F7F8;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s ease-in-out;
  }

  .custom-menu-primary.desktop .anchor-wrap:before {
    max-width: 0;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    content: '';
    position: absolute;
    background: #0A5E71;
    transition: max-width 0.8s ease-in-out;
  }

  .custom-menu-primary.desktop .anchor-wrap:hover:before {
    max-width: 500px;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child {
    padding: 24px 0 0;
    border-top: 1px solid #CEDFE3;
    text-align: center;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child:hover {
    text-decoration: underline;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    white-space: nowrap;
    color: #3B3B3A;
    text-decoration: none;
    justify-content: center;
  }

  .search-mobile,
  .mobile-trigger {
    display: none;
  }
}


@media (min-width: 1200px) {

  .body-wrapper {
    padding-top: 80px;
  }

  .custom-logo a {
    height: 80px;
  }

  .custom-menu-primary.desktop {
    max-height: calc(100vh - 80px);
  }
}


/* @media (max-width: 1330px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
    margin-left: auto;
    margin-right: 12px;
  }
} */

@media (max-width: 1065px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
    left: -75px;
  }
}

@media (max-width: 991.98px) {

  .languages {
    position: absolute;
    right: 15px;
    top: 7px;
  }

  .top-menu {
    overflow: hidden;
  }

  .top-menu .hs-menu-wrapper > ul {
    height: 40px;
    transition: height 0.3s ease-in-out;
    position: relative;
    padding: 0 6px;
  }

  .top-menu .hs-menu-wrapper > ul:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: skew(
      -20deg
    );
    background: #fff;
    max-height: 40px;
  }

  .top-menu .hs-menu-wrapper > ul > li {
    min-width: 240px;
  }

  .top-menu .hs-menu-wrapper > ul > li:not(.active) {
    /* opacity: 0;
    visibility: hidden;
    height: 0; */
    opacity: 1;
    visibility: visible;
    height: auto;
  }

  .top-menu .hs-menu-wrapper > ul > li > a {
    /*     margin-left: -12px;
    margin-right: -12px; */
  }


  .top-menu .hs-menu-wrapper > ul > li {
    min-width: 150px;
  }

  .top-menu .hs-menu-wrapper > ul > li:not(:nth-child(1)) {
    display: none;
  }
}


@media (max-width: 991px) {

  .custom-menu-primary.desktop {
    display: none !important
  }

  /* .custom-menu-primary.mobile {
    box-shadow: 0 0 24px #cedfe399;
    font-weight: 500;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    display: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul {
    padding: 0 0 5rem 0;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
    margin-left: -12px;
    margin-right: -12px;
    color: #3B3B3A;
    padding: 1rem 0;
    border-bottom: 1px solid #CEDFE3;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a svg.chevron {
    margin-left: auto;
    height: 24px;
    width: 24px;
    padding-left: 11px;
    transform: rotate(
      0deg
    );
    transition: transform 0.3s ease-in-out;
  }  

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a svg.chevron path {
    fill: #0A5E71;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li.active > a svg.chevron {
    transform: translateX(12px) rotate(
      180deg
    );
    transform-origin: center;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    margin: 0 -12px;
    padding: 1.3rem 0;
    border-bottom: 1px solid #CEDFE3;
    padding-top: calc(1.3rem + 8px);
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a {
    background: #F3F7F8;
    color: #0A5E71;
    padding: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 999;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a:hover {
    color: #fff;
    background: #0A5E71;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child {
    margin-left: -12px;
    margin-right: -12px;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child > a {
    margin: 0;
    padding: 0;
    border: none;
  } */

  /* form.header-search {
    cursor: auto;
    position: static;
    height: auto;
    width: 100%;
    text-align: center;
    margin: 0;
    margin-top: 25px;
  } */

  /* .insearch_searchbox {
    overflow: hidden;
    box-shadow: none;
    position: relative;
    padding: 2px;
    display: flex;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #fff;
    min-width: auto;
    border: 0;
    visibility: visible;
  }

  .insearch_searchbox .insearchbox {
    margin: 0 auto;
    display: flex;
    position: relative;
  }

  .insearch_searchbox input {
    height: 48px;
    border: 1px solid #9DBFC6;
    border-radius: 0;
    margin: 0;
    margin-right: 24px;
    display: inline-flex;
    width: 50%;
    overflow: visible;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  } */
}


.navbar-transition .custom-logo a {
  height: 80px;
}


@media (max-width: 767.98px) {

  .languages {
    margin-left: auto;
  }


  .mobile-dropdown-button {
    display: none;
  }
}


@media (max-width: 380px) { 

  .mobile-dropdown-button {
    left: 210px;
  }
}


@media (max-width: 375px) {

  .search-mobile,
  .mobile-trigger {
    width: 42px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
}

.footer__container {
  margin: 0 auto;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.menu-title-wrapper {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  align-self: center;
}

.menu-title {
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.footer-top-menu {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.footer-top-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  flex-direction: row;
}

.footer-top-menu .hs-menu-wrapper > ul > li {
  display: inline-block;
}

.footer-top-menu .hs-menu-wrapper > ul > li > a {
  display: block;
  padding: 0.5rem 0;
  color: #0a5e71;
  font-weight: 500;
  text-decoration: none;
}

.footer-top-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #04242b;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 3rem;
  box-shadow: 0 4px 24px #cedfe3;
  overflow: hidden;
}

.footer-logo-wrapper {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.footer-text p {
  /* padding: 48px 175px 15px 39px; */
  padding: 48px 175px 15px 36px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 1rem;

  word-break: break-word;
  /* padding: 48px 0 15px 0; */
}

.footer-menu-left {
  position: relative;
  width: 100%;
  /*   padding-right: 12px;
  padding-left: 12px; */
}

.footer-menu-left .hs-menu-wrapper > ul,
.footer-menu-right .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /*   margin-bottom: 1rem; */
  display: block;
}

.footer-menu-left .hs-menu-wrapper > ul > li,
.footer-menu-right .hs-menu-wrapper > ul > li {
  /*   line-height: 2; */
  margin-bottom: 1rem;
}

.footer-menu-left .hs-menu-wrapper > ul > li > ul > li,
.footer-menu-right .hs-menu-wrapper > ul > li > ul > li {
  line-height: 2;
}

.footer-menu-left .hs-menu-wrapper > ul > li > a,
.footer-menu-right .hs-menu-wrapper > ul > li > a {
  /*   font-weight: 500;
  text-decoration: none; */
}

.footer-menu-left .hs-menu-wrapper > ul > li > ul > li > a,
.footer-menu-right .hs-menu-wrapper > ul > li > ul > li > a {
  font-weight: 500;
  text-decoration: none;
}

.footer-menu-left .hs-menu-wrapper > ul > li > a:hover,
.footer-menu-right .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: underline;
}

.footer-menu-left .hs-menu-wrapper > ul > li > ul > li > a:hover,
.footer-menu-right .hs-menu-wrapper > ul > li > ul > li > a:hover {
  text-decoration: underline;
}

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

.footer-menu-left .hs-menu-wrapper > ul > li {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.footer-menu-right {
  /*   position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px; */
}

.footer-social-wrapper {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.footer-sociallinks .sociallinks {
  overflow: hidden;
}

.footer-sociallinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: -0.5rem;
  display: block;
}

.footer-sociallinks ul li {
  margin: 0.5rem;
  height: 1.5rem;
  width: 100%;
  display: inline-block;
  line-height: 2;
}

.footer-sociallinks ul li a {
  color: #0a5e71;
  width: 100%;
  height: 1.5rem;
  position: relative;
  font-weight: 500;
  font-size: 0.63rem;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

.sociallinks-link-icon {
  margin-right: 6px;
  font-size: 1.25rem;
  text-align: center;
  opacity: 0.8;
  vertical-align: middle;
}

.sociallinks-link-label {
  margin-left: 0;
  vertical-align: middle;
  font-size: 0.63rem;
}

.footer hr {
  margin-top: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  background-color: transparent;
  color: transparent;
}

.footer-copyright {
  margin-bottom: 3rem;
  font-size: 0;
}

.footer-copyright p {
  margin: 0;
  margin-right: 8rem;
  font-weight: 700;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
}

.bottom-menu {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
}

.bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.bottom-menu ul li {
  line-height: 2;
  margin-right: 3rem;
}

.bottom-menu ul li a {
  font-weight: 500;
  text-decoration: none;
}

.bottom-menu ul li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .menu-title-wrapper {
    /*     flex: 0 0 50%;
    max-width: 50%; */
  }

  .footer-top-menu {
    /*     flex: 0 0 50%;
    max-width: 50%; */
  }

  .footer-top-menu .hs-menu-wrapper > ul > li {
    text-align: right;
    display: table-cell;
  }

  .footer-logo-wrapper {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .footer-menu-left {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .footer-menu-left {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-menu-right {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .footer-menu-left .hs-menu-wrapper > ul > li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-social-wrapper {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .footer-sociallinks ul li a {
    height: 1.7rem;
  }
}

@media (min-width: 992px) {
  .menu-title-wrapper {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .footer-top-menu {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 1200px) {
  .footer__container .menu-title-wrapper,
  .footer-top-menu {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .footer-logo svg {
    max-width: 260px;
    width: 100%;
  }

  .footer-text p {
    padding: 48px 15px 15px 0;
  }
}

@media (max-width: 767.98px) {
  .footer-top-menu .hs-menu-wrapper > ul > li {
    margin-right: 2rem;
    min-width: 40%;
  }

  .footer-text p {
    padding: 2rem 0 1rem;
    max-width: 312px;
  }

  .footer-sociallinks ul {
    margin: 0;
  }

  .footer-sociallinks ul li {
    margin: 0;
    width: 33%;

    width: 32%;
  }

  .footer-sociallinks ul li a {
    height: 2rem;
  }

  .sociallinks-link-icon {
    font-size: 1.8rem;
  }

  .footer-copyright p {
    margin-right: 2rem;
  }

  .bottom-menu ul li {
    margin-right: 2rem;
  }
}
@media (max-width: 470px) {
  .footer-top-menu .hs-menu-wrapper > ul{
  display:flex;
  flex-direction:column;
  }
}
@media (max-width: 575.98px) {
  .footer-logo svg {
    max-width: 155px;
  }
}
/* ******************************************************************************
*********************************************************************************
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
*********************************************************************************
****************************************************************************** */

.section.post-footer .actions {
  text-align: left;
}

.blog-comments .hs-submit {
  text-align: center;
  margin-top: 30px;
}

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

input[type="search"]::-webkit-search-cancel-button { 
  display:none; 
}

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

.grecaptcha-badge {
  margin-left: 0;
}

/* TODO: Find a better place for this */
.content-wrapper {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}

.hs-blog-listing, 
.hs-blog-post {
  font-weight: 400;
}

.blog-top-spacer {
  min-height: 2.5rem;
}


.blog-top-header {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hs-blog-listing .blog-top-header {
  padding-bottom: 0rem;
}
.hs-blog-listing .blog-list-wrap{
  padding-top: 0rem;
}

.blog-top-header h3 {
  font-size: 1rem;
  color: #3B3B3A;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 0.5rem;
}

.blog-top-header h2 {
  color: #0A5E71;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 1rem;
}

.blog-top-header P {
  max-width: 426px;
  font-weight: 300;
  color: #3B3B3A;
  margin: 0;
}

.blog-list-wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.breadcrumb-section ol {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #CEDFE3;
  display: flex;
  flex-wrap: wrap;
}

/* .breadcrumb-section ol li {
  display: flex;
} */

.breadcrumb-section ol li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A5E71;
  text-decoration: none;
}

.breadcrumb-section ol li a:hover {
  color: #04242b;
  text-decoration: underline;
}

.breadcrumb-section ol li a span {
  color: #0A5E71;
  font-size: 0.9rem;
}

.breadcrumb-section ol li span {
  color: #0A5E71;
  color: #3B3B3A;
  font-size: 0.9rem;
}

.breadcrumb-section ol li svg {
  margin: 0 8px;
  width: 16px;
  height: 16px;
}


.cat-options-wrapper button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-shadow: none;
  background: transparent;
  border: 1px solid #CEDFE3;
  padding: 32px;
  position: relative;
  margin-right: 24px;
  text-transform: lowercase;
}

.cat-options-wrapper b {
  font-weight: 700;
}

.cat-options-wrapper a, 
.cat-options-wrapper a:hover {
  color: #000;
  text-decoration: none;
}

a.topic-link-pos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.blog-list-wrap hr {
  margin: 80px 0;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  color: transparent;
  background-color: transparent;;
}

.post-listing {
  margin: -10px;
  margin-bottom: -10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.post-item {
  /* padding: 17px; */
  padding:10px;
  padding-bottom: 3rem;
}

.post-item-inner {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: none;
  background: none;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  transition: background 0.3s ease-in-out;
}

a.post-item-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-item__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.blog-item__image img {
  width: 100%;
  height: auto;
  height: 260px;
  object-fit: cover;
  vertical-align: middle;
}

.blog-item__image:before {
  width: 100%;
  height: 100%;
  /* background: #0A5E71; */
  content: '';
  left: 0;
  top: 0;
  position: absolute;
  max-width: 0;
  max-height: 0;
  transition: max-width 0.6s ease-in-out,max-height 1s ease-in-out;
}
.blog-item__image:after {
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  position: absolute;
  mix-blend-mode: screen;
  background: transparent    linear-gradient(90deg, #0a5e71 0%, #0a5e71 62%, #ab1c37 100%) 0% 0%    no-repeat padding-box;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.post-item:hover .blog-item__image:after {
  background: transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.blog-item__image:hover:before {
  max-width: 400px;
  max-height: 400px;
}

.post-item .card-category {
  display: none !important;
  position: absolute;
  padding: 12px 12px 12px 40px;
  color: #fff;
  transform: translateX(-28px);
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: lowercase;
}

.post-item-inner.no-ft .card-category {
  position: relative;
  width: auto;
  display: inline-block;
}

.post-item .card-category .skew {
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  transform: skew(
    -20deg
  );
  background: #0A5E71;
  color: #fff;
  fill: #fff;
  z-index: -1;
  width: 100%;
  min-width: 200px;
}

.post-item-inner.no-ft .card-category .skew {
  width: auto;
}

.post-item .card-body {
  flex: 1 1 auto;
  min-height: 1px;
  /* padding: 32px 0 0; */
  padding: 24px 30px 30px 30px;

  position: relative;
}

.post-item .card-body p {
  color: #0A5E71;
  margin: 0;
}

.post-item .card-body p a {
  color: #0A5E71;
  text-decoration: none;
}

.post-item .card-body p a:hover {
  color: #0A5E71;
  text-decoration: underline;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 3.3rem;
  margin-bottom: 3.3rem;
}
.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;
}



/* Post Page Styling */

.blog-post__body {
  font-weight: 300;
  color: #3B3B3A;
}

.blog-post__body h2,
.blog-post__body h3 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.blog-top-header h2 {
  font-size: 1.5rem;
}


.author-left-section {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.author-left-section .frame,
.author-right-section .frame {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.author-left-section h3 {
  font-size: 1rem;
  color: #3B3B3A;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.author-left-section h2 {
  font-size: 1.5rem;
  color: #0A5E71;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 1rem;
}

.author-left-section p {
  max-width: 426px;
  font-weight: 300;
  color: #3B3B3A;
  margin-bottom: 0;
}

.author-right-section {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.textpic-gallery {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  order: 1;
  width: 100%;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}

.gallery-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100%;
}

.author-right-section figure {
  display: block;
  margin: 0 0 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.author-right-section picture {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.author-right-section .gallery-item img {
  width: 156px;
  height: auto;
  border-radius: 50%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  vertical-align: middle;
}

.textpic-text {
  background: #F3F7F8;
  padding: 64px 30px 30px;
  margin-top: -45px;
  position: relative;
  order: 1;
  width: 100%;
}

.textpic-text h3 {
  font-size: 1.17em;
  font-weight: 700;
  line-height: 1.5;
  color: #0A5E71;
  margin: 0;
  margin-bottom: 1rem;
}

.textpic-text p {
  font-weight: 300;
  color: #3B3B3A;
  margin: 0;
  margin-bottom: 1rem;
}

.textpic-text p.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.textpic-text p:last-child {
  margin-bottom: 0;
}

.textpic-text p a {
  font-weight: 500;
  color: #0A5E71;
  text-decoration: none;
}

.textpic-text p a:hover {
  color: #04242b;
  text-decoration: underline;
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.left-panel {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.right-panel {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.right-panel .frame {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-bottom-form-wrapper {
  padding-bottom: 3rem;
}

.blog-bottom-form {
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 24px #cedfe3;
  height: 100%;
}

.blog-bottom-form h3 {
  font-size: 1.17em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 0.5rem;
  color: #0A5E71;
}

.blog-bottom-form h3 b {
  font-weight: 700;
}

.blog-bottom-form h3 label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.blog-bottom-form .help-block {
  padding-right: 25%;
}

.blog-bottom-form .field {
  cursor: pointer;
  width: 33%;
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 33px;
  margin-right: 0;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}

.blog-bottom-form form {
  max-width: 100%;
  margin: 0;
}

.blog-bottom-form .hs-input[type=checkbox] {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  /*   opacity: 0; */
  box-sizing: border-box;
  padding: 0;

  left: -1.5rem;
}

.blog-bottom-form .inputs-list {
  margin: 0;
  padding: 0;
}

.blog-bottom-form .inputs-list label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.blog-bottom-form .inputs-list label span {
  vertical-align: unset;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.blog-bottom-form .inputs-list label:before {
  /*   position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out; */
}

.blog-bottom-form .inputs-list label:after {
  /*   position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%; */
}









.blog-top-form .form-columns-3 .field {
  cursor: pointer;
  width: 33% !important;
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 33px;
  margin-right: 0;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;

  float: none !important;
  margin-top: 0;
}

.blog-top-form form {
  max-width: 100%;
  margin: 0;
}

.blog-top-form .hs-input[type=checkbox] {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem !important;
  height: 1.25rem;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  /*   left: -1.5rem; */
}

.blog-top-form .inputs-list {
  margin: 0;
  padding: 0;
}

.blog-top-form .inputs-list label {
  /*   position: relative; */
  margin-bottom: 0;
  vertical-align: top;
}

.blog-top-form .inputs-list label span {
  vertical-align: unset;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.blog-top-form .inputs-list label:before {
  /*   position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out; */
}

.blog-top-form .inputs-list label:after {
  /*   position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%; */
}


.blog-top-form .inputs-list label span:before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
  transition: background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;

  left: 0;
}

.blog-top-form .inputs-list label span:after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;

  left: 0;
}

.blog-top-form .hs-input[type=checkbox]:checked + span:before {
  color: #fff;
  border-color: #0A5E71;
  background-color: #0A5E71;
}

.blog-top-form .hs-input[type=checkbox]:checked + span:after {
  background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e);
}


.blog-top-form .hs-input[type=checkbox]:focus+span:before {
  box-shadow: 0 0 0 0.2rem rgb(10 94 113 / 25%);
  border-color: #14bfe6;
}

.right-panel .textpic-text {
  padding: 30px;
}




.blog-top-form .hs-input {
  border: 1px solid #9DBFC6;
  color: #CEDFE3;
  padding: 43px 41px 9px 12px !important;
  height: 72px;
  display: block;
  width: 100%;
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

.blog-top-form .hs-input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #14bfe6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(10 94 113 / 25%);
}

.blog-top-form fieldset.form-columns-2 label {
  display: none;
}


.blog-top-form ::placeholder {
  color: #CEDFE3;
  opacity: 1;
}



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

.blog-top-form fieldset.form-columns-2 {
  /*   margin-left: -12px;
  margin-right: -12px; */
  display: flex;
  flex-wrap: wrap;
}

.blog-top-form fieldset:nth-child(6) {
  margin-bottom: 24px;
}

.blog-top-form fieldset.form-columns-2 .hs-form-field {
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
  float: none !important;
}

.blog-top-form fieldset.form-columns-2 .input {
  margin-right: 0 !important;
}

.blog-top-form fieldset.form-columns-2 .hs-form-field:first-child {
  padding-left: 0;
}

.blog-top-form fieldset.form-columns-2 .hs-form-field:nth-child(2) {
  padding-right: 0;
}

.blog-top-form fieldset.form-columns-2 .field {
  margin-bottom: 24px;
}


.blog-post__body {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.post-footer {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 100%;
  max-width: 100%;
}

.blog-post__body-inner {
  /*   max-width: 426px; */
}



@media (min-width: 576px) {

  .blog-top-form fieldset.form-columns-2 .hs-form-field {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-item {
    width: calc(100% / 2);
  }

  .blog-post__body h2,
  .blog-post__body h3 {
    font-size: 1.5rem;
  }

  .blog-top-header h2,
  .author-left-section h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {

  .blog-post__body,
  .section.post-footer {
    margin-left: 16.6666666667%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .blog-post__body h2,
  .blog-post__body h3 {
    font-size: 1.65rem;
  }

  .blog-top-header h2,
  .author-left-section h2 {
    font-size: 1.65rem;
  }

  .author-left-section {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 16.6666666667%;
  }

  .author-right-section {
    flex: 0 0 25%;
    max-width: 25%;
    margin-left: 8.3333333333%;
  }
}

@media (min-width: 992px) {

  .blog-post__body h2,
  .blog-post__body h3 {
    font-size: 1.8rem;
  }

  .blog-top-header h2,
  .author-left-section h2 {
    font-size: 1.65rem;
  }
}

@media (min-width: 1200px) {

  .blog-post__body {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .post-item {
    width: calc(100% / 2);
  }

  .blog-post__body h2,
  .blog-post__body h3 {
    font-size: 1.95rem;
  }

  .blog-top-header h2,
  .author-left-section h2 {
    font-size: 1.95rem;
  }
}

@media (min-width: 1310px) {

  .left-panel {
    width: calc(100% / 12 * 8);
  }

  .right-panel {
    padding-top: 23.2rem;
    width: calc(100% / 12 * 4);
  }
}

@media (max-width: 991.98px) {

  .blog-top-form .form-columns-3 .field {
    width: 50% !important;
  }
}

@media (max-width: 767.98px) {

  .blog-post__body {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .blog-top-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .blog-list-wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .blog-top-header P {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .author-left-section p {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .author-left-section .frame, 
  .author-right-section .frame {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .blog-top-form .form-columns-3 .field {
    width: 100% !important;
  }
}


@media (max-width: 345px) { 

  .blog-top-header P {
    max-width: 100%;
    width: 100%;
    word-break: break-all;
  }
}

@media (max-width: 345px) { 

  .cat-options-wrapper button {
    margin-right: 15px;
  }
}

.blog-pagination__link.blog-pagination__prev-link:hover{
  text-decoration:underline!important;
}

.post-item-inner {
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 4px 24px #CEDFE3;
  transition: background 0.3s ease-in-out;
}



/* related & featured posts */
.blog_item {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: #fff;
  box-shadow: 0 4px 24px #CEDFE3;
  transition: background 0.3s ease-in-out;
}
@media (min-width: 1200px){
  .blog_item{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 768px){
  .blog_item{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px){
  .blog_item .category{
    font-size: 16px;
  }
}
.blog_item>a {
  display: block;
  background-color: #fff;
  height: 100%;
  font-weight: 600;
  color: #2b2e34;
  text-decoration:none;
}

.blog_item>a:hover{
  color: #2b2e34;
  text-decoration:none;
}

.blog_item .image {
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  /* margin-bottom: 1rem; */
}

.blog_item .category {
  font-weight: 400 ;
  color: rgba(43, 46, 52, 0.5) ;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0 1rem;
}
.related-posts-wrapper,
.latest-posts-wrapper,
.blog-pagination.span12{
  margin-top: 4.5rem;
}
.related-posts-wrapper .blog_item,.latest-posts-wrapper .blog_item{
  padding-left: 0rem;
  padding-right: 0rem;
}
.blog-post img {
  max-width: 100%;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
}
.disable-scrollbars::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}
.blog-post__body,
.blog-post__tags a {
  color: #494a52;
}

.blog-post__meta a {
  color: #494a52;
}
ul.blog-post__tags li:last-child a span.separator,
ul.blog-post__tags li:last-of-type a span.separator{
 display:none!important;
}
.blog-post__post-publishdate,.blog-post__read-minutes{
  font-size:12px
}
.blog-post__tags a,
.blog-post__post-publishdate, .blog-post__read-minutes{
  font-weight: 400 !important;
  color: rgba(43, 46, 52, 0.5) !important;
  text-transform: uppercase;
}

.blog-post__tags a {
  color: #494a52;
  display:inline-flex;
  font-size:0.8rem;
  height:30px;
  align-items:center;
}

.blog-post__tags-container{
  position: relative;
}

ul.blog-post__tags{
  list-style-type: none;
  
  display: flex;
  flex-wrap: nowrap;
  height: 38px;
  /* align-items: center; */
  margin: 0px;
  overflow-y: hidden;
  padding-left:0px;
}

ul.blog-post__tags:before {
    background-image: linear-gradient(90deg,rgba(255,255,255,0) 0,#fff 100%);
    content: "";
    height: 30px;
    position: absolute;
    width: 40px;
    z-index: 1;
    right: -1px;
}
.blog-post__tags a {
  color: #494a52;
  display:inline-flex;
  height:30px;
  align-items:center;
}
.blog-post__tags a,
.blog-post__post-publishdate, .blog-post__read-minutes{
  font-weight: 400 !important;
  color: rgba(43, 46, 52, 0.5) !important;
  text-transform: uppercase;
}
.blog-index__post-content.blog-index__post-content--small{
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
}
.blog-index__post-content--small h2, .related-blog-title span, .latest-blog-title span {
  font-size: 1.25rem;
}
.blog-index__post-content--small h2,
.related-blog-title span,
.latest-blog-title span {
  font-size: 18px;
  line-height: 26px;
}
.blog-title{
  min-height:78px;
}
@media(min-width: 768px) and (max-width: 991px){
  .blog-title {
    min-height:130px;
  }
}
.blog-index__post-content a, .related-blog-title span, .latest-blog-title span {
  color: #494a52;
}
.blog-index__post-content a,.related-blog-title span, .latest-blog-title span{
  font-weight: 600;
}
.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;
}

.blog-index__post-image:before {
    width: 100%;
    height: 260px;
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    max-width: 0;
    max-height: 0;
    transition: max-width .6s ease-in-out,max-height 1s ease-in-out;
}


.blog-index__post-image:after {
    width: 100%;
    height: 260px;
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    mix-blend-mode: screen;
    background: transparent linear-gradient(90deg,#0a5e71 0%,#0a5e71 62%,#ab1c37 100%) 0% 0% no-repeat padding-box;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.blog_item:hover .blog-index__post-image:after {
    background: transparent;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.blog_row.listing_wrapper {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}
.blog_row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.blog-index__post-inner-card{
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  background: #fff;
}

.listing-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
/* ******************************************************************************
*********************************************************************************
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: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: 13px;
  color: #4F7D24;
  padding: .1rem .75rem;
  max-width: 767px;
  width: 100%;
}

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

body.sys-top-pad .systems-page {
  padding: 5.5rem 20px;
  padding-left: 0;
  padding-right: 0;
}


.systems-page {
  padding-left: 0;
  padding-right: 0;
}

.systems-page .actions {
  margin: 10px 0;
}

.systems-page .hs-input {
  margin-bottom: 18px;
}

.form-input-validation-message ul.no-list {
  margin: 0;
  padding: 0;
}

.form-input-validation-message ul.no-list {
  padding: 0;
}

.systems-page .hs-input[type=checkbox] {
  width: auto !important;
}

@media (max-width: 767px) {

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

  .systems-page h3 {
    font-size: 23px;
  }

  h1.error-page_heading {
    font-size: 40px;
  }
}


@media (max-width: 479px) {

  .form-input-validation-message label.hs-error-msg, 
  ul.no-list.hs-error-msgs label {  }


  .systems-page h1 {
    font-size: 32px;
  }

  .systems-page h2 {
    font-size: 24px;
  }
}