/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

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

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

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

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

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

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

/* Paragraphs */

p {
  margin: 0;
}

* + p {
    padding-top: 15px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;display: inline-block;vertical-align:middle;height: auto;max-width: 100%;
}
.button a,a.button {
  padding: 11px 17px;background-color: var(--blue);  border: 1px solid var(--blue);color: var(--white);border-radius: 7px;display: inline-block;vertical-align:middle;text-align:center; 
  font-size: 16px;line-height: 1.05;font-weight: 500;
}

.button a:hover,a.button:hover {
  background-color: var(--ea-blue3);border-color: var(--ea-blue3);color: var(--white);text-decoration: none;
}
.button.outline a,a.button.outline { background-color: var(--white); border-color: var(--blue); color: var(--blue); }
.button.outline a:hover,a.button.outline:hover { border-color: var(--ea-blue3);color: var(--ea-blue3); }
/* Fields */

form .input { margin-right:0 !important;margin-top:8px; }
form fieldset { max-width:inherit !important; margin:0 -20px !important;  }
form fieldset.form-columns-1 .field { width:100% !important; }
form fieldset.form-columns-2 .field { width:50% !important; }
form fieldset.form-columns-3 .field { width:33.33% !important; }
form .field {padding: 0 0 16px;}
form fieldset .field { padding-left:20px; padding-right:20px; }
form ul.multi-container { padding-top:10px; }
form ul {margin: 0;padding: 0;list-style-type: none;}
form ul.multi-container li { margin:5px 0; }
textarea, input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select, input[type="date"] {background-color: #fff;border: 1px solid #D1D1D1;color: #777777 !important;display: block;font-family: inherit !important;font-size: 14px !important;line-height: 1 !important;margin: 0 !important;outline: none;padding: 10px !important;width: 100%!important;font-weight: 400;border-radius: 6px;min-height:auto!important;}
textarea { min-height:133px; }
form input[type="radio"]+span,form input[type="checkbox"]+span { position: relative; display:block;  padding-left: 40px;  cursor:pointer;}
form input[type="radio"]+span:before,form input[type="checkbox"]+span:before { content: '';  color:#09072e;  position:absolute;  left:4px;  top: 0;  font-size:0; width: 24px;  height: 24px;display:block; border:1px solid #ccc;  transition:all ease .3s;  -webkit-transition:all ease .3s;  text-align:center;  line-height:14px;  border-radius: 4px;background-position: center center;background-repeat: no-repeat;background-size: auto; }
form input[type="radio"]:checked+span:before { background: #212121; border-color:#212121;}
form input[type="checkbox"]:checked+span:before { border-color: #212121; font-size:12px;  background-color: #212121;  color:#fff;  letter-spacing: inherit;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M0 11.522l1.578-1.626 7.734 4.619 13.335-12.526 1.353 1.354-14 18.646z'/%3E%3C/svg%3E");}
form label {color: #333333;font-size: 16px;font-family: inherit;font-weight: 500;line-height: 1.5;display: block;}
input[type="checkbox"] { display: none;}
.subscription-section form input[type="radio"], .subscription-section form input[type="checkbox"] {  position: absolute;   width: 100%;   height: 100%;   left: 0;    top: 0;
  opacity: 0;    z-index: 1; }
form fieldset label > .hs-form-required {color: #F44336;font-weight: 400;padding-left: 5px;}
select {font-weight: 500;}
::placeholder {font-family: inherit;color: #777777; font-weight: 400;}
input[type=submit] {background-color: #00239C;border: 1px solid #00239C;color: #FFFFFF;display: inline-block;font-family: inherit;font-size: 16px;font-weight: 500;line-height: 1.01;padding: 10px 58px;text-align: center;transition: all .3s ease;vertical-align: middle;border-radius: 6px;cursor: pointer;width:100%;}

input[type=submit]:hover {background-color: #307FE2;color: #fff;border-color: #307FE2;}
.hs_error_rollup {display: none;}
.hs-error-msgs{padding-top: 5px; font-weight: 300;}
.hs-error-msg{font-size: 14px; line-height: 1.3; color: #EF6B51; }
.submitted-message {color: #212121;font-size: 20px; text-align:center;font-weight: 500;}
select {appearance: none;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.51744 7.39754C6.41269 7.39804 6.3089 7.37761 6.21215 7.33745C6.11541 7.29729 6.02766 7.23821 5.95405 7.16368L0.639066 1.8487C0.533058 1.69361 0.485221 1.50607 0.503991 1.31915C0.522761 1.13224 0.606932 0.957953 0.741659 0.827039C0.876386 0.696124 1.05301 0.61699 1.24039 0.603593C1.42777 0.590196 1.61386 0.643397 1.76584 0.753812L6.51744 5.47352L11.269 0.753812C11.4189 0.656664 11.597 0.612634 11.7748 0.628778C11.9527 0.644922 12.1199 0.720307 12.2498 0.842848C12.3797 0.96539 12.4647 1.12799 12.4912 1.30459C12.5177 1.4812 12.4841 1.66157 12.3958 1.81681L7.08083 7.13179C7.00996 7.21211 6.92344 7.27711 6.82656 7.32281C6.72968 7.36851 6.62449 7.39394 6.51744 7.39754Z' fill='%2300239C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;background-position: calc(100% - 12px);background-size: 12px auto;}

input.datepicker {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' viewBox='0 0 13 15' fill='none'%3E%3Cpath d='M10.2838 2.01351H9.33783V1.06757C9.33783 0.917039 9.27804 0.772676 9.1716 0.666237C9.06516 0.559797 8.92079 0.5 8.77027 0.5C8.61974 0.5 8.47538 0.559797 8.36894 0.666237C8.2625 0.772676 8.2027 0.917039 8.2027 1.06757V2.01351H4.79729V1.06757C4.79729 0.917039 4.7375 0.772676 4.63106 0.666237C4.52462 0.559797 4.38025 0.5 4.22973 0.5C4.0792 0.5 3.93484 0.559797 3.8284 0.666237C3.72196 0.772676 3.66216 0.917039 3.66216 1.06757V2.01351H2.71621C2.16428 2.01351 1.63494 2.23277 1.24467 2.62305C0.854388 3.01333 0.635132 3.54266 0.635132 4.09459V12.4189C0.635132 12.9709 0.854388 13.5002 1.24467 13.8905C1.63494 14.2807 2.16428 14.5 2.71621 14.5H10.2838C10.8357 14.5 11.365 14.2807 11.7553 13.8905C12.1456 13.5002 12.3649 12.9709 12.3649 12.4189V4.09459C12.3649 3.54266 12.1456 3.01333 11.7553 2.62305C11.365 2.23277 10.8357 2.01351 10.2838 2.01351ZM2.71621 3.14865H3.66216V4.09459C3.66216 4.24512 3.72196 4.38949 3.8284 4.49593C3.93484 4.60237 4.0792 4.66216 4.22973 4.66216C4.38025 4.66216 4.52462 4.60237 4.63106 4.49593C4.7375 4.38949 4.79729 4.24512 4.79729 4.09459V3.14865H8.2027V4.09459C8.2027 4.24512 8.2625 4.38949 8.36894 4.49593C8.47538 4.60237 8.61974 4.66216 8.77027 4.66216C8.92079 4.66216 9.06516 4.60237 9.1716 4.49593C9.27804 4.38949 9.33783 4.24512 9.33783 4.09459V3.14865H10.2838C10.5347 3.14865 10.7753 3.24831 10.9527 3.42571C11.1301 3.60311 11.2297 3.84371 11.2297 4.09459V6.17568H1.77027V4.09459C1.77027 3.84371 1.86993 3.60311 2.04733 3.42571C2.22473 3.24831 2.46533 3.14865 2.71621 3.14865ZM10.2838 13.3649H2.71621C2.46533 13.3649 2.22473 13.2652 2.04733 13.0878C1.86993 12.9104 1.77027 12.6698 1.77027 12.4189V7.31081H11.2297V12.4189C11.2297 12.6698 11.1301 12.9104 10.9527 13.0878C10.7753 13.2652 10.5347 13.3649 10.2838 13.3649Z' fill='%2300239C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;background-position: calc(100% - 11px);padding-right: 29px !important;}



a.ui-datepicker-next.ui-corner-all {order: 2;}
.ui-datepicker-header {display: flex;flex-wrap: nowrap;align-items: center;justify-content: space-between;border-bottom: 1px solid #DEE2E6;padding: 0 11px;}
.ui-datepicker-title {font-size: 14px;color: #333333;font-weight: 400;line-height: 1.71;}
div#ui-datepicker-div {box-shadow: 0px 8px 16px 0px #00000026;background-color: #fff;border-radius: 4px;display:none;}      
.ui-datepicker-prev.ui-corner-all, .ui-datepicker-next.ui-corner-all {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.2' viewBox='0 0 11 10' width='11' height='10'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' fill='%23666' fill-rule='evenodd' d='m6.1 1.1l-1.1-1.1-5 5 5 5 1.1-1.1-4-3.9z'/%3E%3Cpath xmlns='http://www.w3.org/2000/svg' fill='%23666' fill-rule='evenodd' d='m11.1 1.1l-1.1-1.1-5 5 5 5 1.1-1.1-4-3.9z'/%3E%3C/svg%3E");
  font-size: 0px;height: 40px;width: 15px;background-repeat: no-repeat;background-position: center center;}
a.ui-datepicker-next.ui-corner-all {transform: rotate(180deg);}
table.ui-datepicker-calendar, table.ui-datepicker-calendar a {font-size: 14px;color: #333;font-weight: 400;padding: 8px 12px;display: block;}
table.ui-datepicker-calendar a {padding: 5px 12px;display: block;text-decoration: none;border-radius: 3px;}
table.ui-datepicker-calendar tr td {text-align: center;}
table.ui-datepicker-calendar tr th {font-weight: 500;text-align: center;}
table.ui-datepicker-calendar a:hover {background-color: var(--blue);color: #fff;}
table.ui-datepicker-calendar tr th span {display: block;padding: 5px;}
a.ui-state-default.ui-state-highlight {background-color: var(--blue);color: #fff;}
span.ui-state-default {color: #ADB5BD;}

form .chosen-container-multi .chosen-choices {border: 1px solid #D1D1D1;border-radius: 6px;padding: 5px 25px 5px 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M6.51744 6.89797C6.41269 6.89846 6.3089 6.87803 6.21215 6.83787C6.11541 6.79772 6.02766 6.73864 5.95405 6.66411L0.639066 1.34913C0.533058 1.19404 0.485221 1.0065 0.503991 0.819581C0.522761 0.632665 0.606932 0.45838 0.741659 0.327466C0.876386 0.196552 1.05301 0.117418 1.24039 0.104021C1.42777 0.0906236 1.61386 0.143824 1.76584 0.25424L6.51744 4.97394L11.269 0.25424C11.4189 0.157091 11.597 0.113061 11.7748 0.129205C11.9527 0.14535 12.1199 0.220734 12.2498 0.343275C12.3797 0.465817 12.4647 0.628419 12.4912 0.805022C12.5177 0.981624 12.4841 1.162 12.3958 1.31724L7.08083 6.63222C7.00996 6.71254 6.92344 6.77754 6.82656 6.82324C6.72968 6.86894 6.62449 6.89437 6.51744 6.89797Z' fill='%2300239C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;background-position: calc(100% - 11px) center;background-size: 12px auto;box-shadow: none;}
form .chosen-container {width: 100% !important;}


form .chosen-container .chosen-results li {padding: 10px 15px;color: #777777;font-size: 14px;transition: all ease .3s;}
form .chosen-container .chosen-drop {box-shadow: 0px 2px 12px 0px #0000001A;border: 1px solid #D1D1D1;border-radius: 6px;}
form .chosen-container .chosen-results li.active-result.highlighted {background: none;background-color: #EFF3F8;color: #777777;}

@media(max-width:767px){
  table.ui-datepicker-calendar a {padding: 3px 8px;}
}


@media(max-width:767px){
  input[type=submit] {min-width: auto;width: 100%;}
  form fieldset.form-columns-2 .field {width: 100% !important;}
}


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

/* HEADER CSS */
header.header {
    padding: 0px 0!important;
}
.header-top ul {margin: 0 -4px;padding: 0;list-style: none;display: flex;flex-wrap: wrap;justify-content: flex-end;align-items: center;}
.header-top ul > li > a {color: var(--grey) !important;}
.header-top ul > li > a.lang-link {color: var(--blue) !important; }
.header-top ul > li > a.lang-link.current-lang {font-weight:bold;}
.header-top ul > li {padding: 0 8px;}
.header-top ul > li + li {border-left: 1px solid #D1D1D1;}
.header {box-shadow: 0px 2px 12px 0px #0000001A;padding: 16px 0;}
/*.header-bottom {padding-top: 28px;}*/
.header-two-col {display: flex;flex-wrap: wrap;align-items: flex-end;}
.header-left {width: 60%;}
.header-right {width: 40%;}
.logo-two-cols {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: flex-end;}
.r-buttons {display: flex;flex-wrap: wrap;justify-content: flex-end;align-items: flex-end;}
.header-left .logo-two-cols  {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start!important;
}


.logo-right {
    padding-left: 20px;
}
.button-ss {
    margin-left: 15px;
}
.btn-s + .btn-s {padding-left: 16px;}
.header-top ul > li:last-child {padding-right: 0;}
.header-top a {font-size: 16px;line-height: 1.05;font-weight: 500;}

@media (min-width: 768px) {

  .mobile-ss { display: none; }

}

@media (max-width: 1230px) {

  .header-left {width: 60%;}
  .header-right {width: 40%;}

}

@media (max-width: 991px) {

  header.header .content-wrapper {max-width: 100%;}
  .logo-right {padding-left: 13px;}

}

@media (max-width: 767px) {

  .header-bottom {padding-top: 0;}
  .logo-right {padding-left: 0;display: none;}
  header.header {position: relative;padding: 8px 0;}
  .header-left {position: relative;top:0px;width: auto;}
  .header-two-col {display: block;}
  .logo-two-cols {display: block;}
  .mob-two-col {display: flex;flex-wrap: nowrap;justify-content: space-between;align-items: center;}
  .prf-icon {line-height: 0;border: 1px solid var(--blue);width: 40px;height: 40px;display: flex;flex-wrap: nowrap;justify-content: center;align-items: center;border-radius: 50%;cursor: pointer;}
  .header-right {position: fixed;top: 120px;left: 0;width: 100%;z-index: 2;background-color: var(--cateskill-white);padding: 15px 0;transform: translateX(100vw);/*transition: all ease 0.8s;*/}
  .r-buttons {display: block;}
  .btn-s+.btn-s {padding: 0;}
  .btn-s {padding: 10px 15px !important;}
  header.header.active .header-right { transform: translateX(0); }
  .mob-left .button-ss {position: relative;left: 100px;margin-top: 3px;}


}

/* Footer CSS */

.footer-section {background-color: var(--blue);padding-top: 48px;padding-bottom: 12px;}
.footer-list .hs-menu-wrapper > ul {margin: 0 -12px;padding: 0;list-style: none;}
.footer-list .hs-menu-wrapper > ul > li > a {color: var(--white);font-size: 16px;line-height: 1.05;font-weight: 500;}
.footer-bottom {margin-top: 40px;position: relative;}
.footer-two-col {display: flex;flex-wrap: wrap;justify-content: space-between;}
.footer-list .hs-menu-wrapper > ul > li {padding: 12px;}
.footer-bottom:before {content: ''; background-color: var(--white);border-top: 1px solid #fff;position: absolute;top: 20px; left: 0;width: 62%;z-index: 1;}
.social-icons ul {margin: 0 -8px;padding: 0;list-style: none;display: flex;flex-wrap: wrap;}
.social-icons ul > li {padding: 0 8px;}
.custom-icon a {line-height: 0;}
.custom-icon a {background-color: var(--white);width: 41px;height: 41px;display: flex;flex-wrap: nowrap;justify-content: center;align-items: center;border-radius: 50%;}
.footer-left {padding-top: 20px;}
.footer-list .hs-menu-wrapper > ul > li > a:hover {color: var(--ea-blue3);}
.custom-icon a:hover {background-color: var(--ea-blue3);}
.custom-icon a:hover svg path {fill: var(--white);}
.social-icons ul > li svg path {transition: all ease 0.3s;}

@media (max-width: 1230px) {

  .footer-list .hs-menu-wrapper>ul>li {padding: 12px 6px;}
  .custom-icon a {width: 35px;height: 35px;}

}

@media (max-width: 1080px) {

  .footer-bottom:before {width: 100%;display: none;}
  .footer-left {padding-top: 0;}
  .footer-bottom {border-top: 1px solid var(--white);}
  .footer-two-col {display: block;}
  .footer-right {padding-top: 15px;}
  .footer-section {padding-bottom: 24px;}

}

@media (max-width: 767px) {

  .footer-section {padding-top: 48px;padding-bottom: 32px;}
  .footer-bottom {border-top: none;margin-top: 48px;}
  .footer-list .hs-menu-wrapper>ul>li {padding: 16px 0;}
  .footer-list .hs-menu-wrapper>ul {margin: 0;}
  .footer-two-col {border-top: 1px solid var(--white);padding-top: 12px;}
  .social-icons ul>li {padding: 8px;}
  .footer-right {padding-top: 32px;}

}

.header--no-navigation .header__container {
  height: 100px; /* O la altura que prefieras */
  display: flex;
  align-items: center;
}

.header--no-navigation .header__logo {
  padding-top: 20px; /* Espaciado superior para el logo */
  padding-bottom: 20px; /* Espaciado inferior para el logo */
  margin-top: auto; /* Centrado vertical */
  margin-bottom: auto; /* Centrado vertical */
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}