/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
  --header-height: 100px;
}

@media screen and(max-width: 1200px) {
  :root {
    --header-height: 125px;
  }
}

/* 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: 1100px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

h1, .h1 {
  font-size: 70px;
  line-height: 76px;
  font-weight: 400;
}

h2, .h2 {
  font-size: 50px;
  line-height: 56px;
  font-weight: 400;
}

h3, .h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: bold !important;
}

h4, .h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold !important;
}

.lead {
  font-size: 24px;
  line-height: 36px;
  font-family: "Poppins", sans-serif;
}

p, .paragraph {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}


.paragraph2, li {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

li {
  margin-bottom: 8px;
}

.info {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
  h1, .h1 {
    font-size: 56px;
    line-height: 64px;
  }

  h2, .h2 {
    font-size: 42px;
    line-height: 52px;
  }

  h3, .h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4, .h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .lead {
    font-size: 24px;
    line-height: 36px;
    font-family: "Poppins", sans-serif;
  }

  p, .paragraph, li {
    font-size: 17px;
    line-height: 28px;
  }


  .paragraph2 {
    font-size: 15px;
    line-height: 24px;
  }

  .info {
    font-size: 12px;
    line-height: 16px;
  }
}
 
@media (max-width: 576px) {
  h1, .h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2, .h2 {
    font-size: 40px;
    line-height: 48px;
  }

  h3, .h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4, .h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .lead {
    font-size: 20px;
    line-height: 36px;
    font-family: "Poppins", sans-serif;
  }

  p, .paragraph, li {
    font-size: 17px;
    line-height: 28px;
  }
  
  .paragraph2 {
    font-size: 15px;
    line-height: 24px;
  }

  .info {
    font-size: 12px;
    line-height: 16px;
  }
}


/* Lists */

ul,
ol {
  margin: 0rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0px;
  padding: 0px;
  padding-inline-start: 0px;
}

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

ul {
  list-style: none;
  margin: 0px;
  padding-left: 0px;
  padding-inline-start: 0px;
}

.span12.widget-span ul {
  list-style: none;
  margin: 0px;
  padding-left: 0px;
  padding-inline-start: 0px;
}

.body-container-wrapper ul li:before {
  content: url("data:image/svg+xml,<svg width='24' height='24' viewBox='0 0 24 24' fill='#FE5D05' xmlns='http://www.w3.org/2000/svg'><g id='check_circle_FILL0_wght300_GRAD0_opsz24 1'><path id='Vector' d='M10.5807 16.2538L17.3038 9.53075L16.25 8.47693L10.5807 14.1461L7.73075 11.2961L6.67692 12.35L10.5807 16.2538ZM12.0016 21.5C10.6877 21.5 9.45268 21.2506 8.29655 20.7519C7.1404 20.2533 6.13472 19.5765 5.2795 18.7217C4.42427 17.8668 3.74721 16.8616 3.24833 15.706C2.74944 14.5504 2.5 13.3156 2.5 12.0016C2.5 10.6877 2.74933 9.45268 3.248 8.29655C3.74667 7.1404 4.42342 6.13472 5.27825 5.2795C6.1331 4.42427 7.13834 3.74721 8.29397 3.24833C9.44959 2.74944 10.6844 2.5 11.9983 2.5C13.3122 2.5 14.5473 2.74933 15.7034 3.248C16.8596 3.74667 17.8652 4.42342 18.7204 5.27825C19.5757 6.1331 20.2527 7.13834 20.7516 8.29398C21.2505 9.44959 21.5 10.6844 21.5 11.9983C21.5 13.3122 21.2506 14.5473 20.7519 15.7034C20.2533 16.8595 19.5765 17.8652 18.7217 18.7204C17.8668 19.5757 16.8616 20.2527 15.706 20.7516C14.5504 21.2505 13.3156 21.5 12.0016 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76664 19.225 7.87498 17.675 6.32498C16.125 4.77498 14.2333 3.99998 12 3.99998C9.76664 3.99998 7.87497 4.77498 6.32497 6.32498C4.77497 7.87498 3.99997 9.76664 3.99997 12C3.99997 14.2333 4.77497 16.125 6.32497 17.675C7.87497 19.225 9.76664 20 12 20Z'/></g></svg>");
  display: inline-block;
  margin-right: 5px;
  transform: translateY(8px);
  margin-left: -30px;
}


.body-container-wrapper .neutral li:before {
  content: url("data:image/svg+xml,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><mask id='mask0_1466_1820' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'><rect width='24' height='24' fill='#D9D9D9'/></mask><g mask='url(#mask0_1466_1820)'><path d='M12.0031 21C10.7586 21 9.58847 20.7638 8.49286 20.2915C7.39724 19.8192 6.4442 19.1782 5.63373 18.3685C4.82328 17.5588 4.18167 16.6066 3.70891 15.512C3.23614 14.4174 2.99976 13.2479 2.99976 12.0034C2.99976 10.7588 3.23591 9.58872 3.70823 8.4931C4.18056 7.39748 4.82158 6.44444 5.63128 5.63398C6.44098 4.82353 7.39312 4.18192 8.48771 3.70915C9.58231 3.23638 10.7519 3 11.9964 3C13.241 3 14.411 3.23616 15.5067 3.70847C16.6023 4.18081 17.5553 4.82182 18.3658 5.63152C19.1762 6.44122 19.8178 7.39337 20.2906 8.48795C20.7634 9.58255 20.9998 10.7521 20.9998 11.9966C20.9998 13.2412 20.7636 14.4113 20.2913 15.5069C19.8189 16.6025 19.1779 17.5556 18.3682 18.366C17.5585 19.1765 16.6064 19.8181 15.5118 20.2909C14.4172 20.7636 13.2476 21 12.0031 21ZM11.9998 20C14.2331 20 16.1248 19.225 17.6748 17.675C19.2248 16.125 19.9998 14.2333 19.9998 12C19.9998 9.76667 19.2248 7.875 17.6748 6.325C16.1248 4.775 14.2331 4 11.9998 4C9.76642 4 7.87476 4.775 6.32476 6.325C4.77476 7.875 3.99976 9.76667 3.99976 12C3.99976 14.2333 4.77476 16.125 6.32476 17.675C7.87476 19.225 9.76642 20 11.9998 20Z' fill='#FE5D05'/></g></svg>");
  display: inline-block;
  margin-right: 5px;
  transform: translateY(8px);
  margin-left: -30px;
}

.body-container-wrapper ul li {
  padding-left: 30px;
}


.hs-inline-edit .body-container-wrapper ul li:before {
  background: black;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transform: translate(0px, 9px);
}

.input .hs-form-checkbox, .input .hs-form-booleancheckbox {
  padding-left: 0px;
}

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

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 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;
}

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

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


/* 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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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;
  }
}

/*
All compiled scss files are imported here
*/
.button-wrapper .button {
  border-radius: 0;
  border: none;
  font-size: 17px;
}
.button-wrapper .button:hover, .button-wrapper .button:focus {
  border-radius: 0;
  border: none;
}

p > a, li > a, .accordion-body > a {
  color: #FF5D05;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
  padding: 0px !important;
  border: 0 !important;
}
p > a:hover, p > a:focus, li > a:hover, li > a:focus, .accordion-body > a:hover, .accordion-body > a:focus {
  color: #FF8340;
}

.button-wrapper .btn-primary,
.hs-button.primary,
.card-link a {
  box-shadow: none !important;
  background-color: #FF5D05;
  color: #ffffff;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  border: #FF5D05 1px solid;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 22.5px;
  align-items: center;
}
.button-wrapper .btn-primary:hover, .button-wrapper .btn-primary:focus,
.hs-button.primary:hover,
.hs-button.primary:focus,
.card-link a:hover,
.card-link a:focus {
  background-color: #FF8340;
  border: #FF8340 1px solid;
  color: #ffffff;
}
.button-wrapper .btn-primary:disabled,
.hs-button.primary:disabled,
.card-link a:disabled {
  background-color: #DBDBDA;
  border: #DBDBDA 1px solid;
  color: #B6B6B6;
}
.button-wrapper .btn-primary:active,
.hs-button.primary:active,
.card-link a:active {
  transition: background-color 0.02s ease-in-out, border-color 0.02s ease-in-out;
  background-color: #2B453F;
  border: #2B453F 1px solid;
}

.button-wrapper .btn-secondary,
.hs-button.secondary,
.card-link .secondary {
  box-shadow: none !important;
  background-color: #FFEFE6;
  color: #2B453F;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  border: #FFEFE6 1px solid;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 22.5px;
  align-items: center;
}
.button-wrapper .btn-secondary svg,
.button-wrapper .btn-secondary .material-symbols-outlined,
.hs-button.secondary svg,
.hs-button.secondary .material-symbols-outlined,
.card-link .secondary svg,
.card-link .secondary .material-symbols-outlined {
  color: #FE5D05 !important;
  fill: #FE5D05 !important;
}
.button-wrapper .btn-secondary:hover, .button-wrapper .btn-secondary:focus,
.hs-button.secondary:hover,
.hs-button.secondary:focus,
.card-link .secondary:hover,
.card-link .secondary:focus {
  background-color: #FFEFE6;
  border: #FF8B4D 1px solid;
  color: #2B453F;
}
.button-wrapper .btn-secondary:disabled,
.hs-button.secondary:disabled,
.card-link .secondary:disabled {
  background-color: transparent;
  border: #B6B6B6 1px solid;
  color: #B6B6B6;
}
.button-wrapper .btn-secondary:disabled svg,
.button-wrapper .btn-secondary:disabled .material-symbols-outlined,
.hs-button.secondary:disabled svg,
.hs-button.secondary:disabled .material-symbols-outlined,
.card-link .secondary:disabled svg,
.card-link .secondary:disabled .material-symbols-outlined {
  color: #B6B6B6 !important;
  fill: #B6B6B6 !important;
}
.button-wrapper .btn-secondary:active,
.hs-button.secondary:active,
.card-link .secondary:active {
  transition: background-color 0.02s ease-in-out, border-color 0.02s ease-in-out;
  background-color: #fff;
  border: #2B453F 1px solid;
  color: #2B453F;
}
.button-wrapper .btn-secondary:active svg,
.button-wrapper .btn-secondary:active .material-symbols-outlined,
.hs-button.secondary:active svg,
.hs-button.secondary:active .material-symbols-outlined,
.card-link .secondary:active svg,
.card-link .secondary:active .material-symbols-outlined {
  color: #2B453F !important;
  fill: #2B453F !important;
}

.button-wrapper .btn-sm,
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  line-height: 18px;
  align-items: center;
}

.button-wrapper .btn-md,
.btn-md {
  padding: 12px 24px;
  font-size: 15px;
  line-height: 22.5px;
  align-items: center;
}

.button-wrapper .btn-lg,
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  line-height: 25.5px;
  align-items: center;
}

.button-wrapper .in-line {
  background-color: transparent;
  color: #FF5D05;
  transition: border 0.1s ease-in-out, color 0.3s ease-in-out, padding-bottom 0.1s ease-in-out;
  padding: 0;
  padding-bottom: 2px;
  margin-bottom: 4px;
}
.button-wrapper .in-line:hover, .button-wrapper .in-line:focus {
  background-color: transparent;
  color: #FF5D05;
  border-bottom: 1px solid #FF8340;
  padding-bottom: 1px;
}

.btn-icon {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  color: #2B453F !important;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px !important;
  transition: color 0.2s ease-in-out;
  width: fit-content;
}
.btn-icon .icon-card-icon {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
.btn-icon .icon-card-icon > span {
  font-size: 28px !important;
}
.btn-icon:disabled {
  color: #B6B6B6 !important;
}
.btn-icon:disabled .text {
  color: #B6B6B6 !important;
}
.btn-icon:active {
  color: #2B453F !important;
}
.btn-icon:active .text {
  color: #2B453F !important;
}
.btn-icon:active .icon-card-icon {
  color: #2B453F !important;
  fill: #2B453F !important;
}
.btn-icon .text {
  padding-left: 0px;
  transition: padding-left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
}
.btn-icon .icon-card-icon {
  outline: none;
  position: absolute;
  left: 100%;
  top: -3px;
  transition: left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
}
.btn-icon:focus .text {
  color: #FF5D05;
}
.btn-icon:focus .icon-card-icon {
  color: #FF5D05;
  fill: #FF5D05;
}
.btn-icon:hover .text {
  padding-left: 25px;
}
.btn-icon:hover .icon-card-icon {
  left: -2px;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-banner .button-wrapper .button {
  margin-right: 10px;
}
.hero-banner .button-wrapper {
  margin-bottom: 10px;
}
.hero-banner.hero-banner-big {
  min-height: 800px;
}
.hero-banner.hero-banner-big .row-number-3 .row-fluid {
  max-width: 560px;
}
.hero-banner.hero-banner-big .row-fluid-wrapper .button-wrapper a {
  width: 100%;
}
.hero-banner.hero-banner-big .row-fluid-wrapper .hs_cos_wrapper.hs_cos_wrapper_type_module {
  height: 100%;
}
.hero-banner.hero-banner-big .row-fluid-wrapper:last-child .span6:first-child {
  padding-right: 0px !important;
  width: auto;
}
.hero-banner.hero-banner-big .row-fluid-wrapper:last-child .span6:last-child {
  padding-left: 20px !important;
  width: auto;
}
@media screen and (max-width: 676px) {
  .hero-banner.hero-banner-big .row-fluid-wrapper:last-child .span6:first-child {
    width: 100%;
    padding: 0 !important;
  }
  .hero-banner.hero-banner-big .row-fluid-wrapper:last-child .span6:last-child {
    width: 100%;
    padding: 0 !important;
  }
}
@media screen and (max-width: 1100px) {
  .hero-banner.hero-banner-big {
    min-height: 900px;
  }
}
@media screen and (max-width: 992px) {
  .hero-banner.hero-banner-big {
    padding-top: 90px !important;
  }
}
@media screen and (max-width: 767px) {
  .hero-banner.hero-banner-big {
    padding-top: 40px !important;
  }
}
.hero-banner.hero-banner-small {
  min-height: 400px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.row-fluid input[type=checkbox], .checkbox-row .fakelabel input[type=checkbox] {
  border: 0;
  background: none;
  width: 28px;
  height: 28px;
  opacity: 0;
}
.row-fluid input[type=checkbox] + label, .checkbox-row .fakelabel input[type=checkbox] + label {
  cursor: pointer;
  margin-left: -28px;
  display: inline-flex;
}
.row-fluid input[type=checkbox] + label:before, .checkbox-row .fakelabel input[type=checkbox] + label:before {
  transition: background-color 0.225s ease-in-out, border 0.225s ease-in-out, background-size 0.225s ease-in-out;
  background-color: transparent;
  content: "";
  border: 1px solid #C6C4BF;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
  background-size: 0% 0%;
}

.row-fluid input[type=checkbox]:checked + label:before, .checkbox-row .fakelabel input[type=checkbox]:checked + label:before {
  background: url("data:image/svg+xml;utf8,<svg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.56522 13L18 1.1743L16.7652 0L5.56522 10.6679L1.21739 6.53308L0 7.70738L5.56522 13Z' fill='white'/></svg>") no-repeat center center;
  background-size: 60% 60%;
  background-color: #FF5D05;
  border: 1px solid #FF8340;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
}

input[type=radio], .checkbox-row .fakelabel input[type=radio] {
  border: 0;
  background: none;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  opacity: 0;
}
input[type=radio] + label, .checkbox-row .fakelabel input[type=radio] + label {
  cursor: pointer;
  margin-left: -28px;
  display: inline-flex;
  position: relative;
}
input[type=radio] + label:before, .checkbox-row .fakelabel input[type=radio] + label:before {
  border-radius: 50%;
  background-color: transparent;
  content: "";
  border: 1px solid #C6C4BF;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
  background-size: 0% 0%;
}
input[type=radio] + label:after, .checkbox-row .fakelabel input[type=radio] + label:after {
  content: "";
  border-radius: 50%;
  background-color: transparent;
  height: 0px;
  width: 0px;
  position: absolute;
  display: flex;
  justify-self: center;
  margin: 0;
  left: 9px;
  top: 14px;
  border: none;
  transition: height 0.225s ease-in-out, width 0.225s ease-in-out, background-color 0.225s ease-in-out;
  transform: translate(-50%, -50%);
}

input[type=radio]:checked + label:before, .checkbox-row .fakelabel input[type=radio]:checked + label:before {
  border-color: #ff5d05;
}
input[type=radio]:checked + label:after, .checkbox-row .fakelabel input[type=radio]:checked + label:after {
  background-color: #ff5d05;
  height: 16px;
  width: 16px;
}

.switch-input input[type=checkbox] {
  display: none;
}
.switch-input label {
  cursor: pointer;
  display: inline-flex;
  position: relative;
  height: 28px;
  margin-left: 5px !important;
}
.switch-input label:before {
  content: "";
  width: 50px !important;
  height: 26px !important;
  background-color: #ffffff !important;
  border: #FF8340 1px solid !important;
  border-radius: 18px !important;
  transition: background-color 0.225s ease-in-out !important;
  background: none !important;
}
.switch-input label:after {
  background: none !important;
  background-color: #ff5d05 !important;
  border: none !important;
  border-radius: 50% !important;
  content: "" !important;
  display: flex !important;
  height: 19px !important;
  justify-self: center !important;
  left: 10px !important;
  margin: 0 !important;
  position: absolute !important;
  top: 13px !important;
  transform: translate(-50%, -50%) !important;
  transition: left 0.225s ease-in-out, background-color 0.225s ease-in-out !important;
  width: 19px !important;
}
.switch-input input[type=checkbox]:checked + label::before {
  background-color: #ff5d05 !important;
}
.switch-input input[type=checkbox]:checked + label:after {
  left: 30px !important;
  background-color: #ffffff !important;
}

input[type=text], input[type=email], input[type=password], input[type=number], input[type=tel], input[type=url] {
  border: 1px solid #C6C4BF;
  border-radius: 0;
  padding: 17px;
  font-size: 17px;
  line-height: 22px;
  color: #000000;
  transition: border 0.225s ease-in-out;
  margin: 6px 0px;
}
input[type=text] + label, input[type=email] + label, input[type=password] + label, input[type=number] + label, input[type=tel] + label, input[type=url] + label {
  color: #FF8340;
  font-size: 12px;
  display: block;
  height: 73px;
  padding: 1px 4px;
  left: 0;
  margin-left: 15px;
  margin-top: -73px;
  z-index: 1;
  position: relative;
  width: fit-content;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.225s ease-in-out;
}
input[type=text] + label:after, input[type=email] + label:after, input[type=password] + label:after, input[type=number] + label:after, input[type=tel] + label:after, input[type=url] + label:after {
  background-color: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 8px;
  z-index: -1;
  left: 0px;
}
input[type=text]:hover, input[type=email]:hover, input[type=password]:hover, input[type=number]:hover, input[type=tel]:hover, input[type=url]:hover {
  border: 1px solid #FF8340;
  outline: none;
}
input[type=text]:focus + label, input[type=text]:active + label, input[type=email]:focus + label, input[type=email]:active + label, input[type=password]:focus + label, input[type=password]:active + label, input[type=number]:focus + label, input[type=number]:active + label, input[type=tel]:focus + label, input[type=tel]:active + label, input[type=url]:focus + label, input[type=url]:active + label {
  opacity: 1;
}

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

.hs-fieldtype-select label {
  margin-bottom: 5px;
}

.hs-fieldtype-checkbox.field ul {
  list-style: none;
}
.hs-fieldtype-checkbox.field ul li::before {
  content: none !important;
}
.hs-fieldtype-checkbox.field input[type=checkbox] {
  border: 0;
  background: none;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  opacity: 0;
}
.hs-fieldtype-checkbox.field input[type=checkbox] + span {
  cursor: pointer;
  margin-left: -28px;
  display: inline-flex;
}
@media screen and (max-width: 500px) {
  .hs-fieldtype-checkbox.field input[type=checkbox] + span {
    display: initial;
  }
}
.hs-fieldtype-checkbox.field input[type=checkbox] + span:before {
  transition: background-color 0.225s ease-in-out, border 0.225s ease-in-out, background-size 0.225s ease-in-out;
  background-color: transparent;
  content: "";
  border: 1px solid #C6C4BF;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
  background-size: 0% 0%;
}
.hs-fieldtype-checkbox.field input[type=checkbox]:checked + span:before {
  background: url("data:image/svg+xml;utf8,<svg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.56522 13L18 1.1743L16.7652 0L5.56522 10.6679L1.21739 6.53308L0 7.70738L5.56522 13Z' fill='white'/></svg>") no-repeat center center;
  background-size: 60% 60%;
  background-color: #FF5D05;
  border: 1px solid #FF8340;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
}

.hs-fieldtype-booleancheckbox.field ul, .checkbox-row .fakelabel ul, .subscribe-options ul {
  list-style: none;
}
.hs-fieldtype-booleancheckbox.field ul li::before, .checkbox-row .fakelabel ul li::before, .subscribe-options ul li::before {
  content: none !important;
}
.hs-fieldtype-booleancheckbox.field input[type=checkbox], .checkbox-row .fakelabel input[type=checkbox], .subscribe-options input[type=checkbox] {
  border: 0;
  background: none;
  width: 0px;
  height: 0px;
  opacity: 0;
}
.hs-fieldtype-booleancheckbox.field input[type=checkbox] + span, .checkbox-row .fakelabel input[type=checkbox] + span, .subscribe-options input[type=checkbox] + span {
  cursor: pointer;
  margin-left: 5px !important;
  display: inline-flex;
}
.hs-fieldtype-booleancheckbox.field input[type=checkbox] + span:before, .checkbox-row .fakelabel input[type=checkbox] + span:before, .subscribe-options input[type=checkbox] + span:before {
  transition: background-color 0.225s ease-in-out, border 0.225s ease-in-out, background-size 0.225s ease-in-out;
  background-color: transparent;
  content: "";
  border: 1px solid #C6C4BF;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
  background-size: 0% 0%;
}
.hs-fieldtype-booleancheckbox.field input[type=checkbox]:checked + span:before, .checkbox-row .fakelabel input[type=checkbox]:checked + span:before, .subscribe-options input[type=checkbox]:checked + span:before {
  background: url("data:image/svg+xml;utf8,<svg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5.56522 13L18 1.1743L16.7652 0L5.56522 10.6679L1.21739 6.53308L0 7.70738L5.56522 13Z' fill='white'/></svg>") no-repeat center center;
  background-size: 60% 60%;
  background-color: #FF5D05;
  border: 1px solid #FF8340;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: inline-block;
  margin-left: -5px;
  margin-right: 10px;
  z-index: 0;
}

.hs-fieldtype-file.field.hs-form-field label {
  margin-bottom: 5px;
}

.hs_submit.hs-submit input {
  border-radius: 0;
  border: 0;
  background-color: #FF5D05;
  color: #ffffff;
  transition: background-color 0.3s ease-in-out;
}
.hs_submit.hs-submit input:hover, .hs_submit.hs-submit input:focus {
  background-color: #FF8340 !important;
  color: #ffffff;
}

.hs_recaptcha.hs-recaptcha.field {
  display: flex;
  margin: 40px 0px;
}

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

form .inputs-list > li {
  display: flex;
  align-items: center;
}

.checkbox-row .fakelabel, .subscribe-options {
  cursor: default !important;
}
.checkbox-row .fakelabel span, .subscribe-options span {
  cursor: default !important;
}
.checkbox-row .fakelabel input, .subscribe-options input {
  height: 28px !important;
  width: 28px !important;
  position: absolute !important;
  z-index: 1 !important;
}

.hs-button.primary {
  border: none !important;
  border-radius: 0 !important;
}

.localization-language {
  margin-bottom: 20px;
}

.hs-inline-edit header.header {
  height: 150px !important;
}

.safari .inner-header {
  background-color: #edebe7 !important;
}

header.header .header__skip {
  position: absolute;
  opacity: 0;
  cursor: default;
}
header.header .header__skip:focus {
  opacity: 1;
}
header.header .header__column_login-inner .button-wrapper {
  height: 48px !important;
 
}
header.header .header__column_login-inner .button-wrapper .button {
  padding: 12px 15px !important;
  height: 48px !important;
}
header.header .header__column_login-inner .button-wrapper i {
  margin-left: 20px;
}
@media screen and (min-width: 1100px) {
  header.header {
    height: 0;
    position: relative;
    z-index: 10;
  }
  header.header .header__container {
    padding-left: 25px !important;
  }
  header.header .inner-header {
    height: var(--header-height);
    background: rgba(237, 235, 231, 0.0196078431);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    top: 0;
    position: fixed;
    width: 100%;
    transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .inner-header {
    height: 125px;
  }
}
@media screen and (min-width: 1100px) {
  header.header .inner-header.hide-nav {
    height: 0;
    top: -30px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .inner-header.hide-nav {
    top: -55px;
  }
  header.header .inner-header.hide-nav .header__column_login {
    top: -5px;
  }
}
@media screen and (min-width: 1100px) {
  header.header .inner-header.top {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__container.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .header__container.content-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  header.header .header__container.content-wrapper .menu__item--depth-1 {
    padding-left: 0;
  }
}
@media screen and (min-width: 1100px) {
  header.header .mobile-legal-menu {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  header.header .mobile-container {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .mobile-container {
    justify-content: start;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper {
    display: flex;
    justify-content: end;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .header__column__wrapper {
    justify-content: start;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper .header__row-1 {
    align-items: center;
    display: flex;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper .header__row-1, header.header .header__column__wrapper .header__column_login {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  header.header .header__column__wrapper .header__row-1 {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper .header__column_login {
    height: 48px;
    align-items: center;
    display: flex;
  }
  header.header .header__column__wrapper .header__column_login svg,
header.header .header__column__wrapper .header__column_login path {
    color: #FE5D05;
    fill: #FE5D05;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1100px) {
  header.header .header__column__wrapper .header__column_login {
    position: absolute;
    top: 15px;
    right: 20px;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper .header__column_login .btn-login {
    border-radius: 0px;
    border: none;
    background-color: #FFEFE6;
    padding: 15px;
    height: 48px;
    width: 165px;
    color: #FE5D05;
    font-size: 17px;
    font-weight: 400;
    font-family: "popins", sans-serif;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
  }
  header.header .header__column__wrapper .header__column_login .btn-login i {
    top: 11px;
    position: absolute;
    right: 10px;
  }
  header.header .header__column__wrapper .header__column_login .btn-login i img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1100px) {
  header.header .header__column__wrapper .menu__link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 17px !important;
    line-height: 28px !important;
    color: #2B453F;
    text-transform: initial;
    border: 0 !important;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  }
  header.header .header__column__wrapper .menu__link.menu__link--active-link {
    color: #FE5D05 !important;
    border-color: #FE5D05 !important;
  }
  header.header .header__column__wrapper .menu__link.menu__link--active-link:after {
    background: #FE5D05 !important;
    width: 100% !important;
    left: 0 !important;
  }
  header.header .header__column__wrapper .menu__link:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #2B453F;
    transition: width 0.3s ease 0s, left 0.3s ease 0s, background 0.3s ease-in-out, height 0.1s ease-in-out;
    width: 0;
  }
  header.header .header__column__wrapper .menu__link:hover:after {
    width: 100%;
    left: 0;
  }
  header.header .header__column__wrapper .menu__link:active:after {
    height: 2px;
  }
}
@media screen and (max-width: 1100px) {
  header.header {
    height: 0;
    position: relative;
    z-index: 10;
  }
  header.header .mobile-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header.header .inner-header {
    height: 65px;
    background: rgba(237, 235, 231, 0.0196078431);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    top: 0;
    position: fixed;
    width: 100%;
    transition: height 0.3s ease-in-out, top 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1100px) and (max-width: 476px) {
  header.header .inner-header {
    background: rgba(208, 208, 208, 0.8078431373);
  }
}
@media screen and (max-width: 1100px) {
  header.header .inner-header.hide-nav {
    height: 0;
    top: -30px;
  }
}
@media screen and (max-width: 1100px) {
  header.header .inner-header.top {
    backdrop-filter: none;
  }
}
@media screen and (max-width: 1100px) {
  header.header .inner-header .header__container.content-wrapper,
header.header .inner-header .header__logo.header__logo--main {
    height: 100%;
  }
}
@media screen and (max-width: 1100px) {
  header.header .inner-header .header__logo.header__logo--main {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1100px) {
  header.header .header__column__wrapper {
    width: 101%;
    margin-top: -21px;
    padding: 22px;
    position: absolute;
    top: -100vh;
    background-color: #2B453F;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1100px) {
  header.header .hamburger-menu {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    height: 1.8rem;
    width: 1.7rem;
    cursor: pointer;
    border: none !important;
  }
}
@media screen and (max-width: 1100px) {
  header.header .bar-top,
header.header .bar-middle,
header.header .bar-bottom {
    height: 3px;
    background: #FF5D05;
    border-radius: 5px;
    margin: 3px 0;
    transform-origin: left;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1100px) {
  header.header .mobile-menu-active {
    background-color: #2B453F;
    color: white !important;
  }
  header.header .mobile-menu-active .header__logo.header__logo--main {
    background-color: #2B453F !important;
  }
  header.header .mobile-menu-active .header__logo.header__logo--main svg {
    fill: white !important;
    color: white !important;
  }
  header.header .mobile-menu-active .header__logo.header__logo--main svg path {
    fill: white !important;
    color: white !important;
  }
  header.header .mobile-menu-active .hamburger-menu .bar-top {
    transform: rotate(45deg);
  }
  header.header .mobile-menu-active .hamburger-menu .bar-middle {
    transform: translateX(10px);
    opacity: 0;
  }
  header.header .mobile-menu-active .hamburger-menu .bar-bottom {
    transform: rotate(-45deg);
  }
  header.header .mobile-menu-active .header__column__wrapper {
    opacity: 1;
    top: 86px;
    width: 105%;
    height: calc(100dvh - 65px);
    left: 0;
  }
  header.header .mobile-menu-active.hide-nav {
    height: 65px !important;
    top: 0px !important;
  }
}
@media screen and (max-width: 1100px) {
  header.header .menu__item {
    border: none !important;
  }
}
@media screen and (max-width: 1100px) {
  header.header .header__column_login svg, header.header .header__column_login path {
    color: #FF5D05 !important;
    fill: #FF5D05 !important;
  }
}
@media screen and (max-width: 1100px) {
  header.header .menu__item {
    padding: 0px;
    margin-bottom: 25px;
  }
  header.header .menu__item a {
    text-transform: initial;
    color: white !important;
    font-family: "popins", sans-serif;
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
    border: none;
    padding: 0;
  }
  header.header .menu__item:first-child {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1100px) {
  header.header .mobile-legal-menu {
    width: 100%;
  }
  header.header .mobile-legal-menu .menu__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
  header.header .mobile-legal-menu .menu__wrapper .menu__item {
    margin: 0px;
    width: auto;
  }
  header.header .mobile-legal-menu .menu__wrapper .menu__item a {
    border-right: solid 1px #fff;
    padding-right: 5px;
    margin-right: 5px;
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
  }
  header.header .mobile-legal-menu .menu__wrapper .menu__item:last-child a {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
  }
}

.mobile-menu-open {
  overflow: hidden;
}

.header__row-group .header__inner-group {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .header__row-group {
    width: 100%;
  }
  .header__row-group .header__inner-group {
    justify-content: center;
  }
  .header__row-group .header__row-1 {
    margin-right: 20px;
  }
  .header__row-group .mobile-legal-menu {
    width: 100%;
  }
  .header__row-group .mobile-legal-menu .material-symbols-outlined {
    display: none;
  }
}

.structure-level {
  position: absolute !important;
  width: 100%;
  left: 0;
  top: 70px;
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.structure-level .cross-over-barrier {
  background: #EDEBE7;
  position: relative;
  top: 29px;
  padding-top: 40px;
  padding-bottom: 30px;
}
.structure-level .mega-menu-group {
  height: 100%;
}
.structure-level .mega-menu-group .menu__link:hover {
  cursor: pointer;
}
.structure-level .row-depth-1 .col-3:first-child {
  margin-left: 17%;
}
.structure-level .row-depth-1 .col-3 {
  width: 22%;
}
.structure-level .mega-menu-group-inner .mega-menu-group-inner__content {
  display: flex;
  flex-direction: column;
}

.structure-level-mobile {
  margin-bottom: 15px;
}
.structure-level-mobile .menu__link {
  padding-left: 15px;
  width: 100% !important;
}
.structure-level-mobile .accordion-item, .structure-level-mobile .accordion-button, .structure-level-mobile .accordion-collapse, .structure-level-mobile .accordion-body {
  background-color: initial !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: none !important;
}
.structure-level-mobile .accordion-body {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 0px;
}
.structure-level-mobile .accordion-item {
  padding-right: 15px;
}
.structure-level-mobile .accordion-header {
  padding-top: 10px;
  padding-bottom: 5px;
}
.structure-level-mobile .accordion-button {
  border: none;
  color: #fff !important;
  font-family: popins, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
  padding: 0;
  text-transform: none;
}
.structure-level-mobile .accordion-button:after {
  color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.structure-level-mobile .menu__link {
  margin-bottom: 4px;
  text-decoration: none !important;
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  color: #fff !important;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px !important;
  transition: color 0.2s ease-in-out;
  width: fit-content;
}
.structure-level-mobile .menu__link:after {
  display: none !important;
}
.structure-level-mobile .menu__link .material-symbols-outlined {
  color: #fff;
  fill: #fff;
}
.structure-level-mobile .menu__link .material-symbols-outlined > span {
  font-size: 28px !important;
}
.structure-level-mobile .menu__link:active {
  color: #FF5D05 !important;
}
.structure-level-mobile .menu__link:active .text {
  color: #FF5D05 !important;
}
.structure-level-mobile .menu__link:active .material-symbols-outlined {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
.structure-level-mobile .menu__link .text {
  padding-left: 0px;
  transition: padding-left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
  text-wrap: nowrap;
}
.structure-level-mobile .menu__link .material-symbols-outlined, .structure-level-mobile .menu__link .material-symbols-outlined {
  outline: none;
  position: absolute;
  right: 0px;
  top: 2px;
}
.structure-level-mobile .menu__link--active-branch-mobile {
  color: #FE5D05 !important;
}
.structure-level-mobile .menu__link--active-branch-mobile::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FE5D05'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.structure-level-mobile .menu__link--active-branch {
  color: #FE5D05 !important;
}
.structure-level-mobile .menu__link--active-branch .material-symbols-outlined {
  color: #FE5D05 !important;
  fill: #FE5D05 !important;
}

.structure-level .menu__link {
  margin-bottom: 4px;
  text-decoration: none !important;
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  color: #2B453F !important;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px !important;
  transition: color 0.2s ease-in-out;
  width: fit-content;
}
.structure-level .menu__link:after {
  display: none !important;
}
.structure-level .menu__link .material-symbols-outlined {
  color: #2B453F;
  fill: #2B453F;
}
.structure-level .menu__link .material-symbols-outlined > span {
  font-size: 28px !important;
}
.structure-level .menu__link:active {
  color: #FF5D05 !important;
}
.structure-level .menu__link:active .text {
  color: #FF5D05 !important;
}
.structure-level .menu__link:active .material-symbols-outlined {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
.structure-level .menu__link .text {
  padding-left: 0px;
  transition: padding-left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
  text-wrap: nowrap;
}
.structure-level .menu__link .material-symbols-outlined, .structure-level .menu__link .material-symbols-outlined {
  outline: none;
  position: absolute;
  left: 102%;
  top: 2px;
  transition: left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
}
.structure-level .menu__link:focus .text {
  color: #FF5D05;
}
.structure-level .menu__link:focus .material-symbols-outlined {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
.structure-level .menu__link:hover .text {
  padding-left: 25px;
}
.structure-level .menu__link:hover .material-symbols-outlined {
  left: -2px;
}

.mobile-legal-menu .structure-level-mobile {
  display: none;
}
.mobile-legal-menu .accordion {
  display: flex;
}
.mobile-legal-menu .accordion .menu__item:nth-child(3) .menu__link {
  border-right: none !important;
}

.menu__item-structure header .menu__item--depth-1 {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}
.menu__item-structure header .menu__item--depth-1 .menu__link {
  padding-left: 20px;
  padding-right: 20px;
}

header .menu__item-structure {
  padding: 0.7rem 0rem !important;
  margin: 0 0.875rem;
  cursor: default;
}
header .menu__item-structure .menu__link {
  cursor: default;
  padding-left: 0px;
  padding-right: 0px;
}
header .menu__item-structure .structure-level ~ div:after {
  width: 100%;
}
header .menu__item-structure .menu__link--active-branch {
  color: #FE5D05 !important;
}
header .menu__item-structure .menu__link--active-branch:after {
  background: #fe5d05 !important;
  left: 0 !important;
  width: 100% !important;
}
header .menu__item-structure .menu__link--active-branch > .material-symbols-outlined {
  color: #FE5D05 !important;
  fill: #FE5D05 !important;
}

.header__column__wrapper .mobile-container.container {
  padding-right: 0px;
}

#unique-mobile-accordion {
  padding-right: 15px;
}
#unique-mobile-accordion .menu__item {
  padding-right: 15px;
}

@media screen and (max-width: 1100px) {
  .mobile-container .header__row-group {
    margin-top: 40px;
  }
}

.mobile-menu-active .header__container.content-wrapper {
  padding-left: 24px !important;
}

footer.footer {
  position: relative;
  padding: 72px 0px 28px 0px;
  color: #fff;
  background-color: #2B453F;
}
footer.footer .menu__link {
  padding: 0px !important;
}
@media screen and (min-width: 992px) {
  footer.footer {
    height: 400px;
  }
}
@media screen and (min-width: 767px) {
  footer.footer {
    height: 500px;
  }
}
footer.footer .inner-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer.footer .menu-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  footer.footer .menu-footer {
    justify-content: space-between;
  }
}
@media screen and (min-width: 767px) {
  footer.footer .footer-legal-menu .menu__item {
    padding-left: 30px !important;
  }
}
footer.footer .row-footer-legal .border-line {
  margin-bottom: 16px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  footer.footer .row-footer-legal .border-line {
    margin-bottom: 36px;
    margin-top: 36px;
  }
}
footer.footer .row-footer-legal .footer-legal {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
@media screen and (max-width: 767px) {
  footer.footer .row-footer-legal .footer-legal {
    margin-bottom: 16px;
  }
}
footer.footer .row-footer-legal .menu__item {
  padding: 0;
}
footer.footer .row-footer-legal .menu__item a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}
footer.footer .row-footer-legal .menu__item a:hover {
  border-bottom: 1px solid #FF5D05;
  color: #FF5D05;
}
@media screen and (max-width: 767px) {
  footer.footer .row-footer-legal .menu__item {
    width: auto !important;
    padding: 0 !important;
    border-top: 0 !important;
  }
  footer.footer .row-footer-legal .menu__item a {
    width: auto !important;
    padding: 0 !important;
    border-top: 0 !important;
  }
}
footer.footer .row-footer-legal .menu__item .material-symbols-outlined {
  display: none;
}
footer.footer .first-row svg,
footer.footer .first-row path {
  color: white;
  fill: white;
}
footer.footer .first-row .first-row-text {
  margin: 30px 0px;
}
footer.footer .first-row .first-row-text p {
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 500;
}
footer.footer .first-row .footer-social-links a {
  text-decoration: none !important;
  padding: 0px !important;
  border: none !important;
  color: #fff !important;
}
footer.footer .first-row .footer-social-links a:hover {
  color: #FF5D05 !important;
}
footer.footer .first-row .footer-social-links a:hover svg,
footer.footer .first-row .footer-social-links a:hover path {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
footer.footer .second-row .menu__item {
  padding: 0px;
  margin-bottom: 20px;
  width: 100%;
}
footer.footer .second-row .menu__item:last-child {
  margin-bottom: 0px;
}
footer.footer .second-row .menu__link {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  color: #fff !important;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px !important;
  transition: color 0.2s ease-in-out;
  width: fit-content;
}
footer.footer .second-row .menu__link .material-symbols-outlined {
  color: #fff !important;
  fill: #fff !important;
}
footer.footer .second-row .menu__link .material-symbols-outlined > span {
  font-size: 28px !important;
}
footer.footer .second-row .menu__link:disabled {
  color: #B6B6B6 !important;
}
footer.footer .second-row .menu__link:disabled .text {
  color: #B6B6B6 !important;
}
footer.footer .second-row .menu__link:active {
  color: #FF5D05 !important;
}
footer.footer .second-row .menu__link:active .text {
  color: #FF5D05 !important;
}
footer.footer .second-row .menu__link:active .material-symbols-outlined {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
footer.footer .second-row .menu__link .text {
  padding-left: 0px;
  transition: padding-left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
  text-wrap: nowrap;
}
footer.footer .second-row .menu__link .material-symbols-outlined, footer.footer .second-row .menu__link .material-symbols-outlined {
  outline: none;
  position: absolute;
  left: 102%;
  top: 2px;
  transition: left 0.4s cubic-bezier(0.58, -0.09, 0.79, 0.04);
}
footer.footer .second-row .menu__link:focus .text {
  color: #FF5D05;
}
footer.footer .second-row .menu__link:focus .material-symbols-outlined {
  color: #FF5D05 !important;
  fill: #FF5D05 !important;
}
footer.footer .second-row .menu__link:hover .text {
  padding-left: 25px;
}
footer.footer .second-row .menu__link:hover .material-symbols-outlined {
  left: -2px;
}
footer.footer .third-row .d-flex a {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
footer.footer .third-row .d-flex a span {
  margin-right: 8px;
}
footer.footer .third-row .d-flex a:hover, footer.footer .third-row .d-flex a:focus {
  color: #FF5D05;
  fill: #FF5D05;
}
footer.footer .third-row .d-flex a:active {
  color: #B6B6B6;
  fill: #B6B6B6;
  border-color: #B6B6B6;
}
footer.footer .mobile-divider {
  display: none;
}
@media screen and (max-width: 767px) {
  footer.footer .mobile-divider {
    display: block;
    height: 1px;
    background-color: #fff;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}

.faq-section .accordion-item {
  background-color: none;
  border: none;
  color: #2B453F !important;
  margin-bottom: 8px;
}
.faq-section .accordion-item, .faq-section .accordion-header, .faq-section .accordion-body {
  border-radius: 0px !important;
}
.faq-section .accordion-collapse {
  margin-bottom: 15px;
}
.faq-section .accordion-header button {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  padding: 18px 40px 18px 25px;
  box-shadow: none !important;
  border: none !important;
  background-color: #fff !important;
  color: #2B453F !important;
}
.faq-section .accordion-header button:after {
  margin-right: -10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}
.faq-section .accordion-header button:hover, .faq-section .accordion-header button:focus {
  border: none !important;
  background-color: #fff !important;
  color: #2B453F !important;
}
.faq-section .accordion-body {
  padding: 25px !important;
  padding-bottom: 20px !important;
  padding-top: 0px !important;
}
.faq-section .accordion-body img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .faq-section .accordion-body {
    padding: 15px !important;
  }
  .faq-section .accordion-body img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-width: auto;
  }
}
.faq-section .accordion-body p {
  font-size: 15px !important;
  line-height: 24px !important;
}

.team-card {
  justify-content: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  margin-top: 140px;
}
.team-card .team-image-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  top: -85px;
}
.team-card .team-image-wrapper img {
  max-height: 170px;
  max-width: 170px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50% !important;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .team-card .team-image-wrapper {
    top: -100px;
  }
  .team-card .team-image-wrapper img {
    max-height: 200px;
    max-width: 200px;
  }
  .team-card .team-body {
    padding-top: 130px !important;
  }
}
.team-card .team-body {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 120px 15px 15px 15px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 576px;
  min-height: 300px;
}
.team-card .team-text {
  text-align: center;
}
.team-card .team-text h3,
.team-card .team-text h4 {
  margin-bottom: 0px;
}
.team-card .team-text p {
  margin-top: 20px;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  margin-bottom: 0px;
}
.team-card .team-linkedin a {
  border: none !important;
  text-decoration: none !important;
}
.team-card .team-linkedin a img {
  scale: 1;
  transition: scale 0.3s ease-in-out;
}
.team-card .team-linkedin a:hover img {
  scale: 1.1;
}

.icon-card {
  justify-content: center;
  display: flex;
  flex-flow: column;
  padding: 15px;
  text-align: center;
  margin-bottom: 25px;
  min-height: 100%;
  max-width: 576px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.icon-card .icon-card-icon {
  padding: 0;
  margin-bottom: 30px;
}
.icon-card .icon-card-icon span {
  font-size: 100px;
}
.icon-card .icon-card-text .button-wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .icon-card .icon-card-text .button-wrapper {
    margin-top: 20px;
  }
}
.icon-card .icon-card-text {
  max-width: 360px;
}
.icon-card .icon-card-text p {
  margin-bottom: 0px;
}
.icon-card .icon-card-text h3 {
  margin-bottom: 5px;
}
.icon-card .row {
  justify-content: center;
}
.icon-card .button.btn-primary.btn-icon {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  padding: 8px 20px;
}

.link-card {
  justify-content: center;
  display: flex;
  flex-flow: column;
  padding: 30px;
  text-align: center;
  margin-bottom: 75px;
  min-height: 300px;
  position: relative;
  max-width: 576px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .link-card {
    padding: 20px;
  }
}
.link-card .icon-card-icon {
  padding: 0;
  height: auto;
  width: 40px;
}
.link-card .row {
  justify-content: center;
}
.link-card .icon-card-text {
  max-width: 360px;
  font-family: "poppins", sans-serif;
}
.link-card .icon-card-text h3 {
  margin-bottom: 10px;
}
.link-card .icon-card-text p {
  margin: 0;
}
.link-card .card-link {
  position: absolute;
  bottom: -34px;
  left: 0;
  width: 100%;
  justify-content: center;
  display: flex;
}
.link-card .card-link > a {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-card .card-link > a svg {
  color: white;
  fill: white;
}
.link-card .card-link > a::disabled svg, .link-card .card-link > a::disabled .material-symbols-outlined {
  color: #B6B6B6 !important;
  fill: #B6B6B6 !important;
}
.link-card .card-link .secondary {
  background-color: #FFEFE6 !important;
}
.link-card .card-link .secondary:disabled {
  background-color: #DBDBDA !important;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 2fr);
  grid-gap: 3rem;
}
.logo-grid .logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-grid .logo-grid__item img {
  width: 100%;
}
.logo-grid img {
  scale: 1;
  transition: all 0.3s ease-in-out;
}
.logo-grid a {
  border: 0 !important;
}
.logo-grid a:hover img {
  scale: 1.05;
}
@media screen and (max-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(5, 2fr);
  }
}
@media screen and (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(4, 2fr);
  }
}
@media screen and (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 2fr);
  }
}
@media screen and (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media screen and (max-width: 400px) {
  .logo-grid {
    grid-template-columns: repeat(1, 2fr);
  }
}

.custom-lang-switch {
  position: relative;
  width: 60px;
}
.custom-lang-switch .lang-switch-btn {
  z-index: 2;
  position: relative;
  background-color: transparent;
  border-radius: 4px;
  border: none;
  width: 60px;
  display: flex;
  justify-content: space-around;
  padding: 0px 8px;
  margin: 0px;
  color: #2B453F;
  height: 48px;
  transition: all 0.3s ease-in-out;
  align-items: center;
}
.custom-lang-switch .lang-switch-btn .icon-card-icon,
.custom-lang-switch .lang-switch-btn .lang-icon {
  display: flex;
}
.custom-lang-switch .lang-switch-btn .icon-card-icon {
  color: #2B453F;
  transition: transform 0.3s ease-in-out;
}
.custom-lang-switch .lang-switch-btn .lang-short {
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-family: "Poppins";
  line-height: 20px;
}
.custom-lang-switch .material-symbols-outlined {
  width: 16px;
  height: 16px;
  display: flex;
  font-size: 28px;
  justify-content: center;
  align-items: center;
}
.custom-lang-switch .menu-dropdown {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin-top: -4px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.custom-lang-switch .menu-dropdown .menu-dropdown-content {
  background-color: #ffefe6;
  box-shadow: 0px 2px 4px -1px rgba(20, 50, 80, 0.1215686275);
  box-shadow: 0px 1px 10px 0px rgba(3, 12, 37, 0.1019607843);
  box-shadow: 0px 2px 5px 0px rgba(3, 12, 37, 0.1215686275);
  border-radius: 4px;
  border: solid 1px #E0DEDA;
}
.custom-lang-switch .menu-dropdown .language-selection {
  display: flex;
  padding: 0px 8px;
  margin: 0px;
  color: #2B453F;
  height: 35px;
  align-items: center;
  padding-left: 10px !important;
  background-color: #ffefe6;
  transition: all 0.3s ease-in-out;
}
.custom-lang-switch .menu-dropdown .language-selection:hover {
  background-color: rgb(208, 203, 187);
  color: #2B453F;
}
.custom-lang-switch .menu-dropdown .language-selection .lang-short {
  font-family: Poppins;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.custom-lang-switch .menu-dropdown a {
  text-decoration: none !important;
}
.custom-lang-switch .menu-dropdown li {
  margin: 0px;
}
.custom-lang-switch.open .lang-switch-btn {
  border-color: #2B453F;
}
.custom-lang-switch.open .lang-switch-btn .lang-short {
  color: #2B453F;
}
.custom-lang-switch.open .lang-switch-btn .material-symbols-outlined {
  color: #2B453F;
}
.custom-lang-switch.open .lang-switch-btn .icon-card-icon {
  transform: rotate(-180deg);
}
.custom-lang-switch .lang-switch-btn:hover, .custom-lang-switch .lang-switch-btn:focus {
  border-color: #2B453F;
}
.custom-lang-switch .lang-switch-btn:hover .lang-short, .custom-lang-switch .lang-switch-btn:focus .lang-short {
  color: #2B453F;
}
.custom-lang-switch .lang-switch-btn:hover .material-symbols-outlined, .custom-lang-switch .lang-switch-btn:focus .material-symbols-outlined {
  color: #2B453F;
}

@media (max-width: 1100px) {
  .lang-switch-btn .icon-card-icon, .lang-switch-btn .lang-short, .lang-switch-btn .material-symbols-outlined {
    color: #fff !important;
  }
  .menu-dropdown-content .lang-short {
    color: #2B453F !important;
  }
}
.no-scroll {
  overflow: hidden;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
  padding: 25px;
}
.popup-overlay .icon-card-icon span {
  color: #ff5d05;
  fill: #ff5d05;
}
.popup-overlay .inner-popup {
  background-color: #2b453f;
  height: 90%;
  width: 100%;
  padding: 15px;
  max-width: 1400px;
  position: relative;
}
.popup-overlay .inner-popup > .d-flex.justify-content-evenly.align-items-center {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.popup-overlay .inner-popup > .d-flex.justify-content-evenly.align-items-center::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
@media screen and (max-width: 768px) {
  .popup-overlay .inner-popup > .d-flex.justify-content-evenly.align-items-center {
    justify-content: flex-start !important;
    padding-top: 50px;
  }
}
.popup-overlay .inner-popup .popup-close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: none !important;
}
.popup-overlay .inner-popup .popup-close span {
  color: white;
  font-size: 64px;
}
.popup-overlay .inner-text h3, .popup-overlay .inner-text h2 {
  color: white;
}
.popup-overlay .icon-card {
  background-color: white;
  max-width: 440px;
  margin: 0px 20px;
}
@media screen and (max-width: 768px) {
  .popup-overlay .inner-cards > .d-flex {
    flex-flow: column;
    align-items: center;
  }
  .popup-overlay .inner-cards .icon-card {
    margin: 10px 20px;
  }
}
@media screen and (max-width: 992px) {
  .popup-overlay .inner-popup {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .popup-overlay {
    padding: 15px !important;
  }
  .popup-overlay .popup-close {
    right: 15px !important;
    top: 15px !important;
  }
  .popup-overlay .popup-close > span {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6196078431) !important;
    font-size: 50px !important;
  }
  .popup-overlay .icon-card {
    padding: 25px;
    max-width: 100%;
    min-height: 100%;
    margin: 0px !important;
    margin-bottom: 15px !important;
  }
}

#hs-eu-cookie-disclaimer p {
  font-size: 17px !important;
  line-height: 1.2 !important;
  color: #2b453f !important;
  font-family: "poppins", sans-serif !important;
}

#hs-eu-cookie-confirmation-buttons-area button {
  border-radius: 0 !important;
}

#hs-eu-cookie-confirmation-inner {
  border-radius: 0 !important;
}

.homebadge {
  position: absolute;
  right: 0px;
  top: 800px;
}
.homebadge .inner-badge {
  position: absolute;
  bottom: 80px;
  right: 140px;
  width: 375px;
  height: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homebadge .inner-inner-badge-decoration {
  position: absolute;
  width: 375px;
  height: 375px;
  background-color: #fe5c05;
  border-radius: 50%;
  scale: 1;
  opacity: 0.5;
  transition: all 1s ease-in-out;
}
.homebadge .inner-inner-badge {
  position: absolute;
  width: 315px;
  height: 315px;
  background-color: #FE5D05;
  border-radius: 50%;
  scale: 1;
  transition: all 1s ease-in-out;
}
.homebadge .homebadge-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #EDEBE7;
}
.homebadge .homebadge-text h3 {
  color: #EDEBE7;
  margin-bottom: 34px;
}
.homebadge .homebadge-text p {
  color: #EDEBE7;
  margin-bottom: 0px;
}
.homebadge .homebadge-text .material-symbols-outlined {
  color: #EDEBE7;
  font-size: 28px;
  position: absolute;
}
.homebadge .inner-inner-badge-decoration {
  animation: pulse 3s infinite;
}
.homebadge .inner-inner-badge:hover {
  scale: 1.05;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .homebadge .inner-badge {
    height: 320px;
    width: 320px;
    right: 60px;
    bottom: 40px;
  }
  .homebadge .inner-inner-badge-decoration {
    width: 320px;
    height: 320px;
  }
  .homebadge .inner-inner-badge {
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 1100px) {
  .homebadge {
    top: 900px;
  }
}
@media screen and (max-width: 676px) {
  .homebadge {
    width: 100%;
    left: 0;
    top: 515px;
    justify-content: center;
    display: flex;
  }
  .homebadge .inner-badge {
    left: 0;
    bottom: 0;
    position: relative;
  }
}
@media screen and (max-width: 380px) {
  .homebadge {
    top: 585px;
  }
}
@keyframes pulse {
  0% {
    scale: 1;
    opacity: 0.5;
  }
  50% {
    scale: 1.03;
    opacity: 0.6;
  }
  100% {
    scale: 1;
    opacity: 0.5;
  }
}
@keyframes pulse_strong {
  0% {
    scale: 1;
    opacity: 0.5;
  }
  50% {
    scale: 1.08;
    opacity: 0.8;
  }
  100% {
    scale: 1;
    opacity: 0.5;
  }
}

.container,
.content-wrapper,
.dnd-section > .row-fluid {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 576px) {
  .container,
.content-wrapper,
.dnd-section > .row-fluid {
    max-width: 100% !important;
    padding-right: 25px;
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  .container,
.content-wrapper,
.dnd-section > .row-fluid {
    max-width: 800px !important;
  }
}
@media (min-width: 992px) {
  .container,
.content-wrapper,
.dnd-section > .row-fluid {
    max-width: 912px !important;
  }
}
@media (min-width: 1100px) {
  .container,
.content-wrapper,
.dnd-section > .row-fluid {
    max-width: 1288px !important;
  }
}

@media (min-width: 576px) {
  .row-fluid > .span12.widget-span > .row-fluid-wrapper.row-depth-1 > .row-fluid {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .row-fluid > .span12.widget-span > .row-fluid-wrapper.row-depth-1 > .row-fluid {
    max-width: 700px !important;
  }
}
@media (min-width: 992px) {
  .row-fluid > .span12.widget-span > .row-fluid-wrapper.row-depth-1 > .row-fluid {
    max-width: 800px !important;
  }
}
@media (min-width: 1100px) {
  .row-fluid > .span12.widget-span > .row-fluid-wrapper.row-depth-1 > .row-fluid {
    max-width: 1078px !important;
  }
}

.row-fluid-wrapper {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

@media (min-width: 992px) {
  .row-fluid .span6:first-child, .row-fluid .span4:first-child {
    padding-right: 0px !important;
  }
}
@media (min-width: 1100px) {
  .row-fluid .span6:first-child, .row-fluid .span4:first-child {
    padding-right: 5px !important;
  }
}
@media (min-width: 1200px) {
  .row-fluid .span6:first-child, .row-fluid .span4:first-child {
    padding-right: 25px !important;
  }
}

@media (min-width: 992px) {
  .row-fluid .span4:nth-child(2) {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 1200px) {
  .row-fluid .span4:nth-child(2) {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (min-width: 992px) {
  .row-fluid .span6:nth-child(2), .row-fluid .span4:nth-child(3) {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 1100px) {
  .row-fluid .span6:nth-child(2), .row-fluid .span4:nth-child(3) {
    padding-left: 5px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 1200px) {
  .row-fluid .span6:nth-child(2), .row-fluid .span4:nth-child(3) {
    padding-left: 24px !important;
    padding-right: 0px !important;
  }
}

/*# sourceMappingURL=main.css.map */