*, *: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;
}
:root {
  --white: #fff;
  --orange: #FF4800;
  --green: #CCFF2E;
  --pink: #FF00CE;
  --purple: #563CC7;
  --blue: #00B1EB;
  --blue-ocean: #090051;
  --gray-50: #F5F6FA;
  --gray-100: #F1F2FA;
  --gray-200: #E7E8F0;
  --gray-300: #CECFD6;
  --gray-400: #B1B1B8;
  --gray-500: #939399;
  --gray-600: #76767A;
  --gray-700: #58585C;
  --gray-800: #3A3A3D;
  --gray-900: #1D1D1F;
}


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

/*
* grid bs
*/
.row {
/*   --bs-gutter-x: 1.5rem; */
/*   --bs-gutter-y: 0; */
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x)*-.5);
  margin-right: calc(var(--bs-gutter-x)*-.5);
  margin-top: calc(var(--bs-gutter-y)*-1);
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .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-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .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-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .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-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@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-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-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-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%;
  }
}
@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-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%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex:1 0 0%
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%
  }
}
.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
/*   --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0; */
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--bs-gutter-x)*.5);
  padding-right: calc(var(--bs-gutter-x)*.5);
  width: 100%
}

.container.mx {
  max-width: 1088px;
}

@media (min-width: 576px) {
  .container,.container-sm {
    max-width:540px
  }
}

@media (min-width: 768px) {
  .container,.container-md,.container-sm {
    max-width:720px
  }
}

@media (min-width: 992px) {
  .container,.container-lg,.container-md,.container-sm {
    max-width:960px
  }
}

@media (min-width: 1200px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl {
    max-width: 95vw;
  }
}

@media (min-width: 1400px) {
  .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    max-width: 1376px;
  }
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before { 
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-size: 14px;
  line-height: 1.42857143;
  font-family: "Inter", sans-serif;
  color: var(--gray-700);
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0 0 16px;
  color: var(--gray-900);
}

strong {
  font-weight: 700;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 116.667%;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}

h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }
}

strong {
  font-weight: 700;
}

p {
  font-family: "Quicksand", sans-serif;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 8px;
}

button,input,select,textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

a {
  color: inherit;
  text-decoration: none
}

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

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

figure {
  margin: 0
}

img {
  max-width: 100%;
  height: auto;
}

/* 
* heading 
*/
.heading {
  margin: 0 0 32px;
}
.heading.left {
  text-align: left;
}
.heading.center {
  text-align: center;
}
.heading.right {
  text-align: right;
}
.heading h2 {
  margin: 0 0 8px;
}
.heading p {
  font-size: 16px;
}
.heading p strong {
  color: var(--gray-800);
}

@media (max-width: 767.98px) { 
  h2 {
    text-align: center;
  }
}
.btn, .hs-button {
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-family: 'Inter';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  box-shadow: 0px 2px 6px 0px var(--gray-300);
  transition: all 0.3s ease-out;
  text-align: center;
}

.btn:hover, .hs-button:hover {
  box-shadow: 0px 2px 10px 0px var(--gray-600);
}

.btn.btn-orange, .hs-button.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn.btn-pink, .hs-button.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn.btn-blue, .hs-button.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn.btn-green, .hs-button.btn-green {
  background: var(--green);
  color: var(--blue-ocean);
  box-shadow: none
}

.btn.btn-outline, .hs-button.btn-outline {
  border: 1px solid var(--gray-300);
}

.btn.btn-outline.pink, .hs-button.btn-outline.pink {
  color: var(--pink);
}

.btn.btn-outline.purple, .hs-button.btn-outline.purple {
  color: var(--purple);
}

.btn i {
  margin-right: 5px;
}

.btn.xs {
  font-size: 12px;
  font-weight: 500;
  padding: 0.55rem 1rem;
  line-height: 1;
}


form .hs-button, form .hs-button.primary {
	background-color: #000;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
}
/* Fields */
.hs-form fieldset {
  max-width: 100% !important;
}

.hs-form .form-columns-1 .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100% !important;
}

form input[type="email"],
form input[type="file"],
form input[type="number"],
form input[type="password"],
form input[type="search"],
form input[type="tel"],
form input[type="text"],
form select,
form textarea {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-900);
  display: inline-block;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 12px;
  width: 100% !important;
}



/* Media Query  */
@media (min-width: 768px) {
  .hs-form fieldset.form-columns-2,
  .hs-form fieldset.form-columns-3 {
    display: flex;
    gap: 32px;
  }
  .hs-form fieldset.form-columns-1 .input,
  .hs-form fieldset.form-columns-2 .input,
  .hs-form fieldset.form-columns-3 .input {
    margin-right: 0 !important;
  }
}

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

/* Labels */
.hs-form .hs-form-field > label {
  color: var(--gray-900);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 8px;
  display: block;
}

/* 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: 12px;
  border-radius: 8px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-900);
  width: 100% !important;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray-900);
}

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: #f00;
}

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

.hs-error-msg,
.error {
  color: #f00;
  margin-top: 1rem;
  display: inline-block;
  font-size: 12px;
}

/* Submit button */
.hs-form .hs-submit .actions {
  display: flex;
  justify-content: center;
  font-family: Inter !important;
  font-size: 14px;
  font-style: normal !important;
  font-weight: 600;
}

form input[type=submit],
form .hs-button {
  cursor: pointer;
  background: var(--orange);
  color: var(--white);
  border: 0;
}

form .hs-richtext,
form .hs-richtext p {
  color: var(--neutral-gray--700, #58585C);
  font-family: Quicksand !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}

/* Custom form label */
form.hs-custom-form.hs-custom-form fieldset label span {
  font-family: Inter !important;
  font-size: 14px;
  font-style: normal !important;
  font-weight: 400;
  line-height: 24px;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}




/* Update for Select Dropdowns in Safari */
form select {

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-900);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 12px;
  width: 100% !important;

  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%3E%3Cpath%20fill='%2358585c'%20d='M4%206l4%204%204-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
/* 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;
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--bs-modal-zindex)
}

.modal-dialog {
  margin: var(--bs-modal-margin);
  pointer-events: none;
  position: relative;
  width: auto
}

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform .3s ease-out
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
    transition: none
  }
}

.modal.show .modal-dialog {
  transform: none
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02)
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto
}

.modal-dialog-centered {
  align-items: center;
  display: flex;
  min-height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-content {
  background-clip: padding-box;
  background-color: var(--bs-modal-bg);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  color: var(--bs-modal-color);
  display: flex;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  background-color: var(--bs-backdrop-bg);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: var(--bs-backdrop-zindex)
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity)
}

.modal-header {
  align-items: center;
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding)
}

.modal-header .btn-close {
  margin: calc(var(--bs-modal-header-padding-y)*-.5) calc(var(--bs-modal-header-padding-x)*-.5) calc(var(--bs-modal-header-padding-y)*-.5) auto;
  padding: calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5)
}

.modal-title {
  line-height: var(--bs-modal-title-line-height);
  margin-bottom: 0
}

.modal-body {
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
  position: relative
}

.modal-footer {
  align-items: center;
  background-color: var(--bs-modal-footer-bg);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5)
}

.modal-footer>* {
  margin: calc(var(--bs-modal-footer-gap)*.5)
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin:1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)
  }

  .modal-dialog {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--bs-modal-width)
  }

  .modal-sm {
    --bs-modal-width: 300px
  }
}

@media (min-width: 992px) {
  .modal-lg,.modal-xl {
    --bs-modal-width:800px
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width:1140px
  }
}

.modal-fullscreen {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100vw
}

.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%
}

.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header {
  border-radius: 0
}

.modal-fullscreen .modal-body {
  overflow-y: auto
}

/* MODAL */
.modal .modal-content {
  border: 0;
  border-radius: 0;
  outline: 0;
}

.modal .modal-header {
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.modal .modal-title {
  color: #ff4800;
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
}

.modal .modal-header .close {
  opacity: 1;
  font-size: 30px;
  outline: 0;
}

.modal .modal-dialog {
  max-width: 680px;
}

@media (min-width: 1200px){
  .modal .modal-dialog {
    max-width: 980px;
  }
}

.modal .modal-header {
  border: 0;
}
.modal .modal-header .close {
  font-size: 30px;
  display: block;
  position: absolute;
  right: 8px;
  z-index: 5;
  top: 0;
  outline: none;
  border: 0;
  background: none;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer
}

/* Quote */

.internal--quote {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	padding: 1.5rem;
	background-color: #F5F6FA;
	font-style: italic;
	border-radius: 16px;
}

.internal--quote {
	font-style: normal;
	font-weight: bold;
	margin-left: 1rem;
}
.__high_contrast {
  filter: grayscale(1);
}

.__invert {
  filter: invert(100%);
}

.__zoom {
  zoom: 1.05;
}

.fade {
  transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none
  }
}

.text-center {
  text-align: center!important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.fixed-top {
  top: 0
}

.fixed-bottom,.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1030
}

.fixed-bottom {
  bottom: 0
}

.ratio {
  position: relative;
  width: 100%
}

.ratio:before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio)
}

.ratio>* {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%
}

.fade {
  transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none
  }
}

iframe {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img, svg {
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  /*   transition: all .3s ease-out; */
}

.nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  position: relative;
}

.dropdown-menu {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.175);
  border-radius: 0.375rem;
  color: #212529;
  display: none;
  font-size: 1rem;
  list-style: none;
  margin: 0;
  min-width: 10rem;
  padding: 0.5rem 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

.collapse:not(.show) {
  display: none;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.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;
}
@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;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .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;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .justify-content-md-between {
    justify-content: space-between!important;
  }

  .mx-md-auto {
    margin-left: auto!important;
    margin-right: auto!important;
  }
}
@media (min-width: 992px) {
  .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;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .justify-content-lg-between {
    justify-content: space-between!important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-between {
  justify-content: space-between!important
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

@media (max-width: 1199.98px) {
  .column-reverse {
    flex-direction: column-reverse;
  }
}
.dnd-page .body-container-wrapper > .container-fluid {
  padding: 0
}

.dnd-page .dnd-section > .row-fluid {
  padding-left: calc(var(--bs-gutter-x)*.5);
  padding-right: calc(var(--bs-gutter-x)*.5);
}


@media (max-width: 767.98px) { 
  .dnd-page .dnd-section:not(.dnd_area-row-0-padding) {
    padding: 32px 16px !important
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) { 
  .dnd-page .dnd-section:not(.dnd_area-row-0-padding) {
    padding-left: 16px !important;
    padding-right: 16px !important
  }
}

.dnd-page .hs-image-widget { border-radius: 16px }


/*
* Header
*/
.navbar>.container {
  align-items: center;
  display: flex;
  flex-wrap: inherit;
  justify-content: space-between
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

@media (min-width: 1200px){
  .navbar {
    align-items: center;
    display: flex;
  }
  .navbar .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
  }
}

.navbar-collapse {
  align-items: center;
  flex-basis: 100%;
  flex-grow: 1;
}

#cs-main-header.navbar {
  background-color: #fff;
  margin: 0;
  padding: 10px 0;
}

/*
* menu bs hover
*/
@media(min-width: 1200px) {
  #cs-main-header .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    transition: all .3s ease;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
  }

  #cs-main-header .dropdown:hover>.dropdown-menu,
  #cs-main-header .dropdown:focus-within>.dropdown-menu,
  #cs-main-header .dropdown>.dropdown-menu:hover,
  #cs-main-header .dropdown>.dropdown-menu:focus {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    display: block
  }

  #cs-main-header .dropdown>.dropdown-toggle {
    pointer-events: none;
  }

}

@media (min-width: 1281px) {
  #cs-main-header.navbar .navbar-menu-drop {
    flex-basis: 100%;
  }

  .navbar-expand-xl .navbar-collapse {
    justify-content: space-between;
  }

  #cs-main-header.navbar .container {
    max-width: 95vw;
  }
}

@media (min-width: 1400px) {
  #cs-main-header.navbar .container {
    max-width: 1376px;
  }
}

#cs-main-header.navbar .nav>li>a.nav-link {
  color: #1e1e1e;
  display: block;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: initial;
  transition: none;
  line-height: 1;
}

#cs-main-header.navbar .nav>li>a.nav-link:hover {
  color:#ff4800;
}

@media (max-width: 1280px) {
  #cs-main-header.navbar .nav>li>a.nav-link {
    padding: 20px 10px;
  }
}

@media (min-width: 1300px) {
  #cs-main-header.navbar .nav>li>a.nav-link {
    padding: 20px 15px;
  }
}

#cs-main-header.navbar .navbar-brand {
  margin: 0;
  padding: 0 15px 0 0;
}

#cs-main-header.navbar .navbar-brand svg {
  width: 158px
}

#cs-main-header.navbar .language,
#cs-main-header.navbar .accessibility {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0 20px 0 0;
  line-height: 1
}

#cs-main-header.navbar .language a,
#cs-main-header.navbar .accessibility a{
  color: #333;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
}

#cs-main-header.navbar .dropdown-toggle::after {
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0.3em solid;
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  color: #888;
  font-size: 15px;
}

#cs-main-header.navbar .language .dropdown-menu {
  background-color: #fff;
  min-width: auto;
}

#cs-main-header.navbar .language .dropdown-menu>li a {
  color: #333;
  margin: 0;
  font-size: 12px;
  padding: 5px 10px;
  display: block
}

#cs-main-header.navbar .language .dropdown-menu>li a:hover {
  color: #fff;
  background-color: #ff4800;
}

#cs-main-header.navbar .accessibility .dropdown-menu>li {
  color: #333;
  margin: 0;
  font-size: 14px;
  padding: 5px 10px;
  display: block;
  cursor: pointer;
  position: relative;
  min-width: 180px;
}

#cs-main-header.navbar .accessibility .dropdown-menu>li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #ff4800;
  transform: translate(-50%,-50%);
}

#cs-main-header.navbar .accessibility .dropdown-menu>li:hover {
  color: #ff4800
}

#cs-main-header.navbar .accessibility .dropdown-menu>li.active:before {
  background-color: #ff4800
}


#cs-main-header.navbar .social {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
}

#cs-main-header.navbar .social a {
  margin-left: 15px;
  color: #fff;
  font-size: 13px;
}

#cs-main-header.navbar .access {
  display: flex;
  align-items: center;
}

#cs-main-header.navbar .access .btn.btn-primary {
  font-size: 11px;
  padding: 5px 10px;
}

/* .navbar-header img {
transition: all .5s ease 0s;
}

.navbar-header img:hover {
transform:scale(1.1);
} */


/* --------------------------------

Menu new 2022

-------------------------------- */

#cs-main-menu.navbar-nav {
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style: none;
  padding-right: 20px;
  flex-wrap: wrap;
}

#cs-main-menu.nav>li.dropdown,
#cs-main-menu.nav>li.dropdown.show {
  position: relative;
  border: 0;
  cursor: pointer;
}

#cs-main-menu.nav>li.dropdown>a.nav-link {
  position: relative;
  border: 0;
}

#cs-main-header.navbar .nav>li>a.nav-link:before {
  content: '';
  background: linear-gradient(90deg,rgba(255,255,255,1) 0%,rgba(255,72,0,1) 100%);
  display: block;
  width: 0;
  height: 1px;
  transition: all .5s ease 0s;
  position: absolute;
  left: 0;
  bottom: 0;
}

#cs-main-header.navbar .nav>li:hover>a.nav-link:before,
#cs-main-menu.nav>li.dropdown.show>a.nav-link:before {
  width:100%;
}

#cs-main-menu .dropdown .dropdown-menu {
  background-color: #fff;
  box-shadow: none;
  padding: 25px;
  border-radius: 0px !important;
  margin-top: 0;
  border: 1px solid #dedede;
  min-width: 495px
}

#cs-main-menu .dropdown [aria-labelledby="navbarDropdownCarreiras"] { 
  min-width: 450px 
}

@media (min-width: 1200px) {
  #cs-main-menu .dropdown [aria-labelledby="navbarDropdownCarreiras"] {
    left: -42px
  }
}

@media (min-width: 1600px) {
  #cs-main-menu .dropdown [aria-labelledby="navbarDropdownCarreiras"] {
    left: 0
  }
}

#cs-main-menu .dropdown-menu .overview .title {
  text-transform: uppercase;
  color: #ff4800;
  font-size: 14px;
  margin: 0 0 15px;
  font-weight: 500;
  display: block;
  font-family: Montserrat,sans-serif;
}

@media (min-width: 1600px) {
  #cs-main-menu .dropdown-menu .overview .title {
    font-size: 15px;
  }
}

#cs-main-menu .dropdown-menu .overview span {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  margin: 0 0 1.4rem;
  font-size: 20px;
}

#cs-main-menu .dropdown-menu .overview p {
  color: #6e6e6e;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 15px;
  font-weight: 400;
}

#cs-main-menu .dropdown-menu ul { 
  list-style: none;
  padding: 0;
  margin: 0;
}

#cs-main-menu .dropdown-menu .col ul { 
  margin: 0 0 25px;
}

#cs-main-menu .dropdown-menu .col ul:last-child { 
  margin: 0;
}

#cs-main-menu .dropdown-menu ul>li {
  color: #6e6e6e;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 5px;
  line-height: 1.2;
}

#cs-main-menu .dropdown .dropdown-menu li>a {
  font-size: 15px !important;
  display: block;
  color: #090051;
  margin: 0;
  font-weight: 700;
  border-radius: 0;
  padding: 0;
  line-height: 1.2;
}

#cs-main-menu .dropdown .dropdown-menu li>a:hover,
#cs-main-menu .dropdown .dropdown-menu li>a:focus,
#cs-main-menu .dropdown .dropdown-menu li>a:active {
  background: transparent;
  box-shadow: none;
  color: #ff4800;
}

#cs-main-menu .dropdown-menu a {
  color: inherit;
  transition: all .5s ease 0s;
}

#cs-main-menu .dropdown-menu .txt-solucoes {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  right: 25px;
  bottom: 25px;
}


/*
* mega menu
*/
#cs-main-menu.nav>li.mega-menu {
  position: static
}

#cs-main-header .mega-menu .dropdown-menu {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  top: initial !important;
}

@media (min-width: 1281px) {
  #cs-main-header .mega-menu .dropdown-menu {
    max-width: 95vw;
  }
}

@media (min-width: 1400px) {
  #cs-main-header .mega-menu .dropdown-menu {
    max-width: 1376px;
  }
}


/* --------------------------------

MENU MOB

-------------------------------- */
@media screen and (max-width: 1200px) {
  #cs-main-header.navbar {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }

  #cs-main-header.navbar .container {
    max-width: 100%;
    width: auto;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  #cs-main-header.navbar .navbar-brand {
    padding: 0 15px;
  }

  #cs-main-header.navbar .navbar-brand svg {
    width: 138px;
  }

  #cs-main-header.navbar .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
  }

  #cs-main-header.navbar .navbar-menu-drop {
    width: 100%;
  }

  #cs-main-header.navbar .navbar-toggler {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 27px;
    z-index: 9999;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
  }

  #cs-main-header.navbar .navbar-toggler b {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    height: 2px;
    border-radius: 0;
    width: 30px;
    margin: 5px;
    background-color: #ff4800;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  #cs-main-header.navbar .navbar-toggler:hover b {
    background-color: #ff4800;
  }

  #cs-main-header.navbar .navbar-toggler b:first-child {
    top: 0;
  }

  #cs-main-header.navbar .navbar-toggler b:last-child {
    top: 16px;
  }

  #cs-main-header.navbar .navbar-toggler.close b {
    left: 0;
    opacity: 0;
    -webkit-transition: background .2s, top .2s, left .2s, opacity .2s, transform .2s .25s;
    -moz-transition: background .2s, top .2s, left .2s, opacity .2s, transform .2s .25s;
    transition: background 0.2s, top 0.2s, left 0.2s, opacity 0.2s, transform 0.2s 0.25s;
  }

  #cs-main-header.navbar .navbar-toggler.close b:first-child {
    left: 0;
    opacity: 1;
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #ff4800;
  }

  #cs-main-header.navbar .navbar-toggler.close b:last-child {
    left: 0;
    opacity: 1;
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #ff4800;
  }

  #cs-main-header.navbar .access {
    /*     border-top: 1px solid #e6e6e6; */
    border-bottom: 1px solid #e6e6e6;
    justify-content: center;
    padding: .5rem 0;
    display: flex;
    flex-direction: row;
  }

  #cs-main-header.navbar .access li {
    padding: 0;
    margin: 0;
  }

  #cs-main-header.navbar .access li a {
    margin: 0;
  }

  #cs-main-header.navbar .access li .language {
    padding: 1rem 0;
    justify-content: center;
    display: flex;
    list-style: none;
  }

  #cs-main-header.navbar .access li .language li {
    color: #675b46;
    font-size: 13px;
    margin: 0 10px 0 0;
  }

  #cs-main-header.navbar .access li .language li:first-child {
    border-right: 0;
    padding-right: 0;
  }

  #cs-main-header.navbar .access li .language li:last-child {
    border-left: 1px solid #ff4800;
    padding-left: 10px;
  }

  #cs-main-header.navbar .access li .language li a {
    color: #ff4800;
    font-weight: 600;
  }

  #cs-main-header.navbar .navbar-header .access {
    margin: 0 15px 0 0;
    padding: 0;
    border: 0;
    list-style: none;
  }

  #cs-main-header.navbar .navbar-header .accessibility {
    display: block;
  }

  #cs-main-header.navbar .navbar-header .accessibility a {
    font-size: 20px;
    margin-top: 5px;
    margin-right: 15px;
    display: block
  }

  #cs-main-header.navbar .navbar-header .dropdown-toggle:after {
    display: none
  }

  #cs-main-header.navbar .navbar-header .accessibility .dropdown-menu {
    left: auto;
    right: 0;
  }

  #cs-main-header.navbar .navbar-header .accessibility .dropdown-menu.show {
    display: block;
  }

  #cs-main-header.navbar .accessibility .dropdown-menu>li {
    font-size: 14px;
  }

  #cs-main-header.navbar .contato {
    text-align: center;
    border-top: 1px solid #e6e6e6;
    padding-top: 10px;
  }

  #cs-main-header.navbar .contato p {
    color: #ff4800;
    font-size: 18px;
    padding: 10px 0;
    margin: 0;
    line-height: 1;
  }

  #cs-main-header.navbar .contato .btn.orange {
    display: block;
    width: 90%;
    margin: 10px auto 0;
  }

  #cs-main-header.navbar #navigation-clearsale {
    min-height: 100vh;
  }

  #cs-nav-mob.slinky-menu {
    overflow: hidden;
    transform: translateZ(0);
  }

  #cs-nav-mob.slinky-menu > ul {
    left: 0;
    position: relative;
    transform: translateZ(0);
  }

  #cs-nav-mob.slinky-menu > ul li:last-child {
    border-bottom: 0;
  }

  #cs-nav-mob.slinky-menu ul,
  #cs-nav-mob.slinky-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #cs-nav-mob.slinky-menu ul {
    width: 100%;
  }

  #cs-nav-mob.slinky-menu li {
    display: block;
    margin: 0 15px;
    border-bottom: 1px solid #e6e6e6;
    padding: .7rem 0;
  }

  #cs-nav-mob.slinky-menu a {
    align-items: center;
    display: flex;
    font-weight: 400;
    color: #000;
    margin: 0;
    border-bottom: 0;
    text-align: left !important;
  }

  #cs-nav-mob.slinky-menu a span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    cursor: pointer;
  }

  #cs-nav-mob.slinky-menu a:hover span {
    color: #ff4800;
  }

  #cs-nav-mob.slinky-menu li ul {
    display: none;
    left: 100%;
    position: absolute;
    top: 0;
  }

  #cs-nav-mob.slinky-menu .header {
    display: flex;
  }

  #cs-nav-mob.slinky-menu .header .title {
    flex: 1;
    line-height: 1.4;
    margin: 0;
    order: 1;
  }

  #cs-nav-mob.slinky-theme-default {
    min-height: 257px;
  }

  #cs-nav-mob.slinky-theme-default .title {
    color: #191919;
    padding: 1em;
  }

  #cs-nav-mob.slinky-theme-default .item-solucoes>a strong {
    color: #ff4800;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 16px;
  }

  #cs-nav-mob.slinky-theme-default .item-solucoes>a span {
    line-height: 20px;
    color: #6e6e6e;
    cursor: pointer;
    font-size: 14px;
  }

  #cs-nav-mob.slinky-theme-default .item-solucoes ul strong {
    color: #090051;
    font-weight: 700;
    display: block;
    font-size: 16px;
    margin: 0 0 7px;
  }

  #cs-nav-mob.slinky-theme-default .item-solucoes ul a span {
    line-height: 20px;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin: 0.5rem 0 0;
  }

  #cs-nav-mob.slinky-theme-default a:not(.back) {
    color: #191919;
    padding: 0;
  }

  #cs-nav-mob.slinky-theme-default a:not(.back).color-antifraude {
    color: #ccc;
  }

  #cs-nav-mob.slinky-theme-default a:not(.back):hover {
    background: none;
    color: #ff4800;
  }

  #cs-nav-mob.slinky-theme-default a:not(.back):active {
    background: none;
    color: #ff4800;
  }

  #cs-nav-mob.slinky-theme-default .back {
    border-bottom: 0;
    margin: 0;
  }

  #cs-nav-mob.slinky-theme-default .next::after,
  #cs-nav-mob.slinky-theme-default .back::before {
    font-family: "Font Awesome 5 Free";
    moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: '\f054';
    color: #ff4800;
    opacity: 1;
    font-weight: 900;
  }

  #cs-nav-mob.slinky-theme-default .back::before {
    content: '\f137';
    font-size: 18px;
  }

  #cs-nav-mob.slinky-theme-default .next::after {
    margin-left: 0.5rem;
    content: '\f054';
  }

  #cs-nav-mob.slinky-theme-default .back::before {
    padding: 0.5rem 0;
  }
}
#cs-main-footer {
  background-color: #111;
  color: #fff;
  padding: 80px 0;
}
#cs-main-footer img:hover {
  transform: none;
}
@media (min-width: 1281px) {
  #cs-main-footer .container {
    max-width: 95vw;
    width: auto;
  }
}

@media (min-width: 1600px) {
  #cs-main-footer .subfooter .container {
    max-width: 100%;
    width: auto;
  }
}
#cs-main-footer h3 {
  display: block;
  color: #ff4800;
  font-size: 24px;
  line-height: 21px;
  font-weight: 300;
  margin: 0 0 50px;
}

#cs-main-footer h3 a {
  transition: all .5s ease 0s;
  color: inherit;
}

#cs-main-footer h3 a:hover {
  color: #fff;
}

#cs-main-footer h4 {
  display: block;
  color: #ff4800;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: uppercase;
}
#cs-main-footer h4 a {
  color: inherit;
  transition: all .5s ease 0s;
}
#cs-main-footer h4:hover a {
  color: #ff4800;
}
#cs-main-footer h3, #cs-main-footer h4 {
  font-family: 'Montserrat', sans-serif;
}
#cs-main-footer .col-group+.col-group {
  margin-top: 50px 
}
#cs-main-footer .col-group+.col-group h3 {
  margin: 0 0 40px;
}
#cs-main-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#cs-main-footer ul li a {
  display: block;
  position: relative;
}
#cs-main-footer .col-group ul {
  margin: 0 0 25px;
}
#cs-main-footer .col-group ul:last-child {
  margin: 0;
}
#cs-main-footer .col-group ul li {
  display: block;
  position: relative;
  color: #676767;
  font-size: 15px;
}
#cs-main-footer .col-group+.col-group ul {
  margin: 0;
}
#cs-main-footer .col-group ul li a:before {
  content: '';
  background: linear-gradient(90deg,#111,#ff4800);
  display: block;
  width: 0;
  height: 1px;
  transition: all .5s ease 0s;
  position: absolute;
  left: 0;
  bottom: 0;
}
#cs-main-footer .col-group ul li a:hover:before {
  width:75%;
}
#cs-main-footer ul li a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-transform: none;
  font-weight: 400;
  padding: 12px 0;
  transition: all .5s ease 0s;
}
#cs-main-footer ul li:hover a{
  color: #ff4800;
}
#cs-main-footer .selos {
  display: flex;
  align-items: center;
  list-style: none;
}
#cs-main-footer .selos li {
  margin-right: 30px 
}
#cs-main-footer .selos li:last-child {
  margin-right: 0 
}
#cs-main-footer .social li {
  display: inline-block;
}
#cs-main-footer .social li a {
  padding: 0 16px 0 0;
}
#cs-main-footer .social li:last-child a {
  padding: 0 
}
#cs-main-footer .selos, #cs-main-footer .social {
  margin-top: 50px 
}
#cs-main-footer .subfooter {
  border-top: 1px solid #252525;
  padding: 30px 10px;
  margin-top: 30px;
}
#cs-main-footer .subfooter address {
  color: #676767;
  font-weight: 500;
  font-size: 11px;
  margin: 0 0 0 20px;
  max-width: 500px;
}
#cs-main-footer .subfooter .epic {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #676767;
  font-size: 12px;
}
#cs-main-footer .subfooter .epic a {
  color: #676767;
}
#cs-main-footer .subfooter .epic span {
  color: #ffa200;
}
#cs-main-footer .btn.orange:hover {
  background: #5a35b7;
  color: #fff;
}
#cs-main-footer .link-politica {
  font-size: 12px;
  color: #fff;
}

#cs-main-footer.footer-landing-pages {
  padding: 0;
}

#cs-main-footer.footer-landing-pages .subfooter {
  margin-top: 0;
}

#cs-main-footer .logo-footer {
  max-width: 151px;
}

@media (max-width: 767px) {
  #cs-main-footer {
    padding: 40px 0 0;
  }
  #cs-main-footer .container {
    padding: 0 25px;
  }
  #cs-main-footer h3 {
    font-size: 16px;
    margin: 20px 0;
  }
  #cs-main-footer h4 {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 10px;
  }
  .flex-mob {
    display: flex;
    flex-wrap: wrap 
  }
  .flex-mob .col-group {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  #cs-main-footer .col-group+.col-group {
    margin-top: 20px 
  }
  #cs-main-footer .flex-mob .col-group+.col-group {
    margin-top: 0 
  }
  #cs-main-footer .flex-mob .col-group:nth-child(even) {
    padding: 0 15px 
  }
  #cs-main-footer .col-group+.col-group h3 {
    margin: 20px 0;
  }
  #cs-main-footer .flex-mob .col-group h4 {
    margin: 20px 0 10px;
  }

  #cs-main-footer .col-group ul li {
    font-size: 13px;
  }

  #cs-main-footer .contato {
    border-top: 1px solid #676767;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  #cs-main-footer .contato p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2rem 
  }
  #cs-main-footer .contato .btn {
    display: block;
    padding: 5px 20px;
  }
  #cs-main-footer .selos, #cs-main-footer .social {
    justify-content: center;
    display: flex;
    margin: 10px 0 0 
  }
  #cs-main-footer .subfooter {
    text-align: center;
  }
  #cs-main-footer .subfooter address {
    margin: 10px 0;
    color: #fff;
    font-size: 12px;
  }
  #cs-main-footer .subfooter .epic {
    justify-content: center;
  }

  #cs-main-footer .social li a,
  #cs-main-footer .social li:last-child a {
    padding: 10px 15px;
    font-size: 20px;
  }

  #cs-main-footer .link-politica,
  #cs-main-footer .subfooter .epic a {
    padding: 16px 0;
    display: block;
    color: #fff
  }
}
#main-header, #cs-main-footer {
  font-family: 'Montserrat', sans-serif;
}

#main-header h1, #main-header h2, #main-header h3, #main-header h4, #main-header h5, #main-header h6,
#cs-main-footer h1, #cs-main-footer h2, #cs-main-footer h3, #cs-main-footer h4, #cs-main-footer h5, #cs-main-footer h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

#cs-main-header.navbar .access {
  margin: 0
}

#main-header .btn-primary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  line-height: 23px;
  margin: 0;
  text-decoration: none;
  white-space: normal;
  width: auto;
  word-break: break-word;
  min-width: 80px;
  font-family: 'Quicksand', sans-serif;
  display: inline-flex;
  padding: 8px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all .3s ease-out;
  border: 0;
  text-transform: uppercase;
  text-align: center;
}

/* btn primary */
.btn.btn-primary {
  background-color: #ff4800;
  color: #fff;

}

.btn.btn-primary:hover,  
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle{
  background-color: #000;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  transform: scale(1.05);
}

/*
* handTalkcsBr
*/
#handTalkcsBr {
  display: flex;
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 1000000;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #003087;
  border: 1px solid #fff;
  border-radius: 12px 0 0 12px!important;
  height: 42px;
  padding: 10px;
  width: 42px
}


/* Update for Select Dropdowns in Safari */
form select.hs-input {

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-900);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 12px;
  width: 100% !important;

  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%3E%3Cpath%20fill='%2358585c'%20d='M4%206l4%204%204-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}