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

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

/* 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 {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

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

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

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

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

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

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

.page-center,
.dnd-section > .row-fluid {
  padding-left: 15px;
  padding-right: 15px; 
}

@media (min-width: 480px) {

  .page-center,
  .dnd-section > .row-fluid {
    padding-left: 30px;
    padding-right: 30px; 
  }

}

@media (min-width: 768px) {

  .page-center,
  .dnd-section > .row-fluid {
    padding-left: 20px;
    padding-right: 20px; 
  }

}

@media (max-width: 767px) {

  .page-center,
  .dnd-section > .row-fluid {}

}

.dnd-section > .row-fluid,
.content-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.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: Boing-Regular;
  src: url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_regularweb.eot") format("eot"),
       url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_regularweb.woff2") format("woff2"),
       url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_regularweb.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: Boing-Bold;
  src: url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_boldweb.eot") format("eot"),
    url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_boldweb.woff2") format("woff2"),
    url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_boldweb.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: Boing-Semibold;
  src: url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_semiboldweb.eot") format("eot"), 
    url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_semiboldweb.woff2") format("woff2"),
    url("https://d31hhgmv5t94if.cloudfront.net/sr/fonts/boing_semiboldweb.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "freight-sans-pro";
  src: url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
    url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), 
    url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: auto;
}

@font-face {
  font-family: "freight-sans-pro";
  src: url("https://use.typekit.net/af/8dd886/000000000000000000010b5c/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"), 
    url("https://use.typekit.net/af/8dd886/000000000000000000010b5c/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"),
    url("https://use.typekit.net/af/8dd886/000000000000000000010b5c/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: auto;
}

@font-face {
  font-family: "freight-sans-pro";
  src: url("https://use.typekit.net/af/cef9f3/000000000000000000010b5e/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"),
    url("https://use.typekit.net/af/cef9f3/000000000000000000010b5e/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"), 
    url("https://use.typekit.net/af/cef9f3/000000000000000000010b5e/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: auto;
}

@font-face {
  font-family: "freight-sans-pro";
  src: url("https://use.typekit.net/af/1709eb/000000000000000000010b60/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),
    url("https://use.typekit.net/af/1709eb/000000000000000000010b60/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),
    url("https://use.typekit.net/af/1709eb/000000000000000000010b60/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: auto;
}


html {
  line-height: 1.15;
}

html, body {
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body-container-wrapper {
  line-height: 1.4444;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 15px 0;
  line-height: 1.25;
}

.custom_header ul,
.custom_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 700;
}
code {
  vertical-align: bottom;
}

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

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

/* TODO */
small {}

/* TODO */
mark {}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ******************************************************************************
*********************************************************************************
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: 700px;
}

@media (max-width: 767px) {

  form {
    max-width: 100%;
  }

}

.body-container-wrapper form {
  margin-bottom: 30px;
}


h3.form-title {
  font-size: 1.75rem;
  line-height: 1.15;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
}

@media (min-width: 480px) {

  h3.form-title { 
    font-size: 1.825rem;
  }

}

@media (min-width: 768px) {

  h3.form-title { 
    font-size: 1.9rem;
  }

}

@media (min-width: 1024px) {

  h3.form-title { 
    font-size: 2.05rem;
  }

}

@media (min-width: 1200px) {

  h3.form-title { 
    font-size: 2.1875rem;
  }

}

.hs-form-field > label,
.field > label {
  display: block;
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

input[type="text"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"],
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"],
input[type="email"], 
input[type="url"], 
input[type="search"],
input[type="tel"], 
input[type="color"], 
input[type="file"],
textarea, 
select {
  width: 100%;
  outline: 0;
  border: 1px solid;
  line-height: 1.15;
  border-radius: 5px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .825rem;
}

input[type="text"]:focus,
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus,
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus,
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus,
input[type="tel"]:focus, 
input[type="color"]:focus, 
input[type="file"]:focus,
textarea:focus, 
select:focus {

}

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

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

.hs-input:-moz-placeholder {}

.hs-input::-webkit-input-placeholder {}

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

.hs-button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: none !important;
  display: inline-block;
  margin: 15px 0;
  outline: 0;
  white-space: normal;
  border: 1px solid;
  font-size: .85rem;
  line-height: 1.15;
  -webkit-box-shadow: inset 0 -5px 0 0 rgba(0,0,0,.2);
  box-shadow: inset 0 -5px 0 0 rgba(0,0,0,.2);
  font-weight: 600;
  text-align: center;
  -webkit-transition: all .1s ease-in;
  -o-transition: all .1s ease-in;
  transition: all .1s ease-in;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
}

@media (min-width: 480px) {

  .hs-button,
  input[type="submit"],
  input[type="button"] {
    font-size: .85rem;
  }

}

@media (min-width: 768px) {

  .hs-button,
  input[type="submit"],
  input[type="button"] {
    font-size: 1rem;
  }

}

@media (min-width: 1024px) {

  .hs-button,
  input[type="submit"],
  input[type="button"] {
    font-size: 1.125rem;
  }

}

@media (max-width: 1023px) {

  .hs-button,
  input[type="submit"],
  input[type="button"] {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

}

@media (max-width: 767px) {

  .hs-button,
  input[type="submit"],
  input[type="button"] {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

}

.hs-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {

}

.hs-button.primary:active,
input[type="submit"]:active,
input[type="button"]:active {

}

ul.hs-error-msgs {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hs-error-msgs label {
  font-size: 16px;
  color: #8c182c !important;
  line-height: 1.15;
  font-weight: 400;
}

.submitted-message {
  overflow: visible !important;
}

/* 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;
  text-align: left;
  white-space: 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

.header_container_wrapper {
  min-height: 125px;
}
.custom_header {}
.header__container {}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  -o-transition: transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear,-webkit-transform .2s linear;
  z-index: 998;
}
.nav-up .header {
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}
.header__wrapper {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  display: block;
  width: 72px;
  max-height: 25px;
  height: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.header__logo svg {
  fill: #fff;
}

.header__right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
a.header__mobile-top-link {
  display: none;
}
.header__right,
.header__top-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header__top-links {
  width: 100%;
  padding-top: 8px;
}
.header__top-links > span,
.header__top-links > span > div {
  height: 100%;
}
.header__top-links ul {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-links a {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: .8125rem;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  text-decoration: none;
  margin-right: 30px;
}
.header__top-links li:last-child > a {
  margin-right: 0;
}
.header__top-links .icon {
  width: 19px;
  height: 20px;
  margin-right: 10px;
}
.header__top-links .icon path,
.header__top-links .icon svg {
  width: 19px;
  height: 20px;
  font-size: 1.1875rem;
}
.header__top-links .text {
  margin-top: 2px;
}

.search-suggest {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  -webkit-box-shadow: 0 4px 14px rgba(0,0,0,.3);
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.search-suggest--mini {
  width: 250px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.search-suggest__input-container {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.search-suggest__input {
  border-radius: 0 !important;
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border: none !important;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  padding: 1rem .75rem .9rem !important;
  text-align: left;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  font-size: 12px !important;
  line-height: 12px !important;
  font-weight: 400 !important;
  height: 36px;
  padding-left: 15px !important;
}
.search-suggest__input::-webkit-input-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.search-suggest__input:-moz-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.search-suggest__input::-moz-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.search-suggest__input:-ms-input-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.search-suggest--mini .search-suggest__button {
  border-radius: 5px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  outline: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all .1s ease-in;
  -o-transition: all .1s ease-in;
  transition: all .1s ease-in;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  border: 1px solid rgba(0,0,0,0);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 36px;
  padding: 10px;
  font-size: 13px;
}
.search-suggest--mini .search-suggest__button:hover {

}
.search-suggest--mini .search-suggest__button svg {
  display: inline-block;
  height: 1em;
  font-size: 1rem;
  width: 1em;
  overflow: visible;
  vertical-align: initial;
  margin: 0;
}



@media (min-width: 480px) {

  .header__wrapper {
    padding: 0 30px;
  }

}



@media (min-width: 1024px) {

  .nav-up .header {
    -webkit-transform: translateY(-120px);
    -ms-transform: translateY(-120px);
    transform: translateY(-120px);
  }

  .header__wrapper {
    padding: 0 20px;
    height: 120px;
  }

  .header__logo {
    width: 130px;
    min-width: 130px;
    max-height: 45px;
  }

  .header__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
    padding-bottom: 5px;
  }

}

@media (max-width: 1023px) {

  .header_container_wrapper {
    min-height: 65px;
  }

  .header__top-links {
    display: none;
  }

  a.header__mobile-top-link {
    margin-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: flex;
    align-items: center;
    color: #fff !important;
    font-size: .8125rem;
    font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
    text-decoration: none;
  }

  .header__mobile-top-link .icon {
    margin-right: 10px;
  }

  .header__mobile-top-link .icon path,
  .header__mobile-top-link .icon svg {
    height: 19px;
    font-size: 1.1875rem;
    fill: #f5be28;
  }

  .header__mobile-top-link .icon svg {
    display: inline-block;
    width: 0.875em;
    overflow: visible;
    vertical-align: -0.125em;
  }

  .header__mobile-top-link .text {
    margin-top: 2px;
  }

  .header__burger {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
  }

  .header__burger svg {
    display: inline-block;
    font-size: inherit;
    width: 0.875em;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
  }

  .mobile-open .header__burger svg#menu_open {
    display: none;
  }

  .mobile-open .header__burger svg#menu_close {
    display: block !important;
  }

  .header__search {
    display: none;
  }

  .menu__mobile-menu {
    position: fixed;
    z-index: 999;
    top: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3746;
    overflow-y: auto;
  }

  .mobile-open {
    overflow: hidden;
  }

  .mobile-open .menu__mobile-menu {
    display: block !important;
  }

  .menu__mobile-menu__top {
    padding: 18px 30px 22px;
    border-bottom: 1px solid hsla(0,0%,100%,.1);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .menu__mobile-menu__top,
  .menu__mobile-menu__top .header__top-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
  }

  .menu__mobile-menu__top .header__top-links {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }

  .menu__mobile-menu__top .header__top-links ul {
    -webkit-box-align: start;  
    -ms-flex-align: start;   
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .menu__mobile-menu__top .header__top-links a {
    width: 120px;
    margin: 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .menu__mobile-menu__top .header__top-links__link .icon {
    margin: 0 0 5px;
  }

  .menu__mobile-menu__top .header__top-links__link .text {
    text-align: center;
  }

  .menu__mobile-menu__top .header__search {
    display: block;
    margin-top: 15px;
  }

  .menu__mobile-menu__top .header__search .search-suggest--mini {
    width: calc(100vw - 60px);
    max-width: none;
  }

}


@media (min-width: 768px) {

  .menu__mobile-menu__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .menu__mobile-menu__top .header__top-links {
    padding-top: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: auto;
  }

  .menu__mobile-menu__top .header__search {
    margin-top: 0;
  }

  .menu__mobile-menu__top .header__search .search-suggest--mini {
    max-width: 650px;
    width: 250px;
  }

}


/* ******************************************************************************
*********************************************************************************
Header 2025
*********************************************************************************
****************************************************************************** */

.header--2025 {
  border-bottom: none !important;
}

.header--2025 .header__logo svg path {
  fill: #ffffff;
}

.header--2025 .header__top-links {
  display: flex;
  justify-content: space-between;
}

.header--2025 .header__bottom-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header--2025  .search-suggest--mini {
  width: 100%;
}

.header--2025 .search-suggest__input  {
  background-color: #FAFAFB; 
  border-radius: 8px !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
  border: 1px solid #E9EDF2 !important;
  font-family: Boing-Regular,Helvetica Neue,Helvetica,Arial,"sans-serif";
  padding: 1rem .75rem .9rem !important;
  font-size: 18px !important;
  height: unset;
  padding-left: 15px !important;
}

.header--2025 .search-suggest__input::-webkit-input-placeholder,
.header--2025 .search-suggest__input:-moz-placeholder,
.header--2025 .search-suggest__input::-moz-placeholder,
.header--2025 .search-suggest__input:-ms-input-placeholder {
  color: #2d3746;
  opacity: 1;
}

.header--2025 .search-suggest--mini .search-suggest__button {
  position: absolute;
  right: 4px;
  border-radius: 4px !important;
  font-weight: 400;
  text-align: center;
  font-family: Boing-Regular,Helvetica Neue,Helvetica,Arial,"sans-serif";
  border: none !important;
  height: 45px;
  padding: 15px;
  font-size: 16px;  
}

.header--2025 .header__top-links .header__top-links__link {
  transition: opacity 0.3s ease;
}

.header--2025 .header__top-links .header__top-links__link:hover {
  opacity: .75;
}

/************ Header 2025 Media Queries **************/

@media (min-width: 1240px) {
  .header--2025  .search-suggest--mini {
    width: 491px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


.custom_footer {}
.footer__section {

}
.footer__section:last-of-type {
  border-bottom: none;
}
.footer__section__container {
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__logo-social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__logo {
  width: 85px;
  height: 30px;
}
.footer__logo svg {
  fill: #fff;
}

.footer__actions {
  width: 100vw;
  margin: 20px -15px 0;
  padding: 20px 15px 0;
  border-top: 1px solid hsla(0,0%,100%,.1);
}
.footer__actions ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}
.footer__actions__link {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  color: #fff;
  text-decoration: none !important;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-size: .8125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px;
}
.footer__actions__link > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__actions__link .icon {
  margin-right: 10px;
  width: 10%;
}
.footer__actions__link span.icon {
  width: 19px;
  height: 20px;
}
.footer__actions__link .icon svg {
  width: 19px;
  height: 19px;
  font-size: 1.1875rem;
}
.footer__actions__link .icon svg path {

}
.footer__actions__link .text {
  margin-top: 2px;
  width: 100%;
}

.footer__locations {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
  max-width: 600px;
}
.footer__locations .hs-menu-wrapper > ul > li > a,
.footer__further-info .hs-menu-wrapper > ul > li > a,
.footer__newsletter__heading {
  display: block;
  margin: 0;
  cursor: text;
  font-size: .75rem;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 20px;
  font-family: Boing-Semibold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  text-decoration: none;
}
.footer__newsletter__heading {
  line-height: 1.15;
}
.footer__locations .hs-menu-wrapper > ul ul li a,
.footer__further-info .hs-menu-wrapper > ul ul li a {
  font-size: .75rem;
  line-height: 1.1;
  font-family: Boing-Semibold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.footer__further-info {
  width: 100%;
}
.footer__further-info .hs-menu-wrapper > ul ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.footer__national-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.footer__national-code svg {
  height: 50px;
  width: auto;
}

.footer__bottom .footer__section__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__newsletter {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 25px;
}

.footer__links {
  width: 100%;
}
.footer__links__copyright {
  margin: 0;
  color: inherit;
  font-size: .75rem;
  line-height: 1.15;
  font-family: freight-sans-pro,Helvetica Neue,Helvetica,Arial,"sans-serif";
  margin-bottom: 10px;
}
.footer__links__wrapper .hs-menu-wrapper > ul > li {
  display: inline;
  float: left;
}
.footer__links__wrapper .hs-menu-wrapper > ul > li > a {
  font-weight: 600;
  font-size: .75rem;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
}
.footer__links__wrapper .hs-menu-wrapper > ul > li > a:after {
  content: "|";
  padding: 0 10px;
  padding-left: 12.5px;
}

/*============= Subscription Form =============*/

.footer__newsletter__form {}
.footer__newsletter__form form {
  max-width: none;
  background: transparent;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__newsletter__form form > div {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer__newsletter__form form > div:last-of-type {
  margin: 0;
}
.footer__newsletter__form h3 {}
.footer__newsletter__form form {}
.footer__newsletter__form form .hs-form-field {}
.footer__newsletter__form form .hs-form-field.hs_email {}
.footer__newsletter__form form .hs-form-field.hs_submit {}
.footer__newsletter__form form .hs-form-field > label {
  display: none;
}
.footer__newsletter__form form .hs-form-field .input {}
.footer__newsletter__form form .hs-form-field .input ::-webkit-input-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.footer__newsletter__form form .hs-form-field .input :-moz-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.footer__newsletter__form form .hs-form-field .input ::-moz-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.footer__newsletter__form form .hs-form-field .input :-ms-input-placeholder {
  color: #b9b9c0;
  opacity: 1;
}
.footer__newsletter__form form input[type="text"] {}
.footer__newsletter__form form input[type="text"]:focus {}
.footer__newsletter__form form input[type="email"] {}
.footer__newsletter__form form input[type="email"]:focus {}
.footer__newsletter__form form .hs_submit {}
.footer__newsletter__form form .hs_submit .actions {}
.footer__newsletter__form form input[type="submit"] {
  margin: 0;
  white-space: normal !important;
  box-shadow: none;
  padding: 12px 16px 8px !important;
}
.footer__newsletter__form form input[type="submit"]:hover {

}
.footer__newsletter__form .hs_error_rollup {
  display: none;
}




@media (min-width: 480px) {

  .footer__section__container {
    padding: 25px 30px;
  }

  .footer__logo {
    width: 95px;
    height: 33px;
  }

  .footer__locations .hs-menu-wrapper > ul ul li a,
  .footer__further-info .hs-menu-wrapper > ul ul li a {
    font-size: .875rem;
  }

  .footer__further-info {
    width: 80%;
    padding-right: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .footer__national-code svg {
    height: 55px;
  }

  .footer__newsletter {
    margin-bottom: 30px;
  }

  .footer__links {
    max-width: 80%;
  }

  .footer__links__wrapper .hs-menu-wrapper > ul > li > a {
    padding: 5px 0;
  }

  .footer__newsletter__form form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .footer__newsletter__form form > div {
    margin: 0 15px 0 0;
  }

}

@media (min-width: 768px) {

  .footer__section__container {
    padding: 20px;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: normal;
  }

  .footer__logo {
    width: 105px;
    height: 35px;
  }

  .footer__actions ul {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }

  .footer__actions__link {
    margin-right: 10px;
  }

  .footer__actions ul li:last-child a {
    margin: 10px 0;
  }

  .footer__locations {
    display: block;
    margin-right: 40px;
  }

  .footer__locations .hs-menu-wrapper > ul ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  .footer__locations .hs-menu-wrapper > ul ul li a,
  .footer__further-info .hs-menu-wrapper > ul ul li a {
    font-size: 1rem;
  }

  .footer__further-info {
    width: 300px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .footer__national-code {
    margin-top: 40px;
    margin-left: auto;
  }

  .footer__national-code svg {
    height: 60px;
  }

  .footer__bottom .footer__section__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__newsletter {
    padding-right: 20px;
    margin-bottom: 20px;
  }

  .footer__links {
    max-width: 300px;
  }

  .footer__newsletter__form form .hs-form-field .input input {
    min-width: 170px;
  }


}

@media (min-width: 1024px) {

  .footer__locations {
    margin-right: 75px;
  }

  .footer__national-code svg {
    height: 90px;
  }

  .footer__links {
    max-width: 480px;
  }

}

@media (min-width: 1200px) {

  .footer__logo-social {
    width: 35%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__actions {
    width: 65%;
    border-top: none;
    margin: 0;
    padding: 0;
  }

  .footer__actions ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__locations {
    margin-right: 100px;
  }

  .footer__locations .hs-menu-wrapper > ul ul {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  .footer__links {
    max-width: 500px;
  }

}

@media (max-width: 1044px) {

  .custom_footer_lp .footer__newsletter {
    display: none;
  }

}

/* ******************************************************************************
*********************************************************************************
Footer 2025
*********************************************************************************
****************************************************************************** */

.footer--2025.custom_footer {
  color: #2D3746;
}

.footer--2025 .footer__section__container {
   padding: 40px 20px;
}

.footer--2025 .footer__wrap {
  width: 100%;
}

.footer--2025 .footer__wrap:nth-child(1) {
  display: flex;
}

.footer--2025 .footer__wrap:nth-child(2) {
  margin-top: 40px;
}

.footer--2025 .footer__logo-social {
  flex-direction: column;
}

.footer--2025 .footer__logo svg path {
  fill: #ffffff;
}

.footer--2025 .footer__menu--desktop {
  display: block;
}

.footer--2025 .footer__menu--mobile {
  display: none;
}

.footer--2025 .footer__menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 80px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer--2025 .footer__menu ul li  {
  margin-bottom: 8px;
}

.footer--2025 .footer__menu ul li a {
/*   color: #2d3746; */
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.1;
  font-family:  Boing-Regular,Helvetica Neue,Helvetica,Arial,"sans-serif";
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.footer--2025 .footer__menu ul li a:hover {
  opacity: .75;
}

.footer--2025 .footer__newsletter-link {
  display: flex;
  align-items: center;
}

.footer--2025 .footer__newsletter-link span {
  height: 1rem;
  transition: opacity 0.3s ease;
}

.footer--2025 .footer__newsletter-link:hover span {
  opacity: .75;
}

.footer--2025 .footer__newsletter-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer--2025 .footer__newsletter-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.footer--2025 .footer__newsletter-arrow svg:nth-child(1) {
  opacity: 1;
  z-index: 1;
}

.footer--2025 .footer__newsletter-arrow svg:nth-child(2) {
  opacity: 0;
  z-index: 2;
}

.footer--2025 .footer__newsletter-arrow svg:nth-child(2) path {
  fill: #91E5DB;
}

.footer--2025 .footer__newsletter-link {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 1.1;
}

.footer--2025 .footer__newsletter-link:hover .footer__newsletter-arrow svg:nth-child(1) {
  opacity: 0;
}

.footer--2025 .footer__newsletter-link:hover .footer__newsletter-arrow svg:nth-child(2) {
  opacity: 1;
}

.footer--2025 .footer__links-copyright {
  font-family:  Boing-Regular,Helvetica Neue,Helvetica,Arial,"sans-serif";
  color: white;
  font-size: 14px;
}

/****** Footer 2025 Media Querry **********/

@media (max-width: 768px) {
  .footer--2025 .footer__menu--desktop {
    display: none;
  }

  .footer--2025 .footer__menu--mobile {
    display: block;
    width: 100%;
  }
  
  .footer--2025 .footer__logo-social {
    align-items: center;
  }
  
  .footer--2025 .footer__logo {
    margin-bottom: 20px;
    height: 40px;
  }
  
   .footer--2025 .footer__logo svg {
    height: 40px;
    width: auto;
  }

  .footer--2025 .footer__dropdown {
    margin-bottom: 1rem;
    background: #FAFAFB;
    border: 1px solid #E9EDF2;
    border-radius: 6px;
  }

  .footer--2025 .footer__dropdown summary {
    cursor: pointer;
    padding: 0.75rem 0.525rem;
    background: #FAFAFB;
    border: 1px solid #E9EDF2;
    border-radius: 6px;    
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Remove native marker */
  .footer__dropdown summary::-webkit-details-marker {
    display: none;
  }
  
  .footer__dropdown summary::after {
    content: "▾";
    font-size: 1rem;
    transition: transform 0.3s ease;
  }
  
  .footer__dropdown[open] summary::after {
    transform: rotate(180deg);
  }
  
  .footer__dropdown[open] summary {
    border-bottom: none;
  }
  
  .footer--2025 .footer__dropdown hr {
    border-top: 2px solid #E9EDF2; 
    margin: 0 0.525rem 0.525rem 0.525rem;
  }

  .footer--2025 .footer__menu ul {
    display: inline-block;
    padding: 0.525rem;
    background: #FAFAFB;
    width: 100%;
    border-radius: 0 0 6px 6px;
  }
   
  .footer--2025 .footer__social {
    margin-top: 10px;
  }
  
  .footer--2025 .footer__newsletter-link {
    justify-content: center;
  }
  
  .footer--2025 .footer__links {
    max-width: 100%;
    text-align: center;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.blog-header {
  background-color: transparent;
  text-align: center;
}

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

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

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

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

/* Blog Comments */

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

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

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

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

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

#comments-listing .comment-reply-to {
  padding-left:40px;
  background-position:15px center;
}

.hs-search-field--open .hs-search-field__suggestions {
  padding: 20px;
  margin: 0 0 40px;
}

.hs-search-field--open .hs-search-field__suggestions li#results-for {
  padding: 10px 0;
}

.hs-search-field--open .hs-search-field__suggestions li {
  padding: 5px 15px;
}

.blog-banner-area {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  height: 192px;
  padding: 20px 0 0 20px;
  background-color: #2d3746;
}

.blog-banner-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 100%;
  max-width: 1240px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.blog-banner-image {
  width: 50%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  height: 160px;
  margin-right: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.blog-banner-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.blog__banner__content {
  width: 50%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-right: auto;
}

.blog_banner__title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  max-width: 460px;
  color: #fff;
  margin-left: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.875rem;
  line-height: 1.15;
}

.blog-view {
  background-color: #f9f9f9;
}

.blog .page-center,
.blog-view .page-center{
  padding:30px 15px;
}

.blog-view .page-center {
  padding-top: 25px;
}

.blog__breadcrumb {
  display: none;
}

.blog__breadcrumb a {
  color: #417d82;
  font-size: .875rem;
  text-decoration: none;
}

.blog__breadcrumb a:after {
  content: ">";
  display: inline-block;
  font-weight: 400;
  margin: 0 10px;
}

.blog .blog__breadcrumb a:last-of-type:after {
  display:none;
}

.blog__breadcrumb a.active, .blog__breadcrumb a:hover {
  font-weight: 700;
  color: #417d82;
}

.blog__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 45px;
}

.blog__categories__category {
  margin-right: 5px;
  border: 0;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  color: #2d3746;
  background-color: #98d9d3;
  border-radius: 23.6px;
  padding: 15px 20px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  text-decoration:none;
}

.blog__categories__category--active, .blog__categories__category:hover {
  background-color: #2d3746;
  color: #fff;
  text-decoration:none;
}

.blog__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card {
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 16px 14px 0 rgba(0,0,0,.1);
  box-shadow: 0 16px 14px 0 rgba(0,0,0,.1);
  border-radius: 5px;
  height: 100%;
}

.blog__post {
  overflow: hidden;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  margin: 15px 0;
  text-decoration:none;
}

.blog__post:hover {
  text-decoration:none;
}

.blog__post .blog-card__image {
  -o-object-fit: cover;
  object-fit: cover;
}

.card__content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.card__subheading, .card__subheading a {
  color: #41b1d9;
  text-decoration: none;
}

.blog__post .card__subheading {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
  color: #98d9d3;
  font-size: .75rem;
  text-transform: uppercase;
}

.blog-view__article .card__subheading {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
  color: #98d9d3;
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog__post .card__subheading a {
  color: #98d9d3;
}

.card__heading {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  margin: 15px 0;
}

.card__heading, .card__heading a {
  text-decoration: none;
  color: #2d3746;
}

.card__introduction {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #2d3746;
  font-weight: 500;
}

.blog__post .card__introduction {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 6px 0;
  margin-bottom: 20px;
}

.blog__post .card__date {
  margin-top: auto;
  margin-bottom: 10px;
  color: #dc5f23;
  font-size: .875rem;
}
.blog__post .card__date span {
  font-weight: 600;
}

.el-pagination::after, .el-pagination::before {
  display: table;
  content: "";
}

.el-pagination::after {
  clear: both;
}

.blog__pagination {
  margin: 80px 0;
  text-align: center;
}

.el-pagination {
  white-space: nowrap;
  padding: 2px 5px;
  color: #303133;
  font-weight: 700;
}

.el-pagination .btn-prev,
.el-pagination .btn-next{
  display: inline-block;
  min-width: 35.5px;
  line-height: 28px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  height: 29px;
  background: #2d3746;
  color: #fff;
  padding: 0 5px;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
  font-size: .875rem;
}

.blog__pagination .btn-prev {
  margin-right: 3px;
}

.blog__pagination .btn-prev:before {
  content: "\2190";
  display: none;
  margin-right: 10px;
  font-size: 23px;
  width: 15px;
  overflow: hidden;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.el-pagination .btn-prev,
.el-pagination .btn-next,
.el-pagination .btn-prev span,
.el-pagination .btn-next span{
  display: inline-block;
  font-size: 13px;
  min-width: 35.5px;
  height: 28px;
  line-height: 28px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration:none;
}

.blog__pagination a.disabled {
  display: none;
}

.el-pagination a.disabled {
  color: #C0C4CC;
  background-color: #FFF;
  cursor: not-allowed;
}

.blog__pagination .btn-next:after {
  content: "\2192";
  display: none;
  margin-left: 10px;
  font-size: 23px;
  width: 15px;
  overflow: hidden;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.el-pager,
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev {
  padding: 0;
}

.el-pager, .el-pager li {
  vertical-align: top;
  display: inline-block;
  margin: 0;
}

.el-pager {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none;
  font-size: 0;
}

.blog__pagination .el-pager li {
  padding: 0 4px;
  line-height: 28px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background-color: #98d9d3;
  border-radius: 5px;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
  font-size: .875rem;
  color: #2d3746;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 3px;
  padding-top: 4px;
  min-width: 0;
  width:29px;
  height:29px;
}

.blog__pagination .el-pager li.active,
.blog__pagination .el-pager li:hover {
  background-color: #2d3746;
  color: #fff;
}

.blog__pagination .el-pager li.active {
  cursor:default;
}

.blog__pagination .el-pager li a,
.blog__pagination .el-pager li a:hover{
  color:inherit;
  text-decoration:none;
  display:block;
  width:100%;
}

.blog__categories-dropdown ul {
  display:none !important;
}

.blog__categories-dropdown {
  position: relative;
  margin: 0 auto;
  max-width: 450px;
}

.blog__categories-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0;
  background-color: #2d3746 !important;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
  font-size: .875rem;
  color: #fff !important;
  border-radius: 19px;
  padding: 0 20px;
  outline: none;
  height: 38px;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}

.blog__categories-dropdown .fa-chevron-down {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: .75rem;
}

svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.el-pager li.btn-quicknext{
  line-height: 28px;
  color: #303133;
}

.blog__pagination .el-pager li.more {
  background-color: rgba(0,0,0,0);
  color: #98d9d3;
  width: 20px;
}

.el-icon-more:before {
  content: "\E794";
}

.el-pager .more::before {
  line-height: 30px;
}

.el-pager .more:hover:before {
  content:"/E6DC"
}

.blog-view__article {
  max-width: 980px;
  margin: 45px auto;
  overflow: hidden;
}

.card__image {
  height: 250px;
  background: #98d9d3;
  position: relative;
}

.blog-view__article .card__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.blog-view__article .card__content {
  padding: 20px 0;
}

.blog-view__article .card__content h1 {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  color: #2d3746;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.blog-view__article .card__date {
  margin-top: 15px;
  margin-bottom: 40px;
  color: #dc5f23;
  font-size: .875rem;
}

.blog-view__article .card__date span {
  font-weight: 600;
}

.blog-view__article__content.s-content {
  font-size: .875rem;
  color: #36393e;
  font-weight: 500;
  line-height: 1.5;
}

.blog-view__share {
  margin-top: 26px;
  border-top: 1px solid #98d9d3;
  padding-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-view__share span {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 700;
  font-size: 1.25rem;
  color: #2d3746;
  margin-right: 30px;
}

.blog-view__share a {
  color: #41b1d9 !important;
  margin-right: 30px;
  font-size: 18px;
}

.svg-inline--fa.fa-w-16 {
  width: 1em;
}

.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}

.prev-next {
  display: none;
}

.blog-view__navigation {
  margin-bottom: 60px;
}

.prev-next__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.prev-next__all, .prev-next__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
}

.blog-view__navigation .prev-next__wrapper {
  max-width: 980px;
}

.prev-next__item {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  padding: 30px 26px;
  width: 400px;
}

.prev-next__item__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.prev-next__item a {
  text-decoration: none;
}

.prev-next__item__arrow {
  color: #98d9d3;
  font-size: 22px;
}

.prev-next__item__option div:first-of-type {
  margin-right: 20px;
}

.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}

.prev-next__item__wrapper {
  padding-top: 6px;
}

.prev-next__item__subheading {
  font-size: .75rem;
  color: #98d9d3;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.prev-next__item__heading, .prev-next__item__subheading {
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-weight: 600;
}

.prev-next__item__option div:first-of-type {
  margin-right: 20px;
}

.prev-next__item__heading {
  font-size: 1.25rem;
  color: #2d3746;
}

.prev-next__all {
  margin-left: auto;
  margin-right: auto;
  max-width: 140px;
  width: 100%;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  text-decoration: none;
}

.prev-next__all--prev-only {
  margin-left: 0;
}

.prev-next__all--next-only {
  margin-right: 0;
}

.prev-next__all__wrapper {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none !important;
}

.prev-next__all span.icon {
  color: #98d9d3;
  font-size: 1.9rem;
  height: 34px;
  width: auto;
}

.prev-next__all span.text {
  color: #98d9d3;
  text-transform: uppercase;
  font-family: Boing-Bold,Helvetica Neue,Helvetica,Arial,"sans-serif";
  font-size: .75rem;
  font-weight: 600;
  margin-top: 15px;
}

.prev-next__item__option div:first-of-type {
  margin-right: 20px;
}

@media (min-width:480px) {

  .blog .page-center,
  .blog-view .page-center{
    padding:20px;
  }

  .blog-view .page-center {
    padding-top: 15px;
  }

  .blog-view__article .card__content h1 {
    font-size: 2rem;
  }

}

@media (min-width:600px) {

  .blog-banner-inner {
    padding-left:20px;
  }

  .blog-banner-image {
    margin-right:0;
  }

  .blog-view__article .card__content h1 {
    font-size: 2.3rem;
  }

}

@media (min-width:768px) {

  .blog-banner-area {
    height: 380px;
    padding: 20px 20px 0;
  }

  .blog-banner-inner {
    padding-right:20px;
  }

  .blog-banner-image {
    width: auto;
    height: 330px;
  }

  .blog__banner__content {
    width:auto;
  }

  .blog_banner__title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 0;
  }

  .blog__breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog__grid {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 -10px;
  }

  .blog__post {
    margin: 15px;
    width: calc(50% - 30px);
  }

  .blog__post .card__introduction {
    margin: 8px 0;
  }

  .blog__pagination .btn-next,
  .blog__pagination .btn-prev {
    padding: 0 15px;
    height: 43px;
    line-height:43px;
  }

  .el-pagination .btn-prev span,
  .el-pagination .btn-next span {
    line-height:43px;
  }

  .blog__pagination .btn-prev {
    margin-right: 10px;
  }

  .blog__pagination .btn-prev:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .blog__pagination .btn-next:after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .blog__pagination .el-pager li {
    width: 43px;
    height: 43px;
    margin-right: 10px;
  }

  .blog__categories-dropdown {
    margin: 30px 0 0;
  }

  .blog__pagination .el-pager li.more {
    width: 43px;
  }

  .card__image {
    height: 100%;
    min-height: 325px;
    max-height: 325px;
  }

  .blog-view__article .card__content {
    padding: 40px 50px;
  }

  .blog-view__share {
    margin-top: 55px;
    padding-top: 40px;
  }

  .prev-next {
    display: block;
  }

  .blog-view__article .card__content h1 {
    font-size: 2.6rem;
  }

  .blog-view__article__content.s-content {
    font-size: 1rem;
  }

}

@media (min-width:900px) {
  .blog__categories-dropdown {
    display:none !important;
  }
}

@media (min-width:1024px) {

  .blog-banner-image {
    margin-right:40px;
  }

  .blog_banner__title {
    font-size: 3.75rem;
  }

  .blog__post {
    width: calc(33.33% - 30px);
  }

  .card__image {
    min-height: 340px;
    max-height: 340px;
  }

  .blog-view__article .card__image {
    display: block;
  }

  .blog-view__article .card__content {
    padding: 60px 90px;
  }

  .blog-view__article .card__content h1 {
    font-size: 3.125rem;
  }

}

@media (min-width:1200px) {

  .blog-banner-image {
    margin-right:130px;
  }

  .blog-view__article .card__content h1 {
    font-size: 3.45rem;
  }

}



@media (max-width: 899px) {

  .blog__categories {
    display:none !important;
  }

}

@media (max-width:767px) {

  .blog-view__article .card__image {
    display: none;
  }

  .blog-view__article {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 20px 0 0;
    background: none;
    padding: 0;
    border-radius: 0;
  }

}

@media (max-width: 479px) {
  .hs-recaptcha {
    overflow:auto !important;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 20px;
  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;
  width: 100%;
  max-width: 650px;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: 1rem;
  color: #4f7d24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

.hs_cos_wrapper_type_password_prompt input[type="password"] {
  height: auto !important;
  margin: 0 !important;
}

.hs_cos_wrapper_type_email_simple_subscription input[type="email"] {
  width: 100% !important;
}

.hs_cos_wrapper_type_email_subscriptions .page-header {
  margin-bottom: 20px;
}
.hs_cos_wrapper_type_email_subscriptions #content .header {
  position: static;
  transform: none !important;
}

.hs_cos_wrapper_type_email_subscriptions h1,
.hs_cos_wrapper_type_email_subscriptions h2 {
  font-size: 30px;
}

label[for="hs-login-widget-remember"] {
  display: inline-block;
}

.hs_cos_wrapper_type_member_login .hs-form-field label,
.hs_cos_wrapper_type_member_register .hs-form-field label,
.hs_cos_wrapper_type_password_reset .hs-form-field label {
  padding: 5px 0;
}


@media (max-width: 479px) {

  .hs_cos_wrapper_type_email_simple_subscription h1 {
    font-size: 35px;
  }

  .hs_cos_wrapper_type_email_subscriptions_confirmation h2 {
    font-size: 25px;
  }

  .hs_cos_wrapper_type_email_subscriptions h1,
  .hs_cos_wrapper_type_email_subscriptions h2 {
    font-size: 25px;
  }

}