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

@font-face { 
  font-family: Barlow; 
  src: url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/barlow-v5-latin-regular-d216a0a23d2052c84e6fc4f074250c50.woff2) format("woff2"), 
    url() format("woff"); 
  font-style: normal; 
  font-weight: 400; 
  font-display: swap;
}

@font-face { 
  font-family: Barlow; 
  src: url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/barlow-v5-latin-italic-d0bb13f1395f85771b8c4ba8cd075c16.woff2) format("woff2"), 
    url() format("woff"); 
  font-style: italic; 
  font-weight: 400; 
  font-display: swap; 
}

@font-face { 
  font-family: Barlow; 
  src: url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/barlow-v5-latin-600-e2663d8dc0169d3058085f923cb89f2d.woff2) format("woff2"), 
    url() format("woff"); 
  font-style: normal; 
  font-weight: 600; 
  font-display: swap;
}

@font-face { 
  font-family: Barlow; 
  src:url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/barlow-v5-latin-700-99202e65c40f0369b3dce15f591d712b.woff2) format("woff2"), 
    url() format("woff"); 
  font-style: normal;
  font-weight: 700; 
  font-display: swap;
}

@font-face { 
  font-family: Barlow Semi Condensed; 
  src: url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/barlow-semi-condensed-v6-latin-900-c9e19a079a8f39ceaf8477e5a366d60f.woff2) format("woff2"), 
    url() format("woff"); 
  font-style: normal; 
  font-weight: 900;
  font-display: swap;
}

@font-face { 
  font-family: tabler-icons;
  src: url() format("embedded-opentype"), 
    url(https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/raw_assets/public/ACAGroup_may2023/fonts/tabler-icons-ab4d7fb44f09664c6b018cc5e9d5f6c3.woff2) format("woff2"),
    url() format("woff"), 
    url() format("truetype"), 
    url() format("svg"); 
  font-style: normal; 
  font-weight: 400; 
}

@font-face { 
  font-family: Barlow Semi Condensed; 
  src: url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-500-cacb71539c560268a5ee41ef98cf0c23.woff2") format("woff2"),
    url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-500-cacb71539c560268a5ee41ef98cf0c23.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Barlow Semi Condensed;
  src: url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-600-ec0211a2e1c2d98962ed3bffb36e0195.woff2") format("woff2"),
    url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-600-ec0211a2e1c2d98962ed3bffb36e0195.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face { 
  font-family: Barlow Semi Condensed;
  src: url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-700-e897b88256f99f44b03de395002a46bc.woff2") format("woff2"),
    url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-700-e897b88256f99f44b03de395002a46bc.woff") format("woff");
  font-style: normal; 
  font-weight: 700; 
  font-display: swap;
}

@font-face { 
  font-family: Barlow Semi Condensed; 
  src: url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-700italic-e68ee09addb8aa1c147e3df816a565d4.woff2") format("woff2"),
    url("https://25145356.fs1.hubspotusercontent-eu1.net/hubfs/25145356/ACAGroup_November2021/fonts/barlow-semi-condensed-v6-latin-700italic-e68ee09addb8aa1c147e3df816a565d4.woff") format("woff"); 
  font-style: italic;
  font-weight: 700;
  font-display: swap; 
}


html {
  font-size: 8px;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  letter-spacing: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
}

/* Paragraphs */

p {
  /*   font-size: 1rem; */
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

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

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  margin: 0 0 15px;
  line-height: 1.2;
}

/* Lists */

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

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

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

/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 5px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}


.fn-date-picker td .pika-button:hover{
  background: #1654c6 !important;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

@import url("https://cdnjs.cloudflare.com/ajax/libs/tabler-icons/1.35.0/iconfont/tabler-icons.min.css");


.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 40rem;
  font-size: 16px;
  padding-bottom: 8px;
  padding-top: 8px;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
  z-index: 999;
}

.body-container-wrapper {
  padding-top: 7.5rem;
}

.header__container {
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: space-between;
}

.header__container.lp {
  min-height: 40px;
}

.custom-logo {
  align-items: center;
  display: inline-flex;
}

.custom-logo > div,
.custom-logo > div > div,
.custom-logo > div > span {
  align-items: center;
  display: inline-flex;
}

.custom-logo a {
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
}

.custom-logo img {
  height: 4rem;
  line-height: 1;
  display: inline-block;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

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

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  line-height: 1.5;
  min-height: 2.5em;
  min-width: 2em;
  padding: 0 1em 0.1em;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-radius: 50rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:hover {
  color: #3e3089;
  background-color: #f5f5f5;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:focus {
  color: #3e3089;
  box-shadow: 0 0 0 0.25rem #d0ddf4;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
  outline: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(6) {
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  display: flex;
  flex-direction: row;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(6) > a {
  color: #000;
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  padding: 0;
  min-width: auto;
  min-height: auto;
  text-decoration: none;
  transition: all .125s ease;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(6) > a i {
  margin-left: 4px;
  position: relative;
  vertical-align: baseline;
  font-size: 2.25rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(7) {
  margin: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(7) > a {
  font-family: Barlow Semi Condensed,sans-serif;
  font-weight: 500;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 50rem;
  flex-shrink: 0;
  justify-content: center;
  line-height: 1.5;
  min-height: 2.5em;
  min-width: 2em;
  padding: 0 1em 0.1em;
  background-color: #1654c6;
  color: #fff;
  display: flex;
  text-decoration: none;
  transition: all 0.25s ease;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(7) > a:hover {
  background-color: #12439e;
  color: #fff;
  text-decoration: none;
}

.ti {
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: tabler-icons!important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

i.ti.ti-chevron-down.ml-1 {  
  position: relative;
  font-size: 1.2em;
  vertical-align: baseline;
  margin-left: 4px;
}

.ti-chevron-down:before {
  content: "";
}

.ti-search:before {
  content: "";
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(6) > a > span {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a > span {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
  margin: 0;
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all .25s ease;
  z-index: 1000;
  width: 50rem;
  margin-top: 0.5rem;
  display: none;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1),0 0.5rem 1rem rgba(0,0,0,.1),0 1rem 2rem rgba(0,0,0,.1);
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 2rem;
}

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

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  padding: 2rem;
  line-height: 1.5;
  border-radius: 0.5rem;
  color: #1654c6;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
}

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

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li > a .menu-icon {
  font-size: 2rem;
  margin-right: 2rem;
  vertical-align: baseline;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li > a .menu-icon img {
  vertical-align: top;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li > a .menu-icon i {
  font-size: 3rem;
  margin-left: 4px;
  position: relative;
  vertical-align: baseline;
}

.ti-book:before {
  content: "";
  display: inline-block;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li > a .menu-title {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-weight: 600;
  color: #000;
}

.ti-book:before {
  content: "";
  display: inline-block;
}

.ti-bulb:before {
  content: "";
  display: inline-block;
}

.ti-building-factory:before {
  content: "";
  display: inline-block;
}

.ti-chart-arrows-vertical:before {
  content: "";
  display: inline-block;
}

.ti-info-square:before {
  content: "";
  display: inline-block;
}

.ti-users:before {
  content: "";
  display: inline-block;
}

.ti-stairs:before {
  content: "";
  display: inline-block;
}

.ti-certificate:before {
  content: "";
  display: inline-block;
}

.ti-writing:before {
  content: "";
  display: inline-block;
}

.ti-trophy:before {
  content: "";
  display: inline-block;
}

.ti-news:before {
  content: "";
  display: inline-block;
}

.ti-calendar-event:before {
  content: "";
  display: inline-block;
}

.ti-download:before {
  content: "";
  display: inline-block;
}

.mobile-trigger {
  display: flex;
  color: #000;
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-transform: none;
  font-family: Barlow,-apple-system,BlinkMacSystemFont,San Francisco,Helvetica Neue,Helvetica,Roboto,Noto,Segoe UI,Arial,sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border-radius: 0;
}

.mobile-trigger:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
  outline: 0;
}

.mobile-trigger:hover,
.mobile-trigger:focus {
  background: 0 0;
  border: 0;
  color: #000;
}

.mobile-trigger i {
  position: relative;
  font-size: 1.2em;
  vertical-align: baseline;
}

.mobile-trigger i:before {
  content: "";
}

.mobile-open .mobile-trigger i:before {
  content: "";
}

.custom-menu-mobile {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.custom-menu-primary.mobile {
  background: #fff;
  display: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  max-width: 1200px;
  position: absolute;
  top: 100%;
  width: 100%;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1),0 0.5rem 1rem rgba(0,0,0,.1),0 1rem 2rem rgba(0,0,0,.1);
}

.mobile-open .custom-menu-primary.mobile {
  display: flex;
  flex-direction: column;
}

.custom-menu-primary.mobile .header__container {
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: block;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul {
  line-height: 1.5;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
  border-bottom: 1px solid #dedede;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children > a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  font-size: 100%;
  color: #121212;
  line-height: 1.15;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children > a:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
  outline: 0;
}

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

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

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #000;
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children > a span {
  font-family: Barlow Semi Condensed,sans-serif;
  display: flex;
  font-weight: 500;
  width: 100%;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a span {
  font-family: Barlow Semi Condensed,sans-serif;
  font-weight: 500;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a i {
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: tabler-icons!important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  position: relative;
  font-size: 1.2em;
  vertical-align: baseline;
  color: #9b9b9d;
  margin-left: 0.5rem;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a i:before {
  content: "";
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li.act > a i:before {
  content: "";
}

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

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul {
  display: none;
  position: relative;
  transition: all .25s ease;
  z-index: 1000;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #1654c6;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a .menu-icon {
  font-size: 2rem;
  margin-right: 2rem;
  vertical-align: baseline;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a .menu-icon i {
  font-size: 3rem;
  margin-left: 4px;
  position: relative;
  vertical-align: baseline;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > a .menu-title {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-weight: 600;
  color: #000;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child > a {
  font-family: Barlow Semi Condensed,sans-serif;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 50rem;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  line-height: 1.5;
  min-height: 2.5em;
  min-width: 2em;
  padding: 0 1em 0.1em;
  align-items: center;
  color: #fff;
  background-color: #1654c6;
  transition: all 0.25s ease;
  text-decoration: none;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child > a:hover {
  background-color: #12439e;
  color: #fff;
  text-decoration: none;
}


.global-mobile-search {
  border-bottom: 1px solid #dedede;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: row;
}

.global-mobile-search .search-wrapper {
  position: relative;
  background-color: #dedede;
  width: 100%;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 50rem;
}

.global-mobile-search form {
  max-width: 100%;
  margin: 0;
}

.global-mobile-search input {
  background: 0 0;
  border: 0;
  box-shadow: none;
  height: 4.5rem;
  outline: 0;
  padding: 0 36px 0 2rem !important;
  width: 100%;
  -webkit-appearance: textfield;
  outline-offset: -2px;
  font-family: Barlow,-apple-system,BlinkMacSystemFont,San Francisco,Helvetica Neue,Helvetica,Roboto,Noto,Segoe UI,Arial,sans-serif;
  font-size: 100% !important;
  font-weight: 400;
  color: #000;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
}

.global-mobile-search input:focus {
  background-color: #fff;
  border: .125rem solid #1654c6;
  border-radius: 50rem;
}

.global-mobile-search input:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
  outline: 0;
}
.global-mobile-search input::placeholder{
  color: rgb(117, 117, 117);
}

.global-mobile-search button[type=submit] {
  background-color: #9b9b9d;
  align-items: center;
  border: 0;
  border-radius: 50rem;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 700;
  height: 3.5rem;
  justify-content: center;
  line-height: 1.5;
  margin-right: 0.5rem;
  min-width: 2em;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  white-space: nowrap;
  -webkit-appearance: button;
}

.global-mobile-search input:focus+button.ais-SearchBox-submit {
  background-color: #1654c6;
}

.global-mobile-search button[type=submit] svg {
  fill: #fff;
  color: #fff;
  height: 14px;
  width: 30px;
}


.desktop-header-search  {
  position: relative;
  font-size: 2rem;
  border-radius: 50rem;
  border-color: #1654c6;
  border: 0.125rem solid #1654c6;
  background-color: #fff;
  display: none;
}

.desk-search .desktop-header-search {
  display: block;
}

.desk-search .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-child(6) > a {
  display: none;
}

.desktop-header-search form {
  max-width: 100%;
  margin: 0;
}

.desktop-header-search input {
  background: 0 0;
  border: 0;
  box-shadow: none;
  height: 4.5rem;
  outline: 0;
  padding: 0 36px 0 2rem !important;
  width: 100%;
  -webkit-appearance: textfield;
  outline-offset: -2px;
  overflow: visible;
  font-family: Barlow,-apple-system,BlinkMacSystemFont,San Francisco,Helvetica Neue,Helvetica,Roboto,Noto,Segoe UI,Arial,sans-serif;
  font-size: 100% !important;
  font-weight: 400;
  color: #000;
  line-height: 1.15;
  margin: 0;
}

.desktop-header-search input:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
}

.desktop-header-search ::-webkit-input-placeholder {
  -webkit-text-security: none;
  color: rgb(117, 117, 117);
}

.desktop-header-search button[type=submit] {
  align-items: center;
  background-color: #1654c6;
  border: 0;
  border-radius: 50rem;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 700;
  height: 3.5rem;
  justify-content: center;
  line-height: 1.5;
  margin-right: 0.5rem;
  min-width: 2em;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease;
  white-space: nowrap;
  -webkit-appearance: button;
}


.desktop-header-search button[type=reset]{
  display:none;
}
.desktop-header-search button[type=submit]:hover {
  background-color: #3e3089;
  color: #fff;
}

.desktop-header-search button[type=submit] svg {
  fill: #fff;
  color: #fff;
  height: 14px;
  width: 30px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul {
  left: unset;
  transform: translateX(0);
  right: 0;
  padding: 3rem;
  font-size: 1.75rem;
  width: 40rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:first-child {
  margin-bottom: 2rem;
  font-weight: bolder;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:first-child > a {
  margin: 0;
  padding: 0;
  display: block;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:first-child > a .menu-icon {
  display: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:first-child > a span {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 1.75rem;
  font-weight: bolder;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul {
  list-style: none;
  display: flex;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li > a {
  text-align: center;
  width: 100%;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li:first-child > a:hover {
  background-color: #f5f5f5;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > a {
  margin: 0;
  padding: 0;
  transition: all .2s ease;
}

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

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li {
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  transition: all 0.2s ease 0s;
  width: 100%;
  border: 0.125rem solid rgb(235, 235, 235);
  background-color: rgb(255, 255, 255);
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li > a {
  padding: 1rem;
  width: 100%;
  display: block;
  color: #121212;
  transition: all .2s ease;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li:nth-child(2) {
  border: none;
  background-color: rgb(22, 84, 198);
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child > ul > li:nth-child(2) > ul > li:nth-child(2) > a {
  background-color: #1654c6;
  color: #fff;
  border: none;
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) {
  margin-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.75rem;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > a {
  color: #9b9b9d;
  margin-bottom: 2rem;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1.5;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > a strong {
  font-weight: bolder;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > a span {
  font-family: Barlow,-apple-system,BlinkMacSystemFont,San Francisco,Helvetica Neue,Helvetica,Roboto,Noto,Segoe UI,Arial,sans-serif;
  display: flex;
  font-weight: 400;
  width: 100%;
}




.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul {
  display: flex !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: row !important;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li {
  width: 50%;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border: .125rem solid #ebebeb;
  text-align: center;
}

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

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li > a {
  margin: 0;
  padding: 1rem;
  width: 100%;
  line-height: 1.15;
  display: block;
  font-weight: 400;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > a i {
  display: none;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li:nth-child(2) {
  background-color: #dedede;
  color: #121212;
  border-radius: 0;
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li:nth-child(2) > a {
  background-color: #dedede;
  color: #121212;
  border-radius: 0;
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  line-height: 17px;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li > a .menu-icon {
  display: none;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:nth-child(6) > ul > li > a .menu-title {
  line-height: inherit;
  font-size: 100%;
  display: block;
}

@media (min-width: 1200px){

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

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

  .mobile-trigger {
    display: none;
  }
}

@media (max-width: 1199px){

  .header__container.lp {
    min-height: 32px;
  }

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


@media (max-width: 991px) {

  .custom-header > .header__container {
    max-width: 100%!important;
  }
}

@media  (max-width: 320px){
  .footer-image .hs_cos_wrapper_type_linked_image img {
    object-fit: cover;
    width: 48px !important;
    height: 81px;
  }
}
.footer {
  border-top-width: 0.125rem;
  border-top-style: solid;
}

.footer__container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}


.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(4rem/-2);
  margin-right: calc(4rem/-2);
  padding-top: 2rem;
}

.ti-arrow-up:before {
  content: "";
}

.footer-top .back-to-top {
  flex-shrink: 0;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
  padding-bottom: 2rem;
  display: inline-block;
  align-items: center;
  color: #1654c6;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
  font-size:20px;
}

.footer-top .back-to-top:hover {
  color: #3e3089;
  outline: 0;
  text-decoration: underline;
}

.footer-top .back-to-top i {
  font-size: 20px;
  margin-left: 4px;
  position: relative;
  vertical-align: baseline;
  margin-right: 0.5rem;
}

.footer-top .back-to-top:hover i {
  text-decoration: none;
}

.footer-top .back-to-top:hover i:before {
  text-decoration: none;
}

.footer-top .back-to-top i {
  text-decoration: none;
}

.footer-top .back-to-top i::before {
  display: inline-block;
}

.footer-top-title {
  flex-shrink: 0;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-title {
  font-size: 6rem;
  font-weight: 700;
}

.footer-middle .row {
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(4rem/-2);
  margin-right: calc(4rem/-2);
}

.footer-middle .left-panel {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-middle .left-panel .row {
  padding-bottom: 0;
}

.left-panel-top {
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-text {
  font-size: 2.25rem;
}

.footer-middle .right-panel {
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-middle .right-panel p {
  margin: 0;
  font-size:20px;
}

.footer-middle-left-contact,
.footer-middle-right-contact {
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-middle-left-contact a p, 
.footer-middle-right-contact a p {
  align-items: center;
/*   display: inline-block; */
  color: #1654c6;
  font-weight: 600 !important;
  text-decoration: none;
  transition: all .125s ease;
}

.footer-middle-left-contact a:hover, 
.footer-middle-right-contact a:hover {
  color: #3e3089;
  text-decoration: underline;
}

.footer-middle-left-contact p, 
.footer-middle-right-contact p {
  margin: 0;
}

.footer-middle-left-contact p:first-child, 
.footer-middle-right-contact p:first-child {
  font-size: 18px;
  font-weight: 700 !important;
}

.footer-middle-left-contact p:not(:first-child), 
.footer-middle-right-contact p:not(:first-child) {
  color: #000;
  font-size:20px;
}

.right-telephone a,
.right-email a {
  font-size: 2.25rem;
  font-weight: 700;
  display: inline-block;
  align-items: center;
  color: #1654c6;
  text-decoration: none;
  transition: all .125s ease;
}

.right-telephone a:hover,
.right-email a:hover {
  color: #3e3089;
  text-decoration: underline;
}

.right-email,
.right-whatsapp {
  margin-top: 3rem;
}

.right-whatsapp a {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  display: inline-block;
  align-items: center;
  color: #1654c6;
  font-weight: 600;
  text-decoration: none;
  transition: all .125s ease;
}

.right-whatsapp i {
  font-size: 3rem;
  font-weight: 700;
  vertical-align: baseline;
}

.ti-brand-whatsapp:before {
  content: "";
  display: inline-block;
}

.footer-bottom {
  font-size: 1.75rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 0.125rem solid #ebebeb;
}

.footer-bottom .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(4rem/-2);
  margin-right:  calc(4rem/-2);
  align-items: center;
}

.copyright {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.copyright p {
  margin: 0;
}

.copyright p span:not(:nth-child(2)) {
  font-weight: 700;
}

.copyright p a {
  color: #1654c6;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  align-items: center;
  text-decoration: none;
  transition: all .125s ease;
}

.copyright p a:hover {
  color: #3e3089;
  outline: 0;
  text-decoration: underline;
}

.footer-social {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  width: 100%;
}

.footer-social-inner {
  display: flex;
  justify-content: flex-start;
}

.footer-social a {
  height: 2.5em;
  padding: 0;
  width: 2.5em;
  margin-right: 0.2rem;
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  line-height: 1.5;
  min-height: 2.5em;
  min-width: 2em;
  padding: 0 1em 0.1em;
  transition: all 0.25s ease;
  display: flex;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #f5f5f5;
  color: #3e3089;
  text-decoration: none;
}

.footer-social a:focus {
  box-shadow: 0 0 0 0.25rem #d0ddf4;
  outline: 0;
}

.footer-social a:focus-within {
  box-shadow: 0 0 0 3px #fff,0 0 0 5px #1654c6;
  outline: 0;
}

.footer-social a + a {
  margin-left: 0.75em;
}

.footer-social a i {
  position: relative;
  font-size: 20px;
  vertical-align: baseline;
}

.ti-brand-twitter:before {
  content: "";
  display: inline-block;
}

.ti-brand-instagram:before {
  content: "";
  display: inline-block;
}

.ti-brand-facebook:before {
  content: "";
  display: inline-block;
}

.ti-brand-linkedin:before {
  content: "";
  display: inline-block;
}

.ti-brand-youtube:before {
  content: "";
  display: inline-block;
}

.footer-image {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 100%;
  padding-left: calc(4rem/2);
  padding-right: calc(4rem/2);
  display: flex;
  justify-content: flex-start;
}


.footer-image .hs_cos_wrapper_type_linked_image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 6rem;
  height: 81px;
}

.footer-image .hs_cos_wrapper_type_linked_image img {
  object-fit: cover;
  width: 47px;
  height: 81px;
}

.mobile-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(4rem/-2);
  margin-right: calc(4rem/-2);
}

.footer-social.lp,
.footer-image.lp {
  visibility: hidden;
}


@media (min-width: 576px) {

  .footer-middle-left-contact,
  .footer-middle-right-contact {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {

  .footer-middle .left-panel {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {

  .mobile-row  {
    display: none;
  }

  .mobile-row {
    margin-left: calc(-6rem);
    margin-right: calc(-6rem);
  }

  .footer-top-title {
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }

  .footer-top .back-to-top {
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }

  .footer-top .row {
    margin-left: calc(6rem/-2);
    margin-right: calc(6rem/-2);
  }

  .footer-middle-left-contact,
  .footer-middle-right-contact {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .footer-middle .left-panel,
  .footer-middle .right-panel,
  .left-panel-top {
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }

  .left-panel-top {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-middle .right-panel {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .footer-middle .row {
    margin-left: calc(6rem/-2);
    margin-right:  calc(6rem/-2);
  }

  .footer-bottom .row {
    margin-left: calc(6rem/-2);
    margin-right:  calc(6rem/-2);
  }

  .copyright {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }

  .footer-social {
    flex: 0 0 auto;
    width: 33.3333333333%;
    justify-content: center;
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }

  .footer-social-inner {
    justify-content: center;
  }

  .footer-image {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
    justify-content: flex-end;
  }

  .footer-middle-left-contact,
  .footer-middle-right-contact {
    padding-left: calc(6rem/2);
    padding-right: calc(6rem/2);
  }
}


@media (min-width: 1200px) {

  .mobile-row {
    margin-left: calc(-8rem);
    margin-right: calc(-8rem);
  }

  .footer-top-title {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .footer-top .back-to-top {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .footer-top .row {
    margin-left: calc(8rem/-2);
    margin-right: calc(8rem/-2);
    padding-top: 2rem;
  }

  .footer-middle-left-contact,
  .footer-middle-right-contact {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .footer-middle .row {
    margin-left: calc(8rem/-2);
    margin-right:  calc(8rem/-2);
  }

  .footer-bottom .row {
    margin-left: calc(8rem/-2);
    margin-right:  calc(8rem/-2);
  }

  .footer-middle .left-panel,
  .footer-middle .right-panel,
  .left-panel-top {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .copyright {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .footer-social {
    justify-content: center;
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }

  .footer-image {
    padding-left: calc(8rem/2);
    padding-right: calc(8rem/2);
  }
}

@media (min-width: 1400px) {

  .footer-bottom .row {
    margin-left: calc(8rem/-2);
    margin-right:  calc(8rem/-2);
  }
}


@media (max-width: 991px) {

  .footer-social.lp, 
  .footer-image.lp {
    display: none;
  }

  .footer-middle .footer-middle-left-contact,
  .footer-middle .footer-middle-right-contact {
    display: none;
  }

  .footer-middle .left-panel,
  .footer-top-title {
    width: 100%;
  }

  .footer-middle .right-panel {
    margin-top: 3rem;
  }

  .footer-middle-left-contact, 
  .footer-middle-right-contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
/* 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;
  }
}