/* 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: bold;
}

/**
 * 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));
    }
  
}
.space-sword--editor [data-aos^=fade][data-aos^=fade]{opacity:1}
.dnd-section[class*=force-full-width-section]{padding-bottom:0;padding-top:0;padding-left:0;padding-right:0}
.dnd-section[class*=full-width-section]>.row-fluid{padding-left:0;padding-right:0}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column{padding-left:0;padding-right:0}
.overflow-hidden{overflow:hidden}
.row-gap48{row-gap:48px}
.button_wrapper{column-gap:24px;row-gap:24px}
.subtitle{font:normal normal bold 18px/22px Gabarito;letter-spacing:.36px;text-transform:uppercase}
.row-gap24{row-gap:24px}
.button_items.large-btn a,.button_items.large-btn button{font-size:20px;font-weight:500}
.button_items.medium-btn a{font-size:16px;font-weight:500}
.description.para-sm{font-size:14px}
.description.para-md{font-size:16px}
.content-wrapper{margin:0 auto;  padding-left: 24px;  padding-right: 24px;}
.content-wrapper,.dnd-section>.row-fluid{margin:0 auto}
.content-wrapper,.dnd-section .dnd-column,.dnd-section>.row-fluid{padding:0 24px}
.slick-slider{outline:0}
.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-24px;margin-right:-24px}
.no-gutters{margin-right:0;margin-left:0}
.no-gutters>.col.no-gutters>[class*=col-]{padding-right:0;padding-left:0}
.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%; 
  padding-left: 24px;
  padding-right: 24px;
}
.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
.offset-1{margin-left:8.333333%}
.offset-2{margin-left:16.666667%}
.offset-3{margin-left:25%}
.offset-4{margin-left:33.333333%}
.offset-5{margin-left:41.666667%}
.offset-6{margin-left:50%}
.offset-7{margin-left:58.333333%}
.offset-8{margin-left:66.666667%}
.offset-9{margin-left:75%}
.offset-10{margin-left:83.333333%}
.offset-11{margin-left:91.666667%}
@media(min-width:480px){
  .col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
}
.d-none{display:none!important}
.d-inline{display:inline!important}
.d-inline-block{display:inline-block!important}
.d-block{display:block!important}
.d-table{display:table!important}
.d-table-row{display:table-row!important}
.d-table-cell{display:table-cell!important}
.d-flex{display:-ms-flexbox!important;display:flex!important}
.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}

.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}
.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}
.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}

.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}
.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}
.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}
.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}
.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}
.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}
.align-items-center{-ms-flex-align:center!important;align-items:center!important}
.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}
.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}

.float-left{float:left!important}
.float-right{float:right!important}
.float-none{float:none!important}
.position-static{position:static!important}
.position-relative{position:relative!important}
.position-absolute{position:absolute!important}
.position-fixed{position:fixed!important}
.position-sticky{position:-webkit-sticky!important;position:sticky!important}
.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}
.fixed-top{top:0}
.fixed-bottom{bottom:0}

.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0000);white-space:nowrap;border:0}
.sr-only-focusable:active.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}

.h-auto{height:auto!important}
.mw-100{max-width:100%!important}
.mh-100{max-height:100%!important}
.m-0{margin:0!important}
.text-justify{text-align:justify!important}
.text-nowrap{white-space:nowrap!important}
.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
@media(min-width:576px){
  .d-sm-none{display:none!important}
  .d-sm-inline{display:inline!important}
  .d-sm-inline-block{display:inline-block!important}
  .d-sm-block{display:block!important}
  .d-sm-table{display:table!important}
}
@media(min-width:768px){
  .col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-md-2-1{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}
  .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-md-4-1{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}
  .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}

  .offset-md-0{margin-left:0}
  .offset-md-1{margin-left:8.333333%}
  .offset-md-2{margin-left:16.666667%}
  .offset-md-3{margin-left:25%}
  .offset-md-4{margin-left:33.333333%}
  .offset-md-5{margin-left:41.666667%}
  .offset-md-6{margin-left:50%}
  .offset-md-7{margin-left:58.333333%}
  .offset-md-8{margin-left:66.666667%}
  .offset-md-9{margin-left:75%}
  .offset-md-10{margin-left:83.333333%}
  .offset-md-11{margin-left:91.666667%}
  .d-md-none{display:none!important}
  .d-md-inline{display:inline!important}
  .d-md-inline-block{display:inline-block!important}
  .d-md-block{display:block!important}
}
@media(min-width:992px){
  .col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .offset-lg-0{margin-left:0}
  .offset-lg-1{margin-left:8.333333%}
  .offset-lg-2{margin-left:16.666667%}
  .offset-lg-3{margin-left:25%}
  .offset-lg-4{margin-left:33.333333%}
  .offset-lg-5{margin-left:41.666667%}
  .offset-lg-6{margin-left:50%}
  .offset-lg-7{margin-left:58.333333%}
  .offset-lg-8{margin-left:66.666667%}
  .offset-lg-9{margin-left:75%}
  .offset-lg-10{margin-left:83.333333%}
  .offset-lg-11{margin-left:91.666667%}
  .d-lg-none{display:none!important}
  .d-lg-inline{display:inline!important}
  .d-lg-inline-block{display:inline-block!important}
  .d-lg-block{display:block!important}
}
@media(min-width:1200px){
  .col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .offset-xl-0{margin-left:0}
  .offset-xl-1{margin-left:8.333333%}
  .offset-xl-2{margin-left:16.666667%}
  .offset-xl-3{margin-left:25%}
  .offset-xl-4{margin-left:33.333333%}
  .offset-xl-5{margin-left:41.666667%}
  .offset-xl-6{margin-left:50%}
  .offset-xl-7{margin-left:58.333333%}
  .offset-xl-8{margin-left:66.666667%}
  .offset-xl-9{margin-left:75%}
  .offset-xl-10{margin-left:83.333333%}
  .offset-xl-11{margin-left:91.666667%}
}
@media(min-width:1921px){
  .col-xxl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-xxl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-xxl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-xxl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-xxl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-xxl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-xxl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-xxl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-xxl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-xxl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-xxl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-xxl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-xxl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-xxl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}

  .offset-xxl-0{margin-left:0}
  .offset-xxl-1{margin-left:8.333333%}
  .offset-xxl-2{margin-left:16.666667%}
  .offset-xxl-3{margin-left:25%}
  .offset-xxl-4{margin-left:33.333333%}
  .offset-xxl-5{margin-left:41.666667%}
  .offset-xxl-6{margin-left:50%}
  .offset-xxl-7{margin-left:58.333333%}
  .offset-xxl-8{margin-left:66.666667%}
  .offset-xxl-9{margin-left:75%}
  .offset-xxl-10{margin-left:83.333333%}
  .offset-xxl-11{margin-left:91.666667%}
  .d-xxl-none{display:none!important}
  .d-xxl-inline{display:inline!important}
  .d-xxl-inline-block{display:inline-block!important}
  .d-xxl-block{display:block!important}
  .d-xxl-table{display:table!important}
}
.text-lowercase{text-transform:lowercase!important}
.text-uppercase{text-transform:uppercase!important}
.text-capitalize{text-transform:capitalize!important}
.position-relative{z-index:100}

@media (min-width:768px){
  .visible-phone{display:none!important}
}

@media (max-width:1024px){
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width:767px){
  .content-wrapper{
    padding: 0 20px;
  }
  .hidden-phone{display:none!important}
  .dnd-section .dnd-column {
    padding: 0 15px;
  }
}

/* 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 {
  opacity: 0;
}

body.show-body {
  opacity: 1;
}


body {
  line-height: 1.23;
  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 */
/* Anchors */

a {
  cursor: pointer;

}
p {
  margin-top: 0;
  letter-spacing: 0.36px;
}
/* Headings */

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

.h1,h1{
  letter-spacing: 1.04px;
  margin-bottom: 32px;
}
h2{
  letter-spacing: 0.72px; 
}
h3{
  letter-spacing: 0.48px; 
}
.h4,h4{
  letter-spacing: 0.36px; 
  margin-bottom: 12px;

}

h5{
  letter-spacing: 0.36px;
}

/* Lists */

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

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.body-container-wrapper ul {
  padding-left: 20px;
}
.body-container-wrapper ul li {
  letter-spacing: 0.36px;
  margin-bottom: 16px;
}
/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
      font-weight: 500;
}

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: 20px;
}
textarea {
  min-height: 64px !important;
  width: 100% !important;
}
.form-title:empty {
  display: none;
}

fieldset.form-columns-2>.hs-form-field:last-child {
  padding-right: 0;
  padding-left: 12px;
}
fieldset.form-columns-2>.hs-form-field {
  padding-right: 12px;
}
.hs_message .input {
  margin-right: 0 !important;
}
.hs_cos_wrapper_type_form fieldset.form-columns-2 .input {
  margin-right: 0 !important;
}
/* Labels */

form label {
  margin-bottom: 4px;
  display: block;
  font: normal normal normal 14px / 17px Gabarito;
}
.hs_error_rollup li label {
  color: red;
}
/* 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;
  width: 100%;
  padding: 5px 6px;
  width: 100%;
  font: normal normal normal 16px / 19px Gabarito;
  letter-spacing: 0px;
  min-height: 34px;
}

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: 10%;
  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;
}

/* 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;
  line-height: 1.1;
  font-weight: 500;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}




@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .form-columns-2 .hs-form-field .hs-input, form:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input{
    width: 100% !important;
  }
}
/* 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
*/

header.header .header_logo img{display:block}
header.header{box-shadow:0 4px 16px #17179614;padding-left:24px;padding-right:24px;position:relative;z-index:999}
header.header .content-wrapper{padding:16px 0}
header.header .custom-menu-primary ul li a{font-size:16px;letter-spacing:.32px;padding:0 16px;text-decoration:none;font-weight:500}
header.header .custom-menu-primary ul li.hs-item-has-children a{padding-right:22px}
header.header .custom-menu-primary .hs-menu-wrapper>ul>li:hover>a{text-decoration:underline}
header.header .search_icon_wrapper button svg{height:auto;width:20px;display:block}
header.header .search_icon_wrapper button{background:0 0;border:none;padding:0}
header.header .menu_column>div{column-gap:24px}
header.header .custom-menu-primary .hs-menu-children-wrapper>li>a{padding:16px;display:block}
header.header .custom-menu-primary ul.hs-menu-children-wrapper li a:hover{text-decoration:underline}
header.header .header_search{  
  background: #fff;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: -100%;
    width: 100%;
    transition: all 0.3s ease;}
header.header .header__search.header--element{display:flex;height:100%;align-items:center;column-gap:12px}
header.header .header__search.header--element form{display:flex;column-gap:12px}
header.header .header__search.header--element form{padding:0;margin:0}
header.header button.search-form__close{background:0 0;border:none!important;padding:0;position:relative;top:12px}
header.header .header__search.header--element>div{width:100%}
header.header .child-trigger{position:absolute;top:50%;right:0;transform:translateY(-50%)}
header.header .child-trigger svg{display:block}
header.header .child-trigger svg{width:15px;height:auto}
header.header .hs-search-field__suggestions{max-width:calc(100% - 100px);border:none}
@media (min-width: 768px){
  .site-header__menu-toggle{display:none}
}
@media (min-width: 1025px){
  header.header .header_search.show_form{top: 0;}
  header.header .header_search_mobile{display:none}
  .header_button.header_button_mobile{display:none}
  header.header .custom-menu-primary ul.hs-menu-children-wrapper{top:calc(100% + 28px)!important}
  header.header .custom-menu-primary ul>li.hs-item-has-children:after{content:"";width:100%;position:absolute;top:100%;left:0;right:0;height:50px}
}
@media (max-width: 1200px){
  header.header .custom-menu-primary ul li a{padding:0 10px;font-size:15px}
}
@media (max-width: 1024px){
  body.mobile-menu-active{overflow:hidden}
  header.header .child-trigger.child-open svg{transform:rotate(180deg)}
  .header_button.header_button_desktop{display:none}
  .search_icon_wrapper{display:none}
  header.header .header_search{display:none}
  header.header .right_column {
    background: transparent linear-gradient(180deg, #e7f0ff, #fff) 0 0 no-repeat padding-box;
    display: none;
    height: calc(100vh - 64px);
    left: 0;
    margin-left: -20px;
    margin-right: -20px;
    overflow-y: auto;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .menu_column{max-width:400px;margin-left:auto;margin-right:auto;padding:56px 0 20px}
  .mobile-menu-active header.header .right_column{display:block}
  header.header .site-header__menu-toggle {
    -webkit-appearance: none;
    background-color: transparent;
    background-image: none;
    border-bottom: 0;
    border-left: none;
    border-radius: 0;
    border-right: none;
    border-top: 0;
    color: inherit;
    cursor: pointer;
    display: block;
    font-family: inherit;
    margin: auto 0;
    padding: 0;
    position: relative;
    -webkit-transition: .2s;
    transition: .2s;
    height: 100%;
    width: 100%;
  }  
  header.header .menu-toggle {
    background: #e7f0ff;
    height: 32px;
    width: 32px;
    border-radius: 2px;
  }
  header.header input[type=search]::-webkit-search-cancel-button{display:none}
  header.header input[type=search]:-moz-search-cancel-button{display:none}
  header.header input[type=search]::-ms-clear{display:none}

  header.header .custom-menu-primary ul li a{padding:20px 0;display:block;letter-spacing:.4px;font-size:20px}
  header.header .custom-menu-primary{width:100%;margin-bottom:0}
  .mobile_right_column{column-gap:24px}
  .header_search_mobile form.hs-search-field__form{background:0 0;margin-bottom:24px;padding:0;width:100%;column-gap:12px}
  header.header .header_search_mobile{width:100%}
  header.header .custom-menu-primary ul.hs-menu-children-wrapper{display:none}
  header.header .child-trigger{align-items:center;cursor:pointer;display:flex;height:24px;justify-content:center;position:absolute;right:0;text-align:center;top:34px;width:24px}
  header.header .custom-menu-primary ul>li{width:100%;border-bottom:2px solid #b9d2fd}
  header.header .custom-menu-primary ul>li:last-child{border:none}
  header.header .custom-menu-primary ul.hs-menu-children-wrapper{position:static;opacity:1;visibility:visible}
  header.header .header_search_mobile .hs-search-field__button{display:none}
  header.header .custom-menu-primary ul.hs-menu-children-wrapper{background:0 0!important}
  header.header .custom-menu-primary ul.hs-menu-children-wrapper>li{border:none}
  header.header .custom-menu-primary .hs-menu-children-wrapper>li>a{padding:10px 0}
  header.header .header_search_mobile .hs-search-field__input{min-height:34px}
  header.header button.search_icon_mobile{background:0 0;border:none;padding:0;width:18px;height:18px;position:absolute;bottom:30px;right:10px}
  header.header .header_search_mobile{position:relative}
  header.header .hs-search-field__suggestions-container{position:absolute;top:100%;width:100%}
  header.header .hs-search-field__suggestions .results-for{background:#fff}
  header.header .hs-search-field__bar>form>label{color:#000222}
  header.header .custom-menu-primary ul li.hs-item-has-children a{font-size:18px;letter-spacing:.36px;color:#000}
  header.header .hs-search-field__suggestions{max-width:100%}
  .menu-toggle-line{height:3px;background:#171796;border-radius:2px;margin-bottom:5px;position:absolute;top:0;left:0;right:0;width:20px;margin:0 auto;transition:all .3s ease}
  .mobile-menu-active .menu-toggle-line.line2{opacity:0}
  .mobile-menu-active .menu-toggle-line.line3{-webkit-transform:rotate(45deg);transform:rotate(45deg);top:15px}
  .mobile-menu-active .menu-toggle-line.line1{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);top:15px}
  .menu-toggle-line.line2{top:14px}
  .menu-toggle-line.line1{top:7px}
  .menu-toggle-line.line3{bottom:7px;top:auto}
}
@media (max-width:767px){
  header.header{padding-left:20px;padding-right:20px}
  .header_button.header_button_mobile{display:none}
  .right_column_inner{height:100%;display:flex;flex-direction:column}
  .header_button {
    margin-bottom: 0;
    margin-top: auto;
    padding-bottom: 56px;
    text-align: center;
  }
}
.footer_content p{font-size:20px;font-weight:500;letter-spacing:.4px;margin:0}
.copyright p{font:normal normal normal 16px/19px Gabarito;margin:0}
.custom-footer-menu ul{display:flex;row-gap:24px;flex-wrap:wrap;margin:0 -15px!important}
.custom-footer-menu ul li a{letter-spacing:.32px;opacity:1;text-decoration:none;font-size:16px;font-weight:500}
.custom-footer-menu ul li a:hover,.footer_links ul li a:hover{text-decoration:underline}
.custom-footer-menu ul li{width:50%;padding:0 15px}
.footer_top{padding:36px 0 56px}
.footer_bottom{padding:24px 0}
.footer_logo{margin-bottom:24px}
.footer_links ul li a{text-decoration:none;letter-spacing:0;font-size:16px;font-weight:500}
.footer_links ul{margin:0;padding:0;list-style:none}
.footer_bottom_left{column-gap: 24px}
.footer__search form{padding:0;background:0 0}
.footer__search button.hs-search-field__button svg{height: auto !important;width: 18px !important;display:block;margin:0 auto}
.footer__search button.hs-search-field__button{background:0 0;border:none;position:absolute;right:0;top:20px;width:50px;height:33px;border-radius:0;padding:0}
.footer__search{max-width:400px;width:100%}
.copyright p{letter-spacing:0}
footer.footer .hs-search-field__suggestions-container{background:#fff;left:0;position:absolute!important;right:0;top:20px}
footer.footer .hs-search-field__suggestions-container ul{bottom:0;position:absolute;top:auto;background:#fff;right:0;left:0}
footer.footer form input[type=search]{padding-right:40px}
footer.footer .hs-search-field__bar>form>label{color:var(--primary)}
footer.footer input[type=search]::-webkit-search-cancel-button{display:none}
footer.footer input[type=search]:-moz-search-cancel-button{display:none}
footer.footer input[type=search]::-ms-clear{display:none}
footer.footer .hs-search-field__suggestions{border:none}
@media (max-width: 992px){
  .copyright,.footer_links{width:100%}
  .footer_bottom_left{row-gap:24px;flex-direction:column-reverse}
}
@media (max-width: 767px){
  .footer_top{padding:48px 0}
  .footer_bottom_left{column-gap:50px;row-gap:24px}
  .copyright,.footer_links{width:100%}
  .footer__search{max-width:100%}
  .footer_bottom_left{order:2}
  .footer_bottom>div{row-gap:48px}
  .footer_bottom{padding:48px 0 24px}
  footer.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul{flex-direction:initial}
  .footer_content{border-bottom:4px solid #eaeaea;padding-bottom:48px;margin-bottom:48px}
}

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