/* ******************************************************************************
*********************************************************************************
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 {
  width: auto;
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px;
}


@media (min-width: 960px) {

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

}

.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: 'Helvetica 35 Thin';
  font-weight: normal;
  font-style: normal;
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Thin/HelveticaNeue-Thin.eot') format('embedded-opentype');
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Thin/HelveticaNeue-Thin.woff') format('woff'),
    url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Thin/HelveticaNeue-Thin.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica 85 Heavy';
  font-weight: normal;
  font-style: normal;
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Heavy/HelveticaNeue-Heavy.eot') format('embedded-opentype');
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Heavy/HelveticaNeue-Heavy.woff') format('woff'),
    url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Heavy/HelveticaNeue-Heavy.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Bold';
  font-weight: normal;
  font-style: normal;
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/Helvetica%20Neue%20Bold/HelveticaNeueBold.eot') format('embedded-opentype');
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/Helvetica%20Neue%20Bold/HelveticaNeueBold.woff') format('woff'),
    url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/Helvetica%20Neue%20Bold/HelveticaNeueBold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica 55 Roman';
  font-weight: normal;
  font-style: normal;
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Roman/HelveticaNeue-Roman.eot') format('embedded-opentype');
  src: url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Roman/HelveticaNeue-Roman.woff') format('woff'),
    url('//7372825.fs1.hubspotusercontent-na1.net/hubfs/7372825/Dushow%20Barcelona%20January%202021/Fonts/HelveticaNeue-Roman/HelveticaNeue-Roman.ttf') format('truetype');
  font-display: swap;
}


html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}

body {
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
}

p {}

a {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

/* Highlighted Text */
::-moz-selection {
  background: #32beff;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #32beff;
  color: #fff;
  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: 36px;
  line-height: 1.238;
  text-transform: uppercase;
}

.hs-form-field > label,
.field > label {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
}

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;
  transition: .2s ease-in-out;
  transition-property: color,background-color,border-color,box-shadow;
  border-radius: 8px;
  padding: 14px 15px;
  font-size: 18px;
}

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;
  background-origin: border-box;
  text-align: center;
  line-height: 48px;
  font-size: 17px;
  transition: .1s ease-in-out;
  transition-property: color,background-color,background-position,border-color,box-shadow;
  font-family: 'Helvetica 85 Heavy';
  text-transform: uppercase;
}

.hs-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
  box-shadow: 0 8px 50px -6px rgba(84,84,120,.26);
}

.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: #dc3232 !important;
  font-weight: normal;
}

.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 !important;
    font-family: 'Helvetica 85 Heavy' !important;
    line-height: 1.238 !important;
    font-size: 20px !important;
    color: #393D42 !important;
    text-transform: uppercase !important;
}

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

.custom_footer_lp .footer_bottom {
  margin-bottom: 8px;
}

 /* banner landing 1 */
@media (max-width: 320px) {
  
  #hs_cos_wrapper_main-section-module-4 select {
  height: 50px !important;
  }
}
/* ******************************************************************************
*********************************************************************************
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 {
  overflow: hidden;
}

.custom_header {}
.header__container {
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px;
}
.header_container {
  display: flex;
  position: relative;
}

.header_logo {
  margin-left: -25px;
  margin-right: -25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header_logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 106px;
  padding: 0 25px;
}


.navbar-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
  margin-right: -25px;
}
.language_menu {
  border: 1px solid transparent;
  padding: 7px;
  clear: both;
}
.language_menu .hs-menu-wrapper > ul > li {
  float: left;
  display: inline-block;
}
.language_menu .hs-menu-wrapper > ul > li > a {
  font-family: 'Helvetica 55 Roman';
  display: block;
  padding: 5px 10px;
  line-height: 1;
}

.navbar-toggle {
  color: #343434;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 106px;
  padding: 0 25px;
  font-size: 15px;
  font-family: inherit;
}
.navbar-toggle:hover {
  color: #32beff;
}
.navbar-toggle-icon {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0;
  background-color: transparent;
  display: inline-block;
  fill: currentcolor;
  line-height: 0;
}

.header_modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  overflow-y: auto;
  height: 100vh;
  background: #fff;
}
.header_modal .modal_dialogue {
  padding: 20px;
  position: relative;
  width: 100%;
  max-width: calc(100% - .01px);
}
.header_modal .modal-close {
  cursor: pointer;
  position: absolute;
  z-index: 1010;
  top: 20px;
  right: 20px;
  padding: 20px;
  color: #b6b6b6;
  transition: .1s ease-in-out;
  transition-property: color,opacity;
}
.header_modal .modal-close line {
  stroke: currentcolor;
}
.header_modal .modal-close:hover {
  color: #343434;
}
.header_modal .modal_container {
  padding: 30px;
}
.header_modal .modal_container .modal_body {
  min-height: 100vh;
  padding: 30px;
}
.header_modal .modal_body .modal_header {
  text-align: center;
  margin-bottom: 20px;
}
.header_modal .modal_body .modal_header img {
  margin-bottom: 60px;
}



ul ul ul a.emptyLink,
.footer_menu .hs-menu-wrapper > ul ul ul li a[href="javascript:;"] {
  position: relative;
  color: #a7a7a7 !important;
}

ul ul ul a.emptyLink:before,
.footer_menu .hs-menu-wrapper > ul ul ul li a[href="javascript:;"]:before {
  content: "Proximamente";
  position: absolute;
  top: -22px;
  left: 34px;
  background-color: rgba(0,0,0,.8);
  color: white;
  padding: 3px 5px;
  border-radius: 2px;
  font-family: 'Helvetica 35 Thin';
  display: none;
  font-size: 11px;
}
ul ul ul a.emptyLink:hover:before,
.footer_menu .hs-menu-wrapper > ul ul ul li a[href="javascript:;"]:hover:before {
  display: block;
}
.footer_menu .hs-menu-wrapper > ul ul ul li a[href="javascript:;"]:before {
  left: 50px;
  background-color: rgba(0,0,0,.3);
}


@media (min-width: 641px) {

  @-webkit-keyframes move {
    0% {
      -webkit-transform: translateY(-100%);
      -moz-transform: translateY(-100%);
      transform: translateY(-100%);
    }

    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes move {
    0% {
      -webkit-transform: translateY(-100%);
      -moz-transform: translateY(-100%);
      transform: translateY(-100%);
    }

    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      transform: translateY(0);
    }
  }

  .nav-down .header_container_wrapper {
    min-height: 106px;
  }

  .nav-down .custom_header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 980;
    box-shadow: 0 2px 5px 0 rgba(30,30,30,.09);
    animation-name: move;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
  }

}

@media (min-width: 960px) {

  .header__container {
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media (min-width: 1200px) {

  .header_modal .modal_container,
  .header_modal .modal_container .modal_body {
    padding: 65px;
  }

}

@media (max-width: 640px) {

  .header__container {
    padding-left: 0;
    padding-right: 0;
  }

  .header_logo {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-right {
    margin-right: 0;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */
body > div.body-wrapper.hs-content-id-42839621009.hs-landing-page.hs-page > div:nth-child(3) > div {
margin-top: 0px;
}

.footer_container_wrapper {
  margin-top: 65px;
  overflow: hidden;
}
.custom_footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 0;
}
.footer__container {}
.footer_logo {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
}
.logo_image {
  padding-left: 30px;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
}

.logo_seperator {
  padding-left: 30px;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
  margin-top: 30px;
}

.footer_menu .hs-menu-wrapper > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -60px;
  margin-top: 30px;
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li {
  position: relative;
  padding-left: 60px;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li:nth-child(3) {
  text-align: center;
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li:nth-child(4),
.footer_menu .hs-menu-wrapper > ul > li > ul > li:nth-child(5) {
  text-align: right;
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li + li {
  margin-top: 60px;
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li + li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e7e7e7;
  left: 40px;
  border-left-color: rgba(255,255,255,.2);
}
.footer_menu .hs-menu-wrapper > ul > li > ul > li > a {
  display: block;
  font-weight: 400;
  padding: 0 0 20px 0;
  font-size: 24px;
  line-height: 1.25;
  font-family: 'Helvetica Neue Bold';
  pointer-events: none;
}
.footer_menu .hs-menu-wrapper > ul ul ul {
  font-size: 14px;
  font-family: 'Helvetica 55 Roman';
  margin-top: 20px;
}
.footer_menu .hs-menu-wrapper > ul ul ul li a {
  display: block;
  padding: 5px 0;
  transition: all .2s linear;
}

.footer_bottom {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-top: 30px;
}
.bottom_menu {
  padding-left: 30px;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
}
#hs_cos_wrapper_footer_social_icons {
  padding-left: 30px;
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
  margin-top: 30px;
}
.bottom_menu .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.bottom_menu .hs-menu-wrapper > ul > li {
  padding-left: 20px;
}
.bottom_menu .hs-menu-wrapper > ul > li > a {
  display: block;
  transition: .1s ease-in-out;
  transition-property: color,background-color,border-color,box-shadow;
  font-size: 13px;
  font-family: 'Helvetica 55 Roman';
}






@media (min-width: 640px) {

  .footer_menu .hs-menu-wrapper > ul > li > ul > li {
    width: calc(100% * 1 / 3.001);
    margin-top: 30px !important;
  }

  .footer_menu .hs-menu-wrapper > ul > li > ul > li:first-child,
  .footer_menu .hs-menu-wrapper > ul > li > ul > li:nth-child(2) {
    width: 50%;
    margin-top: 0px;
  }

}

@media (min-width: 960px) {

  .custom_footer {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .logo_image {
    width: 20%;
  }

  .logo_seperator {
    width: 80%;
  }

  .footer_menu .hs-menu-wrapper > ul > li > ul > li {
    width: 20% !important;
    margin-top: 0 !important;
  }

  .bottom_menu,
  #hs_cos_wrapper_footer_social_icons {
    width: 50%;
    margin-top: 0;
  }

}

@media (min-width: 1200px) {

  .footer_logo {
    margin-left: -40px;
  }

  .logo_image {
    padding-left: 40px;
  }
  .logo_seperator {
    padding-left: 40px;
  }

  .footer_menu .hs-menu-wrapper > ul > li > ul {
    margin-left: -80px;
    margin-top: 40px;
  }

  .footer_menu .hs-menu-wrapper > ul > li > ul > li {
    padding-left: 80px;
  }

  .footer_bottom {
    margin-left: -40px;
    margin-top: 40px;
  }

  .bottom_menu,
  #hs_cos_wrapper_footer_social_icons {
    padding-left: 40px;
  }


}

@media (max-width: 1199px) {

  .footer_menu .hs-menu-wrapper>ul>li>ul>li+li:before {
    left: 30px;
  }

}

@media (max-width: 639px) {

  .footer_menu .hs-menu-wrapper>ul>li>ul>li {
    text-align: left !important;
  }

  .footer_menu .hs-menu-wrapper>ul>li>ul>li+li:before {
    content: "";
    position: absolute;
    right: 0;
    border-top: 1px solid #e7e7e7;
    top: -30px;
    left: 60px;
    border-top-color: rgba(255,255,255,.2);
    bottom: auto;
  }

}
@media (max-width: 456px) {
  .custom_footer {
    padding-left: 15px !important;
}
}

@media (max-width: 414px) {
  .custom_footer {
    padding: 55px 40px;
    
  }

  .logo_image img {
    width: 90px !important;
  }

  .footer_menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 1.15em;
  }

  .footer_menu .hs-menu-wrapper>ul>li>ul>li+li:before {
    display: none;
  }

  .bottom_menu .hs-menu-wrapper > ul > li {
    display: block;
    width: 100%;
    line-height: 200%;
  }

  .bottom_menu .hs-menu-wrapper > ul > li > a {
    font-size: 0.75em;
  }

}

@media (max-width: 351px) {

  body:not(.emulator) .footer_social_icons > div:last-child {
    margin-top: 15px;
  }

}

@media (max-width: 320px) {

  .custom_footer {
    padding: 55px 25px;
  }

  .footer_menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 1em;
  }

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


/* ============== Comman Styles ===================== */
****************************************************************************** */
 
.blog_html {}

/* Blog Post and Listing Body Class */
.blog {}

.hs_blog_wrapper {}

/* Blog Columns Wrapper */
.blog .content-wrapper {}

.blog .blog-content {}

.blog .blog-sidebar {}

.custom-byline {}
.custom-byline > span {}
.custom-byline > span:first-child {}
.custom-byline a {}
.custom-byline a:hover {}
.custom-byline .meta-author {}
.custom-byline .meta-author a.author-link {}
.custom-byline .meta-author a.author-link:hover {}
.custom-byline .custom-date {}
.custom-byline .meta-category {}
.custom-byline .meta-category a.topic-link {}
/* Blog form */
.hs-form-e5768ec7-f89d-4162-8d08-ec052911bad1_74e6c39d-51cc-41d6-951f-ea3904a9f1b9 .hs-richtext {
    margin-bottom: 3px !important;
    font-family: 'Helvetica 85 Heavy' !important;
    line-height: 1.238 !important;
    font-size: 20px !important;
    color: #393D42 !important;
    text-transform: uppercase !important;
}
/* =====================================
Blog Index 1.0 / 1.1, 1.2...
===================================== */
ol#list-style {
    counter-reset: item;
}
li.list {
    display: block;
}
li.list:before {
  content: counters(item, ".") " "; counter-increment: item;
}
/* =====================================
Blog Listing 
===================================== */

/* Blog Listing */
.hs-blog-listing {}

.hs-blog-listing .hs_blog_wrapper {} 

/* Blog Columns Wrapper */
.hs-blog-listing .content-wrapper {}

.hs-blog-listing .blog-content {
  margin-left: -30px;
}
.hs-blog-listing .blog-content .blog-section {
  padding-left: 30px;
}

@media (min-width: 1200px) {

  .hs-blog-listing .blog-content {
    margin-left: -40px;
  }

  .hs-blog-listing .blog-content .blog-section {
    padding-left: 40px;
  }

}

.hs-blog-listing .blog-sidebar {}

.hs-blog-header,
.hs_blog_wrapper {
  border-bottom-width: 0px;
  padding-bottom: 0px; 
  border: 20px solid #FFFFFF;
  border-top: 0;
}
.hs-blog-header .blog-header-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
}
.hs-blog-header .blog-header-column {
  width: 100%;
  flex-grow: 1;
  padding-left: 30px;
}
.hs-blog-header h1 {
  margin: 0;
  font-size: 2.5em;
  line-height: 1;
  font-family: 'Helvetica 85 Heavy',sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}


/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}
.blog-listing-wrapper .post-listing {
  /*justify-content: space-between;*/
  display: flex;
  flex-wrap: wrap;
  margin-left: -60px;
  align-items: flex-start;
  align-content: flex-start;
}

/* Blog Post Title */
.blog-listing-wrapper .post-listing .post-item .post-header h2,
h2.post-listing-simple {}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a,
h2.post-listing-simple a {}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a:hover,
h2.post-listing-simple a:hover {}

.blog-listing-wrapper .post-listing .post-item .post-body h2,
h2.post-listing-simple {
  margin: 0;
  font-size: 24px !important;
  line-height: 1.25;
  font-family: 'Helvetica Neue Bold';
  margin-top: 20px;
  text-transform: none;
}
.blog-listing-wrapper .post-listing .post-item .post-body h2 a,
h2.post-listing-simple a {
  color: inherit;
}
.blog-listing-wrapper .post-listing .post-item .post-body h2 a:hover,
h2.post-listing-simple a:hover {
  color: inherit;
}


/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item-wrapper {
  position: relative;
  padding-left: 60px;
  width: 100%;
}
.blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper {
  margin-top: 80px;
}
.blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:before {
  content: "";
  position: absolute;
  right: 0;
  left: 60px;
  top: -40px;
}
.blog-listing-wrapper .post-listing .post-item {}
.blog-listing-wrapper .post-listing .post-item .post-header {}
.blog-listing-wrapper .post-listing .post-item .post-body {}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content {
  margin-top: 20px;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content p {
  margin: 0;
}

.custom-byline-listing {
  font-size: 16px;
  line-height: 1.25;
  color: #b6b6b6;
  text-transform: uppercase;
  margin-top: 20px;
}
.custom-byline-listing > span {}
.custom-byline-listing > span:first-child {}
.custom-byline-listing > span:last-child {}
.custom-byline-listing a {}
.custom-byline-listing a:hover {}
.custom-byline-listing .meta-author {}
.custom-byline-listing .meta-author a.author-link {}
.custom-byline-listing .meta-author a.author-link:hover {}
.custom-byline-listing .custom-date {}
.custom-byline-listing .meta-category {}
.custom-byline-listing .meta-category a.topic-link {}
.custom-byline-listing .meta-category a.topic-link:hover {}
.custom-byline-listing .meta-comments {}
.custom-byline-listing .meta-comments a:hover {}

/* Post Featured Image on Listings Page */
.hs-blog-listing .hs-featured-image-wrapper {}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link {}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  border-width: 0;
  max-height: 100%;
  max-width: 100%;
  height: 210px;
  width: 100%;
  display: inline-block !important;
  float: none;
  margin: 0;
  object-fit: cover;
  border-radius: 8px;
}

/* Read More Link */
.more-link-wrapper {
  margin-top: 20px;
  text-align: center;
}
a.more-link {
  line-height: 42px;
  font-size: 13px;
  padding: 0px 20px;
}
a.more-link:hover {}

.related_post {
padding: 40px 0px;
}

/*.related-blog-post-summary {
    margin-top: 5px;
    margin-bottom: 10px;
}*/



/* Numbered Pagination */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination > div {}
.blog-pagination-left {}
.blog-pagination-right {}
.blog-pagination-center {}
.blog-pagination-center a {}
.blog-pagination a {
  display: inline-block;
  padding: 0 10px;
  color: #b6b6b6;
  box-sizing: border-box;
  min-width: 0;
  background: 0 0;
  line-height: 1.86;
  text-align: center;
  transition: .1s ease-in-out;
  transition-property: color,background-color,border-color,box-shadow;
  font-size: 15px;
}
.blog-pagination a:hover,
.blog-pagination a:focus {
  color: #343434;
  text-decoration: none;
  background-color: transparent;
}
.blog-pagination a.elipses {}
.blog-pagination a.active {
  color: #343434;
  text-decoration: none;
  background-color: transparent;
  pointer-events: none;
}
.blog-pagination a svg polyline {
  stroke: currentcolor;
}
.blog-pagination a.prev-link {}
.blog-pagination a.next-link,
.blog-pagination a.prev-link {}
.blog-pagination a.next-link:hover,
.blog-pagination a.prev-link:hover {}


/*============= Search Results ==============*/

ul.hs-search-results__listing {}

ul.hs-search-results__listing li {}
ul.hs-search-results__listing li .hs-search-results__title {}
ul.hs-search-results__listing li .hs-search-results__title .hs-search-highlight {}
ul.hs-search-results__listing li .hs-search-results__title:hover {}
p.hs-search-results__description {}

ul {
    padding-left: 60px;
}
li {
    margin-bottom: 5px;
}
/* =====================================
Blog Post 
===================================== */

/* Blog Post */
.hs-blog-post {}

.hs-blog-post .hs_blog_wrapper {}

/* Blog Columns Wrapper */
.hs-blog-post .content-wrapper {}

.hs-blog-post .blog-content {}

.hs-blog-post .blog-sidebar {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-post .post-header h1 {}

/* Use this to set up different styling for your blog posts */
.blog-post-wrapper .post-header {}
.blog-post-wrapper .post-body {}
.blog-post-wrapper .post-body img {
  max-width: 100%;
  margin: 35px auto !important;
}   
.blog-post-wrapper .custom-post-footer {}

/* Featured Image on Post Page */
.hs-blog-post .hs-featured-image-wrapper {}
.hs-blog-post .hs-featured-image-wrapper .hs-featured-image-link {}
.hs-blog-post .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  border-width: 0;
  max-height: 100%;
  max-width: 100%;
  width: 1160px;
  display: inline-block !important;
  float: none;
  margin: 0px;
  object-fit: cover;
  height: 450px;
}

.custom-byline-post {
  font-size: 16px;
  line-height: 1.25;
  color: #b6b6b6;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 5px;
}
.custom-byline-post > span {}
.custom-byline-post > span:first-child {}
.custom-byline-post > span:last-child {}
.custom-byline-post a {}
.custom-byline-post a:hover {}
.custom-byline-post .meta-author {}
.custom-byline-post .meta-author a.author-link {}
.custom-byline-post .meta-author a.author-link:hover {}
.custom-byline-post .custom-date {}
.custom-byline-post .meta-category {}
.custom-byline-post .meta-category a.topic-link:hover {}
.custom-byline-post .meta-comments {}
.custom-byline-post .meta-comments a:hover {}


/*============ Post Pagination =============*/
.custom-post-pagination {
  text-align: center;
  margin-bottom: 65px;
}
.custom-post-pagination .post-pagination-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.custom-post-pagination .post-pagination-wrapper a {
  display: block;
  padding: 0 10px;
  color: #b6b6b6;
  box-sizing: border-box;
  min-width: 0;
  background: 0 0;
  line-height: 1.86;
  text-align: center;
  transition: .1s ease-in-out;
  transition-property: color,background-color,border-color,box-shadow;
  font-size: 15px;
}
.custom-post-pagination .post-pagination-wrapper a:hover {
  color: #0096d7;
  text-decoration: none;
  background-color: transparent;
}
.custom-post-pagination .post-pagination-wrapper a .icon {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0;
  background-color: transparent;
  display: inline-block;
  fill: currentcolor;
  line-height: 0;
}
.custom-post-pagination .post-pagination-wrapper a polyline {
  stroke: currentcolor;
}
.custom-post-pagination .post-pagination-wrapper a.previous-posts-link {}
.custom-post-pagination .post-pagination-wrapper a.next-posts-link {}

/* Comment Section */
.comment-date {
  display: block !important;
}

/* =====================================
Blog Sidebar 
===================================== */

.blog .blog-sidebar {}

/* Blog Modules */
.blog-sidebar .widget_sidebar {
  margin-bottom: 30px;
}
.blog-sidebar .widget_sidebar h3 {}
.blog-sidebar .widget_sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar .widget_sidebar ul li {}
.blog-sidebar .widget_sidebar ul li a {}
.blog-sidebar .widget_sidebar ul li a:hover {}
.blog-sidebar .widget_sidebar ul li a .filter-link-count {
  display: none;
}


/* =============== Blog Author Page and Author Bio =============== */

.hs-blog-listing .hs-author-profile {
  border-bottom: 1px solid #ccc;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}
.hs-blog-post .hs-author-profile {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
}
.hs-author-profile .hs-author-profile:after {
  content: '';
  display: block;
  clear: both;
}

/* Author Avatar */
.hs-author-profile .hs-author-avatar {
  float: left;
  margin-right: 15px;
  max-width: 100px;
}
.hs-author-profile .hs-author-avatar img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 100%;
}

/* Author Bio Wrapper*/
.hs-author-profile .hs-author-bio {
  overflow: hidden;
}

/* Author Name */
.hs-author-profile h2.hs-author-name {
  margin: 0 0 10px 0;
}

/* Author Social Follow Me */
.hs-author-profile .hs-author-social-section {}
.hs-author-profile .hs-author-social-label {}
.hs-author-profile .hs-author-social-links {}
.hs-author-profile .hs-author-social-link {}
.hs-author-profile .hs-social-facebook {}
.hs-author-profile .hs-social-linkedin {}
.hs-author-profile .hs-social-twitter {}
.hs-author-profile .hs-social-google-plus {}


/* =============== Blog Comment Form =============== */

.section.post-footer {}
.section.post-footer .hs-richtext {
}
.section.post-footer .hs-richtext h3 {}
.section.post-footer .hs-richtext p {}

/* Label */
.section.post-footer .hs-form-field > label {}
.section.post-footer .hs-error-msgs label {}
.section.post-footer label {}

/* Inputs */
.section.post-footer input[type="text"],
.section.post-footer input[type="email"],
.section.post-footer textarea {}

.section.post-footer input[type="text"]:focus,
.section.post-footer input[type="email"]:focus,
.section.post-footer textarea:focus {}

.section.post-footer input[type="text"] {}
.section.post-footer input[type="text"]:focus {}
.section.post-footer input[type="email"] {}
.section.post-footer input[type="email"]:focus {}
.section.post-footer input[type="submit"] {}
.section.post-footer input[type="submit"]:hover {}

.section.post-footer textarea {}
.section.post-footer textarea:focus {}

.section.post-footer input[type="checkbox"] {}

.section.post-footer .grecaptcha-badge {
  margin: 0 !important;
}

.full_link {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

a.hs-button.more-news-button {
  line-height: 42px;
  padding: 0 20px;
}
.hs-cta-wrapper p, .hs-cta-wrapper div {
    margin: 0;
    padding: 15px 0px;
}

/* ==========================================================================
8. MISCELLANEOUS                                      
========================================================================== */
/* cta intro */
.cta-form {
  max-width: 700px;
  margin: 0 auto;
}

/* Blog list Form */
#formulario form, 
#formulario .hbspt-form {
  padding: 20px 0 0 0;
  box-shadow: inherit;
}
#formulario form {
  margin: 0 auto;
}
#formulario form .hs_firstname {
  width: 49%;
  float: left;
}
#formulario form .hs_lastname {
  width: 49%;
  float: right;
}
#formulario form .hs_email {
  clear: both;
}

/* ==========================================================================
9. MEDIA QUERIES                              
========================================================================== */

h2 {
   margin: 35px 0px 20px 0px;
   text-transform: uppercase;
    font-size: 28px !important;
  }
  h3 {
    margin-bottom: -3px !important;
    margin-top: 30px;
    font-size: 22px !important;
    color:#0096d7 !important;
    font-family:"Helvetica Neue Bold" !important;
  }
  h4 {
    font-size: 18px !important;
  }

strong {
  font-family: 'Helvetica Neue Bold' !important;
  }
@media screen and (min-width: 683px) and (max-width: 1315px) {
  img.two-column-photo {
    width: 49% !important;
}
}
@media (min-width: 960px) {

  .hs-blog-header {
    padding-top: 65px;
    padding-bottom: 0px;
  }
  .hs_blog_wrapper{
    
    padding-top: 0px;
    
  }

  .hs-blog-header h1 {
    width: 100%;
    font-size: 62px !important;
    padding-bottom: 20px;
  }
  
  .blog-listing-wrapper .post-listing .post-item-wrapper {
    width: calc(100% * 1 / 3.001);
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper {
    margin-top: 0px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:nth-child(n+4) {
    margin-top: 40px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    /*border-left: 1px solid #e7e7e7;*/
    left: 30px;
    right: auto;
    border-top: 0;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:nth-child(3n+1):before {
    display: none;
  }

  .hs-blog-header.blog-post-header .blog-header-column {
    width: 50%;
  }
  

}

@media (min-width: 1200px) {

  .hs-blog-header .blog-header-grid {
    margin-left: -40px;
  }

  .hs-blog-header .blog-header-column {
    padding-left: 40px;
    padding-bottom: 20px;
  }

  .blog-listing-wrapper .post-listing {
    margin-left: -80px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper {
    width: 33%;
    padding-left: 80px;
  }
  .blog-listing-wrapper .post-listing .post-item-wrapper+.post-item-wrapper:nth-child(n+4) {
    margin-top: 0;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:nth-child(n+4) {
    margin-top: 65px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    /*border-left: 1px solid #e7e7e7;*/
    left: 40px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper + .post-item-wrapper:nth-child(4n+1):before {
    display: none;
  }

}


@media (max-width: 959px) {

  .hs-blog-header .blog-header-column.right {
    margin-top: 30px;
  }
  .hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 100%;
    max-width: 100%;
    width: 100%;
    float: none;
    margin: 0;
}
  .h1-blog-post {
  padding-bottom:20px;
  font-size: 2.0em !important;
}
}

@media (max-width: 568px) {
.hs-featured-image {
    float: none;
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: auto !important;
}
}

  @media (min-width: 479px) {
    .h1_wrapper {
    padding-right: 35px;
}
  }

@media (max-width: 479px) {

  .hs_recaptcha.hs-recaptcha.field.hs-form-field > div {
    max-width: 300px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .checkbox-row span.fakelabel span {
    float: none !important;
  }
  
  .hs-blog-header .blog-header-grid {
    margin-left: 0px;
}
  .page-center, .dnd-section>.row-fluid {
    padding-left: 0;
    padding-right: 0;
}

 .hs-blog-header, .hs_blog_wrapper {
    border-top: 5px solid #fff !important;
   border-bottom: 5px solid #fff !important;
   border-right: 15px solid #fff !important;
   border-left: 15px solid #fff !important;
}
  ul {
    padding-left: 40px;
}
  
}


@media (max-width: 414px) {

  .hs-blog-header,
  .hs_blog_wrapper {
    border: 15px solid #FFFFFF;
  }

  .blog-listing-wrapper .post-listing .post-item .post-body h2,
  h2.post-listing-simple {
    font-size: 1.15em;
  }
  
img.hs-image-widget {
    width: 100% !important;
}
  #hs-link-footer_logo_ > img {
    width: 90px !important;
  }
  #hs-link-header_logo_hs_logo_widget > img {
    width: 120px !important;
  }
}
@media (max-width: 472px) {
  .hs-blog-header .blog-header-column {
    padding-left: 0px;
    padding-bottom: 20px;
}
  .blog-listing-wrapper .post-listing .post-item-wrapper+.post-item-wrapper {
    margin-top: 60px;
}
}


@media (max-width: 375px) {

  .blog-listing-wrapper .post-listing .post-item .post-body h2,
  h2.post-listing-simple {
    font-size: 1.05em;
  }

}

@media (max-width: 320px) {
  .blog-listing-wrapper .post-listing .post-item .post-body h2,
  h2.post-listing-simple {
    font-size: 1em;
  }
    hs_cos_wrapper_module_16109914584323 {
    padding: 50px 15px 20px 15px !important;
}

}



.hs-richtext, #hsForm_e5768ec7-f89d-4162-8d08-ec052911bad1 > div:nth-child(1) > div {
    font-size: 24px !important;
    color: #393c43 !important;
    font-family: 'Helvetica 85 Heavy' !important;
    line-height: 1.15 !important;
}
.center {
      text-align: center;
}

body > div.body-wrapper.hs-content-id-40766731044.hs-blog-post.hs-blog-id-28872680799 > div:nth-child(4) {
  padding-top: 0px !important;
  padding-bottom:65px !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 (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 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: 767px) {

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

}


@media (max-width: 479px) {

  .hs-button.primary[value="Update email preferences"] {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .error-page_heading {
    font-size: 50px;
  }

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

}