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











































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


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

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

/**
 * Correct the font size and margin on `F1` 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 */
}

dt {
  font-size: 1.7rem;
  font-weight: bold;
}

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

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

a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 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 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

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

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

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

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

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

/*

@media (min-width: 768px) {
  .dnd-section > .row-fluid,
  .header__container,
  .footer__container,
  .page-center,
  .content-wrapper {
    max-width: 750px;
  }
}


@media (min-width: 992px) {
  .dnd-section > .row-fluid,
  .header__container,
  .footer__container,
  .page-center,
  .content-wrapper {
    max-width: 970px;
  }
} */

@media (max-width: 767px) {
  h5 {
    font-size: 18px;
  }

  h4 {
    font-size: 20px;
  }

  h3 {
    font-size: 22px;
  }

  h2 {
    font-size: 24px;
  }

  h1 {
    font-size: 26px;
  }
}

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

html {
  font-size: 10px;
}
/*
body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.529;
} */

p {
  margin: 0 0 20px 0;
  font-size: 17px;
}

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

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

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

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

.blog-post__body>li:not(.custom-menu-primary .hs-menu-wrapper>ul>li) {
  margin: 0 0 20px 0;
}
/*
img {
  max-width: 100%;
  vertical-align: middle;
} */

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


.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 500px;
  padding: 20px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  border-style: solid;
  text-decoration: none;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 2.17px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

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

.hs-form label {
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
  margin-bottom: .4rem;
  font-size: 1.2rem;
  font-family: 'Roboto';
  color: #494a52;
}


.hs-form .hs-error-msgs label,
label.hs-error-msg,
.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}

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

input.hs-input,
textarea.hs-input,
input[type="password"],
select.hs-input {
  display: inline-block;
  width: 100% !important;
  height: auto !important;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 17px;
  line-height: 26px;
}

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

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

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

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

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

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

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

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field,
.hs-form-field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 20px 0;
}

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

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

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

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



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

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

form {
  max-width: 500px;
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;

  & h3 {
    font-size: 2.1rem;
    line-height: 3.4rem;
    margin: 0;
    letter-spacing: 0.1em;
    color: #494a52;
  }

  & p {
    font-family: 'Roboto';
    font-size: 1.3rem;
    line-height: 2.1rem;
    color: #494a52;
    
    & em {
      color: #f2545b;
    }
  }
}
/* ******************************************************************************
*********************************************************************************
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;
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.main-header-wrapper {
  min-height: 145px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
}

.header__container {
  margin: 0 auto;
}

.main-header-wrapper .fixed-header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 99;
  background-color: #ffffff;
}
.main-header-wrapper .header {
  margin-bottom: 15px;
}
.main-header-wrapper .header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.main-header-wrapper .header .logo {
  margin-right: 35px;
}
.main-header-wrapper .header .tagline {
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
}
.main-header-wrapper .header .tagline p {
  margin: 0;
}
.main-header-wrapper .header .tagline img {
  float: left;
  height: 80px;
  width: 80px;
  margin-top: -21px;
  margin-bottom: -21px;
}
.main-header-wrapper .header .header-right {
  margin-left: auto;
  text-align: right;
}
.main-header-wrapper .header .header-right .links-phone {
  margin: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper {
  display: inline-block;
  margin-right: 10px;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul li {
  display: inline-block;
  margin-right: 1px;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul li:last-child {
  margin-right: 5px;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul li a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul li a:hover,
.main-header-wrapper .header .header-right .links-phone .account-links-wrapper ul li a:focus {
  text-decoration: none;
}
.main-header-wrapper .header .header-right .links-phone .phone {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.0;
  text-decoration: none;
}
.main-header-wrapper .header .header-right .global-nav {
  display: inline-block;
}
.main-header-wrapper .header .header-right .global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header-wrapper .header .header-right .global-nav ul li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  text-align: left;
}
.main-header-wrapper .header .header-right .global-nav ul li span,
.main-header-wrapper .header .header-right .global-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.main-header-wrapper .header .header-right .global-nav ul li.hs-item-has-children:after {
  display: inline-block;
  content: '\f107';
  font-family: FontAwesome;
}
.main-header-wrapper .header .header-right .global-nav ul li ul {
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: #ffffff;
  padding: 25px;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  -webkit-transition: all .3s ease .15s;
  -moz-transition: all .3s ease .15s;
  -o-transition: all .3s ease .15s;
  -ms-transition: all .3s ease .15s;
  transition: all .3s ease .15s;
}
.main-header-wrapper .header .header-right .global-nav ul li ul li {
  position: relative;
  display: block;
}

.main-header-wrapper .header .header-right .global-nav ul li ul li:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to right, #d3d3d3 0%, #ffffff 100%);
}
.main-header-wrapper .header .header-right .global-nav ul li ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.28em;
  text-transform: none;
  white-space: nowrap;
}
.main-header-wrapper .header .header-right .global-nav ul li ul li a:hover,
.main-header-wrapper .header .header-right .global-nav ul li ul li a:focus {
  text-decoration: none;
}
.main-header-wrapper .header .header-right .global-nav ul li.child-open > ul {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.main-header-wrapper .header .header-right .search-wrapper {
  position: relative;
  display: inline-block;
  width: 250px;
}
.main-header-wrapper .header .header-right .search-wrapper .control {
  margin: 0;
  padding: 0;
}
.main-header-wrapper .header .header-right .search-wrapper .control input {
  margin: 0;
  border: none;
  -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  height: 40px;
  line-height: 1.529;
  padding: 0 35px 0 15px;
  vertical-align: baseline;
  width: 100%;
  box-sizing: border-box;
}
.main-header-wrapper .header .header-right .search-wrapper .control input:focus {
  outline: none;
}
.main-header-wrapper .header .header-right .search-wrapper .action.search {
  display: inline-block;
  background-image: none;
  background: 0;
  -moz-box-sizing: content-box;
  border: 0;
  box-shadow: none;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-shadow: none;
  font-weight: 400;
  padding: 7px 5px;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.main-header-wrapper .header .header-right .search-wrapper .action.search:before {
  display: inline-block;
  content: '\f002';
  font-family: FontAwesome;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #7c7d84;
  margin: 0;
  vertical-align: top;
  text-align: center;
}
.main-header-wrapper .header .header-right .search-wrapper .action.search span {
  display: none;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results {
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  width: 100%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: #ffffff;
  padding: 25px;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  text-align: left;
  -webkit-transition: all .3s ease .15s;
  -moz-transition: all .3s ease .15s;
  -o-transition: all .3s ease .15s;
  -ms-transition: all .3s ease .15s;
  transition: all .3s ease .15s;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results.active {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #595959;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .products + .categories {
  margin-top: 20px;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .categories + .view-all {
  margin-top: 20px;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .category {
  position: relative;
  display: block;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .category:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to right, #d3d3d3 0%, #ffffff 100%);
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .category a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.529;
  text-transform: none;
  padding: 5px 0;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .category a:hover,
.main-header-wrapper .header .header-right .search-wrapper #search-results .category a:focus {
  text-decoration: none;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 5px 0;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .product:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to right, #d3d3d3 0%, #ffffff 100%);
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .product a {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.529;
  text-transform: none;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .product a:hover,
.main-header-wrapper .header .header-right .search-wrapper #search-results .product a:focus {
  text-decoration: none;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .product a:first-child {
  margin-right: 10px;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .view-all a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.529;
  text-decoration: none;
  text-transform: uppercase;
}
.main-header-wrapper .header .header-right .search-wrapper #search-results .view-all a:after {
  display: inline-block;
  content: '»';
  padding-left: 5px;
}
.main-header-wrapper .header .header-right .cart{
  display: inline-block;
  margin-left: 10px;
}
.main-header-wrapper .header .header-right .cart a:hover,
.main-header-wrapper .header .header-right .cart a:focus {
  cursor: pointer;
}
.main-header-wrapper .header .header-right .cart .minicart {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
}
.main-header-wrapper .header .header-right .cart .minicart a:before {
  position: absolute;
  top: 0px;
  left: -20px;
  display: block;
  content: '\f07a';
  font-family: FontAwesome;
  font-size: 21px;
  color: #c72e40;
  line-height: 32px;
}

.main-header-wrapper .header .header-right .cart a span {
  display: none;
}

.mobile-menu-trigger {
  display: none;
}

.search-btn {
  display: none;
}

.search-wrapper form {
  padding: 0;
  max-width: 100%;
}

.search-wrapper .field {
  margin-bottom: 0;
}

.desktop-menu {
  background-color: #000;
  width: 100%;
  min-height: 42px;
}

.custom-menu-primary .hs-menu-wrapper > ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

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

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  display: block;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.529;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 10px 15px;
  text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
  display: inline-block;
  content: '\f107';
  font-family: FontAwesome;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 5px;
}

.mobile-menu {
  display: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > ul {
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  min-width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: #ffffff;
  padding: 10px 25px 20px 25px;
  -webkit-box-shadow: 0 2px 14px rgb(0 0 0 / 30%);
  box-shadow: 0 2px 14px rgb(0 0 0 / 30%);
  -webkit-transition: all .3s ease .15s;
  -moz-transition: all .3s ease .15s;
  -o-transition: all .3s ease .15s;
  -ms-transition: all .3s ease .15s;
  transition: all .3s ease .15s;
}

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

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

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

.custom-menu-primary .hs-menu-wrapper > ul ul li a {
  display: block;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.28em;
  text-transform: none;
  white-space: nowrap;
  padding: 0;
  text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(left, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to right, #d3d3d3 0%, #ffffff 100%);
}

.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children.child-open > a:before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -10px;
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(3)>ul {
  left: 50%;
  margin-left: -200px;
  width: 400px;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  box-sizing: content-box;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(3)>ul:before {
  position: absolute;
  content: '';
  top: 15px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(top, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #d3d3d3 0%, #ffffff 100%);
}

.mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 20px 25px 10px 25px;
  flex-flow: wrap;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2) {
  position: static;
}

.custom-menu-primary {
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul {
  padding: 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul>li>a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 2;
  text-transform: uppercase;
  text-align: center;
  background-color: #c72e40;
  padding: 8px 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul>li:after {
  display: none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul>li>a:hover {
  text-decoration: underline;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li {
  flex: 1;
  padding: 0 15px 0 15px;
}

.mega-menu > li:last-child {
  padding: 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu li.hs-item-has-children > a {
  line-height: 1.529;
  color: #000000;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.87px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 1px;
  background: #d3d3d3;
  background: -moz-linear-gradient(top, #d3d3d3 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #d3d3d3 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #d3d3d3 0%, #ffffff 100%);
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:first-child {
  padding-left: 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:last-child {
  padding-right: 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:last-child:after {
  display: none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:last-child ul li a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 2.28em;
  text-transform: none;
  white-space: nowrap;
  padding: 10px 0;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu li.hs-item-has-children > a:empty {
  display: none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu > li:last-child ul li:after {
  display: none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>ul > .mega-menu ul li.hs-item-has-children {
  margin-top: 20px;
}

.main-header-wrapper.lp .header .header-wrapper {
  height: 89px;
}

.main-header-wrapper.lp {
  min-height: 89px;
}



@media (max-width: 1199px) {
  .main-header-wrapper .header .tagline {
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 12px;
    padding: 12px 15px;
  }
}


@media (max-width: 991px) {
  .mobile-menu-trigger {
    display: inline-block;
    margin-right: auto;
    cursor: pointer;
  }

  .fixed-header .header__container {
    max-width: 100%;
  }

  .main-header-wrapper .header .logo {
    position: relative;
    width: 50%;
    margin: 0;
    float: none;
    max-width: 50%;
  }

  .main-header-wrapper .header .logo img {
    margin: 0 auto;
    display: block;
  }

  .main-header-wrapper .header .header-right {
    position: relative;
  }

  .main-header-wrapper .header .header-right .links-phone {
    display: none;
  }

  .main-header-wrapper .header .header-right .global-nav {
    display: none;
  }

  .search-btn {
    display: inline-block;
    cursor: pointer;
  }

  .main-header-wrapper .header .header-right .search-wrapper {
    display: block;
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -265px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 4;
    -webkit-transition: all 0.3s ease 0.15s;
    -moz-transition: all 0.3s ease 0.15s;
    -o-transition: all 0.3s ease 0.15s;
    -ms-transition: all 0.3s ease 0.15s;
    transition: all 0.3s ease 0.15s;
  }

  .main-header-wrapper .header {
    margin-top: 15px;
    border-bottom: 0;
  }

  .header-right .fa-times-circle {
    display: none;
  }

  .main-header-wrapper .header .header-right .cart {
    width: auto;
  }

  .main-header-wrapper .fixed-header {
    border-bottom: 1px solid #e8e8e8;
  }

  .desktop-menu {
    display: none;
  }

  .main-header-wrapper {
    min-height: 85px;
  }

  header.header i {
    color: #000000;
  }

  body.mobile-open {
    overflow: hidden;
  }

  .main-header-wrapper.lp .header .header-wrapper {
    height: auto;
    width: 100%;
    justify-content: center;
  }

  .main-header-wrapper.lp .header-inner {
    padding-right: 36px;
  }

  .search-open .main-header-wrapper .header .header-right .search-wrapper {
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }

  .search-open .search-btn .fa-search:before {
    content: "\f057";
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how you
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer__container {
  margin: 0 auto;
}

.footer_bottom_section {
  background-color: #262626;
  padding: 10px 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer_copyright_links .hs-menu-wrapper > ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.footer_copyright_links .hs-menu-wrapper > ul li {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  margin-left: 3px;
}

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

.footer_copyright_links {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
}

.footer_copyright_links .hs-menu-wrapper > ul li + li::before {
  display: inline-block;
  content: "|";
  padding-right: 7px;
}

.footer_copyright_links a {
  display: inline-block;
  padding: 11.5px 0;
}

.footer__copyright p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 0;
}


.footer_row {
  margin-right: -15px;
  margin-left: -15px;
}

.footer_row > div {
  float: left;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.footer_top_section {
  padding: 60px 0 50px 0;
}

.footer_info {
  width: 25%;
}

.footer_signup {
  width: 25%;
}

.footer_row .footer_menu {
  width: 50%;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
}

.footer_menu .hs-menu-wrapper > ul > li {
  width: 50%;
  float: left;
  padding: 0 15px;
}

.footer_menu .hs-menu-wrapper > ul:before,.footer_menu .hs-menu-wrapper > ul:after {
  content: "";
  display: block;
  clear: both;
}

.footer_menu .hs-menu-wrapper > ul ul li a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.92;
  letter-spacing: 0.87px;
  text-transform: uppercase;
  text-decoration: none;
}

.footer_signup h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.333;
  text-transform: none;
  padding: 0;
  margin: 0 0 20px 0;
  letter-spacing: 0.47px;
}

.footer .footer_signup a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 2;
  text-transform: uppercase;
  border-radius: 5px;
  border: 3px solid #ffffff;
  padding: 3px 30px;
}

.footer .footer_signup a:hover {
  color: #000000;
  background-color: #ffffff;
  text-decoration: none;
}

.ft_logo img {
  max-width: 104px;
  margin: 0 0 20px 0;
}

.footer__contact {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
}

.footer_row:before,.footer_row:after {
  content: "";
  display: block;
  clear: both;
}
.footer_social i {
  font-size: 1.25em;
  margin-right: 10px;
}

.footer_social {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.529;
  margin-bottom: 20px;
}

.ft_group_logo img {
  margin-right: 10px;
  vertical-align: top;
}

.ft_group_logo {
  display: flex;
  margin: 0 0 20px 0;
}

.footer_social a:hover {
  text-decoration: none;
}

.footer-contact-option {
    display: block;
    min-height: 44px; /* Ensures minimum touch target size */
    line-height: 44px; /* Centers text vertically */
    text-decoration: none;
}

p.footer-contact-option {
line-height: 1.529;
}

@media (max-width: 991px) {
  .footer_row .footer_menu {
    display: none;
  }

  .footer_signup {
    display: none;
  }

  .footer_info {
    width: 100%;
    text-align: center;
  }

  .ft_group_logo {
    justify-content: center;
  }

  .footer_top_section {
    padding: 40px 0 20px 0;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  margin: 0 auto;
  /*padding: 0 20px;*/
  background-color: #fff;
}

.hs-blog-listing .content-wrapper {
  padding: 0;
  background-color: transparent;
}

.hs-blog-post .content-wrapper {
  background-color: transparent;
}

.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}

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

.blog-header__form {
  margin: 0 1rem;
}

.blog-post__meta span {
  display: inline-block;
}

.hs-recaptcha {
  overflow: auto;
}


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

  .blog-sidebar.span3 {
    /*padding-right: 15px;*/
  }

}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}

/*.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }*/
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 20px;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 20px;
  }
}
.blog-index__post-content h3 {
  margin: 5px 0;
}
.blog-index__post-content--small h3 {
  font-size: 18px;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
/*
.blog-index__post-content a {
  color: #494a52;
} */
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: 2.5px 2.5px;
  margin: 1px 1px;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
  font-size: 24px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
  pointer-events: none;
}
.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: 2.5px;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: 2.5px;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

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

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 33px 0;
}
.blog-post h1 {
  font-size: clamp(3rem, 20px + 2.5vw, 45px);
  font-weight: 700;
}
.blog-post__meta {
  margin: 1rem 0;
}
/*
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
} */

.blog-post__tags {
/*  font-family: Lato, sans-serif; */
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #F8FAFC;
  padding: 20px 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 5px;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

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

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

/*             Blog Grid Listing            */

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

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  position: relative;
  display: block;
  width: 100%;
}

.image-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio. Adjust this to 75% for 4:3 or other ratios if needed */
  overflow: hidden;
  border-radius: 5px 5px 0 0; /* Ensures rounded corners match the card style */
}

.post-preview-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image covers the container without distorting */
  object-position: center; /* Centers the image to ensure the focal point is well-positioned */
}


.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

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

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

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

.blog-post__meta-section.index-blog-post__meta-section {
  flex-direction: column;
}

.blog-post__read-more {
  width: 100%;
}

.read-more-link {
  display: flex;
  justify-content: space-between;
}

.read-more-text {
  max-width: 90%;
}

.read-more-arrow {
  display: flex;
  align-items: flex-end;
}

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

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

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

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

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

/*             Blog Grid Listing with Sidebar            */

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-sidebar-post-listing ul li {
  padding-left: 0;
  line-height: 24px;
}

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

.blog-sidebar-post-listing li a {
  position: relative;
  display: inline-block;
}

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

/* Mobile Blog Sidebar */

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

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

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

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

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

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

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

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

/* Blog Subscription Section */

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

.subscription-form-2 {
  display: block;
  width: 100%;
  text-align: left;
  padding-bottom: 50px;
  margin-left: -15px;
}



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

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

/*             Blog Post Layout          */


@media (max-width: 767px) {
  .post-featured-image {
    margin-top: 0;
    border-radius: 0;
  }
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-top: calc(4% + 1vw);
  padding-right: clamp(20px, calc(5% + 1.5vw), 100px);
  padding-bottom: calc(4% + 1vw);
  padding-left: clamp(20px, calc(5% + 1.5vw), 100px);
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

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

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

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

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

@media (max-width: 767px) {
  .blog-post {
    width: 100%;
    padding: 5%;
  }
  
  figure {
   text-align: center;
   float: none !important;
  }
}

/* Facebook Icon */
.fb {
  background-image: url('https://14566965.fs1.hubspotusercontent-na2.net/hubfs/14566965/images/icons/facebook-svgrepo-com.svg');
}

/* Twitter Icon */
.tw {
  background-image: url('https://14566965.fs1.hubspotusercontent-na2.net/hubfs/14566965/images/icons/icons8-twitterx.svg');
}

/* LinkedIn Icon */
.li {
  background-image: url('https://14566965.fs1.hubspotusercontent-na2.net/hubfs/14566965/images/icons/linkedin-logotype-svgrepo-com.svg');
}

/* Email Icon */
.email {
  background-image: url('https://14566965.fs1.hubspotusercontent-na2.net/hubfs/14566965/images/icons/email-8-svgrepo-com.svg');
}

.share:hover {
  transform: scale(1.2);
}

.updated-shared {
  display: flex;
  align-items: center;
}

.updated-on-span {
  margin-right: auto;
}

/* Base Styling for Elements with Tooltips */
.blog-post__body [aria-label], .dynamic-tooltip {
    position: relative;
    cursor: help;
    text-decoration: none;
    border-bottom: 2px solid #333;
}

/* Styling for Tooltip */
.dynamic-tooltip {
    position: absolute; /* Positioned dynamically by JavaScript */
    background: #333; /* Dark background for contrast */
    color: #fff; /* White text for readability */
    padding: 8px 12px; /* Padding for comfort */
    border-radius: 4px; /* Rounded corners for a nice appearance */
    max-width: 300px; /* Set a reasonable maximum width for tooltips */
    white-space: normal; /* Allow text wrapping */
    word-break: break-word; /* Ensure that long words break */
    box-sizing: border-box; /* Include padding in width/height calculations */
    z-index: 1000; /* Ensure tooltip appears on top of other content */
    text-align: left; /* Align text to the left for readability */
    opacity: 0; /* Tooltip starts hidden */
    pointer-events: none; /* Disable pointer events until visible */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in effect */
}


/* Tooltip Styling for Mobile */
@media (max-width: 768px) {
    .dynamic-tooltip {
        position: fixed; /* Fixed position for easy centering */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the tooltip */
        max-width: 90vw; /* Ensure it doesn't exceed the viewport */
        padding: 16px; /* Increased padding for readability */
        line-height: 1.4; /* Make text more readable */
    }
}



/* Blog Comments 

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

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

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

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

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

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

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

.hs-search-field--open .hs-search-field__suggestions {
  background-color: #fff;
  padding: 5px;
  margin-top: 2px;
  border-color: #ddd !important;
}

.centered-header {
  text-align: center;
  margin-bottom: 20px;
}

.centered-header .blog-header {
  display: inline-block; /* Ensure the header doesn't stretch across the full width */
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}

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

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

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

.systems-page {
  padding: 3rem 0px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}
.systems-page .hs_cos_wrapper_type_email_subscriptions #email-prefs-form {
  max-width: 100%;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* Default (red) scheme */
/* Default (red) scheme */
/* Default (red) scheme */
.animated-button {
  position: relative;
  display: inline-flex; /* Ensures the button takes the minimum width required */
  align-items: center;
  justify-content: center; /* Centers the content */
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: #C72E40; /* MISCO Red */
  border-radius: 100px;
  font-weight: 600;
  color: #FFFFFF; /* White text */
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); /* Transparent box shadow */
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none; /* Remove underline */
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #FFFFFF; /* White icons */
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #FFFFFF; /* Hover color */
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #C72E40; /* MISCO Red */
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #595959; /* Active state color */
}

.animated-button:hover .circle {
  width: 600px;
  height: 600px;
  opacity: 1;
}

/* Blue scheme */
.animated-button.blue {
  background-color: #579aa9; /* Blue */
}

.animated-button.blue:hover .circle,
.animated-button.blue:hover svg,
.animated-button.blue:hover {
  fill: #579aa9; /* Blue */
}

/* Container styling */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure no underline for all links in case of specificity issues */
a.animated-button {
  text-decoration: none !important;
}

.animated-button.medical-blue {
  background-color: #0C5394;
}

.animated-button.medical-blue:hover .circle,
.animated-button.medical-blue:hover svg,
.animated-button.medical-blue:hover {
  fill: #0C5394;
}